.calendarBox .title img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}
.calendarBox .title {
  display: flex;
  justify-self: start;
  align-items: center;
  position: relative;
  width: 100%;
}
.calendarBox .title div {
  font-size: 20px;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
}
.calendarBox .cal_middle,
.calendarBox .cal_date,
.calendarBox .cal_class {
  margin-top: 30px;
}
.calendarBox .between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.calendarBox .cal_middle .today {
  color: #6b6e76;
  margin-right: 30px;
}
.calendarBox .month {
  color: #232323;
  font-size: 20px;
  font-weight: bold;
  width: 30%;
}
.calendarBox .xlBtn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #2e69db;
  color: #fff;
  width: 60px;
  font-size: 14px;
  padding: 5px 6px;
  border-radius: 5px;
  cursor: pointer;
}
.calendarBox .cal_date .btn {
  /* width: 10px;
  height: 10px; */
  border-radius: 50%;
  padding: 12px 15px;
  text-align: center;
  line-height: 10px;
  box-shadow: 4px 4px 15px #eaeaea;
  cursor: pointer;
}
.calendarBox .cal_date .date_con {
  width: calc(95% - 80px);
}

.calendarBox .cal_date .date_con .item {
  width: 50px;
  padding: 3px 0px;
  text-align: center;
  cursor: pointer;
  /* background: pink; */
  color: #000;
}

.calendarBox .cal_date .date_con .item.gray {
  color: #999999 !important;
}

.calendarBox .cal_date .date_con .item.active {
  background-color: #2e69db;
  color: #fff;
  border-radius: 15px;
}

.calendarBox .cal_date .date_con .item .circle {
  width: 5px !important;
  padding: 0px !important;
  height: 5px;
  margin: 5px auto;
  border-radius: 50%;
}

.calendarBox .cal_date .date_con .item .circle.org {
  background: #e18631;
}

.calendarBox .cal_date .date_con .item.gray .circle.org {
  background: #999999 !important;
}

.calendarBox .cal_date .date_con .item .date {
  font-weight: bold;
  margin: 5px 0px;
}

.calendarBox .cal_class {
  flex-wrap: wrap;
}

.calendarBox .cal_class .item {
  width: 47%;
  padding: 20px;
  border: 1px solid #abc3f1;
  background-color: #f2f6ff;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.calendarBox .cal_class .item .calInfo{
width: calc(100% - 50px);
box-sizing: border-box;
height: 46px;
display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
    justify-content: center;
}
.calendarBox .cal_class .item .time,
.calendarBox .cal_class .item .location {
  font-size: 14px;
}

.calendarBox .cal_class .item .class_name {
  font-size: 16px;
  width: 100%;
  /* font-weight: bold; */
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #000;
}

.calendarBox .cal_class .item .location {
  color: #5a88e3;
  /* width: calc(50% - 70px); */
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.calendarBox .cal_class .item .location span{
  vertical-align: middle;
}

.calendarBox .cal_class .addClass {
  width: 47%;
  padding: 20px;
  border: 1px dashed #abc3f1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-bottom: 20px;
}

.calendarBox .title .calendarMore{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 14px;
  color: #2e69db;
  cursor: pointer;
}

.calendarBox .cal_class .item .time{
  width: 50px;
}