/* 客户留言框样式 */
#feedback-form-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 1000;
    display: none;
    width: 320px;
    overflow: hidden;
}

.feedback-form {
    background: white;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.feedback-header {
    background: #0056b3;
    color: white;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feedback-header h3 {
    margin: 0;
    font-size: 18px;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
}

.feedback-body {
    padding: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.submit-btn {
    background: #0056b3;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
}

.submit-btn:hover {
    background: #003d82;
}

.feedback-button {
    position: fixed;
    bottom: 190px;
    right: 30px;
    background: #0056b3;
    color: white;
    border-radius: 50%;
    width: 75px;
    height: 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.feedback-button i {
    font-size: 30px;
    margin-bottom: 2px;
}

.feedback-button span {
    font-size: 14px;
}