/* WhatsApp Styles */
    .whatsapp-icon {
        position: fixed;
        left: 20px;
        bottom: 35px;
        width: 50px;
        height: 50px;
        background-image: url('/uploads/henghao-image/WhatsApp.svg');
        background-size: cover;
        cursor: pointer;
        z-index: 1000;
    }

    .chat-box {
		display:none;
        position: fixed;
        left: 20px;
        bottom: 90px;
        width: 310px;
        background-color: white;
        border: 1px solid #ccc;
        border-radius: 10px;
        z-index: 999;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .chat-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
        background-color: #075e54;
        color: white;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .chat-header img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
    }

    .chat-header .phone-number {
        margin-left: 10px;
        font-size: 14px;
		color: white;
    }

    .minimize-btn {
        cursor: pointer;
        font-size: 20px;
        font-weight: bold;
    }

    .chat-body {
        padding: 10px;
        background-image: url('/uploads/henghao-image/wappbjt.webp');
        background-size: cover;
        background-repeat: no-repeat;
        min-height: 150px;
        font-size: 14px;
    }

    .chat-message {
        background-color: #ffffff;
        padding: 8px 12px;
        border-radius: 0px 8px 8px 8px;
        max-width: 90%;
        margin-bottom: 10px;
    }

    .chat-footer {
        display: flex;
        align-items: center;
        padding: 10px;
        border-top: 1px solid #ccc;
    }

    .chat-footer input {
        flex: 1;
        padding: 8px;
        border-radius: 10px;
        border: 1px solid #ccc;
        margin-right: 10px;
    }

    .chat-footer button {
        padding: 8px 12px;
        background-color: #38bf4a;
        border: none;
        color: white;
        border-radius: 10px;
        cursor: pointer;
        font-weight: 600;
    }
/* WhatsApp Styles End*/
/* 弹窗表单 Styles*/
.popup-container {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #fff;
        width: 95%;
        max-width: 750px;
        padding: 0px 20px;
        border-radius: 10px;
        box-shadow: 0 0 20px rgba(0,0,0,0.2);
        z-index: 9999;
        overflow-y: auto;
        max-height: 90vh;
        font-size: 16px;
    }
    .popup-container h2 {
        color: #005090;
        text-align: center;
    }
    .popup-container p {
        font-size: 15px;
        text-align: center;
        margin-bottom: 20px;
    }
    form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .form-row {
        display: flex;
        gap: 15px;
    }
    .form-group {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 1px;
    }
    input, select, textarea {
        padding-left: 5px;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 5px;
        width: 100%;
    }
    textarea {
        min-height: 80px;
        resize: vertical;
    }
    .inline-options {
        display: flex;
        flex-wrap: wrap;
        gap: 10px 15px;
        align-items: center;
		border: 1px solid #ccc;
        padding: 8px;
    }
    .inline-options label {
        font-size: 15px;
        display: flex;
        align-items: center;
        white-space: nowrap;
    }
    .inline-options input[type="radio"] {
        margin-right: 5px;
        transform: scale(1.1);
    }
    .submit-btn {
        padding: 8px;
        background-color: #005090;
        color: white;
        font-size: 18px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }
    .close-btn {
        margin-top: 10px;
        background: none;
        border: none;
        color: #000;
        cursor: pointer;
        display: block;
        text-align: center;
        width: 100%;
    }
.form-group p{text-align: left;}
#popupForm p {margin-bottom: 0;}
#popupForm label {color: #000;}
#popupForm select {color: #616161;}
#popupForm input::placeholder {color: #616161;}
#popupForm textarea::placeholder {color: #616161;}
@media (max-width: 768px) {
#popupForm .chanpin-biaodan-ys p{font-size: 10px;}
.chanpin-biaodan-ys .cpbd-toux{width: 20px;height: 20px;line-height: 20px;}
.chanpin-biaodan-ys .cpbd-fgf {padding: 0 4px;}
		#popupForm .bdxs{display: none;}
        .popup-container {
            font-size: 14px;
        }
        input, select, textarea {
            font-size: 12px;
        }
		.inline-options label {
            font-size: 10px;
        }
        .inline-options {
            gap: 8px 12px;
        }
}
/* 弹窗表单 Styles End*/