
ul li {
  list-style: none;
  width: 100%;
}

html, body {
  padding: 0;
  margin: 0;
  width: 100%;
}

ul {
  width: 810px;
  box-sizing: border-box;
}

#app {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.history {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.his-div {
  display: flex;
  width: 1000px;
  position: relative;
  box-sizing: border-box;
}

.polygon-div {
  position: absolute;
  z-index: 11;
  top: 50%;
}

.polygon-div-left {
  right: 0;
  transform: translate(calc(50% + 5px), calc(-50% + 2px));
}

.polygon-div-right {
  transform: translate(calc(-50% - 5px), calc(-50% + 2px));

}


.polygon {
  width: 40px;
  height: 40px;
}

.gold-medal {
  width: 68px;
  height: 82.9px;
  margin-top: 10px;
}

.gold-text {
  font-size: 30px;
  color: #e83033;
  position: absolute;
  bottom: 50%;
  transform: translate(calc(50% - 7px), calc(50% - 5px));
}

.data-item {
  flex: 1;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
  padding: 16px 0;
}

.bg-no-move {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
}

.content-div {
  flex: 5;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.content-common {
  background-color: #2DB3D9;
}

.content-gold {
  background-color: #f0871a;
}

.data-line {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;

}

.data-line-right-common {
  padding-right: 15px;
}

.data-line-left-common {
  padding-left: 15px;
}


.data-line-right-gold {
  padding-right: 25px;
}

.data-line-left-gold {
  padding-left: 20px;
}


.line-content {
  height: 5px;
  width: 100%;
}


.line-content-common {
  background-color: #2DB3D9;
}

.line-content-gold {
  background-color: #f0871a;
}

.item-border-right {
  align-items: flex-end;
  border-right: 10px solid #a0896b;
}

.item-border-left {
  border-left: 10px solid #a0896b;
}

.seat {
  flex: 1;
}

.time-axis {
  width: 10px;
  background-color: #a0896b;
}

.hidden-view {
  opacity: 0;
}

.data-title {
  font-size: 18px;
  margin-top: 5px;
}

.date-title-common {
  color: #f8ebae;
}

.data-title-gold {
  color: #fff;
}

.data-date {
  font-size: 12px;
  color: #fff;
}

.data-content {
  background-color: #fff;
  width: 98%;
  margin: 5px 0;
  padding: 5px;
  box-sizing: border-box;
}

.data-content span {
  font-size: 14px;
  color: #3e3e3f;
  font-family: "微软雅黑";
}

/*移动后显示*/
.appear-move {
  position: relative;
  animation-name: appear;
}

/*移动后消失*/
.disappear-move {
  position: relative;
  animation-name: disappear;
  opacity: 0;
}

/*淡入*/
.appear-view {
  animation: appearview 2.2s;
}

/*淡入*/
.appear-view-1 {
  animation: appearview 1.2s;
}

/*淡出*/
.disappear-view {
  animation: disappearview 1s;
}

.disappear-view-1 {
  animation: disappearview 1s;
}

.right-move {
  animation: rightmove 1s;
}

.left-move {
  animation: leftmove 1s;
}

.left-move-disappear {
  animation: leftmovedisappear 1s;
}

.right-move-disappear {
  animation: rightmovedisappear 1s;
}

@keyframes leftmovedisappear {
  from {
    left: 0;
  }
  /*执行动画的初始位置*/
  to {
    left: -200px;
  }
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}

@keyframes rightmovedisappear {
  from {
    left: 0;
  }
  /*执行动画的初始位置*/
  to {
    left: 200px;
  }
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}


@keyframes leftmove /* 对应animation-name，里面为执行的动画*/
{
  from {
    left: -200px;
  }
  /*执行动画的初始位置*/
  to {
    left: 0;
  }
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}


@keyframes rightmove /* 对应animation-name，里面为执行的动画*/
{
  from {
    left: 200px;
  }
  /*执行动画的初始位置*/
  to {
    left: 0;
  }
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes appear /* 对应animation-name，里面为执行的动画*/
{
  /*from {*/
  /*  top: 800px;*/
  /*}*/
  /*!*执行动画的初始位置*!*/
  /*to {*/
  /*  top: 0;*/
  /*}*/
  0% {
    opacity: 0;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes disappear {
  from {
    top: 0;
  }
  /*执行动画的初始位置*/
  to {
    top: 200px;
  }
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}

@keyframes appearview {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes disappearview {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
  }
}

.item-hidden {
  opacity: 0;
}

.bottom-black {
  height: 140px;
  width: 100%;
}

.dove-div {
  position: fixed;
  top: 0;
  right: 0;
  width: 15%;
  padding-top: 30px;
  padding-right: 30px;
}

.dove-div img {
  width: calc(100% - 30px);
  height: auto;
}

.title-div {
  position: fixed;
  z-index: 101;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.title-div img {
  width: 50%;
  height: auto;
}

.next-5 {
  position: absolute;
  top: 80px;
  right: -30px;
  font-size: 25px;
}

.next-5-text {
  font-size: 28px;
  letter-spacing: 5px;
}

.next-times{
  color: red !important;
}

.fixed-block {
  position: fixed;
  width: 1426px;
  height: 30%;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
}


/*三角形*/
#triangle-up {
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 30px solid #a0896b;
}

.times-text {
  font-size: 18px;
  color: #cf131c;
}

.header-img-div {
  position: relative;
}

.header-img-div img {
  width: 1426px;
  height: 375px;
  aspect-ratio: auto 1426 / 375;

}

.header-title {
  display: flex;
  justify-content: center;
  width: 1200px;
  margin-top: 5px;
  position: relative;
}

.header-title span {
  width: 1426px;
  color: #302f31;
  font-size: 24px;
  font-family: "微软雅黑";
}

.back-top {
  position: fixed;
  right: 0;
  bottom: 30px;
  cursor: pointer;
}

.back-top img{
  width: 50px;
  height: 50px;

}
