/* 弹窗遮罩层：全屏且置顶 */
.faq-container { margin: 10px; border: 1px solid #eee; border-radius: 8px; background: #fff; font-family: sans-serif; }
.faq-head { padding: 12px; font-size: 16px; border-bottom: 1px solid #eee; margin: 0; color: #333; }
.faq-item { border-bottom: 1px solid #f5f5f5; }
.faq-q { padding: 12px; font-size: 14px; position: relative; cursor: pointer; color: #444; padding-right: 35px; }
/* d */
.faq-q::after { content: '+'; position: absolute; right: 15px; color: #999; font-size: 18px; }
.faq-item.active .faq-q::after { content: '-'; }
.faq-a { 
    display: none; /* deufut */
    padding: 10px 12px; 
    font-size: 13px; 
    color: #666; 
    line-height: 1.6; 
    background: #fafafa; 
    border-top: 1px solid #f9f9f9; 
}
/* show */
.faq-item.active .faq-a { display: block; }
.open-inquiry-btn {
    background-color: #9641e3;
    height: 39px;
    border-radius: 30px;
    margin: 0 20px 0 !important;
    box-sizing: border-box;
    border: none;
    margin: 0;
    padding: 0 24px;
    color: #ffffff;
    font-size: 16px;
    font-family: inherit;
    line-height: 34px;
    text-align: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    outline: none;

}
.inquiry-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* 加深背景，突出表单 */
    z-index: 1000;
    display: flex;
    align-items: center; /* 垂直居中 */
    justify-content: center;
    padding: 15px; /* 防止表单贴边 */
}

/* 弹窗内容容器 */
.inquiry-modal-content {
    background: #fff;
    width: 100%;
    max-width: 480px; /* 限制大屏手机宽度 */
    border-radius: 12px;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 头部样式 */
.inquiry-modal-header {
    padding: 15px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.inquiry-modal-header h5 {
    margin: 0;
    font-size: 18px;
    color: #333;
}

.inquiry-modal-close {
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

/* 表单内部间距 */
.quick-inquiry-wrapper {
    padding: 20px;
}

/* 输入框通用样式 */
.form-field {
    margin-bottom: 15px;
}

.form-field input[type="text"], 
.form-field textarea {
    width: 100%;
    padding: 12px 15px; /* 增加点击区域 */
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px; /* 关键：移动端字体不低于16px可防止输入时页面自动缩放 */
    box-sizing: border-box;
    -webkit-appearance: none; /* 移除iOS默认内阴影 */
}

.form-field textarea {
    resize: none;
}

/* 验证码容器 */
.inquiry_captcha_container {
    display: flex;
    gap: 10px;
}

.inquiry_captcha {
    flex: 1;
}

.inquiry_captcha_img {
    height: 45px; /* 与输入框高度匹配 */
    border-radius: 6px;
    cursor: pointer;
}

/* 提交按钮 */
.inquiry_submit_btn {
    width: 100%;
    background: #ff6600; /* B2B常用的橙色，可改为你的品牌色 */
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 30px; /* 圆角矩形更符合现代移动端审美 */
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.2);
}

.inquiry_submit_btn:active {
    background: #e65c00;
    transform: scale(0.98);
}

/* 按钮下方的发送状态 */
.inquiry_loading {
    color: #666;
    font-size: 14px;
}
    .listProductBanner {
    text-align: center;
    background-color: #fff;
    padding: 20px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
    font-family: Arial, sans-serif;
    margin: 16px;
}
._message {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
    line-height: 30px;
}
._message_small {
    display: block;
    font-size: 18px;
    line-height: 23px;
    color: #333;
    margin-bottom: 15px;
}

.registerBT {
    font-size:18px;
    padding: 12px 30px;
    background-color: #cf0000;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color .3s;
    display: inline-block;

.product-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
    white-space: nowrap;
    flex-shrink: 0;
}

.product-btn-primary {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: #fff;
    box-shadow: 0 2px 6px rgba(79, 172, 254, 0.25);
}

.product-btn-primary:hover {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(79, 172, 254, 0.35);
    transform: translateY(-1px);
}