/* ===== 从原文件提取的完整 CSS ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #0d0b0a; font-family: 'Noto Serif SC', 'PingFang SC', sans-serif; min-height: 100vh; color: #f0e8dd; overflow-x: hidden; }

/* 🌫️ 雾气特效 */
.site-mist { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.site-mist .mist { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.35; animation: mistFloat 25s infinite alternate ease-in-out; }
.site-mist .mist:nth-child(1) { width: 500px; height: 400px; top: -10%; left: -10%; background: radial-gradient(circle, rgba(255,245,235,0.25), rgba(200,210,230,0.08) 50%, transparent 75%); animation-duration: 28s; }
.site-mist .mist:nth-child(2) { width: 600px; height: 450px; bottom: -10%; right: -10%; background: radial-gradient(circle, rgba(235,240,250,0.2), rgba(180,200,220,0.06) 50%, transparent 75%); animation-duration: 32s; animation-delay: -6s; }
.site-mist .mist:nth-child(3) { width: 400px; height: 350px; top: 30%; left: 20%; background: radial-gradient(circle, rgba(255,240,225,0.2), rgba(200,215,235,0.06) 50%, transparent 75%); animation-duration: 22s; animation-delay: -10s; }
.site-mist .mist:nth-child(4) { width: 450px; height: 380px; top: 15%; right: 5%; background: radial-gradient(circle, rgba(240,245,255,0.18), rgba(190,210,230,0.06) 50%, transparent 75%); animation-duration: 26s; animation-delay: -14s; }
.site-mist .mist:nth-child(5) { width: 550px; height: 400px; bottom: 10%; left: 10%; background: radial-gradient(circle, rgba(255,250,240,0.15), rgba(170,195,220,0.05) 50%, transparent 75%); animation-duration: 30s; animation-delay: -18s; }
.site-mist .glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.1; animation: glowPulse 18s infinite alternate ease-in-out; }
.site-mist .glow:nth-child(6) { width: 300px; height: 300px; top: 20%; left: 50%; background: radial-gradient(circle, rgba(200,170,130,0.3), transparent 70%); animation-duration: 20s; }
.site-mist .glow:nth-child(7) { width: 250px; height: 250px; bottom: 20%; right: 30%; background: radial-gradient(circle, rgba(160,180,200,0.2), transparent 70%); animation-duration: 24s; animation-delay: -8s; }
.site-mist .glow:nth-child(8) { width: 350px; height: 350px; bottom: 5%; left: 40%; background: radial-gradient(circle, rgba(140,160,180,0.15), transparent 70%); animation-duration: 28s; animation-delay: -14s; }

@keyframes mistFloat { 0% { transform: translate(0,0) scale(1); opacity: 0.2; } 50% { transform: translate(40px,-30px) scale(1.15); opacity: 0.5; } 100% { transform: translate(-20px,20px) scale(0.9); opacity: 0.3; } }
@keyframes glowPulse { 0% { transform: scale(0.8); opacity: 0.04; } 50% { transform: scale(1.3); opacity: 0.15; } 100% { transform: scale(0.9); opacity: 0.06; } }

