Description
/* * Docos Design Tokens * #ffffff 白底 #f7f7f7 卡片底 * #e5e5e5 边框 #1a1a1a 正文 * #555555 次级文字 #b8924a 暖金强调 * #fff8ee 提示底 #e8c87a 提示边框 */ .mzc-wrap { font-family: -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Helvetica, Arial, sans-serif; color: #1a1a1a; line-height: 1.7; max-width: 860px; margin: 0 auto; background: #ffffff; } /* 章节标题 */ .mzc-section-title { font-size: 0.72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: #1a1a1a; border-bottom: 1.5px solid #b8924a; padding-bottom: .45rem; margin: 2.2rem 0 1.1rem; } /* 视频:单列全宽堆叠 */ .mzc-video-stack { display: flex; flex-direction: column; gap: 12px; margin-bottom: 2rem; } .mzc-video-box { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 6px; background: #111; } .mzc-video-box iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; } /* Hero 文案 */ .mzc-intro { font-size: 1rem; color: #555; line-height: 1.8; margin-bottom: 1rem; } /* 核心卖点 — 编号三列样式 */ .mzc-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-bottom: 2rem; border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5; } .mzc-feature-card { padding: 1.2rem 1rem 1.2rem 0; border-right: 1px solid #e5e5e5; font-size: .85rem; color: #333; line-height: 1.55; background: transparent; border-radius: 0; border-top: none; } .mzc-feature-card:last-child { border-right: none; padding-right: 0; padding-left: 1rem; } .mzc-feature-card:nth-child(2) { padding-left: 1rem; } .mzc-feature-card:nth-child(3) { padding-left: 1rem; } .mzc-feature-card__icon { font-family: -apple-system, BlinkMacSystemFont, ‘Segoe UI’, Helvetica, Arial, sans-serif; font-size: 2rem; font-weight: 300; color: #b8924a; opacity: .5; display: block; margin-bottom: .5rem; line-height: 1; letter-spacing: -.02em; } .mzc-feature-card__title { font-weight: 600; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: #b8924a; display: block; margin-bottom: .5rem; } @media (max-width: 560px) { .mzc-features { grid-template-columns: 1fr 1fr; } .mzc-feature-card:nth-child(2) { border-right: none; } .mzc-feature-card:nth-child(3) { border-right: 1px solid #e5e5e5; padding-left: 0; } .mzc-feature-card:last-child { padding-left: 1rem; } } @media (max-width: 380px) { .mzc-features { grid-template-columns: 1fr; } .mzc-feature-card { border-right: none; border-bottom: 1px solid #e5e5e5; padding: 1rem 0; } .mzc-feature-card:nth-child(n) { padding-left: 0; } .mzc-feature-card:last-child { border-bottom: none; } } /* Before/After 对比横幅 */ .mzc-ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 2rem; } .mzc-ba-card { background: #f7f7f7; border: 1px solid #e5e5e5; border-top: 3px solid #b8924a; border-radius: 6px; padding: 1rem 1.1rem; } .mzc-ba-card–after { border-top-color: #b8924a; background: #fff8ee; border-color: #e8c87a; } .mzc-ba-label { font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; display: block; margin-bottom: .6rem; } .mzc-ba-card–before .mzc-ba-label { color: #888; } .mzc-ba-card–after .mzc-ba-label { color: #b8924a; } .mzc-ba-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .35rem; } .mzc-ba-list li { font-size: .85rem; color: #555; display: flex; align-items: flex-start; gap: .5rem; line-height: 1.5; } .mzc-ba-list li::before { content: ”; display: block; width: 5px; height: 5px; min-width: 5px; border-radius: 50%; margin-top: .5rem; flex-shrink: 0; } .mzc-ba-card–before .mzc-ba-list li::before { background: #ccc; } .mzc-ba-card–after .mzc-ba-list li::before { background: #b8924a; } @media (max-width: 440px) { .mzc-ba-grid { grid-template-columns: 1fr; } } /* 使用场景 — 三列卡片样式(替换 pill tags) */ .mzc-rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-bottom: 2rem; background: #f7f7f7; border: 1px solid #e5e5e5; border-radius: 6px; overflow: hidden; } .mzc-room-tag { background: transparent; border: none; border-right: 1px solid #e5e5e5; border-radius: 0; padding: 1.3rem 1.1rem; font-size: .85rem; color: #333; display: flex; flex-direction: column; align-items: flex-start; gap: 0; } .mzc-room-tag:last-child { border-right: none; } .mzc-room-tag__icon { font-size: 1.2rem; display: block; margin-bottom: .6rem; } .mzc-room-tag__name { font-size: .95rem; font-weight: 600; color: #1a1a1a; display: block; margin-bottom: .5rem; line-height: 1.3; } .mzc-room-tag__desc { font-size: .8rem; color: #555; line-height: 1.55; flex: 1; } .mzc-room-tag__label { display: block; margin-top: .8rem; font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #b8924a; } @media (max-width: 540px) { .mzc-rooms { grid-template-columns: 1fr; } .mzc-room-tag { border-right: none; border-bottom: 1px solid #e5e5e5; } .mzc-room-tag:last-child { border-bottom: none; } } /* 材质细节列表 */ .mzc-materials { display: flex; flex-direction: column; gap: 0; margin-bottom: 2rem; } .mzc-mat-item { display: grid; grid-template-columns: 120px 1fr; gap: 1.2rem; padding: 1.1rem 0; border-bottom: 1px solid #e5e5e5; align-items: start; } .mzc-mat-item:first-child { border-top: 1px solid #e5e5e5; } .mzc-mat-swatch { width: 34px; height: 34px; border-radius: 50%; margin-bottom: .5rem; box-shadow: 0 1px 6px rgba(0,0,0,.12); } .mzc-mat-swatch–brass { background: linear-gradient(135deg, #c9a96e, #e0c08a); } .mzc-mat-swatch–walnut { background: linear-gradient(135deg, #4a3728, #7a5c40); } .mzc-mat-swatch–glass { background: linear-gradient(135deg, #d0dce8, #f0f4f8); border: 1px solid #c0ccd4; } .mzc-mat-label { font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #b8924a; display: block; } .mzc-mat-name { font-size: .92rem; font-weight: 600; color: #1a1a1a; display: block; margin-top: .1rem; } .mzc-mat-desc { font-size: .88rem; color: #555; line-height: 1.65; margin-bottom: .6rem; } .mzc-tags { display: flex; flex-wrap: wrap; gap: .35rem; } .mzc-tag { background: #ffffff; border: 1px solid #e5e5e5; border-radius: 3px; padding: .18rem .65rem; font-size: .75rem; color: #555; } @media (max-width: 440px) { .mzc-mat-item { grid-template-columns: 1fr; gap: .5rem; } } /* 尺寸卡片 */ .mzc-size-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 2rem; } .mzc-size-card { background: #f7f7f7; border: 1px solid #e5e5e5; border-top: 3px solid #b8924a; border-radius: 6px; padding: .9rem 1.1rem; position: relative; } .mzc-size-card__label { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #b8924a; display: block; margin-bottom: .5rem; } .mzc-size-card__sublabel { font-size: .72rem; color: #888; display: block; margin-bottom: .4rem; margin-top: -.25rem; } .mzc-size-card__row { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid #e5e5e5; padding: .22rem 0; font-size: .85rem; color: #333; } .mzc-size-card__row:last-child { border-bottom: none; } .mzc-size-card__key { color: #777; font-size: .8rem; } @media (max-width: 440px) { .mzc-size-cards { grid-template-columns: 1fr; } } /* 多灯组合横幅 */ .mzc-upsell { background: #f7f7f7; border: 1px solid #e5e5e5; border-left: 3px solid #b8924a; border-radius: 6px; padding: 1rem 1.2rem; margin-bottom: 2rem; font-size: .9rem; color: #555; line-height: 1.7; display: flex; align-items: center; gap: 1.2rem; } .mzc-upsell__count { font-size: 2rem; font-weight: 300; color: #b8924a; line-height: 1; flex-shrink: 0; } .mzc-upsell__title { font-weight: 600; font-size: .85rem; color: #1a1a1a; display: block; margin-bottom: .2rem; } /* 搭配推荐卡片 */ .mzc-pair-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 8px; margin-bottom: 2rem; } .mzc-pair-card { background: #f7f7f7; border: 1px solid #e5e5e5; border-top: 3px solid #b8924a; border-radius: 6px; padding: .85rem 1rem; font-size: .85rem; color: #333; line-height: 1.55; } .mzc-pair-card__icon { font-size: 1.2rem; display: block; margin-bottom: .35rem; } .mzc-pair-card__title { font-weight: 600; font-size: .82rem; color: #1a1a1a; display: block; margin-bottom: .2rem; } .mzc-pair-card__tag { display: block; margin-top: .6rem; font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: #b8924a; } /* 规格列表 */ .mzc-specs { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 8px; } .mzc-specs li { display: flex; align-items: flex-start; gap: 10px; background: #f7f7f7; border: 1px solid #e5e5e5; border-radius: 6px; padding: .6rem .9rem; font-size: .9rem; color: #333; } .mzc-specs li::before { content: ”; display: block; width: 5px; height: 5px; min-width: 5px; border-radius: 50%; background: #b8924a; margin-top: 8px; } /* 防潮提示 */ .mzc-notice { display: flex; gap: 10px; background: #fff8ee; border: 1px solid #e8c87a; border-left: 3px solid #b8924a; border-radius: 6px; padding: .75rem 1rem; margin-bottom: 2rem; font-size: .88rem; color: #5a3e10; line-height: 1.6; } /* 认证 + 下载 — 两列并排 */ .mzc-footer-block { background: #f7f7f7; border: 1px solid #e5e5e5; border-radius: 6px; padding: 1.4rem 1.4rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; align-items: start; } .mzc-footer-col-label { font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #888; display: block; margin-bottom: .8rem; } /* 认证列 — 竖向 pill */ .mzc-badges { display: flex; flex-direction: column; gap: .4rem; margin-top: 0; } .mzc-badge { background: #ffffff; border: 1px solid #e5e5e5; border-radius: 20px; padding: .28rem .9rem; font-size: .8rem; color: #333; font-weight: 400; letter-spacing: .02em; display: inline-block; width: fit-content; } /* 下载列 */ .mzc-downloads { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 0; } .mzc-dl-item { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #1a1a1a; font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: .65rem .9rem; background: #ffffff; border: 1px solid #e5e5e5; border-radius: 6px; transition: border-color .2s; } .mzc-dl-item:hover { border-color: #b8924a; } .mzc-dl-item img { width: 24px; height: 24px; object-fit: contain; opacity: .45; flex-shrink: 0; } @media (max-width: 440px) { .mzc-footer-block { grid-template-columns: 1fr; gap: 1.2rem; } }
See It In Action
The Modern Zeta Chandelier brings a sense of architecture to the ceiling. A solid walnut bar runs the full length of the fixture — brass fittings at each end, five white glass globe shades hanging at even intervals below. When lit, the output is a continuous ribbon of warm light that maps perfectly onto the dining table or kitchen island underneath. When unlit, it’s a ceiling object worth looking at.
Available in 90 cm and 120 cm. One composition, two scales.
The Difference It Makes
Without
- Flat, unfocused overhead light
- No visual anchor above the table
- Ceiling reads as utilitarian
- Dining surface feels incidental
- Room lacks a focal point
With Zeta
- Warm, continuous ribbon of light
- Brass + walnut becomes ceiling sculpture
- Defined dining zone beneath the bar
- Table feels intentionally set
- Room has a clear visual center
Works In
🍽 Dining Room The linear form tracks the length of a dining table — light lands evenly on every setting, and the walnut bar frames the table from above. Install 30–36″ above the tabletop. 30–36″ Above Table
🍳 Kitchen Island Damp-rated for kitchen humidity. The 90 cm version suits a standard 36-inch island; the 120 cm version spans a larger prep surface completely. Damp Rated — Kitchen Safe
🛋 Living Room Hung above a coffee table or sofa grouping, the Zeta creates a ceiling gesture that organizes the seating arrangement below — making open-plan spaces feel resolved. Organizes Open-Plan Spaces
🚿 Damp Rated: Suitable for use in kitchens, bathrooms, and covered outdoor areas — the brass and glass materials handle moisture without compromise.
Design Details
Hardware Antique Brass
Warm brass fittings connect the walnut bar to the glass shades — hardware that reads as architectural rather than decorative. The brass tone deepens with age, each fitting a detail worth noticing up close, understated enough to disappear at table distance.
5 × G4 sockets Antique finish 59″ adjustable cable
Structure Walnut Body
The solid walnut bar is the chandelier’s backbone and its most visible surface — grain visible, edges clean. It grounds the composition in something material and real, countering the brightness of the brass above and the glass below.
90 cm or 120 cm 19 cm width Solid wood
Shades White Glass
Frosted white glass globes enclose each G4 bulb completely — no visible source, no bright center. The light that reaches the room below is warm and even, diffused equally across every shade along the bar.
Frosted white 5 globes Damp rated
Choose Your Length
90 cm 4-seat tables & standard islands
Length 90 cm / 35.4″
Width 19 cm / 7.4″
Height 28 cm / 11″
Cable 59″ adjustable
★ Most Popular 120 cm 6-seat tables & large islands
Length 120 cm / 47.2″
Width 19 cm / 7.4″
Height 28 cm / 11″
Cable 59″ adjustable
×2
Two in parallel — an entirely different space. Two Zetas hung side by side above a long table or open-plan dining area create a lighting grid that reads as an architectural decision. Order two of the same length for perfect symmetry.
Complete the Space
🕯 Wall Sconces Add brass wall sconces to create a layered lighting scheme — the Zeta handles the table, sconces handle the ambient surround. Look for brass + glass combinations in the Docos collection. Layered Lighting
🪑 Walnut Furniture The walnut bar connects naturally to walnut dining tables, sideboards, and shelving — creating a cohesive material language across the full room, not just the ceiling. Material Harmony
🪴 Organic Accents Ceramics, linen, raw stone, and natural textiles complement the Zeta’s palette without competing. The brass picks up warm candlelight tones from any nearby warm-spectrum source. Styling Guide
Details
- Body: Brass & Walnut
- Shades: White Frosted Glass × 5
- Colors: Brass · White · Walnut
- Wiring: Hardwired
- Socket: G4 × 5
- Max bulb: 5W × 5 incandescent or LED equivalent
- Cable: 59″ / 150 cm — adjustable height
- Dimmer compatible (switch not included)
- Damp rated — kitchens, bathrooms, covered outdoor
- Certified: North America · Australia · Europe · Middle East
Certifications
🌎 North America 🌏 Australia 🌍 Europe 🌍 Middle East
Downloads
Parameter Installation 3D Files
Reviews
There are no reviews yet.