/* pump.css - Layout 106 Four-Corner Navigation Style Book */
body {
    background-color: #faf9f6;
    color: #43413e;
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    margin: 0; padding: 0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
/* 极简动态慢变浅背景 */
body::before {
    content: ""; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2;
    background: radial-gradient(circle at 50% 50%, #faf9f6, #f2efe9);
    animation: pumpBgMotion 20s infinite alternate ease-in-out;
}
@keyframes pumpBgMotion {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}
.pump-container { max-width: 960px; margin: 0 auto; padding: 25px; box-sizing: border-box; }

/* 居中Logo与环绕圆形进度条 */
.pump-header-mid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
    position: relative;
}
.pump-logo-wrapper {
    position: relative;
    width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
}
/* 圆形微进度条慢旋转 */
.pump-logo-wrapper::after {
    content: ""; position: absolute;
    top: -4px; bottom: -4px; left: -4px; right: -4px;
    border-radius: 50%;
    border: 1px solid rgba(142, 123, 108, 0.08);
    border-top-color: #8e7b6c;
    animation: pumpSpin 15s infinite linear;
}
@keyframes pumpSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.pump-logo-wrapper img { width: 44px; height: 44px; border-radius: 50%; object-fit: contain; }

/* 四角分布导航 */
.pump-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}
.pump-nav-item {
    background: #ffffff;
    border: 1px solid #edeae4;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    color: #5c5956;
    font-size: 13px; font-weight: 600;
    transition: all 0.2s;
}
.pump-nav-item:hover {
    background: #fdfdfb;
    border-color: #8e7b6c;
    color: #8e7b6c;
}

/* 简约卡片与布局 */
.pump-card {
    background: #ffffff;
    border: 1px solid #edeae4;
    border-radius: 10px;
    padding: 24px;
    margin-top: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}
.pump-card-header {
    font-size: 14px; font-weight: 700; color: #3d3b38;
    border-bottom: 1px dashed #f2eee8; padding-bottom: 10px; margin-bottom: 15px;
}
.pump-notice { background: #fdfaf2; border-left: 3px solid #8e7b6c; padding: 12px 15px; border-radius: 4px; margin-bottom: 20px; font-size: 12px; color: #7c6a46; border: 1px solid #f2eee8; }

/* 表格、输入框及按钮 */
.pump-table { width: 100%; border-collapse: collapse; }
.pump-table th { text-align: left; padding: 10px; border-bottom: 1px solid #edeae4; color: #8e8b87; font-weight: 400; font-size: 12px; }
.pump-table td { padding: 12px 10px; border-bottom: 1px dashed #edeae4; font-size: 13px; }
.pump-input { width: 100%; padding: 10px 12px; border: 1px solid #e1ddd7; border-radius: 6px; background: #faf9f6; box-sizing: border-box; font-size: 13px; outline: none; margin-bottom: 12px; }
.pump-input:focus { border-color: #8e7b6c; }
.pump-btn { display: inline-block; background: #5c5956; color: #fff !important; border: none; padding: 9px 18px; border-radius: 5px; font-size: 13px; text-align: center; cursor: pointer; text-decoration: none; }
.pump-btn:hover { background: #73706d; }
.pump-btn-fluid { display: block; width: 100%; box-sizing: border-box; }
.pump-btn-disabled { background: #d0cdc9 !important; cursor: not-allowed; }
.pump-badge { padding: 2px 6px; border-radius: 3px; font-size: 11px; }
.pump-badge-auto { background: #edf5f1; color: #2e693f; }
.pump-badge-manual { background: #fdf3f3; color: #9c3a3a; }
.pump-text-green { color: #2e693f; font-weight: bold; }
.pump-text-red { color: #9c3a3a; font-weight: bold; }
.pump-price { color: #b53e3e; font-weight: bold; font-size: 15px; }

/* 详情自适应双栏 */
.pump-detail-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.pump-detail-left { flex: 1 1 280px; }
.pump-detail-right { flex: 1.2 1 360px; }
.pump-preview-img { width: 100%; height: auto; display: block; border-radius: 8px; }
.pump-form-item { margin-bottom: 14px; }
.pump-form-label { display: block; font-size: 12px; font-weight: 700; color: #6a6764; margin-bottom: 6px; }

/* 页脚 */
.pump-footer { text-align: center; padding: 35px 20px; font-size: 11px; color: #9c9995; border-top: 1px solid #edeae4; margin-top: 40px; }
.pump-footer a { color: #73706d; text-decoration: none; margin: 0 8px; }
