.intro {
  position: relative;
  width: fit-content;
  padding-top: 144px;
  margin: auto;
}
.intro > p {
  font-size: 24px;
  text-align: center;
  line-height: 32px;
}
.intro_icon_box > img {
  position: absolute;
  width: 45px;
  animation: icon 0.7s infinite alternate-reverse;
}
.intro_icon_box > img:nth-of-type(1) {
  left: 100%;
  bottom: 57px;
}
.intro_icon_box > img:nth-of-type(2) {
  right: -127px;
  bottom: 3px;
  animation-delay: 0.3s;
}
.intro_icon_box > img:nth-of-type(3) {
  right: -210px;
  bottom: 48px;
  animation-delay: 0.4s;
}

.total_ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6%;
  row-gap: 36px;
  margin-top: 116px;
}
.total_li {
  width: 210px;
  height: 145px;
  padding: 24px 30px 30px;
  box-shadow: 0 6px 8px 0 #0000001f;
}
.total_li > h3 {
  margin-bottom: 30px;
}
.total_li > p {
  font-size: 32px;
  font-weight: 700;
}

.total_li > h3,
.chart > h3,
.recent_area > div > h3 {
  font-size: 18px;
  font-weight: 500;
}

.chart {
  padding: 24px 30px 30px;
  margin: 65px auto;
}
.chart > h3 {
  /*margin-bottom: 44px;*/
}

.recent_area {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 100px;
}
.recent_area > div {
  width: 50%;
  padding: 24px 18px 16px;
}
.recent_area > div > h3 {
  padding-left: 12px;
  margin-bottom: 24px;
}
.recent_li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 12px;
  border-radius: 24px;
  margin-bottom: 8px;
}
.recent_li > p > b {
  margin-right: 8px;
}
.recent_li > span {
  color: var(--color-secondary);
  text-wrap-mode: nowrap;
}
.recent_li:hover {
  background-color: var(--hover-basic);
}
.total_write > b {
  display: block;
  width: 100px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: underline;
}
.total_write > span {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-decoration: underline;
  line-height: 30px;
}
.write_wrap {
  width: calc(100% - 160px - 24px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
