.cycle-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.cycle-content .cycle-item {
  height: 100vh;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 10px;
  padding: 10px;
  background: #f5f5f5;
}
.cycle-content .cycle-item h2 {
  font-size: 16px;
  line-height: 1;
  padding: 10px 0;
  font-weight: bold;
}
.cycle-content .cycle-item .cycle-list-item {
  margin-bottom: 10px;
  background: #fff;
  border-radius: 4px;
  padding: 10px;
  height: 65px;
  font-size: 14px;
  border: 1px solid #fff;
}
.cycle-content .cycle-item .cycle-list-item p {
  min-height: 35px;
}
.cycle-content .cycle-item .cycle-list-item span {
  font-size: 12px;
}
.cycle-content .cycle-item .cycle-list-item span.ss {
  float: right;
  font-size: 14px;
  font-weight: bold;
}
.cycle-content .cycle-item .cycle-list-item:hover {
  cursor: pointer;
  border-color: #427bd4;
}
.cycle-content .cycle-item:last-child {
  margin-right: 0;
}

