.jrs-scenes-menu {
    position: fixed;
    top: 30%;
    content: '';
    width: 61px;
    height: 216px;
    color: #1677ff;
    z-index: 999;
    background: url(zntjfwShow.png) no-repeat;
    background-size: 100%;
    writing-mode: vertical-lr;
    padding: 100px 0 0 14px;
    font-size: 15px;
    color: #fff;
    cursor: pointer;
    letter-spacing: 2px;
}

.jrs-scenes-tips {
	position: fixed;
    top: calc(30% - 40px);
    width: 146px;
    height: 123px;
    color: #1677ff;
    z-index: 999;
    background: url(zntjfwTips.png) no-repeat;
    background-size: 100%;
    margin-left: 61px;
}

.jrs-scenes-tips span.jrs-scenes-tips-content {
	font-size: 14px;
    color: #333;
    display: block;
    width: 98px;
    margin: 43px 0 0 38px;
}

.jrs-scenes-tips span.jrs-scenes-tips-button {
	display: inline-block;
    font-size: 14px;
    background-color: #f79301;
    color: #fff;
    margin: 5px 0 0 59px;
    padding: 5px;
    border-radius: 3px;
    cursor: pointer;
}

.jrs-scenes-box {
  width: 100%;
  min-height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #00000060;
  display: none;
  overflow: auto;
}

.jrs-scenes {
  position: relative;
  background-color: #fff;
  width: 24%;
  height: 100vh;
  overflow-y: auto;
  box-shadow: 1px 1px 6px 2px rgb(0 0 0 / 50%);
  padding: 0.2rem 0 0.6rem;
  border-radius: 0 5px 5px 0;
  left: -100%;
  z-index: 999;
}

.jrs-scenes h1 {
  margin-bottom: 15px;
  text-align: center;
}

.jrs-scenes .layui-form {
  padding: 0 0.2rem;
  overflow-y: auto;
  max-height: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.jrs-scenes .layui-form .layui-form-checkbox {
  margin-bottom: 20px;
  width: 45%;
}
.jrs-scenes .layui-unselect span{
  display: inline-block;
  width: 100%;
}

.jrs-scenes.show {
  animation-name: scenesshow;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}

.jrs-scenes.hide {
  animation-name: sceneshide;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

.jrs-scenes .layui-form-checked:hover>div,
.jrs-scenes .layui-form-checked>div,
.jrs-scenes .layui-form-checked span,
.jrs-scenes .layui-form-checked:hover span {
  background-color: #1677ff;
}

.jrs-scenes .layui-form-checked:hover>i,
.jrs-scenes .layui-form-checked>i {
  color: #1677ff;
}

.jrs-scenes .layui-form-checkbox i {
  height: 100%;
}

@keyframes scenesshow {
  0% {
    left: -100%;
  }

  100% {
    left: 0;
  }
}

@keyframes sceneshide {
  0% {
    left: 0;
  }

  100% {
    left: -100%;
  }
}

.jrs-scenes-box .btn {
  position: absolute;
  bottom: 0.2rem;
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: space-around;
  margin: 10px auto 0;
}

.jrs-scenes-box .btn button {
  width: 40%;
  height: 100%;
  font-size: 16px;
  border-radius: 5px;
  border: none;
}

.jrs-scenes-box .btn button#jrs-scenes-sub {
  background: #1677ff;
  color: #fff;
}

.jrs-scenes-box .btn button#jrs-scenes-cancel {
  background: #f1f2f3;
  color: #666;
}

.jrs-scenes .layui-form::-webkit-scrollbar {
  width: 0.06rem;
}

.jrs-scenes .layui-form::-webkit-scrollbar-thumb {
  background-color: #a3bae9;
  -webkit-border-radius: 2em;
  -moz-border-radius: 2em;
  border-radius: 2em;
}

.jrs-scenes .layui-form::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

.jrs-scenes .layui-form::-webkit-scrollbar-thumb {
  background-color: #1677ff;
}