@charset "UTF-8";
/*
 * @Description: 大事记
 * @Author: hxh
 * @Date: 2025-04-24 15:07:46
 */
.viewer {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.viewer .left-viewer {
  width: 220px;
  margin-right: 20px;
}
.viewer .right-viewer {
  width: 960px;
  min-height: 500px;
}

/* 大事记时间轴 */
.chronicle-timeline {
  position: relative;
}
.chronicle-timeline-container {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.chronicle-timeline-container::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
     -moz-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background-color: #b1b6cc;
  z-index: 1;
}
.chronicle-timeline-content {
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 2;
}
.chronicle-timeline-center {
  width: 22px;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 3;
}
.chronicle-timeline-item {
  width: -webkit-calc(50% - 23px);
  width: -moz-calc(50% - 23px);
  width: calc(50% - 23px);
  text-align: right;
  margin-bottom: 24px;
  position: relative;
  display: block;
}
.chronicle-timeline-item::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 100%;
  -webkit-transform: translateX(12px);
     -moz-transform: translateX(12px);
      -ms-transform: translateX(12px);
       -o-transform: translateX(12px);
          transform: translateX(12px);
  width: 23px;
  height: 23px;
  background: #fff;
}
.chronicle-timeline-item::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 100%;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  width: 17px;
  height: 17px;
  background: #b1b6cc;
  border-radius: 0px 0px 0px 0px;
  border: 3px solid #f2f3f5;
  border-radius: 50%;
  -webkit-transform: translateX(15px);
     -moz-transform: translateX(15px);
      -ms-transform: translateX(15px);
       -o-transform: translateX(15px);
          transform: translateX(15px);
}
.chronicle-timeline-item:nth-child(2n) {
  -webkit-align-self: flex-end;
      -ms-flex-item-align: end;
          align-self: flex-end;
  text-align: left;
}
.chronicle-timeline-item:nth-child(2n)::before {
  left: auto;
  right: 100%;
  -webkit-transform: translateX(-12px);
     -moz-transform: translateX(-12px);
      -ms-transform: translateX(-12px);
       -o-transform: translateX(-12px);
          transform: translateX(-12px);
}
.chronicle-timeline-item:nth-child(2n)::after {
  left: auto;
  right: 100%;
  -webkit-transform: translateX(-15px);
     -moz-transform: translateX(-15px);
      -ms-transform: translateX(-15px);
       -o-transform: translateX(-15px);
          transform: translateX(-15px);
}
.chronicle-timeline-item-year {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.48;
  color: #333333;
  margin-bottom: 10px;
}
.chronicle-timeline-item-year.blue {
  color: #2485e7;
}
.chronicle-timeline-item-content {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.48;
  color: #333333;
}
.chronicle-timeline-item-content.blue {
  color: #2485e7;
}
.chronicle-timeline-item:hover::after {
  background: #2485e7 url(../images/anchor_icon_fill.svg) center no-repeat;
  -o-background-size: 80% auto;
     background-size: 80% auto;
  border-color: #2485e7;
}
.chronicle-timeline-item:hover .chronicle-timeline-item-year,
.chronicle-timeline-item:hover .chronicle-timeline-item-content {
  color: #2485e7;
}