|
|
@ -2089,3 +2089,165 @@ video.product-media { |
|
|
font-weight: bold; |
|
|
font-weight: bold; |
|
|
text-shadow: 0 1rpx 2rpx rgba(255, 255, 255, 0.8); |
|
|
text-shadow: 0 1rpx 2rpx rgba(255, 255, 255, 0.8); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/* 高级筛选底部弹窗样式 */ |
|
|
|
|
|
.advanced-filter-overlay { |
|
|
|
|
|
position: fixed; |
|
|
|
|
|
top: 0; |
|
|
|
|
|
left: 0; |
|
|
|
|
|
right: 0; |
|
|
|
|
|
bottom: 0; |
|
|
|
|
|
background-color: rgba(0, 0, 0, 0.5); |
|
|
|
|
|
z-index: 9999; |
|
|
|
|
|
animation: fadeIn 0.3s ease; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.advanced-filter-container { |
|
|
|
|
|
position: fixed; |
|
|
|
|
|
bottom: 0; |
|
|
|
|
|
left: 0; |
|
|
|
|
|
right: 0; |
|
|
|
|
|
width: 100%; |
|
|
|
|
|
height: 85%; |
|
|
|
|
|
max-height: 900rpx; |
|
|
|
|
|
background-color: white; |
|
|
|
|
|
box-shadow: 0 -4rpx 20rpx rgba(0, 0, 0, 0.2); |
|
|
|
|
|
border-radius: 32rpx 32rpx 0 0; |
|
|
|
|
|
animation: slideUp 0.3s ease; |
|
|
|
|
|
display: flex; |
|
|
|
|
|
flex-direction: column; |
|
|
|
|
|
overflow: hidden; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.advanced-filter-header { |
|
|
|
|
|
display: flex; |
|
|
|
|
|
justify-content: space-between; |
|
|
|
|
|
align-items: center; |
|
|
|
|
|
padding: 30rpx; |
|
|
|
|
|
border-bottom: 2rpx solid #f0f0f0; |
|
|
|
|
|
background-color: white; |
|
|
|
|
|
position: sticky; |
|
|
|
|
|
top: 0; |
|
|
|
|
|
z-index: 10; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.advanced-filter-title { |
|
|
|
|
|
font-size: 36rpx; |
|
|
|
|
|
font-weight: bold; |
|
|
|
|
|
color: #333; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.advanced-filter-actions { |
|
|
|
|
|
display: flex; |
|
|
|
|
|
gap: 20rpx; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.reset-btn { |
|
|
|
|
|
font-size: 28rpx; |
|
|
|
|
|
color: #666; |
|
|
|
|
|
padding: 12rpx 24rpx; |
|
|
|
|
|
border-radius: 40rpx; |
|
|
|
|
|
border: 2rpx solid #e0e0e0; |
|
|
|
|
|
transition: all 0.3s ease; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.reset-btn:active { |
|
|
|
|
|
background-color: #f5f5f5; |
|
|
|
|
|
color: #333; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.confirm-btn { |
|
|
|
|
|
font-size: 28rpx; |
|
|
|
|
|
color: white; |
|
|
|
|
|
padding: 12rpx 24rpx; |
|
|
|
|
|
border-radius: 40rpx; |
|
|
|
|
|
background-color: #1677ff; |
|
|
|
|
|
box-shadow: 0 4rpx 12rpx rgba(22, 119, 255, 0.3); |
|
|
|
|
|
transition: all 0.3s ease; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.confirm-btn:active { |
|
|
|
|
|
background-color: #4096ff; |
|
|
|
|
|
box-shadow: 0 2rpx 8rpx rgba(22, 119, 255, 0.4); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.advanced-filter-content { |
|
|
|
|
|
display: flex; |
|
|
|
|
|
flex: 1; |
|
|
|
|
|
overflow: hidden; |
|
|
|
|
|
height: calc(100% - 120rpx); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.filter-category-list { |
|
|
|
|
|
width: 30%; |
|
|
|
|
|
background-color: #f5f5f5; |
|
|
|
|
|
overflow-y: auto; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.filter-category-item { |
|
|
|
|
|
padding: 30rpx 20rpx; |
|
|
|
|
|
text-align: center; |
|
|
|
|
|
font-size: 28rpx; |
|
|
|
|
|
color: #333; |
|
|
|
|
|
border-bottom: 1rpx solid #e0e0e0; |
|
|
|
|
|
transition: all 0.3s ease; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.filter-category-item.active { |
|
|
|
|
|
background-color: white; |
|
|
|
|
|
color: #1677ff; |
|
|
|
|
|
font-weight: bold; |
|
|
|
|
|
border-right: 4rpx solid #1677ff; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.filter-options-list { |
|
|
|
|
|
width: 70%; |
|
|
|
|
|
background-color: white; |
|
|
|
|
|
overflow-y: auto; |
|
|
|
|
|
height: 100%; |
|
|
|
|
|
max-height: 600rpx; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.filter-options { |
|
|
|
|
|
padding: 20rpx; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.filter-option-item { |
|
|
|
|
|
display: block; |
|
|
|
|
|
padding: 20rpx 24rpx; |
|
|
|
|
|
margin: 12rpx 0; |
|
|
|
|
|
border-radius: 16rpx; |
|
|
|
|
|
border: 2rpx solid #e0e0e0; |
|
|
|
|
|
font-size: 26rpx; |
|
|
|
|
|
color: #666; |
|
|
|
|
|
background-color: white; |
|
|
|
|
|
transition: all 0.3s ease; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.filter-option-item.active { |
|
|
|
|
|
background-color: #1677ff; |
|
|
|
|
|
color: white; |
|
|
|
|
|
border-color: #1677ff; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.filter-option-item:active { |
|
|
|
|
|
border-color: #1677ff; |
|
|
|
|
|
color: #1677ff; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.specification-options { |
|
|
|
|
|
max-height: 600rpx; |
|
|
|
|
|
overflow-y: auto; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/* 底部滑入动画 */ |
|
|
|
|
|
@keyframes slideUp { |
|
|
|
|
|
from { transform: translateY(100%); } |
|
|
|
|
|
to { transform: translateY(0); } |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/* 淡入动画 */ |
|
|
|
|
|
@keyframes fadeIn { |
|
|
|
|
|
from { opacity: 0; } |
|
|
|
|
|
to { opacity: 1; } |
|
|
|
|
|
} |
|
|
|