.informationPage {
  margin-top: 60px;
  width: 100%;
  max-width: 1240px;
  display: flex;
  flex-flow: column;
  justify-content: start;
}

.informationPage > .BigTitle {
  aspect-ratio: 1240/94;
  max-height: 94px;
  width: 100%;
  display: inline-flex;
}

.informationPage > .Brdiv1 {
  width: 100%;
  height: 60px;
}

.informationPage > .ImpFlexBox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.ImpFlexBox > div {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}

.ImpFlexTimeBox > .TimeBoxPage {
  display: flex;
  flex: 1;
  flex-direction: row-reverse;
  justify-content: center;
  font-size: 24px;
  align-items: end;
  font-family: "Roboto";
  color: #000;
}

.TimeBoxPage > span:first-child {
  opacity: 0.5;
  vertical-align: bottom;
  font-size: 18px;
}

.ImpFlexLineBox {
  margin-top: 24px;
  position: relative;
}

.ImpFlexLineBox::before {
  position: absolute;
  content: "";
  width: 100%;
  max-width: 1240px;
  height: 1px;
  background: rgba(35, 139, 228, 0.2);
}

.ImpFlexLineBox > .LinePointBox {
  flex: 1;
  height: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.LinePointBox > .LinePointBack {
  width: 12px;
  height: 12px;
  border-radius: 12px;
  background: rgba(35, 139, 228, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.LinePointBack > .LinePointInset {
  height: 4px;
  width: 4px;
  border-radius: 4px;
  background-color: #238be4;
  opacity: 1;
}

.ImpFlexPageBox > .PageBox {
  aspect-ratio: 392/290;
  flex: 1;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.5s ease-in-out;
}

.ImpFlexPageBox > .PageBox:hover {
  margin-top: -10px;
  aspect-ratio: 406/300;
  min-height: 300px;
}

.ImpFlexPageBox > .PageBox:hover > .PageBoxTBBox {
  aspect-ratio: 406/290;
  max-width: 406px;
  min-height: 290px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.6);
}

.ImpFlexPageBox > .PageBox:hover > .PageBoxTBBox > .TBBoxTextBox > span {
  color: #000;
}

.ImpFlexPageBox
  > .PageBox:hover
  > .PageBoxTBBox
  > .TBBoxTextBox
  > span:first-child {
  color: #238be4;
}

.ImpFlexPageBox
  > .PageBox:hover
  > .PageBoxTBBox
  > .TBBoxButtonBox
  > .ImpdetailButton {
  color: #238be4;
  transition: all 0.2s ease-in-out;
}

.ImpFlexPageBox
  > .PageBox:hover
  > .PageBoxTBBox
  > .TBBoxButtonBox
  > .ImpdetailButton
  > .ButtonBorder {
  border: 2px solid #238be4;
  transition: all 0.2s ease-in-out;
}

.ImpFlexPageBox > .PageBox:hover > .PageBoxInd {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.PageBox > .PageBoxInd {
  margin-top: 12px;
  width: 0px;
  height: 0px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #f1f8ff;
}

.PageBox > .PageBoxTBBox {
  background-color: #f1f8ff;
  border-radius: 10px;
  aspect-ratio: 392/280;
  max-width: 392px;
  color: #000;
  padding: 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s ease-in-out;
}

.PageBoxTBBox > .TBBoxTextBox {
  max-width: 332px;
  height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  color: #333333;
  font-size: 16px;
  line-height: 30px;
  transition: all 0.5s ease-in-out;
}
.TBBoxTextBox > span {
  transition: all 0.2s ease-in-out;
}

.TBBoxTextBox > span:first-child {
  color: #000;
  font-size: 18px;
  font-weight: 500;
}

.TBBoxButtonBox {
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  position: relative;
  transition: all 0.2s ease-in-out;
}

.TBBoxButtonBox > img {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
  height: 22px;
  transition: all 0.2s ease-in-out;
}

.informationPage > .AsMore {
  margin-bottom: 30px;
  height: 24px;
  margin-top: 44px;
  display: inline-flex;
  width: 100%;
  justify-content: center;
}

/*#region 详情按钮*/
.TBBoxButtonBox > .ImpdetailButton {
  overflow: hidden;
  position: relative;
  text-align: center;
  line-height: 38px;
  color: #000;
  width: 96px;
  border-radius: 100px;
  box-sizing: border-box;
  height: 40px;
  z-index: 1;
}

.ImpdetailButton > .ButtonBorder {
  width: 100%;
  height: 100%;
  border-radius: 100px;
  box-sizing: border-box;
  z-index: 10;
  border: 2px solid #000;
}

.ImpdetailButton:after,
.ImpdetailButton:before {
  content: "";
  position: absolute;
  top: -2px;
  left: calc(-100% - 60px);
  height: calc(100% + 30px);
  width: calc(100% + 30px);
  color: #000;
  border-radius: 2px;
  transform: skew(-25deg);
}

.ImpdetailButton:after {
  background: #404040;
  transition: left 0.8s cubic-bezier(0.86, 0, 0.07, 1) 0.2s;
  z-index: 0;
  opacity: 1;
}

.ImpdetailButton:before {
  background: #238be4;
  z-index: 5;
  transition: left 1s cubic-bezier(0.86, 0, 0.07, 1);
}
.ImpdetailButton:hover > .ButtonBorder > span {
  color: #000;
}
.ImpdetailButton:hover:after {
  left: calc(0% - 10px);
  transition: left 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}

.ImpdetailButton:hover:before {
  left: calc(0% - 10px);
  transition: left 1s cubic-bezier(0.86, 0, 0.07, 1);
}

.ImpdetailButton > .ButtonBorder > span {
  position: relative;
  z-index: 6;
  font-weight: 500;
}
/*#endregion */
@media screen and (max-width: 1240px) {
  .informationPage {
    margin-top: 40px;
    width: 100%;
    max-width: unset;
    display: flex;
    flex-flow: column;
    justify-content: start;
  }

  .informationPage > .BigTitle {
    aspect-ratio: 426/64;
    max-height: 64px;
    width: 100%;
    display: inline-flex;
  }

  .informationPage > .Brdiv1 {
    width: 100%;
    height: 30px;
  }

  .informationPage > .ImpFlexBox {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
    padding-left: 30px;
    box-sizing: border-box;
  }

  .ImpFlexBox > div {
    width: auto;
    height: 100%;
    flex-direction: column;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
  }

  .ImpFlexBox > .ImpFlexTimeBox {
    margin-top: 30px;
    min-width: 140px;
    box-sizing: border-box;
    height: 620px;
  }

  .ImpFlexTimeBox > .TimeBoxPage {
    display: flex;
    flex: 1;
    flex-direction: row-reverse;
    justify-content: center;
    font-size: 24px;
    align-items: start;
    font-family: "Roboto";
    color: #000;
  }

  .TimeBoxPage > span:first-child {
    opacity: 0.5;
    line-height: 40px;
    vertical-align: bottom;
    font-size: 18px;
  }

  .ImpFlexLineBox {
    margin-top: 30px;
    position: relative;
    min-width: 50px;
    box-sizing: border-box;
    min-height: 620px;
  }

  .ImpFlexLineBox::before {
    top: -30px;
    position: absolute;
    content: "";
    width: 1px;
    max-width: unset;
    height: 100%;
  }

  .ImpFlexLineBox > .LinePointBox {
    padding-top: 15px;
    box-sizing: border-box;
    flex: 1;
    height: 12px;
    display: flex;
    justify-content: center;
    align-items: start;
  }

  .LinePointBox > .LinePointBack {
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background: rgba(35, 139, 228, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .LinePointBack > .LinePointInset {
    height: 4px;
    width: 4px;
    border-radius: 4px;
    background-color: #238be4;
    opacity: 1;
  }

  .ImpFlexPageBox {
    flex: auto;
    min-height: 620px;
    min-width: unset;
    width: 100%;
    justify-content: space-between;
  }

  .ImpFlexPageBox > .PageBox {
    aspect-ratio: unset;
    width: 100%;
    flex: 1;
    min-height: 200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition: all 0.5s ease-in-out;
  }

  .ImpFlexPageBox > .PageBox:hover {
    margin-top: 0px;
    margin-left: -20px;
    aspect-ratio: unset;
    min-height: 200px;
  }

  .ImpFlexPageBox > .PageBox:hover > .PageBoxTBBox {
    aspect-ratio: unset;
    max-width: unset;
    width: 100%;
    height: 200px;
    min-height: 200px;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.6);
  }

  .ImpFlexPageBox > .PageBox:hover > .PageBoxTBBox > .TBBoxTextBox > span {
    color: #000;
  }

  .ImpFlexPageBox
    > .PageBox:hover
    > .PageBoxTBBox
    > .TBBoxTextBox
    > span:first-child {
    color: #238be4;
  }

  .ImpFlexPageBox
    > .PageBox:hover
    > .PageBoxTBBox
    > .TBBoxButtonBox
    > .ImpdetailButton {
    color: #238be4;
    transition: all 0.2s ease-in-out;
  }

  .ImpFlexPageBox
    > .PageBox:hover
    > .PageBoxTBBox
    > .TBBoxButtonBox
    > .ImpdetailButton
    > .ButtonBorder {
    border: 2px solid #238be4;
    transition: all 0.2s ease-in-out;
  }

  .ImpFlexPageBox > .PageBox:hover > .PageBoxInd {
    opacity: 0;
    transition: all 0.5s ease-in-out;
  }

  .PageBox > .PageBoxInd {
    margin-top: -105px;
    margin-left: -10px;
    width: 0px;
    height: 0px;
    border-top: 10px solid transparent;
    border-right: 10px solid #f1f8ff;
    border-bottom: 10px solid transparent;
  }

  .PageBox > .PageBoxTBBox {
    background-color: #f1f8ff;
    border-radius: 10px;
    aspect-ratio: unset;
    max-width: unset;
    width: 100%;
    max-height: 200px;
    color: #000;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease-in-out;
  }

  .PageBoxTBBox > .TBBoxTextBox {
    max-width: 332px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    color: #333333;
    font-size: 16px;
    line-height: 30px;
    transition: all 0.5s ease-in-out;
  }
  .TBBoxTextBox > span {
    transition: all 0.2s ease-in-out;
  }

  .TBBoxTextBox > span:first-child {
    color: #000;
    font-size: 18px;
    font-weight: 500;
  }

  .TBBoxButtonBox {
    min-height: 140px;
    width: auto;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: end;
    position: relative;
    transition: all 0.2s ease-in-out;
  }

  .TBBoxButtonBox > img {
    position: absolute;
    top: unset;
    bottom: 0;
    transform: translate(0, 0);
    right: 0;
    height: 22px;
    transition: all 0.2s ease-in-out;
  }
}
