.query-wrap {
    max-width: 750px;
    margin: 0 auto;
    padding: 50px 60px 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(26, 92, 161, .06);
    margin-bottom: 30px;
}

/* ---------- 查询标题 ---------- */
.query-title {
    text-align: center;
    font-size: 26px;
    color: #1a5ca1;
    margin-bottom: 36px;
    font-weight: 700;
    position: relative;
}
/* 标题下方装饰线 */
.query-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #1a5ca1;
    margin: 12px auto 0;
    border-radius: 2px;
}

/* ---------- 查询表单 ---------- */
.query-form .form-item {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}
/* 表单标签 */
.query-form .form-item label {
    width: 160px;
    text-align: right;
    font-size: 15px;
    color: #444;
    margin-right: 16px;
    flex-shrink: 0;
    line-height: 1.4;
}
/* 表单输入框 */
.query-form .form-item input {
    flex: 1;
    height: 46px;
    border: 1px solid #e0e6ed;
    border-radius: 6px;
    padding: 0 16px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: all .25s;
    background: #f9fbfd;
}
/* 输入框悬浮 */
.query-form .form-item input:hover {
    border-color: #bcc8d6;
}
/* 输入框聚焦 */
.query-form .form-item input:focus {
    border-color: #1a5ca1;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(26, 92, 161, .08);
}

/* ---------- 查询按钮 ---------- */
.query-btn {
    display: block;
    width: 100%;
    height: 48px;
    background: linear-gradient(135deg, #1a5ca1, #2273c7);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 14px;
    transition: all .25s;
    letter-spacing: 2px;
}
/* 按钮悬浮 */
.query-btn:hover {
    background: linear-gradient(135deg, #15508e, #1b62b0);
    box-shadow: 0 4px 14px rgba(26, 92, 161, .25);
    transform: translateY(-1px);
}
/* 按钮按下 */
.query-btn:active {
    transform: translateY(0);
}

/* ---------- 查询提示文字 ---------- */
.query-tip {
    text-align: center;
    color: #b0b8c2;
    font-size: 12px;
    margin-top: 18px;
    line-height: 1.6;
}

/* ---------- 底部声明 ---------- */
.query-footer {
    text-align: center;
    color: #999;
    font-size: 12px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    line-height: 1.8;
}

/* ---------- 查询结果区域 ---------- */
.result-wrap {
    margin-top: 36px;
    display: none;
}
/* 结果标题 */
.result-wrap .result-title {
    font-size: 15px;
    color: #1a5ca1;
    font-weight: 700;
    margin-bottom: 18px;
    padding-left: 10px;
    border-left: 3px solid #1a5ca1;
}

/* ---------- 结果卡片 ---------- */
.result-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e4eaf2;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .03);
}
/* 结果条目（每行） */
.result-item {
    display: flex;
    min-height: 46px;
    border-bottom: 1px solid #eef2f8;
}
.result-item:last-child {
    border-bottom: none;
}
/* 累计行 */
.result-item.result-total {
    background: #f0f6ff;
    border-top: 2px solid #d0dff2;
}
.result-item.result-total .item-label {
    background: #e6f0fb;
    color: #1a5ca1;
    font-weight: 600;
}
.result-item.result-total .item-value {
    font-size: 16px;
}
/* 条目标签（左列） */
.result-item .item-label {
    width: 280px;
    flex-shrink: 0;
    background: #f4f7fb;
    font-size: 14px;
    color: #5c6b82;
    padding: 12px 16px;
    line-height: 22px;
    display: flex;
    align-items: center;
    border-right: 1px solid #e4eaf2;
    white-space: nowrap;
}
/* 条目值（右列） */
.result-item .item-value {
    flex: 1;
    font-size: 14px;
    color: #1a2138;
    font-weight: 500;
    padding: 12px 20px;
    line-height: 22px;
    display: flex;
    align-items: center;
}
/* 值高亮 */
.result-item .item-value.highlight {
    color: #1a5ca1;
    font-weight: 600;
    font-size: 15px;
}
/* 带单位的值 */
.result-item .item-value.has-unit {
    color: #1a5ca1;
    font-weight: 600;
    font-size: 15px;
}
/* 单位文字 */
.result-item .item-value.has-unit .unit {
    font-size: 12px;
    font-weight: 400;
    color: #8c9ab5;
    margin-left: 4px;
}

/* ---------- 无结果提示 ---------- */
.no-result {
    text-align: center;
    color: #aaa;
    font-size: 14px;
    padding: 30px 0;
}