Shop
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-color: #ffffff;
color: #000000;
min-height: 100vh;
}
.header {
background: #ffffff;
padding: 0 15px;
border-bottom: 1px solid #e0e0e0;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
position: sticky;
top: 0;
z-index: 1000;
}
/* HOME单独一行 */
.home-row {
width: 100%;
text-align: center;
padding: 12px 0;
border-bottom: 1px solid #f0f0f0;
}
.home-link {
display: inline-flex;
align-items: center;
justify-content: center;
text-decoration: none;
color: #000000;
font-weight: 600;
transition: color 0.3s;
font-size: 1rem;
gap: 8px;
}
.home-link:hover {
color: #d4af37;
}
.home-link i {
font-size: 1.2rem;
}
/* 四个菜单项在一行 */
.nav-container {
width: 100%;
}
.nav-row {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
gap: 8px;
padding: 12px 0;
width: 100%;
}
.nav-category {
flex: 1;
min-width: 0;
text-align: center;
position: relative;
}
.nav-category-header {
min-height: 40px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 6px 4px;
font-size: 0.8rem;
/* 去掉边框和背景色 */
border: none;
border-radius: 0;
background: transparent;
margin: 0;
height: 100%;
line-height: 1.1;
cursor: pointer;
}
.nav-category-header span {
display: block;
text-align: center;
width: 100%;
overflow: hidden;
text-overflow: ellipsis;
white-space: normal;
word-break: break-word;
max-height: 2.2em;
}
.nav-category-header i {
font-size: 0.7rem;
margin-top: 3px;
transition: transform 0.3s;
}
.nav-category.active .nav-category-header {
/* 激活状态只改变颜色 */
color: #d4af37;
}
.nav-category.active .nav-category-header i {
transform: rotate(180deg);
}
.nav-subcategories {
position: absolute;
top: calc(100% + 5px);
left: 0;
right: 0;
opacity: 1;
visibility: visible;
transform: none;
display: none;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
border: 1px solid #e0e0e0;
border-radius: 4px;
width: 100%;
background: #ffffff;
padding: 5px 0;
z-index: 1001;
}
.nav-category.active .nav-subcategories {
display: block;
}
.nav-subcategory {
min-height: 42px;
padding: 0 12px;
border-left: none;
border-bottom: 1px solid #e0e0e0;
display: flex;
align-items: center;
justify-content: flex-start;
cursor: pointer;
transition: all 0.2s;
}
.nav-subcategory:hover {
background-color: rgba(0, 0, 0, 0.05);
}
.nav-subcategory:hover i,
.nav-subcategory:hover span {
color: #d4af37;
}
.nav-subcategory:last-child {
border-bottom: none;
}
.nav-subcategory i {
margin-right: 10px;
font-size: 0.8rem;
min-width: 16px;
text-align: center;
color: #000000;
transition: color 0.2s;
}
.nav-subcategory span {
font-size: 0.8rem;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
color: #000000;
transition: color 0.2s;
}
/* 小屏幕手机优化 */
@media (max-width: 380px) {
.header {
padding: 0 10px;
}
.home-row {
padding: 10px 0;
}
.home-link {
font-size: 0.9rem;
gap: 6px;
}
.home-link i {
font-size: 1.1rem;
}
.nav-row {
gap: 6px;
padding: 10px 0;
}
.nav-category-header {
font-size: 0.7rem;
min-height: 38px;
padding: 5px 3px;
}
.nav-subcategory {
min-height: 40px;
padding: 0 10px;
}
.nav-subcategory i {
margin-right: 8px;
font-size: 0.7rem;
}
.nav-subcategory span {
font-size: 0.7rem;
}
}
/* 大屏幕手机优化 */
@media (min-width: 481px) and (max-width: 768px) {
.nav-category-header {
font-size: 0.85rem;
}
.nav-subcategory span {
font-size: 0.85rem;
}
}
/* 桌面端样式 */
@media (min-width: 769px) {
.header {
padding: 0 20px;
max-width: 1200px;
margin: 0 auto;
}
.home-row {
padding: 15px 0;
}
.home-link {
font-size: 1.1rem;
gap: 10px;
}
.home-link i {
font-size: 1.3rem;
}
.nav-row {
padding: 15px 0;
gap: 15px;
}
.nav-category-header {
min-height: 45px;
font-size: 0.9rem;
padding: 8px 5px;
}
.nav-category-header i {
font-size: 0.8rem;
}
/* 桌面端鼠标悬停效果 */
.nav-category:hover .nav-category-header {
color: #d4af37;
}
.nav-category:hover .nav-subcategories {
display: block;
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.nav-subcategories {
position: absolute;
top: 100%;
left: 0;
background: #ffffff;
min-width: 200px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
border-radius: 0 0 8px 8px;
opacity: 0;
visibility: hidden;
transform: translateY(-10px);
transition: all 0.3s ease;
border: 1px solid #e0e0e0;
border-top: none;
padding: 5px 0;
z-index: 1000;
display: block;
}
/* 桌面端不需要active类 */
.nav-category.active .nav-category-header {
color: #000000;
}
.nav-category.active .nav-category-header i {
transform: none;
}
.nav-category.active .nav-subcategories {
display: none;
}
}
HOME
Women’s Bags
Louis Vuitton
Chanel
Dior
Hermès
Gucci
Yves Saint Laurent
Celine
Balenciaga
Bottega Veneta
Goyard
Fendi
Miu Miu
Men’s Bags
Louis Vuitton
Dior
Gucci
Balenciaga
Bottega Veneta
Goyard
Wallets & Clutches
Louis Vuitton
Chanel
Dior
Hermès
Gucci
Yves Saint Laurent
Celine
Bottega Veneta
Goyard
Miu Miu
Travel Bags
Louis Vuitton
Dior
Gucci
Bottega Veneta
Goyard
CHANEL 25BAG
This section will display the content you create using the Content Designer on the Edit Product page.
Use this area to add detailed information about your product, such as features, specifications, and usage instructions.
In the template preview, you can see how the product's content will appear to customers.
Note: If you haven't added any content in the Content Designer, this area will remain empty. This text is for demonstration purposes only.

John Doe@username
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.

John Doe@username
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.

John Doe@username
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar dapibus leo.
显示 1-16 个结果(共 2707 个结果)
-
促销中

CHANEL 24K FLAP BAG
$299.00 选择选项 本产品有多种变体。 可在产品页面上选择这些选项 -
促销中

Chanel 25A suede color-blocked hobo bag
原价为:$399.00。$275.00当前价格为:$275.00。Save: 31.1%
加入购物车 -
促销中

CHANEL 25BAG
$299.00 选择选项 本产品有多种变体。 可在产品页面上选择这些选项 -
促销中

Chanel 26C Tote
价格范围:$319.00 至 $329.00 选择选项 本产品有多种变体。 可在产品页面上选择这些选项 -
促销中

Denim Shoulder Bag
原价为:$310.00。$119.00当前价格为:$119.00。Save: 61.6%
加入购物车 -
促销中

FENDI Peekaboo Bag
$299.00 选择选项 本产品有多种变体。 可在产品页面上选择这些选项 -
促销中

Goyard new baguette bag Bonbonniere Goya retro baguette
$319.00 选择选项 本产品有多种变体。 可在产品页面上选择这些选项 -
促销中

LOUIS VUITTON NANO BOULOGNE Handbag
原价为:$399.00。$369.00当前价格为:$369.00。Save: 7.5%
加入购物车 -
促销中

LV All In BB Flask Bucket Bag
原价为:$459.00。$349.00当前价格为:$349.00。Save: 24%
加入购物车 -
促销中

LV Cannes Bag
原价为:$399.00。$349.00当前价格为:$349.00。Save: 12.5%
加入购物车 -
促销中

LV Carry All Bag
原价为:$399.00。$359.00当前价格为:$359.00。Save: 10%
加入购物车 -
促销中

LV Carry All Dark Bag
$329.00 选择选项 本产品有多种变体。 可在产品页面上选择这些选项 -
促销中

LV Neverfull double-sided tote bag
$289.00 选择选项 本产品有多种变体。 可在产品页面上选择这些选项 -

Replica Balenciaga Le City Black Diamond
$295.00 加入购物车 -

Replica Balenciaga Le City Denim
$295.00 加入购物车 -

Replica Balenciaga Le City Pink
$295.00 加入购物车