|
|
|
@ -2309,8 +2309,116 @@ video.product-media { |
|
|
|
to { transform: translateY(0); } |
|
|
|
} |
|
|
|
|
|
|
|
/* 淡入动画 */ |
|
|
|
/* 娣″叆鍔ㄧ敾 */ |
|
|
|
@keyframes fadeIn { |
|
|
|
from { opacity: 0; } |
|
|
|
to { opacity: 1; } |
|
|
|
} |
|
|
|
|
|
|
|
/* 添加桌面引导框样式 */ |
|
|
|
.add-to-home-modal { |
|
|
|
position: fixed; |
|
|
|
top: 0; |
|
|
|
left: 0; |
|
|
|
width: 100%; |
|
|
|
height: 100%; |
|
|
|
background-color: rgba(0, 0, 0, 0.6); |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
justify-content: center; |
|
|
|
z-index: 999; |
|
|
|
} |
|
|
|
|
|
|
|
.modal-content { |
|
|
|
background-color: #ffffff; |
|
|
|
border-radius: 12rpx; |
|
|
|
padding: 40rpx; |
|
|
|
width: 80%; |
|
|
|
max-width: 500rpx; |
|
|
|
box-shadow: 0 8rpx 24rpx rgba(0, 0, 0, 0.2); |
|
|
|
} |
|
|
|
|
|
|
|
.modal-header { |
|
|
|
display: flex; |
|
|
|
justify-content: space-between; |
|
|
|
align-items: center; |
|
|
|
margin-bottom: 30rpx; |
|
|
|
padding-bottom: 20rpx; |
|
|
|
border-bottom: 1rpx solid #f0f0f0; |
|
|
|
} |
|
|
|
|
|
|
|
.modal-title { |
|
|
|
font-size: 32rpx; |
|
|
|
font-weight: 700; |
|
|
|
color: #262626; |
|
|
|
} |
|
|
|
|
|
|
|
.modal-close { |
|
|
|
font-size: 40rpx; |
|
|
|
color: #999; |
|
|
|
cursor: pointer; |
|
|
|
line-height: 1; |
|
|
|
} |
|
|
|
|
|
|
|
.modal-body { |
|
|
|
margin-bottom: 40rpx; |
|
|
|
} |
|
|
|
|
|
|
|
.modal-text { |
|
|
|
font-size: 28rpx; |
|
|
|
color: #666; |
|
|
|
line-height: 1.6; |
|
|
|
margin-bottom: 30rpx; |
|
|
|
display: block; |
|
|
|
} |
|
|
|
|
|
|
|
.step { |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
margin-bottom: 24rpx; |
|
|
|
} |
|
|
|
|
|
|
|
.step-number { |
|
|
|
width: 44rpx; |
|
|
|
height: 44rpx; |
|
|
|
border-radius: 50%; |
|
|
|
background-color: #1890ff; |
|
|
|
color: #ffffff; |
|
|
|
font-size: 24rpx; |
|
|
|
font-weight: 700; |
|
|
|
display: flex; |
|
|
|
align-items: center; |
|
|
|
justify-content: center; |
|
|
|
margin-right: 16rpx; |
|
|
|
flex-shrink: 0; |
|
|
|
} |
|
|
|
|
|
|
|
.step-text { |
|
|
|
font-size: 28rpx; |
|
|
|
color: #666; |
|
|
|
line-height: 1.5; |
|
|
|
} |
|
|
|
|
|
|
|
.modal-footer { |
|
|
|
display: flex; |
|
|
|
justify-content: center; |
|
|
|
} |
|
|
|
|
|
|
|
.modal-button { |
|
|
|
background-color: #1890ff; |
|
|
|
color: #ffffff; |
|
|
|
border-radius: 8rpx; |
|
|
|
padding: 0 48rpx; |
|
|
|
height: 80rpx; |
|
|
|
line-height: 80rpx; |
|
|
|
font-size: 28rpx; |
|
|
|
font-weight: 700; |
|
|
|
border: none; |
|
|
|
outline: none; |
|
|
|
cursor: pointer; |
|
|
|
transition: background-color 0.3s; |
|
|
|
} |
|
|
|
|
|
|
|
.modal-button:active { |
|
|
|
background-color: #40a9ff; |
|
|
|
} |
|
|
|
|