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.
store_node/miniprogram/pages/secondhand/detail.wxss

164 lines
2.5 KiB

.detail-container {
min-height: 100vh;
background-color: #f7f7f7;
padding-bottom: 120rpx;
}
/* 轮播图样式 */
.goods-swiper {
width: 100%;
height: 750rpx;
}
.slide-image {
width: 100%;
height: 100%;
}
/* 商品信息样式 */
.goods-info {
background-color: #ffffff;
padding: 30rpx;
margin-bottom: 20rpx;
}
.goods-price {
font-size: 44rpx;
color: #FF5252;
font-weight: bold;
margin-bottom: 16rpx;
}
.goods-title {
font-size: 32rpx;
color: #333333;
font-weight: bold;
margin-bottom: 16rpx;
line-height: 1.5;
}
.goods-meta {
display: flex;
justify-content: space-between;
font-size: 24rpx;
color: #999999;
}
/* 商品详情样式 */
.goods-details, .seller-info {
background-color: #ffffff;
padding: 30rpx;
margin-bottom: 20rpx;
}
.section-title {
font-size: 30rpx;
color: #333333;
font-weight: bold;
margin-bottom: 20rpx;
position: relative;
padding-left: 20rpx;
}
.section-title::before {
content: '';
position: absolute;
left: 0;
top: 6rpx;
width: 6rpx;
height: 30rpx;
background-color: #3A86FF;
border-radius: 3rpx;
}
.goods-desc {
font-size: 28rpx;
color: #666666;
line-height: 1.6;
}
/* 卖家信息样式 */
.seller-profile {
display: flex;
align-items: center;
}
.seller-avatar {
width: 80rpx;
height: 80rpx;
border-radius: 50%;
margin-right: 20rpx;
}
.seller-detail {
display: flex;
flex-direction: column;
}
.seller-name {
font-size: 28rpx;
color: #333333;
margin-bottom: 6rpx;
}
.seller-meta {
font-size: 24rpx;
color: #999999;
}
/* 底部操作栏 */
.bottom-bar {
position: fixed;
bottom: 0;
left: 0;
right: 0;
height: 100rpx;
display: flex;
background-color: #ffffff;
box-shadow: 0 -2rpx 10rpx rgba(0, 0, 0, 0.05);
width: 100%;
box-sizing: border-box;
padding: 0;
}
.contact-container {
display: flex;
width: 45%; /* 分享和联系卖家占45%宽度 */
}
.contact-btn {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
font-size: 26rpx;
color: #666666;
background-color: #ffffff;
border-radius: 0;
padding: 0;
line-height: normal;
height: 100rpx;
}
.contact-btn::after {
border: none;
}
.btn-icon {
width: 36rpx;
height: 36rpx;
margin-right: 10rpx;
}
.buy-btn {
width: 55%; /* 立即购买占55%宽度 */
display: flex;
align-items: center;
justify-content: center;
font-size: 30rpx;
font-weight: bold;
color: #ffffff;
background-color: #FF5252;
height: 100rpx;
}