123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- /* pages/picker/picker.wxss */
- @keyframes fade-in {
- 0% {
- top: 1000rpx;
- opacity: 0;
- }
- /*初始状态 透明度为0*/
- 40% {
- top: 1000rpx;
- opacity: 0;
- }
- /*过渡状态 透明度为0*/
- 100% {
- margin-top: 0rpx;
- opacity: 1;
- }
- /*结束状态 透明度为1*/
- }
- .date-picker {
- position: fixed;
- top: 0;
- left: 0;
- margin: 0;
- padding: 0;
- width: 100%;
- height: 100%;
- z-index: 999;
- animation: fade-in 0.5s ease 1 forwards;
- }
- .date-picker-mask {
- position: fixed;
- top: 0;
- left: 0;
- bottom: 590rpx;
- background-color: #353535;
- opacity: 0.4;
- width: 100%;
- z-index: 1000;
- }
- .date-picker-content {
- position: fixed;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 590rpx;
- border-top-left-radius: 16rpx;
- border-top-right-radius: 16rpx;
- background-color: #fff;
- z-index: 9999;
- overflow: hidden;
- }
- .date-picker-date-content {
- position: relative;
- display: flex;
- height: 160rpx;
- width: 750rpx;
- }
- .date-picker-date-content-image {
- position: absolute;
- top: 0rpx;
- left: 0rpx;
- width: 100%;
- height: 100%;
- }
- .date-picker-date-content-bg-left {
- position: absolute;
- top: 0rpx;
- left: 0rpx;
- width: 50%;
- height: 100%;
- }
- .date-picker-date-content-bg-right {
- position: absolute;
- top: 0rpx;
- right: 0rpx;
- width: 50%;
- height: 100%;
- }
- .date-picker-date-content-title {
- position: relative;
- color: #333;
- font-size: 26rpx;
- margin-left: 70rpx;
- margin-top: 40rpx;
- }
- .date-picker-date-content-time {
- position: relative;
- color: #333;
- font-size: 32rpx;
- font-weight: bold;
- margin-left: 70rpx;
- margin-top: 4rpx;
- }
- .date-picker-content-top {
- display: flex;
- flex-direction: row;
- align-items: center;
- height: 80rpx;
- justify-content: space-between;
- }
- .hover-class {
- background-color: #e6e6e6;
- }
- .date-picker-content-line {
- background-color: #d3dce6;
- height: 1rpx;
- width: 100%;
- opacity: 0.8;
- }
- .date-picker-content-cancel {
- line-height: 50rpx;
- height: 50rpx;
- color: #353535;
- padding: 10rpx 48rpx;
- flex: 1;
- font-size: 28rpx
- }
- .date-picker-content-sure {
- line-height: 50rpx;
- color: #0096FF;
- height: 50rpx;
- padding: 10rpx 48rpx;
- text-align: right;
- flex: 1;
- font-size: 28rpx
- }
- .date-picker-content-center {
- display: flex;
- flex-direction: row;
- align-items: center;
- height: 340rpx;
- overflow: hidden;
- margin-top: 6rpx;
- margin-bottom: 6rpx;
- justify-content: space-between;
- }
- .date-picker-content-item {
- width: 33.3%;
- height: 350rpx;
- text-align: center;
- }
|