/* query_page.css */

/* 查询区域样式 */
.auth-query {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.auth-title {
    text-align: center;
    font-size: 24px;
    color: #1d2129;
    margin-bottom: 30px;
    font-weight: 500;
}

.auth-form {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.auth-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #e5e6eb;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.auth-input:focus {
    border-color: #2B6DF3;
    outline: none;
    box-shadow: 0 0 0 2px rgba(43, 109, 243, 0.2);
}

.auth-button {
    padding: 12px 30px;
    background: #2B6DF3;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.auth-button:hover {
    background: #1b4df0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 109, 243, 0.2);
}

/* 结果展示区域 */
.auth-result {
    display: none;
    margin-top: 30px;
    padding: 20px;
    border-radius: 4px;
    background: #f8f9fa;
    border: 1px solid #e5e6eb;
}

.auth-result.show {
    display: block;
}

.auth-result.success {
    border-color: #52c41a;
    background: #f6ffed;
}

.auth-result.error {
    border-color: #ff4d4f;
    background: #fff2f0;
}

.auth-result.warning {
    border-color: #ffc107;
    background: #fffbe6;
}

.result-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #1d2129;
}

.result-info {
    margin-bottom: 8px;
    color: #4e5969;
    font-size: 14px;
}

.result-info strong {
    color: #1d2129;
    font-weight: 500;
}

/* 提示信息 */
.auth-tips {
    margin-top: 20px;
    padding: 15px;
    background: #e6f7ff;
    border: 1px solid #91d5ff;
    border-radius: 4px;
    color: #4e5969;
    font-size: 14px;
}

.auth-tips h4 {
    color: #1d2129;
    margin-bottom: 10px;
}

.auth-tips p {
    margin: 5px 0;
}

/* 响应式调整 */
@media screen and (max-width: 768px) {
    .auth-query {
        margin: 20px;
        padding: 20px;
    }

    .auth-form {
        flex-direction: column;
        align-items: stretch;
    }

    .auth-button {
        width: 100%;
    }
} 