审查视图

components/timepicker/timepicker.wxss 1.1 KB
倪静楠 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/* component/time-picker/index.wxss */
 
.time-title {
  font-family: PingFangSC;
  font-weight: 600;
  color: rgba(50, 50, 50, 1);
  font-size: 32rpx;
  margin: 40rpx 20rpx 20rpx 20rpx;
}
 
.select-date {
 max-height: 400rpx;
 height: 672rpx;
}
 
.select-day {
  float: left;
  width: 300rpx;
  height: 392rpx;
倪静楠 authored
20
  background: rgba(239, 239, 239, 1);
倪静楠 authored
21 22 23 24 25 26 27 28 29
}
 
.day {
  font-size: 30rpx;
  height: 100rpx;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(239, 239, 239, 1);
倪静楠 authored
30
  /* background-color: #fff; */
倪静楠 authored
31 32 33
}
 
.day.active {
倪静楠 authored
34 35
  /* background: rgba(239, 239, 239, 1); */
  background: #fff;
倪静楠 authored
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
}
 
.select-time {
  height: 100%;
  margin-left: 330rpx;
  background-color: #fff;
  overflow-y: auto;
}
 
.select-time-item {
  padding: 30rpx 36rpx;
  width: 314rpx;
  height: 42rpx;
  border-radius: 18rpx;
  border: 2px solid rgba(151, 151, 151, 1);
  font-size: 30rpx;
  margin-bottom: 30rpx;
}
 
.select-time-item.select {
  color: #ff4a00;
}
 
/* .time {
  
  line-height: 80rpx;
  border-bottom: 2px solid #eee;
} */
 
i {
  float: right;
  font-size: 30rpx;
  color: #ff4a00;
  margin-top: 26rpx;
}