86 lines
1.4 KiB
SCSS
86 lines
1.4 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: 6px 0;
|
|
|
|
.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: flex;
|
|
flex-wrap: wrap;
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|