:root {
    --tb-bg: #eee5db;
    --tb-surface: #faf8f5;
    --tb-border: #7c5e4e;
    --tb-accent: #b45309;
    --tb-text-main: #3d2f26;
    --tb-text-sub: #8c7365;
    --tb-price: #b45309;
    --tb-shadow: 0 10px 30px rgba(124, 94, 78, 0.04);
    --tb-radius: 16px;
    --tb-radius-sm: 8px;
}
body { margin: 0; background-color: var(--tb-bg); color: var(--tb-text-main); font-family: "PingFang SC", "STHeiti", "Microsoft YaHei", system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
.tb-header { background-color: var(--tb-surface); border-bottom: 2px solid var(--tb-border); padding: 18px 0; }
.tb-nav-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; box-sizing: border-box; }
.tb-logo img { height: 26px; filter: grayscale(1) contrast(1.1) brightness(0.9); }
.tb-menu { display: flex; gap: 35px; }
.tb-menu a { text-decoration: none; color: var(--tb-text-sub); font-weight: 600; font-size: 14px; transition: 0.3s; }
.tb-menu a:hover { color: var(--tb-accent); }
.tb-container { max-width: 1400px; margin: 40px auto; padding: 0 24px; box-sizing: border-box; }
.tb-notice { background: var(--tb-surface); border-radius: var(--tb-radius); border: 1px solid var(--tb-border); padding: 18px 24px; box-shadow: var(--tb-shadow); font-size: 13px; color: var(--tb-text-main); line-height: 1.6; display: flex; align-items: center; gap: 12px; }
.tb-notice i { color: var(--tb-accent); font-size: 18px; }
.tb-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px; }
.tb-card { background-color: var(--tb-surface); border: 1px solid var(--tb-border); border-radius: var(--tb-radius); padding: 16px; text-decoration: none; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); box-shadow: var(--tb-shadow); display: flex; flex-direction: column; position: relative; overflow: hidden; }
.tb-card:hover { transform: translateY(-4px); border-color: var(--tb-accent); box-shadow: 0 15px 35px rgba(180, 83, 9, 0.12); }
.tb-img-box { width: 100%; aspect-ratio: 1; background: #eef2f0; border-radius: var(--tb-radius-sm); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.tb-img-box img { width: 60%; height: 60%; object-fit: contain; opacity: 0.85; transition: 0.3s; }
.tb-card:hover .tb-img-box img { opacity: 1; transform: scale(1.04); }
.tb-name { font-size: 13px; font-weight: 700; color: var(--tb-text-main); height: 38px; line-height: 1.4; overflow: hidden; margin-bottom: 12px; }
.tb-meta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; border-top: 1px solid #ecebe9; padding-top: 10px; }
.tb-price { color: var(--tb-price); font-weight: 800; font-size: 16px; }
.tb-sell { font-size: 11px; color: var(--tb-text-sub); }
.tb-tag { position: absolute; top: 12px; left: 12px; background: rgba(180, 83, 9, 0.1); color: var(--tb-accent); font-size: 10px; padding: 2px 6px; border-radius: 4px; font-weight: bold; border: 1px solid var(--tb-accent); }
.tb-detail-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; }
.tb-box { background: var(--tb-surface); border-radius: var(--tb-radius); padding: 35px; border: 1px solid var(--tb-border); box-shadow: var(--tb-shadow); }
.tb-h1 { font-size: 24px; font-weight: 800; margin: 0 0 20px 0; color: var(--tb-text-main); }
.tb-input { width: 100%; height: 46px; background: #eef2f0; border: 1px solid var(--tb-border); border-radius: 8px; padding: 0 15px; font-size: 14px; box-sizing: border-box; outline: none; transition: 0.3s; margin-top: 8px; color: var(--tb-text-main); }
.tb-input:focus { border-color: var(--tb-accent); background: var(--tb-surface); }
.tb-label { display: block; font-size: 12px; font-weight: 700; color: var(--tb-text-sub); }
.tb-btn { width: 100%; height: 50px; background: var(--tb-accent); color: var(--tb-surface); border: none; border-radius: 8px; font-size: 15px; font-weight: 700; cursor: pointer; transition: 0.3s; margin-top: 20px; }
.tb-btn:hover { opacity: 0.95; transform: translateY(-1px); }
.tb-footer { background: var(--tb-surface); border-top: 1px solid var(--tb-border); padding: 50px 0; margin-top: 80px; text-align: center; }
@media (max-width: 1400px) { .tb-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 1000px) { .tb-grid { grid-template-columns: repeat(3, 1fr); } .tb-detail-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .tb-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }