.process {
  width: 100%;
  /* height: 740px; */
  height: 850px;
  background-image: url("./../static/process.jpg");
  background-size: 100% 100%;
  position: relative;
  margin-top: 30px;
  /* padding-top: 540px; */
  padding-top: 430px;
  overflow: hidden;
}
.process_container {
  position: relative;
  padding: 0 8%;
  z-index: 1;
}
.process_container::after {
  width: 100%;
  /* top: 48%; */
  top: 65%;
  left: 0;
  height: 5px;
  background: rgba(255, 255, 255, 0.29);
  position: absolute;
  content: "";
  z-index: -1;
}
.process_event {
  width: 54px;
  height: 54px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.process_slide {
  overflow: hidden;
  flex: 1;
  padding: 0 5%;
  /* height: 130px; */
  height: 390px;
  position: relative;
}
.process_icon {
  width: 100%;
  height: 100%;
}
.process_event::after{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 30px;
  height: 30px;
  background: #FFF;
  z-index: -1;
  content: "";
}
.process_node {
  position: relative;
  width: fit-content;
  height: 100%;
  display: flex;
  align-items: center;
  cursor: pointer;

  padding-top: 120px;
}
.node_round {
  width: 22px;
  height: 22px;
  background: #005DA4;
  border-radius: 50%;
  border: 3px solid #dde4f9;
  transition: all .3s;
}
.process_number {
  position: absolute;
  /* top: 20px; */
  top: 205px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: 24px;
  color: #ffffff;
  transition: all .3s;
}
.year_active {
  font-size: 36px;
  font-weight: bold;
}
.round_active {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border: 10px solid #005DA4;
}
.mation_floating {
  position: absolute;
  top: 96px;
  left: 0;
  width: 100%;
}
.information{
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: all .3s;
}
.active{
  opacity: 1;
}
.process_img {
  width: 300px;
  height: 200px;
  border-radius: 5px;
}
.indicate_skidway {
  width: 1px;
  height: 104px;
  background: #ffffff;
  position: relative;
  top: 10px;
}
.indicate_skidway::after {
  position: absolute;
  top: -5px;
  left: -3px;
  width: 6px;
  height: 6px;
  background: #ffffff;
  border-radius: 50%;
  content: "";
}
.indicate_details{
    padding-left: 18px;
    height: 130px;
    overflow-y: auto;
    overflow-x: hidden;
}
.mation_picture {
  margin-bottom: 20px;
}
.indicate_row{
    display: flex;
    align-items: initial;
    margin-bottom: 20px;
}
.indicate_icon{
    width: 9px;
    height: 10px;
}
.indicate_right{
    padding-left: 12px;
    width: 270px;
font-weight: 400;
font-size: 14px;
color: #FFFFFF;
line-height: 22px;
}
.popup_mask{
  position: absolute;
  /* top: -420px; */
  top:-370px;
  left: -100%;
  background:transparent;
  border-radius: 10px;
  min-width: 300px;
  /* height: 300px; */
  transition: all .3s;
  padding: 25px;
  border: 1px solid #005DA4;
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
}
.process_img:first-child {
  margin-right: 10px;
}
.screen_container{
  display: none;
}
.notice_active{
  opacity: 1 !important;
  animation: floatUpDown 2s infinite ease-out;
}
.notice_lyaer{
  position: absolute;
  top:80px;
  left: -30px;
  width: 100px;
  height: 90px;
  background: #FFF;
  border-radius: 5px;
  opacity: 0.5;
  transition: all .5s;
}
.notice_lyaer:hover{
  opacity: 1;
}
.notice_img{
  width: 100%;
  height: 60px;
  border-radius: 5px 5px 0 0;
  display: flex;
}
.notice_node{
  padding: 5px;
}
.notice_main{
  font-size: 12px;
  color: #000;
  position: relative;
  font-weight: bold;
}
@keyframes floatUpDown {
  0%, 100% {
    top: 80px;
  }
  50% {
    top: 70px;
  }
}