Files
YGChatCS/pages/goods/components/GoodInfo/styles/index.scss
2025-08-04 21:31:11 +08:00

88 lines
1.5 KiB
SCSS

.good-info {
background: #fff;
// 标题区域
.title-section {
display: flex;
align-items: center;
margin-bottom: 12px;
.title {
font-size: 16px;
color: #333;
font-weight: 600;
line-height: 1.4;
flex: 0 280px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.tag-wrapper {
display: flex;
align-items: center;
.time-tag {
color: #f55726;
padding: 3px 6px;
border-radius: 6px;
font-size: 9px;
border: 1px solid #f55726;
}
}
.calender-icon {
margin-left: auto;
}
}
// 地址区域
.address-section {
padding: 12px 0;
border-top: 1px solid #f0f0f0;
border-bottom: 1px solid #f0f0f0;
.address-item {
display: flex;
align-items: center;
gap: 6px;
.address-text {
flex: 1;
font-size: 14px;
color: #333;
line-height: 1.4;
}
}
}
// 设施信息区域
.facilities-section {
margin-top: 12px;
.facilities-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 8px;
.facility-item {
display: flex;
align-items: center;
gap: 4px;
padding: 8px;
background: #fafafa;
border-radius: 6px;
.facility-text {
font-size: 12px;
color: #333;
line-height: 1;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
}
}
}