@charset "utf-8";
/* 固定顶部栏 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 66px;  /* 根据实际需求调整高度 */
    background-color: #fff;  /* 背景色 */
    z-index: 9;  /* 确保顶部栏在其他元素上方 */
    box-shadow: 0 0.5rem 1rem rgba(33,37,41,0.025);  /* 可选：添加阴影效果 */
}
/* 内容部分与顶部距离 */
body {
    margin-top: 96px;  /* 与顶部栏高度一致 */
}


/* 优化版输入框样式 */
input {
    width: 260px;
    height: 48px;
    padding: 15px 12px;
    border: 1px solid #1890ff;
    border-radius: 6px;
    font-size: 16px;
    background: #f8fbff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

input:focus {
    outline: none;
    box-shadow: 0 0 8px rgba(24,144,255,0.2);
}

/* 间距优化 */
.ext-tip {
    margin: 15px 0;
    color: #666;
    font-size: 13px;
}

.result {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.search-box {
    padding: 10px;
    margin: 10px auto;
}

/* 按钮优化 */
button {
    height: 48px;
    padding: 0 25px;
    background: #AAD5FF;
    border: 1px solid #1890ff;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.2s;
}

button:hover {
    background: #AAD5FF;
    transform: translateY(-1px);
}