
/*日历*/
.calendar *{
  -webkit-box-sizing:border-box;
          box-sizing:border-box;
  font-size: 0.2rem;
}
.calendar {
  cursor:default;
  width: 6rem;
  height: 5.3rem;
  padding: 0.34rem 0.43rem 0 0.58rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0.1rem;
  background: #ffffff;
}
.calendar .c-event-top {
  width: 100%;
  height: 0.6rem;
  line-height: 0.6rem;
  position: relative;
}
.calendar .c-event-top .c-month {
  width: 100%;
  height: inherit;
  text-align: center;
}
.calendar .c-event-top .c-month-top{
  font-size: 0.22rem;
  display: inline-block;
  color: #000000;
}
.calendar .c-event-top .c-previous{
  cursor:pointer;
  position: absolute;
  top: 0.23rem;
  left: 1.27rem;
  width: 0;
  height: 0;
  border-top: 0.06rem solid transparent;
  border-bottom: 0.06rem solid transparent;
  border-left: 0.06rem solid transparent;
  border-right: 0.06rem solid #004ba7;
}
.calendar .c-event-top .c-next{
  cursor:pointer;
  position: absolute;
  top: 0.23rem;
  right: 1.27rem;
  width: 0;
  height: 0;
  border-top: 0.06rem solid transparent;
  border-bottom: 0.06rem solid transparent;
  border-left: 0.06rem solid #004ba7;
  border-right: 0.06rem solid transparent;
}
.calendar .c-grid .c-week-day{
  float:left;
  width: 0.54rem;
  height: 0.61rem;
  line-height: 0.61rem;
  text-align:center;
  margin-right: 0.15rem;
  color: #000000;
}
.calendar .c-grid .c-day-previous-month, .calendar .c-grid .c-day-next-month{
  float: left;
  width: 0.54rem;
  height: 0.54rem;
  line-height: 0.54rem;
  text-align: center;
  color: #888888;
  margin-right: 0.15rem;
}
.calendar .c-grid .c-day {
  float: left;
  width: 0.54rem;
  height: 0.54rem;
  line-height: 0.54rem;
  text-align: center;
  color: #888888;
  margin-right: 0.15rem;
  position: relative;
  font-family: Arial;
  cursor: pointer;
}
.calendar .c-grid .c-today {
  /* color: #ffffff; */
  /* background: #004ba7; */
  /* border-radius: 50%; */
}
.calendar .c-grid .c-event{
  color: #004ba7;
  background: none;
}
.calendar .c-grid .c-event::after {
  content: '';
  width: 0.08rem;
  height: 0.08rem;
  border-radius: 50%;
  background: #004ba7;
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -0.04rem;
}
.calendar .c-grid .c-day span {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 0.48rem;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 4rem;
  white-space: nowrap;
  color: #ffffff;
  padding: 0.07rem 0.1rem;
  font-size: 0.16rem;
  line-height: 1;
  border-radius: 0.05rem;
	background: -o-linear-gradient(left,#0076a8,#00a847);
	background: -webkit-gradient(linear,left top, right top,from(#0076a8),to(#00a847));
	background: linear-gradient(to right,#0076a8,#00a847);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
}
.calendar .c-grid .c-day span::after {
  content: '';
  width: 0.15rem;
  height: 0.07rem;
  background: url(../images/meeting_nav_strangle_icon.png) no-repeat center center;
  background-size: 100% 100%;
  position: absolute;
  bottom: -0.06rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.calendar .c-grid .c-day:hover span {
  display: inline-block;
}

