@keyframes rotateAnimation {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }


  .img_rotate {
    animation: rotateAnimation 2s linear infinite;
  }

  .down_img {
    opacity: 1;
    /* 默认不透明度 */
    transition: opacity 0.5s ease;
    /* 平滑过渡效果 */
  
    
    padding: 5px 10px 5px 10px;border-radius: 6px;display: flex;background-color: #4c89f3;color: white;
  }
  
  .down_img:hover {
    opacity: 0.5;
    /* 鼠标移入时变为半透明 */
  }

  


  .order_flow_line_div {
    display: flex;flex-direction: column;padding: 10px 0px 10px 0px;height: 80px;justify-content: center;
  }
  .order_flow_line_check{
    margin-top: -30px;width: 80px;height: 6px;
    background: repeating-linear-gradient(
                                    45deg,
                                    #15b3e8,
                                    #15b3e8 10px,
                                    #0e56d2 10px,
                                    #0e56d2 20px
                                );
  }
  .order_flow_line{
    margin-top: -30px;width: 80px;height: 6px;
    background-color:  #15b3e8;
  }

  #order_info_title{
    font-size: 14px;font-weight: 550;display: flex;justify-content: start; padding: 10px 40px 10px 40px ;
  }
  .order_info_item{
    padding: 10px 40px 10px 40px ;width: 100%;height: 40px;display: flex;align-items: center;
  }