/* CSS样式表 */

/* 共享样式 */
body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* 页面样式 */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: safe center;

    background-color: #ffffff;
    /* 设置页面背景色为白色 */
    color: #333;
    /* 设置文字颜色为深灰色 */
    text-align: center;
    /* 隐藏溢出内容 */
    font-size: 16px;
    /* 调整字体大小 */
    height: 100vh;
    /* 设置容器高度为视窗高度 */

}

.logo-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo {
    width: 80px;
    height: auto;
    margin-right: 10px;
}

.title {
    font-size: 32px;
    /* 调整标题字体大小 */
    font-weight: bold;
    color: #393f45;
    /* 设置标题文本颜色为蓝色 */
}

.subtitle {
    font-size: 28px;
    /* 调整副标题字体大小 */
    margin-bottom: 10px;
    /* 调整副标题下边距 */
    margin-top: 0px
}

.entry {
    flex-wrap: wrap;
    position: absolute;
    top: 0;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.entry a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 10px;
    padding: 15px 30px;
    border: 2px solid #393f45;
    /* 设置边框颜色为蓝色 */
    border-radius: 5px;
    color: #333;
    /* 设置入口文字颜色为深灰色 */
    transition: all 0.3s ease;
}

.entry-a-check {
    background-color: #393f45;
    /* 设置鼠标悬停或聚焦时的背景色为蓝色 */
    color: #fff !important;
    /* 设置鼠标悬停或聚焦时的文字颜色为白色 */
}



.links {
    top: 10px;
    margin-top: 10px;
    align-items: center;
    justify-content: flex-end;
}

.links a {
    margin-left: 10px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.links a:hover {
    color: #393f45;
}

.search-box {
    display: flex;
    align-items: center;
    margin-top: 50px;
    padding: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

/* 简单的样式，你可以根据需要自定义 */
.search-container {
    display: flex;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 400px;
}

.search-input {
    flex: 1;
    padding: 5px 10px;
    border-radius: 5px 0 0 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    height: 30px;

}

.search-button {
    padding: 5px 10px;
    background-color: #393f45;
    color: white;
    border: 1px solid #393f45;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    height: 42px;
}

.search-button:hover {
    background-color: #393f45;
}

.search-icon {
    font-size: 32px;
    color: #393f45;
    cursor: pointer;
}

.footer {
    margin-top: 40px;
    font-size: 14px;
}

.search-box button {
    border: none;
    background-color: white;
}

.language_change_label {
    color: #0a0a0a !important;
}

.high-search-box {
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
}

.search-result-box {
    margin: 0;
    height: 20px;
    width: 400px;
    border-radius: 5px;
}

.search-result-form {
    padding-top: 20px;
}

.search-result-icon {
    font-size: 24px;
}


.search-result-logo {
    display: none;
}

.s_help a {
    top: 8px;
    position: relative;
}

.new-a {
    margin: 20px;
    padding: 15px 30px;
    border: 2px solid #393f45;
    border-radius: 5px;
    color: #333;
    transition: all 0.3s ease;
}

.new-a:hover {
    background-color: #393f45;
    color: #fff;
}
