.gui-calendar-view {
  background: #fff;
  color: #ABABAB;
  transition: height 1s ease;
}
.gui-calendar-view .gui-calendar-view-week {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  position: relative;
  z-index: 2;
}
.gui-calendar-view .gui-calendar-view-week .week-list {
  display: flex;
}
.gui-calendar-view .gui-calendar-view-week .week-list .week {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3em;
}
.gui-calendar-view .gui-calendar-view-week .week-list .week.active {
  color: #1470CC;
}
.gui-calendar-view .gui-calendar-view-week .month-text {
  color: #ABABAB;
  text-align: center;
  font-size: 12px;
  transition: all 0.3s ease;
  height: 12px;
  line-height: 1em;
  margin-bottom: 5px;
}
.gui-calendar-view .gui-calendar-view-week .month-text.hide {
  opacity: 0;
  height: 0;
  margin-bottom: 0;
}
.gui-calendar-view .gui-calendar-view-days {
  height: 246px;
  transition: height 0.3s ease;
  overflow: hidden;
}
.gui-calendar-view .gui-calendar-view-days.take-up {
  height: 40px;
}
.gui-calendar-view .gui-calendar-view-days .gui-calendar-view-days-inner {
  transition: all 0.3s ease;
}
.gui-calendar-view .gui-calendar-view-days .days {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
}
.gui-calendar-view .gui-calendar-view-days .days .day {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.gui-calendar-view .gui-calendar-view-days .days .day .text {
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px 0;
  position: relative;
}
.gui-calendar-view .gui-calendar-view-days .days .day .text.dot::after {
  position: absolute;
  bottom: 2px;
  border-radius: 50%;
  content: "";
  width: 3px;
  height: 3px;
  background: #1470CC;
  left: 50%;
  margin-left: -1.5px;
}
.gui-calendar-view .gui-calendar-view-days .days .day .text.selected {
  font-weight: 700;
  border-radius: 50%;
  color: #1470CC;
}
.gui-calendar-view .gui-calendar-view-days .days .day .text.selected::after {
  background: #1470CC;
}
.gui-calendar-view .gui-calendar-view-days .days .day .text.disabled {
  opacity: 0.3;
}
.gui-calendar-view .gui-calendar-view-days .days:last-child {
  border-bottom: 0;
}
.gui-calendar-view .more {
  text-align: center;
  height: 16px;
  background: #fff;
  margin-top: -4px;
  position: relative;
  z-index: 2;
}
.gui-calendar-view .more .more-icon {
  content: "";
  display: inline-block;
  background: url(https://gw.alicdn.com/tfs/TB1rOtUBb2pK1RjSZFsXXaNlXXa-64-64.png);
  width: 32px;
  height: 16px;
  background-size: 32px 16px;
  opacity: 0.3;
  transform-origin: center center;
  transform: rotateZ(180deg);
}
.gui-calendar-view .more.take-up .more-icon {
  transform: rotateZ(0);
}
