/* wire.css - Layout 108 Block Reveal 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;
    -webkit-font-smoothing: antialiased;
}
.wire-container { max-width: 900px; margin: 0 auto; padding: 25px; box-sizing: border-box; }
.wire-header { background: #ffffff; border-bottom: 1px solid #edeae4; }
.wire-header-container { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px; }
.wire-logo img { height: 35px; display: block; }
.wire-nav { display: flex; list-style: none; margin: 0; padding: 0; gap: 24px; }
.wire-nav a { color: #5c5956; text-decoration: none; font-size: 14px; font-weight: 500; }
.wire-nav a:hover { color: #8e7b6c; }

/* 堆叠多层色块 视差拉开交互 */
.wire-reveal-box {
    position: relative;
    width: 100%; height: 260px;
    margin-top: 15px;
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 12px;
}
.wire-reveal-bg {
    position: absolute; top:0; left:0; width:100%; height:100%;
    background: #ffffff;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid #edeae4;
    border-radius: 12px;
    box-sizing: border-box;
    text-align: center;
    z-index: 1;
}
.wire-reveal-layer {
    position: absolute; top:0; width: 50%; height: 100%;
    z-index: 2;
    transition: transform 0.1s ease-out;
}
.wire-layer-left {
    left: 0; background-color: #f2eee8;
    border-right: 1px solid rgba(0,0,0,0.03);
}
.wire-layer-right {
    right: 0; background-color: #f7f6f2;
    border-left: 1px solid rgba(0,0,0,0.03);
}

/* 简约卡片与表格 */
.wire-card {
    background: #ffffff;
    border: 1px solid #edeae4;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 20px;
}
.wire-card-header {
    font-size: 14px; font-weight: 700; color: #3d3b38;
    border-bottom: 1px dashed #f2eee8; padding-bottom: 10px; margin-bottom: 15px;
}
.wire-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; }
.wire-table { width: 100%; border-collapse: collapse; }
.wire-table th { text-align: left; padding: 10px; border-bottom: 1px solid #edeae4; color: #8e8b87; font-weight: 400; font-size: 12px; }
.wire-table td { padding: 12px 10px; border-bottom: 1px dashed #edeae4; font-size: 13px; }
.wire-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; }
.wire-input:focus { border-color: #8e7b6c; }
.wire-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; }
.wire-btn:hover { background: #73706d; }
.wire-btn-fluid { display: block; width: 100%; box-sizing: border-box; }
.wire-btn-disabled { background: #d0cdc9 !important; cursor: not-allowed; }
.wire-badge { padding: 2px 6px; border-radius: 3px; font-size: 11px; }
.wire-badge-auto { background: #edf5f1; color: #2e693f; }
.wire-badge-manual { background: #fdf3f3; color: #9c3a3a; }
.wire-text-green { color: #2e693f; font-weight: bold; }
.wire-text-red { color: #9c3a3a; font-weight: bold; }
.wire-price { color: #b53e3e; font-weight: bold; font-size: 15px; }

/* 详情页自适应双栏 */
.wire-detail-grid { display: flex; flex-wrap: wrap; gap: 20px; }
.wire-detail-left { flex: 1 1 280px; }
.wire-detail-right { flex: 1.2 1 360px; }
.wire-preview-img { width: 100%; height: auto; display: block; border-radius: 8px; }
.wire-form-item { margin-bottom: 14px; }
.wire-form-label { display: block; font-size: 12px; font-weight: 700; color: #6a6764; margin-bottom: 6px; }

/* 页脚 */
.wire-footer { text-align: center; padding: 35px 20px; font-size: 11px; color: #9c9995; border-top: 1px solid #edeae4; margin-top: 40px; }
.wire-footer a { color: #73706d; text-decoration: none; margin: 0 8px; }
