* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.container {
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.logo h1 {
    font-size: 72px;
    color: #4285f4;
    margin-bottom: 30px;
    font-weight: normal;
}

.search-box {
    margin-bottom: 30px;
}

.search-box input[type="text"] {
    width: 100%;
    max-width: 584px;
    height: 44px;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    padding: 0 20px;
    font-size: 16px;
    outline: none;
    transition: box-shadow 0.2s;
}

.search-box input[type="text"]:hover {
    box-shadow: 0 2px 5px 1px rgba(64, 60, 67, .16);
    border-color: rgba(223, 225, 229, 0);
}

.search-box input[type="text"]:focus {
    box-shadow: 0 2px 5px 1px rgba(64, 60, 67, .16);
    border-color: rgba(223, 225, 229, 0);
}

.buttons {
    margin-top: 30px;
}

.search-btn {
    background-color: #f8f9fa;
    border: 1px solid #f8f9fa;
    border-radius: 4px;
    color: #3c4043;
    font-size: 14px;
    margin: 11px 4px;
    padding: 0 20px;
    line-height: 27px;
    height: 36px;
    min-width: 54px;
    cursor: pointer;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.search-btn:hover {
    box-shadow: 0 1px 1px rgba(0, 0, 0, .1);
    background-color: #f8f9fa;
    border: 1px solid #dadce0;
    color: #202124;
}

.footer {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #70757a;
    font-size: 14px;
}

@media (max-width: 600px) {
    .logo h1 {
        font-size: 60px;
    }

    .search-box input[type="text"] {
        width: 90%;
    }

    .buttons {
        margin-top: 20px;
    }

    .search-btn {
        margin: 5px 2px;
        padding: 0 15px;
    }
}


/* 页脚样式优化（保证备案信息与版权信息排版规整） */
.footer {
    margin-top: 50px;
    /* 与上方内容拉开间距 */
    text-align: center;
    /* 整体居中对齐（备案规范要求） */
    padding: 20px 0;
    /* 上下内边距，提升美观度 */
    color: #666;
    /* 统一文字颜色 */
    font-size: 14px;
    /* 统一字体大小 */
}

.footer .copyright {
    margin-bottom: 10px;
    /* 版权信息与备案信息拉开间距 */
    line-height: 1.5;
    /* 行高优化，提升可读性 */
}

.footer .record-info {
    line-height: 1.8;
    /* 备案信息行高优化 */
}

/* 备案图片样式微调，保证与文字垂直对齐 */
.el-image {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.el-image__inner {
    width: 16px;
    height: auto;
}

/* 备案链接样式统一，去除默认下划线（可选，优化美观） */
.jgawb,
.jicpb {
    text-decoration: none;
}

.jgawb:hover,
.jicpb:hover {
    text-decoration: underline;
    /*  hover时显示下划线，提升交互体验 */
}