/* 基础样式重置 */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background-image: url('https://i.111666.best/image/dJRCGGnfC5t3HJVSjwCC2Z.png');
    background-size: cover;
    background-position: center;
	overflow: hidden;
}

/* 容器样式，垂直和水平居中 */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* 时间样式 */
.time {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
}

/* 搜索框样式 */
.search-box {
    position: relative;
    width: 80%;
    max-width: 600px;
    height: 50px;
    border-radius: 25px;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    padding: 0 20px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* 输入框样式 */
#search-input {
    border: none;
    flex-grow: 1;
    padding: 0 15px;
    font-size: 16px;
    color: #333;
    background-color: transparent;
    outline: none;
}

/* 按钮样式 */
#search-button {
    position: absolute;
    right: 5px; /* 增加右边距，使按钮更靠右 */
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    background-color: #f0f0f0;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

/* 输入框聚焦时的样式 */
#search-input:focus {
    box-shadow: none;
}

/* 搜索框聚焦时的样式 */
.search-box:focus-within {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* 按钮悬停和按下时的样式 */
#search-button:hover {
    background-color: #e9e9e9;
}

#search-button:active {
    transform: translateY(-50%) scale(0.9);
}

/* 版权声明样式 */
.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 50px; /* 根据需要调整高度 */
    background-color: rgba(255, 255, 255, 0.8); /* 背景颜色，可根据需要调整 */
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: center; /* 水平居中 */
    color: rgba(0,0,0,0.2); /* 文字颜色 */
    font-size: 0.875rem; /* 文字大小 */
}

.copyright {
    text-align: center; /* 确保文字居中 */
}
.ver-his {
	color: rgba(0,0,0,0.2);
	text-decoration: none;
}

