findme-miniprogram-frontend/subpackages/map-extras/locationList/locationList.wxss
2025-12-27 17:16:03 +08:00

189 lines
No EOL
2.9 KiB
Text

.location-list-container {
height: 100vh;
display: flex;
flex-direction: column;
background-color: #121212;
color: #ffffff;
}
/* 顶部标题 */
.page-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 30rpx;
background-color: #121212;
border-bottom: 1rpx solid #333;
}
.page-title {
font-size: 34rpx;
font-weight: 600;
color: #ffffff;
}
.header-actions {
display: flex;
gap: 30rpx;
}
.header-icon {
width: 40rpx;
height: 40rpx;
filter: invert(1) brightness(100%);
}
/* 搜索框 */
.search-container {
padding: 20rpx 30rpx;
background-color: #121212;
}
.search-button {
display: flex;
align-items: center;
justify-content: space-between;
background-color: #2c2c2c;
border: 2rpx solid #ffffff;
border-radius: 44rpx;
padding: 0 30rpx;
height: 88rpx;
width: 100%;
}
.search-button:active {
background-color: #3c3c3c;
}
.search-text {
color: #ffffff;
font-size: 28rpx;
}
.search-icon {
width: 32rpx;
height: 32rpx;
filter: invert(0.3) brightness(100%);
}
.search-box input {
flex: 1;
color: #ffffff;
font-size: 28rpx;
background-color: transparent;
}
.search-placeholder {
color: #888;
font-size: 28rpx;
}
/* 不显示地点选项 */
.hide-location-option {
padding: 24rpx 30rpx;
background-color: #1a1a1a;
border-bottom: 1rpx solid #333;
display: flex;
align-items: center;
justify-content: space-between;
}
.hide-location-option:active {
background-color: #2c2c2c;
}
.poi-name {
font-size: 28rpx;
color: #ffffff;
}
/* 地点列表样式 */
.poi-list {
flex: 1;
overflow-y: auto;
background-color: #121212;
}
.poi-item {
display: flex;
align-items: center;
padding: 30rpx;
border-bottom: 1rpx solid #333;
background-color: #1a1a1a;
margin-bottom: 10rpx;
}
.poi-info {
flex: 1;
}
.poi-name {
font-size: 32rpx;
font-weight: 600;
color: #ffffff;
margin-bottom: 8rpx;
display: flex;
align-items: center;
justify-content: space-between;
}
/* 选中图标样式 */
.selected-icon {
width: 40rpx;
height: 40rpx;
visibility: visible;
}
.poi-address {
font-size: 24rpx;
color: #ffffff;
opacity: 0.8;
}
.poi-item:active {
background-color: #2c2c2c;
}
.poi-list {
height: calc(100vh - 400rpx);
overflow-y: auto;
-webkit-overflow-scrolling: touch;
scroll-behavior: smooth;
}
.load-more {
padding: 20rpx;
text-align: center;
color: #999;
font-size: 28rpx;
margin-top: 10rpx;
margin-bottom: 10rpx;
}
.no-more {
padding: 20rpx;
text-align: center;
color: #999;
font-size: 28rpx;
margin-top: 10rpx;
margin-bottom: 10rpx;
}
.load-more-btn {
margin: 20rpx;
background-color: #f8f8f8;
color: #333;
border: 1rpx solid #ddd;
font-size: 28rpx;
line-height: 1.5;
padding: 20rpx 0;
}
.load-more-btn:active {
background-color: #eee;
}
/* 页面背景 */
page {
background-color: #f5f5f5;
}