76 lines
1.5 KiB
Plaintext
76 lines
1.5 KiB
Plaintext
.dateC {
|
|
background-color: white;
|
|
box-shadow: 0 5rpx 10rpx 0 rgba(127, 127, 127, 0.1);
|
|
box-sizing: border-box;
|
|
}
|
|
.dateC .yearMonthC {
|
|
height: 70rpx;
|
|
border-radius: 35rpx;
|
|
}
|
|
.dateC .yearMonthC .btn {
|
|
padding: 0 32rpx;
|
|
}
|
|
.dateC .yearMonthC .btn .icon {
|
|
width: 13rpx;
|
|
height: auto;
|
|
}
|
|
.dateC .yearMonthC .yearMonth {
|
|
font-size: 32rpx;
|
|
font-weight: 500;
|
|
color: #070707;
|
|
text-align: center;
|
|
}
|
|
.dateC .weekList .item {
|
|
line-height: 72rpx;
|
|
font-size: 26rpx;
|
|
font-weight: 500;
|
|
color: #A7A7A7;
|
|
text-align: center;
|
|
}
|
|
.dateC .monthDateList .item .date {
|
|
background-color: #f8f8f8;
|
|
padding: 10rpx 0;
|
|
border-radius: 10rpx;
|
|
font-size: 26rpx;
|
|
font-weight: bold;
|
|
color: #2A2A2A;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
}
|
|
.dateC .monthDateList .item .date .chg {
|
|
font-size: 18rpx;
|
|
}
|
|
.dateC .monthDateList .item .date .chg.up {
|
|
color: #EC3440;
|
|
}
|
|
.dateC .monthDateList .item .date .chg.down {
|
|
color: #38A169;
|
|
}
|
|
.dateC .monthDateList .item .date.up {
|
|
background-color: #FFD6D9;
|
|
}
|
|
.dateC .monthDateList .item .date.down {
|
|
background-color: #CEF1DE;
|
|
}
|
|
.dateC .monthDateList .item .date.select.up {
|
|
background-color: #EC3440;
|
|
color: white;
|
|
}
|
|
.dateC .monthDateList .item .date.select.up .chg {
|
|
color: white;
|
|
}
|
|
.dateC .monthDateList .item .date.select.down {
|
|
background-color: #38A169;
|
|
color: white;
|
|
}
|
|
.dateC .monthDateList .item .date.select.down .chg {
|
|
color: white;
|
|
}
|
|
.dateC .monthDateList .item .date.notCurrentMonth {
|
|
background-color: #FCFCFC;
|
|
color: #999;
|
|
}
|