@charset "UTF-8";
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

header{
    width:100%;
    display:flex;
    flex-wrap:wrap;
    box-shadow: 0 6px 14px #0000001a;
    position:fixed;
    z-index:18;
    background-color:#fff;
    padding: 20px 150px;
}
header figure{
    width:120px;
}
header figure img{
    width:100%;
}
main{
    min-height:600px;   
}
#wap {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #155c0a;  
    padding: 10px 13px;
    border-radius: 50%;
    transition: 0.4s;

}
#wap i{
    color: white;
    font-size:25px;
}
#wap:hover {
  border-radius:5px;
}
#wap a{
    text-decoration:none;
     color: white;
}
#wap span {
    display: none;
}

#wap:hover span {
    display: inline;
}
