body {
  --color-rg: #f5a623;
  --color-rg-op4: rgba(245, 166, 35, 0.4);
  --color-sg: #ce3d18;
  --color-sg-op4: rgba(206, 61, 24, 0.4);
  --color-sh: #4454c1;
  --color-sh-op4: rgba(68, 84, 193, 0.4);
  --color-kf: #a06ecf;
  --color-kf-op4: rgba(160, 110, 207, 0.4);
  --color-dq: #cccccc;
  --color-dq-op4: rgba(204, 204, 204, 0.4);
}
.calendar {
  width: 100%;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
}
.calendar-weeks {
  width: 100%;
  height: 50px;
  display: inline-flex;
}
.calendar-weeks-week {
  flex: 1;
  background-color: #533687;
  text-align: center;
  line-height: 50px;
  font-size: 16px;
  color: #fff;
}
.calendar-weeks-week:not(:last-child) {
  border-right: 1px solid #fff;
}
.calendar-days {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 600px;
  border-top: none;
  border-bottom: none;
}
.calendar-days-day {
  width: 20%;
  padding: 10px;
  box-sizing: border-box;
  min-height: 100px;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.3);
}
.calendar-today {
  text-align: right;
  height: 20px;
}
.calendar-open-prod {
  height: 22px;
  position: relative;
  line-height: 22px;
  padding-left: 10px;
  margin: 5px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.calendar-open-prod span {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  color: #555;
  font-size: 14px;
}
.calendar-open-prod span:hover {
  opacity: 0.8;
}
.calendar-open-prod::after {
  content: '';
  position: absolute;
  width: 5px;
  top: 0;
  bottom: 0;
  left: 0;
  border-radius: 2px;
  border-right: 1px solid #fff;
}
.calendar .rg {
  background-color: rgba(245, 166, 35, 0.4);
}
.calendar .rg::after {
  background-color: #f5a623;
}
.calendar .sg {
  background-color: rgba(206, 61, 24, 0.4);
}
.calendar .sg::after {
  background-color: #ce3d18;
}
.calendar .sh {
  background-color: rgba(68, 84, 193, 0.4);
}
.calendar .sh::after {
  background-color: #4454c1;
}
.calendar .kf {
  background-color: rgba(160, 110, 207, 0.4);
}
.calendar .kf::after {
  background-color: #a06ecf;
}
.calendar .dq {
  background-color: rgba(204, 204, 204, 0.4);
}
.calendar .dq::after {
  background-color: #cccccc;
}
.calendar-open-more {
  text-align: right;
  font-size: 12px;
  cursor: pointer;
  color: #aaa;
}
.calendar-opre {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.prod-type-select {
  display: flex;
  align-items: center;
}
.prod-type-select-type {
  margin-right: 10px;
}
.prod-type-select-type input {
  vertical-align: middle;
}
.prod-type-select-type label {
  cursor: pointer;
  font-weight: 600;
  user-select: none;
  -webkit-user-select: none;
}
.prod-type-select-type:nth-child(1) input {
  background-color: #f5a623;
}
.prod-type-select-type:nth-child(1) label {
  display: inline-block;
  color: #f5a623;
}
.prod-type-select-type:nth-child(2) label {
  color: #ce3d18;
}
.prod-type-select-type:nth-child(3) label {
  color: #4454c1;
}
.prod-type-select-type:nth-child(4) label {
  color: #a06ecf;
}
.prod-month-select {
  display: flex;
  align-items: center;
}
.prod-month-select button {
  height: 30px;
  margin-left: 10px;
  cursor: pointer;
  background-color: #fff;
}
.prod-month-select .current-month {
  color: #fff;
  background-color: #f5a623;
  padding: 0 15px;
}
.container {
  position: relative;
}
.container-loader {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  background-color: transparent;
  align-items: center;
}
.container-loader-center .layui-icon {
  font-size: 35px;
  color: #000;
}
.lay-box {
  display: none;
  width: 500px;
  max-height: 650px;
  overflow: auto;
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
}
.lay-box .prod {
  padding-bottom: 10px;
}
.lay-box .prod-item {
  padding: 0 10px;
  height: 30px;
  width: 100%;
  display: flex;
  background-color: #ddd;
  box-sizing: border-box;
}
.lay-box .prod-item-name {
  width: 70px;
  height: 100%;
  margin-right: 10px;
  line-height: 30px;
  font-size: 14px;
  font-weight: 600;
}
.lay-box .prod-item-value {
  flex: 1;
  height: 100%;
  line-height: 30px;
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lay-box .prod-item:nth-child(2n) {
  background-color: #eee;
}
.prod-search {
  height: 30px;
  margin-left: 6px;
}
.prod-search-input {
  height: 30px;
  background-color: #fff;
  border-radius: 4px;
  font-size: 14px;
  padding: 0 10px;
}
.prod-search-button {
  height: 30px;
  color: #fff;
  background-color: #f5a623;
  padding: 0 15px;
  cursor: pointer;
}
