63 lines
996 B
CSS
63 lines
996 B
CSS
.antd-lunar-calendar-wrapper {
|
|
background: white;
|
|
border-radius: 12px;
|
|
padding: 16px;
|
|
}
|
|
|
|
.lunar-calendar-cell {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100%;
|
|
padding: 4px;
|
|
}
|
|
|
|
.solar-date {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
color: #1f2937;
|
|
margin-bottom: 2px;
|
|
}
|
|
|
|
.lunar-info {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
}
|
|
|
|
.lunar-date {
|
|
font-size: 11px;
|
|
color: #dc2626;
|
|
font-family: serif;
|
|
}
|
|
|
|
.lunar-leap-badge {
|
|
font-size: 10px;
|
|
padding: 0 4px;
|
|
background: #fef3c7;
|
|
color: #d97706;
|
|
border-radius: 4px;
|
|
border: 1px solid #fbbf24;
|
|
}
|
|
|
|
/* 今天的样式 */
|
|
.ant-picker-calendar-date-today .solar-date {
|
|
color: #1677ff;
|
|
}
|
|
|
|
/* 选中的样式 */
|
|
.ant-picker-cell-selected .lunar-calendar-cell {
|
|
background: #e6f4ff;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
/* 其他月份的日期 */
|
|
.ant-picker-cell-disabled .solar-date {
|
|
color: #d1d5db;
|
|
}
|
|
|
|
.ant-picker-cell-disabled .lunar-date {
|
|
color: #d1d5db;
|
|
}
|