footer{
    /* position: fixed;     */
    display: flex;
    flex-wrap: wrap;
  
    justify-content: center;
    align-items: stretch;
  
    bottom: 0;
    left: 0;
    width: 100%;
    /* padding: 15px 30px; */
    padding-bottom: 10px;
    background: #30343e;
    z-index: 9;
  
    box-sizing: border-box;
  }
  
  /* footer.active{
    display: flex;
    flex-wrap: wrap;
    -webkit-animation: fadeInBottomFromNone 0.5s ease-out;
    -moz-animation: fadeInBottomFromNone 0.5s ease-out;
    -o-animation: fadeInBottomFromNone 0.5s ease-out;
    animation: fadeInBottomFromNone 0.5s ease-out;
  } */
  
  footer .company{
    display: flex;
    flex-wrap: wrap;
    width: 275px;
  
    align-content: center;
  }
  
  footer .company .cover{
    width: 273px;
    padding-bottom: 6px;
  }
  
  footer .company .title{
    font-size: 16px;
    color: #FFF;
  }
  
  footer .year{
    display: flex;
    /* flex: 1; */
  
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
  }
  
  footer .year .cover{
    width: 62px;
    padding-right: 10px;
    box-sizing: border-box;
  }
  
  footer .year .title{
    flex: 1;
    padding-bottom: 5px;
    font-size: 16px;
    line-height: 26px;
    color: #FFF;
  }
  
  footer .fire{
    width: 205px;
    margin-right: 25px;
  }
  
  footer .content_link{
    display: inline-block;
    width: 100%;
    text-align: center; 
    color:#E3E3E3;
    
  }

  @media(max-width: 768px){
    footer{
      display: none;
    }
  }