.elementor-822 .elementor-element.elementor-element-e7b5da9 > .elementor-widget-container{margin:14px 14px 14px 14px;}#elementor-popup-modal-822{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-822 .dialog-message{width:640px;height:auto;}#elementor-popup-modal-822 .dialog-close-button{display:flex;}#elementor-popup-modal-822 .dialog-widget-content{box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}/* Start custom CSS for wpforms, class: .elementor-element-e7b5da9 *//* 1. 整体容器背景与文字 */
.wpforms-container {
    padding: 10px 5px !important;
    background-color: #000000 !important; /* 整体黑色背景 */
    color: #ffffff !important;
    font-family: inherit !important;
}

/* 2. 字段标题（如 Name, Mail, Phone 等）设为白色 */
.wpforms-form .wpforms-field-label,
.wpforms-form .wpforms-title,
.wpforms-form .wpforms-field-sublabel {
    color: #ffffff !important; /* 标题白色 */
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-bottom: 6px !important;
}

/* 必填项红星标记保留或微调 */
.wpforms-form .wpforms-required-label {
    color: #ff4d4d !important;
}

/* 3. 输入框背景黑、输入字白色、边框暗灰 */
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form select,
.wpforms-form textarea {
    width: 100% !important;
    height: 44px !important;
    padding: 10px 14px !important;
    background-color: #1a1a1a !important; /* 暗黑输入框底色 */
    border: 1px solid #333333 !important; /* 细深灰边框 */
    border-radius: 6px !important;
    font-size: 14px !important;
    color: #ffffff !important; /* 输入的文字为白色 */
    box-sizing: border-box !important;
    transition: all 0.2s ease-in-out !important;
}

/* 4. 输入框内的提示占位符文字（Placeholder）设为白色/亮灰 */
.wpforms-form input::placeholder,
.wpforms-form textarea::placeholder {
    color: #ffffff !important; /* 提示字白色 */
    opacity: 0.8 !important;   /* 稍带透明度，与真正输入的字保持区分 */
}

/* 针对兼容性处理 placeholder */
.wpforms-form input::-webkit-input-placeholder,
.wpforms-form textarea::-webkit-input-placeholder {
    color: #ffffff !important;
    opacity: 0.8 !important;
}

/* 5. 下拉选择框（Select）文字与图标白色 */
.wpforms-form select {
    color: #ffffff !important;
}
.wpforms-form select option {
    background-color: #1a1a1a !important; /* 下拉菜单选项背景黑 */
    color: #ffffff !important;            /* 下拉选项文字白 */
}

/* 6. 多行文本框（Message）高度 */
.wpforms-form textarea {
    height: 100px !important;
}

/* 7. 点击输入框高亮（Focus 状态） */
.wpforms-form input:focus,
.wpforms-form textarea:focus,
.wpforms-form select:focus {
    background-color: #262626 !important;
    border-color: #ffffff !important; /* 聚焦时边框变亮白 */
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3) !important;
    outline: none !important;
}

/* 8. 文件上传区域（Drag & Drop）黑色适配 */
.wpforms-form .wpforms-uploader {
    border: 2px dashed #444444 !important;
    border-radius: 8px !important;
    background-color: #111111 !important;
    color: #ffffff !important;
    padding: 20px !important;
}
.wpforms-form .wpforms-uploader .dz-message {
    color: #ffffff !important;
}

/* 9. 提交按钮美化（亮橙/亮色突出，或纯白框） */
.wpforms-form button[type="submit"],
.wpforms-form .wpforms-submit {
    width: 100% !important;
    height: 48px !important;
    background-color: #ff6600 !important; /* 提交按钮主色，可按需修改 */
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: background-color 0.2s ease-in-out !important;
}

.wpforms-form button[type="submit"]:hover,
.wpforms-form .wpforms-submit:hover {
    background-color: #e05500 !important;
}/* End custom CSS */