u-calendar.acss
4.0 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
@charset "UTF-8";
/**
* 下方引入的为uView UI的集成样式文件,为scss预处理器,其中包含了一些"u-"开头的自定义变量
* 使用的时候,请将下面的一行复制到您的uniapp项目根目录的uni.scss中即可
* uView自定义的css类名和scss变量,均以"u-"开头,不会造成冲突,请放心使用
*/
page.data-v-5b667d40 {
width: 100%;
height: 100%;
}
.divid_line_horizen.data-v-5b667d40 {
width: 100%;
height: 2rpx;
background-color: #f2f2f2;
align-self: center;
margin-top: 1rpx;
}
.input_warp .u-input__input.data-v-5b667d40 {
font-size: 34rpx;
}
.button_warp .u-button .u-size-default.data-v-5b667d40 {
font-size: 30rpx;
height: 96rpx;
line-height: 80rpx;
}
.button_warp .u-button .u-btn--primary--disabled.data-v-5b667d40 {
color: rgba(0, 0, 0, 0.45) !important;
border-color: rgba(0, 0, 0, 0.06) !important;
background-color: rgba(0, 0, 0, 0.06) !important;
}
.u-calendar.data-v-5b667d40 {
color: #606266;
}
.u-calendar__header.data-v-5b667d40 {
width: 100%;
box-sizing: border-box;
font-size: 30rpx;
background-color: #fff;
color: #303133;
}
.u-calendar__header__text.data-v-5b667d40 {
margin-top: 30rpx;
padding: 0 60rpx;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.u-calendar__action.data-v-5b667d40 {
padding: 40rpx 0 40rpx 0;
}
.u-calendar__action__icon.data-v-5b667d40 {
margin: 0 16rpx;
}
.u-calendar__action__text.data-v-5b667d40 {
padding: 0 16rpx;
color: #303133;
font-size: 32rpx;
line-height: 32rpx;
font-weight: bold;
}
.u-calendar__week-day.data-v-5b667d40 {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
padding: 6px 0;
overflow: hidden;
}
.u-calendar__week-day__text.data-v-5b667d40 {
flex: 1;
text-align: center;
}
.u-calendar__content.data-v-5b667d40 {
width: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
padding: 6px 0;
box-sizing: border-box;
background-color: #fff;
position: relative;
}
.u-calendar__content--end-date.data-v-5b667d40 {
border-top-right-radius: 8rpx;
border-bottom-right-radius: 8rpx;
}
.u-calendar__content--start-date.data-v-5b667d40 {
border-top-left-radius: 8rpx;
border-bottom-left-radius: 8rpx;
}
.u-calendar__content__item.data-v-5b667d40 {
width: 14.2857%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
padding: 6px 0;
overflow: hidden;
position: relative;
z-index: 2;
}
.u-calendar__content__item__inner.data-v-5b667d40 {
height: 84rpx;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
flex-direction: column;
font-size: 32rpx;
position: relative;
border-radius: 50%;
}
.u-calendar__content__item__inner__desc.data-v-5b667d40 {
width: 100%;
font-size: 24rpx;
line-height: 24rpx;
-webkit-transform: scale(0.75);
transform: scale(0.75);
-webkit-transform-origin: center center;
transform-origin: center center;
position: absolute;
left: 0;
text-align: center;
bottom: 2rpx;
}
.u-calendar__content__item__tips.data-v-5b667d40 {
width: 100%;
font-size: 24rpx;
line-height: 24rpx;
position: absolute;
left: 0;
-webkit-transform: scale(0.8);
transform: scale(0.8);
-webkit-transform-origin: center center;
transform-origin: center center;
text-align: center;
bottom: 8rpx;
z-index: 2;
}
.u-calendar__content__bg-month.data-v-5b667d40 {
position: absolute;
font-size: 130px;
line-height: 130px;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
color: #e4e7ed;
z-index: 1;
}
.u-calendar__bottom.data-v-5b667d40 {
width: 100%;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
flex-direction: column;
background-color: #fff;
padding: 0 40rpx 30rpx;
box-sizing: border-box;
font-size: 24rpx;
color: #909399;
}
.u-calendar__bottom__choose.data-v-5b667d40 {
height: 50rpx;
}
.u-calendar__bottom__btn.data-v-5b667d40 {
width: 100%;
}