:root {
    --vs-bg: #ecf0f6;
    --vs-surface: #ffffff;
    --vs-border: #edf2f7;
    --vs-accent: #1a73e8;
    --vs-warn: #f9ab00;
    --vs-price: #ea4335;
    --vs-text-main: #1f2937;
    --vs-text-sub: #5f6368;
    --vs-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
    --vs-shadow-hover: 0 20px 40px rgba(15, 23, 42, 0.1);
    --vs-radius: 24px;
    --vs-radius-sm: 12px;
}
body { margin: 0; background-color: var(--vs-bg); color: var(--vs-text-main); font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif; -webkit-font-smoothing: antialiased; }
.vs-header { background-color: var(--vs-surface); border-bottom: 1px solid var(--vs-border); padding: 18px 0; }
.vs-nav-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 24px; box-sizing: border-box; }
.vs-logo img { height: 26px; }
.vs-menu { display: flex; gap: 35px; }
.vs-menu a { text-decoration: none; color: var(--vs-text-sub); font-weight: 600; font-size: 14px; transition: 0.3s; }
.vs-menu a:hover { color: var(--vs-accent); }
.vs-container { max-width: 1400px; margin: 40px auto; padding: 0 24px; box-sizing: border-box; }
.vs-notice { background: var(--vs-surface); border-radius: var(--vs-radius); border: 1px solid var(--vs-border); padding: 18px 24px; box-shadow: var(--vs-shadow); font-size: 13px; color: var(--vs-text-main); line-height: 1.6; display: flex; align-items: center; gap: 12px; }
.vs-notice i { color: var(--vs-accent); font-size: 18px; }
.vs-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px; }
.vs-card { background-color: var(--vs-surface); border: 1px solid transparent; border-radius: var(--vs-radius); padding: 18px; text-decoration: none; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); box-shadow: var(--vs-shadow); display: flex; flex-direction: column; position: relative; overflow: hidden; }
.vs-card:hover { transform: translateY(-4px); border-color: rgba(26, 115, 232, 0.15); box-shadow: var(--vs-shadow-hover); }
.vs-img-box { width: 100%; aspect-ratio: 1; background: #f8fafc; border-radius: var(--vs-radius); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.vs-img-box img { width: 60%; height: 60%; object-fit: contain; transition: 0.3s; }
.vs-card:hover .vs-img-box img { transform: scale(1.04); }
.vs-name { font-size: 13px; font-weight: 700; color: var(--vs-text-main); height: 38px; line-height: 1.4; overflow: hidden; margin-bottom: 12px; }
.vs-meta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; border-top: 1px solid #edf2f7; padding-top: 10px; }
.vs-price { color: var(--vs-price); font-weight: 800; font-size: 16px; }
.vs-sell { font-size: 11px; color: var(--vs-text-sub); }
.vs-tag { position: absolute; top: 12px; left: 12px; background: rgba(26, 115, 232, 0.1); color: var(--vs-accent); font-size: 10px; padding: 2px 6px; border-radius: 6px; font-weight: bold; }
.vs-detail-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; }
.vs-box { background: var(--vs-surface); border-radius: var(--vs-radius); padding: 35px; border: 1px solid var(--vs-border); box-shadow: var(--vs-shadow); }
.vs-h1 { font-size: 24px; font-weight: 800; margin: 0 0 20px 0; color: var(--vs-text-main); }
.vs-input { width: 100%; height: 46px; background: #f8fafc; border: 1px solid var(--vs-border); border-radius: var(--vs-radius-sm); padding: 0 15px; font-size: 14px; box-sizing: border-box; outline: none; transition: 0.3s; margin-top: 8px; color: var(--vs-text-main); }
.vs-input:focus { border-color: var(--vs-accent); background: var(--vs-surface); }
.vs-label { display: block; font-size: 12px; font-weight: 700; color: var(--vs-text-sub); }
.vs-btn { width: 100%; height: 50px; background: var(--vs-accent); color: var(--vs-surface); border: none; border-radius: var(--vs-radius-sm); font-size: 15px; font-weight: 700; cursor: pointer; transition: 0.3s; margin-top: 20px; }
.vs-btn:hover { opacity: 0.95; transform: translateY(-1px); }
.vs-footer { background: var(--vs-surface); border-top: 1px solid var(--vs-border); padding: 50px 0; margin-top: 80px; text-align: center; }
@media (max-width: 1400px) { .vs-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 1000px) { .vs-grid { grid-template-columns: repeat(3, 1fr); } .vs-detail-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .vs-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }