.memorabilia-wrap {
  display: flex;
  justify-content: space-between;
  padding: 64px 0 100px 0;
}

.time-line-wrap {
  width: 140px;
  height: 65vh;
  background: #f9f9f9;
  border-radius: 70px;
  overflow: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 55px;
  flex: none;
}

.time-line-scroll {
  height: calc(65vh - 120px);
  overflow: auto;
  flex: none;
}

.arrow-wrap {
  flex: 1;
}
.arrow-img {
  width: 28px;
  height: 14px;
  display: block;
  margin: auto;
  cursor: pointer;
  position: relative;
}

.time-line-scroll::-webkit-scrollbar {
  width: 0 !important;
}
.time-line-scroll {
  overflow: -moz-scrollbars-none;
}

.time-line-item {
  width: 140px;
  height: 60px;
  line-height: 60px;
  font-size: 18px;
  color: #10191c;
  text-align: center;
  cursor: pointer;
  display: block;
}

.time-line-item-active {
  color: #ffffff;
  background: #ff6600;
  border-radius: 30px;
}
.node-title {
  font-size: 30px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 28px;
}
.time-content {
  flex: 1;
  height: 65vh;
  overflow: auto;
  background: #f9f9f9;
  border-top: 30px solid #f9f9f9;
  border-left: 35px solid #f9f9f9;
  border-right: 35px solid #f9f9f9;
  border-bottom: 30px solid #f9f9f9;
  border-radius: 40px;
  box-sizing: border-box;
}

.time-content::-webkit-scrollbar {
  width: 0 !important;
}
.time-content {
  overflow: -moz-scrollbars-none;
}

.node-info {
  font-size: 16px;
  color: #333333;
  line-height: 24px;
  margin-bottom: 20px;
  padding-left: 20px;
  position: relative;
}

.node-info::before {
  content: ' ';
  position: absolute;
  width: 6px;
  height: 6px;
  background: #d9d0d0;
  border-radius: 50%;
  left: 5px;
  top: 10px;
}
