* { margin: 0; padding: 0; }
body { 
font-family: "Microsoft Yahei"; 
font-size: 16px; 
color: #888;
}
a, a:hover { color: #888; text-decoration: none; }
ul, li { list-style: none; }

.calendar {
  display: none;
  width: 100%;
  margin:0px auto 0;
  background-color: #ffffff;
  border-radius: 2vw;
}
.calendar-title {
   border-radius:2vw 2vw 0 0;
	background:rgba(30, 97, 188, .7); 
	width:100%;
	color:#fff;
	font-weight:bold;	
	text-align: center;
	display:flex;
	align-items:center;
	justify-content: center;
	padding:2vw 0;
	font-size:5vw;
}
.calendar-title a.title {
  display: inline-block;
  font-size:5vw;
  color: #fff;
}

#backToday {
  position: absolute;
  left: 70%;
  top: 8px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: #000;
  background-color: #d2efff;
  font-size: 18px;
}

.calendar-title .arrow {
  font-size: 5vw;
  color: fff;
  top: 10px;
  right: 0;
  width: 30px;
  padding-left:1em;
  padding-right:1em;
}

.calendar-title .arrow span {
  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: #fff;
}

.calendar-title .arrow-prev {
  float: left;
}

.calendar-title .arrow-next {
  float: right;
}

.calendar-week,
.calendar-date {
  overflow: hidden;
}
.calendar-date .item {
    
}
.calendar-date .item:not(.item-curMonth) {
	color: #EFEFEF;
}

.calendar-date .item .tag {
	background: url(../images/calendar-day-bg1.png) no-repeat top center;
	background-size:70%;
	color:#fff;
}

.calendar-date .tag {
	background: url(../images/calendar-day-bg1.png) no-repeat top center;
	background-size:70%;
	color:#fff;
}
.calendar-week {
	width:96%;
	margin:0 auto;
	padding:0 2% 1vh 2%;
	display:flex;
	justify-content: center;
	flex-wrap:wrap;
	background:url(../images/calendar-bg2.png) top center repeat-y;
	background-size:100%;
}
.calendar-week b {
	text-align:center;
	width:11%;
	margin:1vw;
	padding-top:2.5vw;
	line-height:3.5vw;
	display:inline-block;
	font-size:3.5vw;
	font-weight:normal;
	color:#407edb;
	border-radius:1vw;
}
.calendar-week b span {
	display:block;
	width:100%;
	font-size:2vw;
	color:#73a5e5;
}
.calendar-date {
	width:96%;
	border-radius:0 0 2vw 2vw;
	margin:0 auto;
	padding:0 2% 3vh 2%;
	display:flex;
	justify-content: center;
	flex-wrap:wrap;
	background:url(../images/calendar-bg.png) center no-repeat;
	background-size:100% 100%;
	color:#000;
	
}

.calendar-date .item {
	text-align:center;
	width:10vw;
	margin:1vw;
	line-height:7vw;
	display:inline-block;
	font-size:3.5vw;
	font-weight: normal;
	
	border-radius:1vw;
}
.calendar-date .item .point {
	display:flex;
	justify-content:center;
	width:80%;
	margin:1vw auto 0;
	height:2vw;
}
.calendar-date .item i {
	display:block;
	width:1vw;
	height:1vw;
	border-radius:1vw;
	margin:0 .5vw;
}
.calendar-date .item .r {
	background:#eeb044;
}
.calendar-date .item .y {
	background:#75adfa;
}
.calendar-date .item .g {
	background:#32cc98;
}
.calendar-date .item:hover,
.calendar-date .item-curMonth:hover {
  color: #fff;
}

.calendar-init {
	background: url(../images/calendar-day-bg1.png) no-repeat top center;
	background-size:70%;
	color:#fff;
 }

.calendar-date .item-curMonth {
}

.calendar-date .item-curDay,
.calendar-date .item-curDay:hover {

}
.calendar-today {
  display: none;
  opacity: 0;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 10em;
  height: 2em;
  padding: 1px 1px;
  font-size: 1vm;
  background-color: #d2efff;
  border-radius: 5px;
}
.calendar-today .triangle {
  position: absolute;
  background-color:#d2efff;
  top: 50%;
  left: -16px;
  margin-top: -8px;
  border-width: 8px;
  border-style: solid;
  border-color: transparent #d2efff transparent transparent;
}

.calendar-today p {
  color: #fff;
  font-size: 5vw;
  line-height: 24px;
}

.calendar-date .item .o {
	background:#e570b2;
}