/* hose.css - Layout 109 Retro Typewriter Style Book */
body {
    background-color: #fdfdfa;
    color: #3d3b38;
    font-family: "Courier New", Consolas, Monaco, monospace;
    margin: 0; padding: 0;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}
.hose-container { max-width: 900px; margin: 0 auto; padding: 25px; box-sizing: border-box; }
.hose-header { background: #fdfdfa; padding: 15px 20px; }
.hose-header-container { display: flex; justify-content: space-between; align-items: center; }
.hose-logo img { height: 32px; display: block; filter: grayscale(1); }

/* 逐字打印动效主体公告区 */
.hose-typewriter-box {
    margin: 20px 0;
    padding: 15px;
    border: 1px solid #73716e;
    border-radius: 4px;
    background: #ffffff;
    box-sizing: border-box;
}
.hose-typewriter-text {
    font-size: 13px;
    font-weight: bold;
    color: #3d3b38;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #3d3b38;
    width: 28em;
    animation: 
        hoseTyping 6s steps(28, end) infinite,
        hoseBlink 0.75s step-end infinite;
}
@keyframes hoseTyping {
    0% { width: 0; }
    50% { width: 28em; }
    100% { width: 0; }
}
@keyframes hoseBlink {
    from, to { border-color: transparent; }
    50% { border-color: #3d3b38; }
}

/* 底部横向单线线框导航 */
.hose-bottom-nav {
    border-top: 1px solid #73716e;
    border-bottom: 1px solid #73716e;
    padding: 10px 0;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 30px;
}
.hose-bottom-nav a {
    color: #3d3b38;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
}
.hose-bottom-nav a:hover {
    text-decoration: underline;
}

/* 简约卡片与排版 */
.hose-card {
    background: #ffffff;
    border: 1px solid #edeae4;
    border-radius: 6px;
    padding: 24px;
    margin-bottom: 20px;
}
.hose-card-header {
    font-size: 14px; font-weight: 700; color: #3d3b38;
    border-bottom: 1px dashed #73716e; padding-bottom: 10px; margin-bottom: 15px;
}
.hose-notice { background: #fdfaf2; border-left: 3px solid #73716e; padding: 12px 15px; border-radius: 4px; margin-bottom: 20px; font-size: 12px; color: #7c6a46; border: 1px solid #edeae4; }
.hose-table { width: 100%; border-collapse: collapse; }
.hose-table th { text-align: left; padding: 10px; border-bottom: 1px solid #73716e; color: #8e8b87; font-weight: 400; font-size: 12px; }
.hose-table td { padding: 12px 10px; border-bottom: 1px dashed #edeae4; font-size: 13px; }
.hose-input { width: 100%; padding: 10px 12px; border: 1px solid #e1ddd7; border-radius: 4px; background: #faf9f6; box-sizing: border-box; font-size: 13px; outline: none; margin-bottom: 12px; font-family: inherit; }
.hose-input:focus { border-color: #73716e; }
.hose-btn { display: inline-block; background: #3d3b38; color: #fff !important; border: 1px solid #3d3b38; padding: 9px 18px; border-radius: 4px; font-size: 13px; text-align: center; cursor: pointer; text-decoration: none; font-family: inherit; }
.hose-btn:hover { background: #5c5956; }
.hose-btn-fluid { display: block; width: 100%; box-sizing: border-box; }
.hose-btn-disabled { background: #d0cdc9 !important; border-color: #d0cdc9 !important; cursor: not-allowed; }
.hose-badge { padding: 2px 6px; border-radius: 3px; font-size: 11px; }
.hose-badge-auto { background: #edf5f1; color: #2e693f; border: 1px solid #2e693f; }
.hose-badge-manual { background: #fdf3f3; color: #9c3a3a; border: 1px solid #9c3a3a; }
.hose-text-green { color: #2e693f; font-weight: bold; }
.hose-text-red { color: #9c3a3a; font-weight: bold; }
.hose-price { color: #b53e3e; font-weight: bold; font-size: 15px; }

/* 详情自适应双栏 */
.hose-detail-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.hose-detail-left { flex: 1 1 280px; }
.hose-detail-right { flex: 1.2 1 360px; }
.hose-preview-img { width: 100%; height: auto; display: block; border-radius: 4px; border: 1px solid #edeae4; }
.hose-form-item { margin-bottom: 14px; }
.hose-form-label { display: block; font-size: 12px; font-weight: 700; color: #3d3b38; margin-bottom: 6px; }

/* 页脚 */
.hose-footer { text-align: center; padding: 35px 20px 10px 20px; font-size: 11px; color: #9c9995; margin-top: 30px; }
