html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Helvetica, Arial, "Microsoft Yahei", "Hiragino Sans GB", "Heiti SC", "WenQuanYi Micro Hei", sans-serif;
  font-style: normal;
  font-weight: normal;
  list-style: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

html,body{
  min-height: 100%;
  height: 100%;
}

body {
  font-size: 12px;
  -webkit-font-smoothing: antialiased;
  -webkit-touch-callout: none;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

a:focus,
input:focus,
button:focus {
  outline: 0;
}

.calendarBox{
  background-color: #fff;
}

.handleBox{
  display: flex;
  justify-content: center;
  height: 40px;
}

.handleBtn{
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  color: #2C2C2C;
}

.curDate{
  width: 186px;
  line-height: 40px;
  font-size: 14px;
  text-align: center;
  color: #2C2C2C;
}

.weeksBox{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
}

.week{
  flex: 1;
  line-height: 25px;
  height: 25px;
  font-size: 14px;
  text-align: center;
  color: #999;
  cursor: pointer;
}

.daysBox{
  display: block;
  font-size: 0;
  overflow: hidden;
  width: 100%;
  text-align: left;
}

.dayBox{
  display: inline-block;
  width: 14.285%;
  height: 50px;
  line-height: 50px;
  text-align: center;
}

.day{
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color:#000;
  font-size:12px;
  font-weight:200;
  text-align: center;
  cursor: pointer;
}

.today{
  color:#fff;
  border-radius:50%;
  background-color:#62cc74;
}

.hasRecords{
  position: relative;
}

.today.hasRecords:before{
  border-color: #fff;
}

.hasRecords:before{
  display: block;
  position: absolute;
  content: '';
  width: 5px;
  height: 10px;
  left: 12px;
  bottom: 3px;
  border-right: 1px solid #62cc74;
  border-bottom: 1px solid #62cc74;
  transform: rotate(50deg);
}

