* { margin: 0; padding: 0; }
body { font-family: "Microsoft Yahei"; font-size: 12px; color: #888; }
a, a:hover { color: #888; text-decoration: none; }
ul, li { list-style: none; }

.calendar {
  margin-top: 38px;
  display: none;
  border-radius: 10px;
  border: 1px solid #E2E2E2;
}
.calendar-title {
  position: relative;

}
.calendar-title a.title {
  position: absolute;
  top: -35px;
  left: 0;
  display: inline-block;
  font-size: 16px;
color: #222222;
}
.arrow-previtem {
  width: 58px;
  text-align: center;
}

.arrow .arrow-previtem:nth-child(2){
  border-left: 1px solid #4A84F7;;
  border-right: 1px solid #4A84F7;;
 }

.calendar-title .arrow {
  position: absolute;
  top: -36px;
  right: 0;
height: 24px;
line-height: 24px;
background: #E6EFFF;
border-radius: 4px ;
border: 1px solid #4A84F7;
  display: flex;
}
.calendar-title .arrow span {
  font-size: 12px;
color: #222222;
  cursor: pointer;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.calendar-title .arrow span:hover {
  color: #888;
}
.calendar-title .arrow-prev {
  float: left;
}
.calendar-title .arrow-next {
  float: right;
}
.calendar-week,
.calendar-date {
  overflow: hidden;
}
.calendar-week .item,
.calendar-date .item {
  float: left;
  width: 81px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: #fff;

}
.calendar-date .item { 
  color: #B2B2B2;

}
.calendar-week {
  font-weight: bold;
  background-color: #4a84f7;
  font-size: 16px;
  border-radius: 10px 10px 0  0;
}
.calendar-date {}
.calendar-date .item {
  cursor: pointer;
  font-size: 14px;
  /* border: 0.5px solid #E2E2E2; */
  border-right: 1px solid #E2E2E2;
  border-bottom: 1px solid #E2E2E2;
}
.calendar-date .item:nth-child(7n) {
  border-right: none !important;
} 
.calendar-date .item:nth-last-child(7) ,.calendar-date .item:nth-last-child(6),.calendar-date .item:nth-last-child(5) ,.calendar-date .item:nth-last-child(4),.calendar-date .item:nth-last-child(3) ,.calendar-date .item:nth-last-child(2),.calendar-date .item:nth-last-child(1) {
  border-bottom: none !important;
} 
.calendar-date .item:hover,
.calendar-date .item-curMonth:hover {
  background-color: #f0f0f0;
}
.calendar-date .item-curMonth {
  color: #333;
  font-weight: bold;
}
.calendar-date .item-curDay,
.calendar-date .item-curDay:hover {
  color: #4A84F7  ;
  background: #E6EFFF;
  font-weight: 700;

}
.calendar-date .item-selected,
.calendar-date .item-selected:hover {
  color: #4A84F7  ;
  background: #E6EFFF;
}
.calendar-today {
  display: none;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 90px;
  height: 48px;
  padding: 6px 10px;
  background-color: rgb(255, 128, 142);
  border-radius: 5px;
}
.calendar-today .triangle {
  position: absolute;
  top: 50%;
  left: -16px;
  margin-top: -8px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent rgb(255, 128, 142) transparent transparent;
}
.calendar-today p {
  color: #fff;
  font-size: 14px;
  line-height: 24px;
}