修改个人中心购物车页面样式

This commit is contained in:
赵毅 2025-11-13 16:55:39 +08:00
parent c489353359
commit beb06721c5

View File

@ -268,7 +268,7 @@
} }
.tab-item { .tab-item {
font-size: 32rpx; font-size: 30rpx;
color: #666666; color: #666666;
padding: 10rpx 20rpx; padding: 10rpx 20rpx;
border-radius: 20rpx; border-radius: 20rpx;
@ -276,7 +276,19 @@
} }
.tab-item.active { .tab-item.active {
color: #FF370B; font-size: 30rpx;
font-weight: bold; font-weight: 700;
background-color: rgba(255, 55, 11, 0.1); position: relative;
}
.tab-item.active::after {
content: '';
background: url(https://wechat-img-file.oss-cn-beijing.aliyuncs.com/property-img-file/com_active.png) no-repeat;
background-size: 100% 100%;
width: 52rpx;
height: 22rpx;
position: absolute;
left: 50%;
bottom: -16rpx;
transform: translateX(-50%);
} }