.crs-wrap {
  position: relative;
  box-sizing: border-box;
}
.crs-wrap * {
  box-sizing: border-box;
}
.crs-screen {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.crs-screen-roll {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  transition: left 0.5s;
}
.crs-screen-item {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  border-radius: 10px;
  border: solid 2px #372f8e;
}
.crs-screen-item-content {
  width: 100%;
  height: calc(100% - 50px);
  font-family: arial;
  padding: 50px;
}
.crs-bar {
  width: 100%;
  height: 74px;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px;
}
.crs-bar-roll-current {
  width: 70px;
  height: 68px;
  border-radius: 12px;
  /* border: 2px solid #ec2029; */
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  margin: auto;
  top: -10px;
}
.crs-bar-roll-wrap {
  height: 70px;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  top: -26px;
}
.crs-bar-roll {
  height: 60px;
  display: inline-flex;
  flex-wrap: wrap;
  position: absolute;
  left: 0;
  transition: left 0.2s;
  left: 21%;
}
.crs-bar-roll-item {
  width: 70px;
  height: 70px;
  border-radius: 5px;
  background-color: #fff;
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  cursor: pointer;
  border: solid 2px #fff;
}
.crs-bar-roll-item:not(:last-child) {
  margin-right: 10px;
}
