Replace SCSS variable usages with explicit pixel/hex values for consistent styling across all components Fix broken template syntax including missing class spaces and incorrect closing tags Migrate constant and API imports to centralized @/constants and @/api modules Add new utility classes: IdUtils, CallbackUtils, and TimerUtils Add new chat conversation API endpoints for recent conversations and message lists Add new Discovery page components (FindTabs, QuickQuestions, CardSwiper) and their styles Update app store config to use environment variables for base API and WebSocket URLs Add new selected tab icon assets
58 lines
900 B
SCSS
58 lines
900 B
SCSS
.date-picker {
|
|
background: rgba(140, 236, 255, 0.24);
|
|
padding: 8rpx 0;
|
|
border-radius: 16rpx;
|
|
margin: 12px 0 6px;
|
|
min-width: 325px;
|
|
box-shadow: 0 4rpx 8rpx rgba(0, 0, 0, 0.1); /* 阴影 */
|
|
}
|
|
|
|
.date-list {
|
|
display: flex;
|
|
}
|
|
|
|
.date-item,
|
|
.calendar-btn {
|
|
flex: 1; /* 等宽 */
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 12rpx 0;
|
|
border-radius: 16rpx;
|
|
}
|
|
|
|
.label {
|
|
font-size: 24rpx;
|
|
color: #333-grey;
|
|
}
|
|
.date {
|
|
font-size: 28rpx;
|
|
font-weight: bold;
|
|
color: #555;
|
|
}
|
|
|
|
.date-item.active {
|
|
background-color: #0ccd58;
|
|
}
|
|
.date-item.active .label,
|
|
.date-item.active .date {
|
|
color: #fff;
|
|
}
|
|
|
|
/* 日历按钮 */
|
|
.calendar-btn {
|
|
background: #fff;
|
|
border-radius: 0 16rpx 16rpx 0;
|
|
margin: -8rpx 0;
|
|
}
|
|
.calendar-img {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
.calendar-text {
|
|
font-size: 22rpx;
|
|
color: #666;
|
|
margin-top: 4rpx;
|
|
}
|