
.input_down{
    color: red;
    font-size: 14px;
    margin: 0;
    font-weight: 800;
    line-height: 15px;
    font-family: '思源黑體';
}

.floating-window {
    position: fixed;
    right: 60px;
    bottom: 40px;
    width: 300px;
    font-family: '思源黑體';
    background-color: #fff;
    border: 1px solid #3b8b64;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%); /* 初始時隱藏在畫面右邊 */
    transition: transform 0.3s ease;
    border-radius:15px 0 0 0 ;
    

}
.hover_style:hover{
    text-decoration: underline; 
    cursor: pointer;
}
.hover_change:hover{
    cursor: pointer;
  }

.floating-window.show_contact {
    transform: translateY(0); /* 顯示在畫面右下角 */
}

.window-content {
    width: 300px;
    padding: 20px;
    font-family: '思源黑體';
    overflow-y: auto;
    height: 600px;
    &::-webkit-scrollbar{
        width: 2px;
    }
    &::-webkit-scrollbar-thumb{
        background-color: #3b8b64;
    }

}

.toggle-button_contact {
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
    background-color: #3b8b64;
    font-size: 18px;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius:13px 0 0 0 ;
    font-family: '思源黑體';
}



.toggle-button_contact:hover{
    background-color: #28aa6b;
}
