123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248 |
- @import './theme/iconfont.wxss';
- @import './theme/theme-default.wxss';
- @import './theme/theme-elegant.wxss';
- .b {
- display: flex;
- }
- .lr {
- flex-direction: row;
- }
- .tb {
- flex-direction: column;
- }
- .pc {
- justify-content: center;
- }
- .ac {
- align-items: center;
- }
- .cc {
- align-items: center;
- justify-content: center;
- }
- .wrap {
- flex-wrap: wrap;
- }
- .flex {
- flex-grow: 1;
- }
- .bg {
- background-image: linear-gradient(to bottom, #faefe7, #ffcbd7);
- overflow: hidden;
- }
- .white-color {
- color: #fff;
- }
- .fs24 {
- font-size: 24rpx;
- }
- .fs28 {
- font-size: 31rpx;
- }
- .fs32 {
- font-size: 32rpx;
- }
- .fs36 {
- font-size: 36rpx;
- }
- .calendar {
- width: 100%;
- box-sizing: border-box;
- }
- /* 日历操作栏 */
- .handle {
- height: 80rpx;
- }
- .prev-handle,
- .next-handle {
- padding: 20rpx;
- color:#333;
- font-size: 32rpx;
- }
- .date-in-handle {
- height: 80rpx;
- color:#333;
- font-size: 32rpx;
- }
- /* 星期栏 */
- .weeks {
- height: 50rpx;
- line-height: 50rpx;
- opacity: 0.5;
- }
- .week {
- text-align: center;
- }
- .grid,
- .week {
- width: 14.286014285714286%;
- color:#333
- }
- .date-wrap {
- width: 100%;
- height: 125rpx;
- position: relative;
- left: 0;
- top: 0;
- }
- .date {
- color:#333;
- /* position: relative; */
- left: 0;
- top: 0;
- width: 55rpx;
- height: 55rpx;
- text-align: center;
- line-height: 55rpx;
- font-size: 32rpx;
- font-weight: 500;
- border-radius: 50%;
- transition: all 0.3s;
- animation-name: choosed;
- animation-duration: 0.5s;
- animation-timing-function: linear;
- animation-iteration-count: 1;
- }
- .date-area-mode {
- width: 100%;
- border-radius: 0;
- }
- .date-desc {
- /* width: 150%;
- height: 32rpx; */
- font-size: 20rpx;
- line-height: 26rpx;
- position: absolute;
- left: 50%;
- transform: translateX(-50%);
- overflow: hidden;
- word-break: break-all;
- text-overflow: ellipsis;
- white-space: nowrap;
- -webkit-line-clamp: 1;
- text-align: center;
- }
- .date-book{
- font-size: 22rpx;
- line-height: 22rpx;
- border: 1rpx solid #09afff;
- border-radius: 10rpx;
- padding: 1rpx 10rpx;
- /* background-color: #09afff;
- margin: 1rpx;*/
- color: #333;
- }
- .book-cycle{
- font-size: 22rpx;
- line-height: 22rpx;
- border-radius: 10rpx;
- padding: 1rpx 10rpx;
- border: 1rpx solid #09afff;
- color: white;
- background-color: #63beea;
- /* margin: 1rpx; */
- }
- @keyframes choosed {
- from {
- transform: scale(1);
- }
- 50% {
- transform: scale(0.9);
- }
- to {
- transform: scale(1);
- }
- }
- /* 日期圆圈标记 */
- .todo-circle {
- border-width: 1rpx;
- border-style: solid;
- box-sizing: border-box;
- }
- /* 待办点标记相关样式 */
- .todo-dot {
- width: 10rpx;
- height: 10rpx;
- border-radius: 50%;
- position: absolute;
- left: 50%;
- transform: translateX(-50%);
- }
- .todo-dot-top {
- top: 3rpx;
- }
- .todo-dot.todo-dot-top-always {
- top: -8rpx;
- }
- .todo-dot.todo-dot-bottom {
- bottom: 0;
- }
- .todo-dot.todo-dot-bottom-always {
- bottom: -10rpx;
- }
- /* 日期描述文字(待办文字/农历)相关样式 */
- .date-desc.date-desc-top {
- top: -6rpx;
- }
- .date-desc.date-desc-top-always {
- top: -20rpx;
- }
- .date-desc.date-desc-bottom {
- /* bottom: -14rpx;
- bottom: -34rpx;*/
- top: 81rpx;
- display: flex;
- flex-direction: column;
- }
- .todo-circle .date-desc.date-desc-bottom {
- bottom: -30rpx;
- }
- .date-desc.date-desc-bottom-always {
- bottom: unset;
- }
-
|