#scheduleV1{
  position:fixed;
  inset:0;
  z-index:90000;
  display:none;
  background:#f5f7f6;
  color:#17231d;
}
#scheduleV1.show{display:block}

.sc-head{
  height:58px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 15px;
  background:#fff;
  border-bottom:1px solid #e6ebe8;
}
.sc-title{
  flex:1;
  font-size:18px;
  font-weight:750;
}
.sc-btn{
  border:0;
  background:#eef2f0;
  border-radius:10px;
  padding:8px 11px;
  font-size:12px;
}
.sc-body{
  height:calc(100% - 59px);
  display:grid;
  grid-template-columns:minmax(0,1fr) 340px;
}
.sc-main{
  overflow:auto;
  padding:15px;
}
.sc-side{
  overflow:auto;
  padding:15px;
  background:#fff;
  border-left:1px solid #e4eae6;
}
.sc-toolbar{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:12px;
}
.sc-month{
  flex:1;
  font-size:20px;
  font-weight:800;
}
.sc-week,
.sc-grid{
  display:grid;
  grid-template-columns:repeat(7,1fr);
}
.sc-week div{
  padding:8px 4px;
  text-align:center;
  color:#758079;
  font-size:11px;
}
.sc-day{
  min-height:105px;
  padding:7px;
  background:#fff;
  border-right:1px solid #edf1ef;
  border-bottom:1px solid #edf1ef;
  cursor:pointer;
}
.sc-day:nth-child(7n+1){
  border-left:1px solid #edf1ef;
}
.sc-day.selected{
  background:#edf5f1;
  box-shadow:inset 0 0 0 1px #8fa99b;
}
.sc-day.other{opacity:.38}
.sc-date{
  font-weight:750;
  font-size:13px;
}
.sc-lunar{
  margin-top:2px;
  font-size:9px;
  color:#87938c;
}
.sc-event{
  margin-top:5px;
  padding:3px 5px;
  border-radius:6px;
  background:#f1f5f3;
  font-size:9px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.sc-memo-dot{
  display:inline-block;
  width:5px;
  height:5px;
  margin-left:4px;
  border-radius:50%;
  background:#576d61;
  vertical-align:middle;
}
.sc-side-date{
  font-size:17px;
  font-weight:800;
}
.sc-side-lunar{
  margin:4px 0 15px;
  color:#738078;
  font-size:11px;
}
.sc-card{
  margin-bottom:9px;
  padding:11px;
  border:1px solid #e5ebe7;
  border-radius:13px;
  background:#fafcfb;
}
.sc-card b{
  display:block;
  margin-bottom:4px;
  font-size:12px;
}
.sc-card span{
  font-size:10px;
  color:#738078;
}
.sc-add{
  width:100%;
  height:40px;
  border:0;
  border-radius:11px;
  background:#17251e;
  color:#fff;
  font-weight:700;
}
.sc-input,
.sc-textarea{
  box-sizing:border-box;
  width:100%;
  margin-top:7px;
  border:1px solid #dfe6e2;
  border-radius:10px;
  background:#fff;
  padding:9px;
  font-size:12px;
}
.sc-textarea{
  min-height:72px;
}
.sc-check{
  display:flex;
  gap:7px;
  align-items:flex-start;
  padding:7px 0;
  font-size:11px;
}
@media(max-width:760px){
  .sc-body{
    display:block;
    overflow:auto;
  }
  .sc-main{
    overflow:visible;
    padding:10px;
  }
  .sc-side{
    overflow:visible;
    border-left:0;
    border-top:1px solid #e4eae6;
  }
  .sc-day{
    min-height:76px;
    padding:4px;
  }
  .sc-event{
    font-size:8px;
    padding:2px 3px;
  }
}
