@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Noto Sans SC", sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('img.jpg') no-repeat;
    background-position: center;
    background-size: cover;
    flex-direction: column; /* 调整为垂直布局 */
    gap: 20px; /* 增加间距 */
}

.bottom-sticky {
    position: relative; /* 调整为相对定位 */
    margin-bottom: 60px; /* 让内容与底部有间距，避免与备案号重叠 */
    width: 100%;     /* 或者根据需要设置宽度 */
    max-width: 860px; /* 限制最大宽度，与其他 wrapper 保持一致 */
    background: transparent; /* 背景透明或与其他部分一致 */
    padding: 20px;    /* 内边距调整 */
    text-align: center;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(50px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    color: #fff;
    border-radius: 10px;
}

.wrapper {
    justify-content: center; /* 水平方向居中 */
    align-items: center;   /* 垂直方向居中 */
    width: 860px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(50px);
    box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    color: #fff;
    border-radius: 10px;
    padding: 30px 40px;
}
.wrapper h1 {
    font-size: 36px;
    text-align: center;
}
.wrapper .input-box {
    position: relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
}

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255, 255, 255, .2);
    border-radius: 40px;
    font-size: 16px;
    color: #fff;
    padding: 20px 45px 20px 20px;
}

.input-box input::placeholder {
    color: #fff;
}

.input-box i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
}

/* 备案号样式 (固定在页面底部) */
.beian {
    position: fixed; /* 固定在页面底部 */
    bottom: 20px; /* 与页面底部有20px的间隔 */
    left: 50%;
    transform: translateX(-50%); /* 水平居中 */
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    color: #fff;
    text-align: center;
}

.beian a {
    color: #fff;
    text-decoration: none;
}

.beian a:hover {
    color: #fff;
    text-decoration: none;
}

/* 去除点击时变色 */
.beian a:active {
    color: #fff;
}
