body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f2f2f2;
    margin: 0;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#form-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

#linkContainer {
    height: 80px; 
    font-size: 20px; 
    display: flex;
    justify-content: center;
    align-items: center;
}

#form-title {
    margin-bottom: 20px;
    color: #e73c3c;
}

#form-title2{
    margin-bottom: 20px;
    color: #e73c3c;
    letter-spacing: 30px;
}

#form-line {
    margin-bottom: 20px;
    color: #ced118;
}

input, select {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#search-btn {
    background-color: #3498db;
    color: white;
}

#getqr-btn, #awaken-btn, #login-btn {
    background-color: #3498db;
    color: white;
}

button:hover {
    opacity: 0.9;
}

html {
    scroll-behavior: smooth;
}

.pc-only {
    display: none;
    align-items: flex-end;
}
 
@media (min-width: 768px) {
    .pc-only {
        display: block;
    }
}

.mobile-only{
    display: none;
    align-items: flex-end;
}

/* 针对手机屏幕 */
@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
}
