You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.1 KiB
66 lines
1.1 KiB
.coupon-list-container {
|
|
padding: 0 16px;
|
|
background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.coupon-list-title {
|
|
font-size: 32px;
|
|
font-weight: 600;
|
|
color: #1f2937;
|
|
margin-bottom: 24px;
|
|
padding-top: 16px;
|
|
}
|
|
|
|
.coupon-list-empty {
|
|
text-align: center;
|
|
padding: 80px 20px;
|
|
color: #9ca3af;
|
|
font-size: 28px;
|
|
}
|
|
|
|
.coupon-list-content {
|
|
padding-bottom: 20px;
|
|
}
|
|
|
|
.coupon-list-item {
|
|
margin-bottom: 20px;
|
|
transition: all 0.3s ease;
|
|
|
|
&:hover {
|
|
transform: translateY(-2px);
|
|
}
|
|
|
|
&:active {
|
|
transform: translateY(0);
|
|
}
|
|
|
|
&:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
|
|
/* 水平滚动布局样式 */
|
|
.coupon-horizontal-container {
|
|
.coupon-horizontal-title {
|
|
font-size: 32px;
|
|
font-weight: 600;
|
|
color: #1f2937;
|
|
margin-bottom: 24px;
|
|
padding-left: 16px;
|
|
}
|
|
|
|
.coupon-horizontal-scroll {
|
|
padding: 0 16px;
|
|
|
|
.coupon-horizontal-item {
|
|
flex-shrink: 0;
|
|
width: 240px;
|
|
margin-right: 16px;
|
|
|
|
&:last-child {
|
|
margin-right: 16px; // 保持右边距
|
|
}
|
|
}
|
|
}
|
|
}
|