.main {
  width: 100%;
}
.main .salary {
  width: 1200px;
  padding-top: 150px;
}
.main .salary #chart {
  width: 1110px;
  height: 338px;
  margin-top: 60px;
}
.main .history {
  width: 1200px;
  padding-top: 150px;
}
.main .history .time-axis {
  width: 860px;
  margin-top: 40px;
}
.main .history .time-axis .year-list {
  width: 590px;
  display: flex;
  justify-content: space-between;
}
.main .history .time-axis .year-list .item-year {
  display: flex;
  justify-content: center;
  align-items: end;
  width: 150px;
  height: 66px;
  vertical-align: bottom;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0px;
  color: #333333;
}
.main .history .time-axis .year-list .item-year.active {
  font-size: 56px;
  color: #1842b6;
}
.main .history .time-axis .axis {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 10px;
  margin-top: 20px;
}
.main .history .time-axis .axis hr {
  width: 200px;
  border: 1px solid #e4e7eb;
}
.main .history .time-axis .axis span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e4e7eb;
}
.main .history .time-axis .axis span.active {
  background: #1842b6;
}
.main .history .employment-list {
  width: 1200px;
  height: 614px;
}
.main .history .employment-list .item-employment {
  display: none;
  width: 1200px;
  height: 614px;
  margin-top: 60px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0px 2px 4px rgba(223, 234, 242, 0.39), 0px 10px 20px 10px rgba(223, 234, 242, 0.2);
}
.main .history .employment-list .item-employment .job-header {
  display: flex;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
  height: 53px;
  border-bottom: 1px solid #e4e7eb;
}
.main .history .employment-list .item-employment .job-header span {
  display: inline-block;
  flex: 1;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 18.75px;
  color: #333333;
}
.main .history .employment-list .item-employment .job-header span:nth-child(3) {
  flex: 3;
}
.main .history .employment-list .item-employment .job-header span:nth-child(4) {
  flex: 4;
}
.main .history .employment-list .item-employment .job-header span:nth-child(5) {
  flex: 2;
}
.main .history .employment-list .item-employment .job-main {
  width: 100%;
  height: 561px;
  padding-left: 10px;
  padding-right: 10px;
  overflow: hidden;
}
.main .history .employment-list .item-employment .job-main .job-list {
  width: 100%;
  height: 1173px;
  animation: anim 12s linear infinite;
}
.main .history .employment-list .item-employment .job-main .job-list .item-job {
  display: flex;
  align-items: center;
  width: 100%;
  height: 51px;
}
.main .history .employment-list .item-employment .job-main .job-list .item-job span {
  display: inline-block;
  flex: 1;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0px;
  line-height: 18.75px;
  color: #333333;
}
.main .history .employment-list .item-employment .job-main .job-list .item-job span:nth-child(3) {
  flex: 3;
}
.main .history .employment-list .item-employment .job-main .job-list .item-job span:nth-child(4) {
  flex: 4;
}
.main .history .employment-list .item-employment .job-main .job-list .item-job span:nth-child(5) {
  flex: 2;
}
.main .history .employment-list .item-employment .job-main .job-list .item-job:nth-child(2n+1) {
  background: #ffffff;
}
.main .history .employment-list .item-employment .job-main .job-list .item-job:nth-child(2n) {
  background: #f7f9fa;
}
.main .history .employment-list .item-employment .job-main .job-list:hover {
  animation-play-state: paused;
}
.main .history .employment-list .item-employment.active {
  display: block;
}
@keyframes anim {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-612px);
  }
}
