/* top */
.top{
    position: fixed;
    right: 0px;
    bottom: 0px;  
    z-index: 999;  
}
.top img{
  width: 35px;
}
.top img:hover{
  transform: scale(1.1);
  transition: all 0.3s ease;
}
.topDiv:hover::after{
    content: "立即諮詢";
    position: absolute;
    right: 50px;
    bottom: 0px;
    transform: translateY(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 0.8rem;
    opacity: 1;
    z-index: 20;
    transition: all 0.3s ease;    
}
.topDiv{
    padding: 3px;
    background-color: #ffffff7c;
    border: 1px solid #000000;    
}
.topDivUp{
    color: #FFF;
    font-size: 1.5rem;
    text-align: center;
    padding: 5px;
    background-color: #592316;
}
.topDivUp:hover::after{
    content: "置頂";
    position: absolute;
    right: 50px;
    bottom: 0px;
    transform: translateY(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 0.8rem;
    opacity: 1;
    z-index: 20;
    transition: all 0.3s ease;    
}
.topDivUp:hover{
  color: #ffda94;
  transition: all 0.3s ease;
}
@media(max-width:430px){
  .topRwd{
    display: block !important;
  }
  .top img{
  width: 30px;
}
}
