/* ===== 在线咨询申报表单样式 ===== */

/* 服务优势 */
.zixun-advantage {
    display: flex;
    justify-content: space-between;
    padding: 40px 0 30px;
}
.zixun-adv-item {
    text-align: center;
    flex: 1;
    padding: 0 15px;
}
.zixun-adv-icon {
    font-size: 42px;
    margin-bottom: 10px;
    line-height: 1;
}
.zixun-adv-item h3 {
    font-size: 16px;
    color: #333;
    margin: 8px 0 4px;
    font-weight: 600;
}
.zixun-adv-item p {
    font-size: 13px;
    color: #999;
    margin: 0;
}

/* 表单布局 */
.zixun-form-wrapper {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}
.zixun-form-left {
    flex: 1;
    min-width: 0;
}
.zixun-form-left h2 {
    font-size: 24px;
    color: #222;
    margin: 0 0 8px;
}
.zixun-subtitle {
    color: #999;
    font-size: 14px;
    margin: 0 0 30px;
}

/* 表单行 */
.zixun-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.zixun-form-group {
    flex: 1;
    min-width: 0;
}
.zixun-form-group.full-width {
    flex: 0 0 100%;
}

/* 标签 */
.zixun-form-group label {
    display: block;
    font-size: 14px;
    color: #444;
    margin-bottom: 6px;
    font-weight: 500;
}
.zixun-form-group label .required {
    color: #e74c3c;
    margin-right: 2px;
}

/* 输入框 */
.zixun-form-group input[type="text"],
.zixun-form-group input[type="tel"],
.zixun-form-group input[type="email"] {
    width: 100%;
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0 14px;
    font-size: 14px;
    color: #333;
    background: #fff;
    transition: border-color .25s, box-shadow .25s;
    box-sizing: border-box;
    outline: none;
}
.zixun-form-group input:focus {
    border-color: #1e8c58;
    box-shadow: 0 0 0 2px rgba(30,140,88,.08);
}
.zixun-form-group input::placeholder,
.zixun-form-group textarea::placeholder {
    color: #bbb;
}
.zixun-form-group input.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231,76,60,.08);
}

/* 提示 */
.zixun-tip {
    display: block;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

/* 文本域 */
.zixun-form-group textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px 14px;
    font-size: 14px;
    color: #333;
    background: #fff;
    resize: vertical;
    min-height: 130px;
    transition: border-color .25s, box-shadow .25s;
    box-sizing: border-box;
    outline: none;
    font-family: inherit;
    line-height: 1.6;
}
.zixun-form-group textarea:focus {
    border-color: #1e8c58;
    box-shadow: 0 0 0 2px rgba(30,140,88,.08);
}

/* 单选组 */
.zixun-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.zixun-radio-label {
    display: flex !important;
    align-items: center;
    flex-direction: row !important;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    transition: all .25s;
    user-select: none;
    background: #fafafa;
    gap: 8px;
}
.zixun-radio-label:hover {
    border-color: #1e8c58;
    background: #f0faf5;
}
.zixun-radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin: 0;
    accent-color: #1e8c58;
    cursor: pointer;
}
.zixun-radio-label span {
    color: #333;
    font-weight: 600;
    font-size: 14px;
}
.zixun-radio-label small {
    color: #999;
    font-size: 12px;
}
.zixun-radio-label:has(input:checked) {
    border-color: #1e8c58;
    background: #eaf7f0;
}

/* 验证码 */
.zixun-captcha {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}
.zixun-captcha > label {
    display: none !important;
}
.zixun-captcha input {
    flex: 1;
}
.zixun-captcha img {
    height: 44px;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    flex-shrink: 0;
}

/* 提交按钮 */
.zixun-submit-btn {
    width: 100%;
    height: 52px;
    background: linear-gradient(135deg, #1e8c58 0%, #169b4e 100%);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    letter-spacing: 1px;
    margin-top: 10px;
}
.zixun-submit-btn:hover {
    background: linear-gradient(135deg, #167a4a 0%, #128a42 100%);
    box-shadow: 0 4px 15px rgba(30,140,88,.35);
    transform: translateY(-1px);
}
.zixun-submit-btn:active {
    transform: translateY(0);
    box-shadow: none;
}
.zixun-submit-btn.loading {
    opacity: .7;
    pointer-events: none;
}

/* 右侧卡片 */
.zixun-form-right {
    width: 300px;
    flex-shrink: 0;
}
.zixun-contact-card,
.zixun-tips-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
}
.zixun-contact-card h3,
.zixun-tips-card h3 {
    font-size: 16px;
    color: #333;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e8e8e8;
}
.zixun-contact-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
}
.zixun-contact-label {
    color: #999;
}
.zixun-contact-value {
    color: #333;
    font-weight: 500;
}
.zixun-qrcode {
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e8e8e8;
}
.zixun-qrcode p {
    font-size: 13px;
    color: #888;
    margin: 0 0 10px;
}
.zixun-qr-placeholder {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: #e0e0e0;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
}
.zixun-tips-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.zixun-tips-card ul li {
    position: relative;
    padding: 6px 0 6px 16px;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}
.zixun-tips-card ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: #1e8c58;
    border-radius: 50%;
}

/* 响应式 */
@media (max-width: 960px) {
    .zixun-form-wrapper {
        flex-direction: column;
    }
    .zixun-form-right {
        width: 100%;
    }
    .zixun-form-row {
        flex-direction: column;
        gap: 16px;
    }
    .zixun-advantage {
        flex-wrap: wrap;
        gap: 20px;
    }
    .zixun-adv-item {
        flex: 0 0 45%;
    }
    .zixun-radio-group {
        flex-direction: column;
    }
}