/* ☁️ 祥云飘动特效 */
.cloud-container { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.cloud { position: absolute; bottom: -80px; opacity: 0; animation: cloudRise linear infinite; font-size: 60px; filter: blur(1px); color: rgba(255, 248, 240, 0.06); text-shadow: 0 0 40px rgba(201, 160, 80, 0.03); user-select: none; }
.cloud .cloud-emoji { display: block; animation: cloudSway 6s ease-in-out infinite alternate; }
.cloud-1 { left: 5%; animation-duration: 28s; animation-delay: 0s; font-size: 50px; }
.cloud-2 { left: 20%; animation-duration: 35s; animation-delay: 4s; font-size: 70px; }
.cloud-3 { left: 40%; animation-duration: 25s; animation-delay: 8s; font-size: 45px; }
.cloud-4 { left: 60%; animation-duration: 30s; animation-delay: 2s; font-size: 80px; }
.cloud-5 { left: 80%; animation-duration: 32s; animation-delay: 6s; font-size: 55px; }
.cloud-6 { left: 15%; animation-duration: 38s; animation-delay: 10s; font-size: 40px; }
.cloud-7 { left: 50%; animation-duration: 27s; animation-delay: 12s; font-size: 65px; }
.cloud-8 { left: 75%; animation-duration: 33s; animation-delay: 3s; font-size: 50px; }
.cloud-9 { left: 30%; animation-duration: 40s; animation-delay: 7s; font-size: 35px; }
.cloud-10 { left: 90%; animation-duration: 26s; animation-delay: 9s; font-size: 45px; }

@keyframes cloudRise { 0% { transform: translateY(0) scale(0.8) rotate(0deg); opacity: 0; } 10% { opacity: 0.3; } 50% { opacity: 0.5; transform: translateY(-50vh) scale(1.1) rotate(2deg); } 90% { opacity: 0.3; } 100% { transform: translateY(-110vh) scale(1.2) rotate(-3deg); opacity: 0; } }
@keyframes cloudSway { 0% { transform: translateX(-10px) rotate(-2deg); } 100% { transform: translateX(10px) rotate(2deg); } }

/* 导航栏 */
.header-dark { background: rgba(26,15,10,0.92); backdrop-filter: blur(12px); padding: 10px 16px; border-bottom: 1px solid rgba(201,160,80,0.15); position: sticky; top: 0; z-index: 100; }
.header-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 8px; font-size: 20px; font-weight: 700; }
.logo-icon { font-size: 24px; }
.logo-text { background: linear-gradient(135deg, #f0e0c8, #c8a880); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.logo-badge { font-size: 10px; background: #C9A050; color: #1a0f0a; padding: 2px 10px; border-radius: 20px; -webkit-text-fill-color: #1a0f0a; }
.nav-menu { display: flex; align-items: center; gap: 16px; }
.nav-link { color: #8a7a6a; text-decoration: none; font-size: 13px; padding: 6px 12px; border-radius: 8px; transition: all 0.3s; cursor: pointer; }
.nav-link:hover, .nav-link.active { color: #f0e0c8; background: rgba(200,160,110,0.08); }
.nav-user { display: flex; align-items: center; gap: 8px; cursor: pointer; padding: 4px 12px 4px 6px; border-radius: 30px; background: rgba(200,160,110,0.05); border: 1px solid rgba(200,160,110,0.06); }
.user-avatar { width: 28px; height: 28px; border-radius: 50%; background: rgba(200,160,110,0.12); display: flex; align-items: center; justify-content: center; color: #c8a880; font-size: 13px; }
.user-name { font-size: 12px; color: #b8a898; }
.menu-toggle { display: none; background: none; border: none; color: #b8a898; font-size: 20px; cursor: pointer; }

.search-bar { max-width: 600px; margin: 14px auto 10px; padding: 10px 20px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,215,150,0.06); border-radius: 40px; color: #8a7a6a; font-size: 13px; display: flex; align-items: center; gap: 12px; cursor: pointer; transition: all 0.3s; }
.search-bar:hover { background: rgba(255,255,255,0.07); border-color: rgba(200,160,110,0.12); }

.nav-tabs { display: flex; gap: 6px; padding: 0 16px 12px; overflow-x: auto; scrollbar-width: none; flex-wrap: nowrap; }
.nav-tabs::-webkit-scrollbar { display: none; }
.tab-item { padding: 6px 18px; border: 1px solid rgba(255,255,255,0.04); background: rgba(255,255,255,0.02); border-radius: 30px; color: #8a7a6a; font-size: 13px; cursor: pointer; white-space: nowrap; transition: all 0.3s; font-family: inherit; }
.tab-item.active { background: rgba(200,160,110,0.12); border-color: rgba(200,160,110,0.15); color: #f0e0c8; }

.banner-slider { position: relative; overflow: hidden; border-radius: 16px; margin: 0 16px 16px; background: rgba(30,25,22,0.4); transition: height 0.3s ease; width: 100%; max-width: 750px; margin-left: auto; margin-right: auto; aspect-ratio: 750 / 329; }
.banner-track { display: flex; transition: transform 0.5s ease; height: 100%; }
.banner-slide { min-width: 100%; height: 100%; flex-shrink: 0; }
.banner-bg { width: 100%; height: 100%; display: flex; align-items: center; padding: 20px 24px; position: relative; overflow: hidden; }
.banner-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }
.banner-dots .dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.25); cursor: pointer; transition: all 0.3s ease; }
.banner-dots .dot.active { background: #C9A050; width: 20px; border-radius: 4px; }

/* 分类按钮 */
.category-grid-new { display: grid !important; grid-template-columns: repeat(6, 1fr) !important; gap: 10px !important; padding: 0 16px 16px !important; }
.category-btn { display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; gap: 4px !important; padding: 14px 6px 12px !important; background: rgba(255, 255, 255, 0.02) !important; border: 1px solid rgba(255, 215, 150, 0.04) !important; border-radius: 14px !important; cursor: pointer !important; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important; font-family: inherit !important; color: #8a7a6a !important; width: 100% !important; position: relative !important; overflow: hidden !important; -webkit-tap-highlight-color: transparent !important; }
.category-btn .cat-icon { font-size: 26px !important; transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important; display: block !important; position: relative !important; z-index: 1 !important; }
.category-btn .cat-name { font-size: 12px !important; font-weight: 500 !important; letter-spacing: 2px !important; transition: all 0.3s ease !important; color: #8a7a6a !important; position: relative !important; z-index: 1 !important; }
.category-btn:hover { transform: translateY(-6px) scale(1.03) !important; border-color: rgba(200, 160, 110, 0.2) !important; background: rgba(200, 160, 110, 0.06) !important; color: #f0e0c8 !important; box-shadow: 0 8px 40px rgba(200, 160, 110, 0.08) !important; }
.category-btn:hover .cat-icon { transform: scale(1.2) rotate(-6deg) !important; }
.category-btn:hover .cat-name { color: #f0e0c8 !important; letter-spacing: 3px !important; }
.category-btn:active { transform: scale(0.92) !important; background: rgba(200, 160, 110, 0.15) !important; }
.category-btn:active .cat-icon { transform: scale(0.9) !important; }
.category-btn::before { content: '' !important; position: absolute !important; inset: 0 !important; background: radial-gradient(circle at center, rgba(200, 160, 110, 0.06), transparent 70%) !important; opacity: 0 !important; transition: opacity 0.5s ease !important; border-radius: 14px !important; pointer-events: none !important; z-index: 0 !important; }
.category-btn:hover::before { opacity: 1 !important; }
.category-btn::after { content: '' !important; position: absolute !important; inset: -2px !important; border-radius: 16px !important; padding: 2px !important; background: linear-gradient(135deg, transparent, rgba(200, 160, 110, 0.1), transparent) !important; -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important; mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0) !important; -webkit-mask-composite: xor !important; mask-composite: exclude !important; opacity: 0 !important; transition: opacity 0.5s ease !important; pointer-events: none !important; z-index: 0 !important; }
.category-btn:hover::after { opacity: 1 !important; }
.category-btn .ripple { position: absolute !important; border-radius: 50% !important; background: rgba(200, 160, 110, 0.2) !important; transform: scale(0) !important; animation: rippleAnim 0.8s ease-out forwards !important; pointer-events: none !important; }
@keyframes rippleAnim { to { transform: scale(4); opacity: 0; } }

.section-image-slot { width: 100% !important; margin: 0 !important; padding: 0 !important; display: block !important; background: transparent !important; border: none !important; border-radius: 0 !important; box-shadow: none !important; min-height: auto !important; max-height: none !important; overflow: visible !important; }
.section-image-slot img { width: auto !important; height: auto !important; max-width: none !important; max-height: none !important; display: block !important; margin: 0 auto !important; padding: 0 !important; border: none !important; }

/* 拍卖网格 */
.auction-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 16px 16px; }
.auction-item { background: rgba(30,25,22,0.5); backdrop-filter: blur(4px); border-radius: 14px; padding: 14px; border: 1px solid rgba(255,215,150,0.03); transition: all 0.3s; cursor: pointer; }
.auction-item:hover { background: rgba(50,40,32,0.6); transform: translateY(-2px); border-color: rgba(200,160,110,0.08); }
.auction-item .img-wrap { width: 100%; aspect-ratio: 1/1; background: rgba(200,160,110,0.04); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 36px; margin-bottom: 8px; position: relative; overflow: hidden; }
.auction-item .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.auction-item .tag { position: absolute; top: 6px; left: 6px; background: rgba(0,0,0,0.6); color: #c8a880; font-size: 9px; padding: 2px 10px; border-radius: 12px; }
.auction-item .body h4 { font-size: 14px; color: #d8c8b0; }
.auction-item .price-row { display: flex; justify-content: space-between; align-items: center; }
.auction-item .current { font-size: 15px; color: #c8a880; font-weight: 600; }
.auction-item .current small { font-size: 11px; font-weight: 400; color: #6a6058; }
.auction-item .meta { display: flex; justify-content: space-between; font-size: 11px; color: #6a6058; margin-top: 4px; }
.auction-item .time-left { color: #c8a880; }

.featured-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 16px 16px; }
.featured-card { background: rgba(30,25,22,0.5); backdrop-filter: blur(4px); border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,215,150,0.03); cursor: pointer; transition: all 0.3s; }
.featured-card:hover { background: rgba(50,40,32,0.6); transform: translateY(-2px); }
.featured-img { height: 100px; background: rgba(200,160,110,0.04); display: flex; align-items: center; justify-content: center; position: relative; font-size: 36px; }
.featured-tag { position: absolute; top: 8px; left: 8px; font-size: 9px; background: rgba(200,160,110,0.12); padding: 2px 10px; border-radius: 20px; color: #c8a880; }
.featured-body { padding: 10px 12px 12px; }
.featured-body h4 { font-size: 13px; color: #d8c8b0; font-weight: 400; }
.featured-price { font-size: 15px; color: #c8a880; font-weight: 600; }
.featured-price small { font-size: 10px; font-weight: 400; color: #6a6058; }
.featured-meta { font-size: 11px; color: #6a6058; margin-top: 2px; }

.section-header { display: flex; justify-content: space-between; align-items: center; padding: 0 16px 12px; }
.title-bevel { font-size: 17px; font-weight: 600; color: #f0e0c8; }
.btn-bevel-secondary { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.04); color: #8a7a6a; padding: 4px 14px; border-radius: 30px; font-size: 12px; cursor: pointer; transition: all 0.3s; font-family: inherit; }
.btn-bevel-secondary:hover { background: rgba(200,160,110,0.06); color: #f0e0c8; }
.load-more { text-align: center; padding: 10px 0 20px; }

.bottom-nav { position: fixed; bottom: 0; left: 0; right: 0; display: flex; background: rgba(13, 11, 10, 0.92); backdrop-filter: blur(12px); border-top: 1px solid rgba(255, 215, 150, 0.04); z-index: 200; padding: 6px 0 env(safe-area-inset-bottom); align-items: center; justify-content: space-around; }
.bottom-nav .nav-item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 6px 0; background: none; border: none; color: #5a4a3a; font-size: 10px; cursor: pointer; transition: all 0.3s; font-family: inherit; position: relative; }
.bottom-nav .nav-item i { font-size: 18px; transition: all 0.3s; }
.bottom-nav .nav-item.active { color: #c8a880; }
.bottom-nav .nav-item.active i { transform: translateY(-2px); }

/* 发布按钮 */
.publish-btn { position: relative; flex: 1.2 !important; padding: 0 !important; margin-top: -10px; }
.publish-wrapper { position: relative; width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; }
.publish-ring { position: absolute; width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #C9A050, #f0d080, #C9A050); box-shadow: 0 0 30px rgba(201, 160, 80, 0.3); animation: publishPulse 2s ease-in-out infinite; transition: all 0.3s; }
.publish-ring.ring-2 { width: 64px; height: 64px; opacity: 0.3; animation: publishPulse 2s ease-in-out infinite 0.6s; }
.publish-icon { position: relative; z-index: 2; width: 44px; height: 44px; border-radius: 50%; background: #0d0b0a; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #C9A050; transition: all 0.3s; border: 2px solid rgba(201, 160, 80, 0.2); }
.publish-icon i { font-size: 22px !important; transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.publish-btn:hover .publish-ring { box-shadow: 0 0 50px rgba(201, 160, 80, 0.6); transform: scale(1.05); }
.publish-btn:hover .publish-icon { border-color: #C9A050; background: rgba(201, 160, 80, 0.08); }
.publish-btn:hover .publish-icon i { transform: rotate(90deg) scale(1.1); }
.publish-btn:hover .publish-label { color: #C9A050; }
.publish-btn:active .publish-ring { transform: scale(0.9); }
.publish-btn:active .publish-icon i { transform: rotate(180deg); }
.publish-label { color: #8a7a6a; font-size: 10px; font-weight: 600; margin-top: 2px; transition: all 0.3s; display: block; }
@keyframes publishPulse { 0% { transform: scale(1); opacity: 0.8; } 50% { transform: scale(1.08); opacity: 1; } 100% { transform: scale(1); opacity: 0.8; } }
.publish-ring::before { content: ''; position: absolute; inset: 0; border-radius: 50%; background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.15) 50%, transparent 60%); animation: shimmer 3s ease-in-out infinite; }
@keyframes shimmer { 0% { transform: rotate(0deg) scale(1); opacity: 0.3; } 50% { opacity: 1; } 100% { transform: rotate(360deg) scale(1); opacity: 0.3; } }
.publish-btn::after { content: ''; position: absolute; top: -6px; right: -6px; width: 12px; height: 12px; border-radius: 50%; background: #C9A050; box-shadow: 0 0 20px rgba(201, 160, 80, 0.6); animation: dotPulse 1.5s ease-in-out infinite; }
@keyframes dotPulse { 0%,100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.4); opacity: 1; } }

/* 弹窗 */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(4px); z-index: 300; align-items: center; justify-content: center; padding: 20px; }
.modal-overlay.open { display: flex; }
.modal-box { background: #1a1614; border: 1px solid rgba(255, 215, 150, 0.06); border-radius: 20px; padding: 24px; max-width: 450px; width: 100%; position: relative; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6); max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 10px; right: 14px; background: none; border: none; color: #5a4a3a; font-size: 18px; cursor: pointer; }
.modal-box h3 { color: #D4BC86; margin-bottom: 16px; }
.modal-box .form-group { margin-bottom: 12px; }
.modal-box .form-group label { color: #666; font-size: 13px; display: block; margin-bottom: 4px; }
.modal-box .form-group input, .modal-box .form-group select, .modal-box .form-group textarea { width: 100%; padding: 10px; border: 1px solid #2E2E2E; background: #121214; color: #D4BC86; border-radius: 8px; font-family: inherit; }
.modal-box .form-group textarea { min-height: 80px; resize: vertical; }
.btn-bevel { background: rgba(200, 160, 110, 0.12); border: 1px solid rgba(200, 160, 110, 0.12); color: #d8c8b0; padding: 8px 20px; border-radius: 30px; cursor: pointer; transition: all 0.3s; font-family: inherit; font-size: 13px; }
.btn-bevel:hover { background: rgba(200, 160, 110, 0.2); border-color: rgba(200, 160, 110, 0.2); }
.btn-block { width: 100%; }

/* 桃园样式 */
.orchard-btn { transition: all 0.3s ease !important; }
.orchard-btn:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3) !important; }
.land-plot { background: rgba(30, 25, 22, 0.4); backdrop-filter: blur(4px); border-radius: 16px; padding: 12px 8px 10px; text-align: center; border: 1px solid rgba(255, 215, 150, 0.04); transition: all 0.3s ease; position: relative; min-height: 140px; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.land-plot:hover { transform: translateY(-3px); border-color: rgba(200, 160, 110, 0.08); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2); }
.land-plot .plot-number { position: absolute; top: 6px; left: 8px; font-size: 9px; color: #4a3a2a; font-weight: 700; }
.land-plot .plot-tree { font-size: 36px; margin-bottom: 4px; transition: all 0.5s ease; }
.land-plot .plot-status { font-size: 11px; color: #8a7a6a; font-weight: 500; }
.land-plot .plot-status.ready { color: #D4BC86; animation: pulse 1.5s ease-in-out infinite; }
.land-plot .plot-progress { width: 80%; height: 4px; background: rgba(255, 255, 255, 0.05); border-radius: 4px; margin: 6px 0 8px; overflow: hidden; }
.land-plot .plot-progress .fill { height: 100%; background: linear-gradient(90deg, #8a7a6a, #D4BC86); border-radius: 4px; transition: width 0.8s ease; }
.land-plot .land-actions { display: flex; gap: 4px; flex-wrap: wrap; justify-content: center; }
.land-plot .land-actions button { font-size: 10px; padding: 2px 10px; border-radius: 20px; border: 1px solid rgba(255, 215, 150, 0.06); background: rgba(255, 255, 255, 0.02); color: #b8a898; cursor: pointer; transition: all 0.3s; font-family: inherit; }
.land-plot .land-actions button:hover { background: rgba(200, 160, 110, 0.08); color: #D4BC86; }
.land-plot.empty { opacity: 0.5; }
.land-plot.growing { border-color: rgba(100, 180, 255, 0.06); }
.land-plot.ready { border-color: rgba(200, 160, 110, 0.15); box-shadow: 0 0 30px rgba(200, 160, 110, 0.04); }
.land-plot.select-mode { border-color: #D4BC86 !important; box-shadow: 0 0 30px rgba(200, 160, 110, 0.1) !important; cursor: pointer; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }
.blindbox-item { background: rgba(255, 255, 255, 0.02); border-radius: 12px; padding: 10px 4px; text-align: center; cursor: pointer; transition: all 0.3s; border: 1px solid rgba(255, 215, 150, 0.03); }
.blindbox-item:hover { background: rgba(200, 160, 110, 0.04); transform: translateY(-2px); }
.blindbox-item .icon { font-size: 24px; display: block; }
.blindbox-item .name { font-size: 10px; color: #8a7a6a; margin-top: 2px; display: block; }
.blindbox-item .cost { font-size: 9px; color: #6a6058; display: block; }

/* 响应式 */
@media (max-width: 768px) { .nav-menu { display: none; } .menu-toggle { display: block; } .category-grid-new { grid-template-columns: repeat(3, 1fr); } .banner-slider { height: auto; aspect-ratio: 750 / 329; } }
@media (max-width: 480px) { .logo-text { font-size: 16px; } .auction-grid { grid-template-columns: 1fr 1fr; gap: 8px; } .featured-grid { grid-template-columns: 1fr 1fr; } .category-grid-new { grid-template-columns: repeat(3, 1fr); } .banner-slider { height: auto; aspect-ratio: 750 / 329; margin: 0 10px 12px; } .land-plot { min-height: 120px; padding: 10px 6px; } .land-plot .plot-tree { font-size: 28px; } .land-plot .land-actions button { font-size: 9px; padding: 2px 8px; } .publish-wrapper { width: 48px; height: 48px; } .publish-ring { width: 48px; height: 48px; } .publish-ring.ring-2 { width: 56px; height: 56px; } .publish-icon { width: 38px; height: 38px; font-size: 18px; } .publish-icon i { font-size: 18px !important; } .publish-btn::after { width: 10px; height: 10px; top: -4px; right: -4px; } }