.content-wrap {
  padding: 107px 0;
  position: relative;
}
.content-wrap .triangle-right {
  width: var(--triangle-right);
  right: 0;
  bottom: -1px;
  position: absolute;
}
.content-wrap .content {
  max-width: var(--page-width);
  padding: 0 var(--page-padding);
  margin: auto;
}
.content-wrap .content .content-item {
  padding: 30px 48px;
  margin-bottom: 24px;
  border-radius: 36px;
  box-shadow: 4px 4px 6px #c1b3dd;
  font-size: 18px;
  display: block;
  text-decoration: none;
}
.content-wrap .content .content-item .content-item-title-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  text-decoration: none;
  cursor: pointer;
}
.content-wrap .content .content-item .content-item-title-box .content-item-title {
  color: #662d91;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.content-wrap .content .content-item .content-item-title-box .content-item-arrow {
  width: 8px;
  margin-left: 4px;
}
.content-wrap .content .content-item .content-item-date {
  color: #4d4d4d;
}
.content-wrap .content #pagination {
  margin-top: 126px;
}

@media (max-width: 1200px) {
  .content-wrap {
    padding-top: 40px;
  }
  .content-wrap .content .content-item {
    padding: 15px 19px;
    border-radius: 14px;
    box-shadow: 6px 6px 6px #c1b3dd;
  }
  .content-wrap .content .content-item .content-item-title-box {
    margin-bottom: 5px;
  }
  .content-wrap .content .content-item .content-item-title-box .content-item-title {
    font-size: 15px;
  }
  .content-wrap .content .content-item .content-item-title-box .content-item-arrow {
    width: 6px;
  }
  .content-wrap .content .content-item .content-item-date {
    font-size: 11px;
  }
  .content-wrap .content #pagination {
    margin-top: 42px;
  }
  .content-wrap .triangle-right {
    width: var(--triangle-right-m);
  }
}