 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }



        .cust-form-body {
			/* background-color: #f5f5f5; */
            /* min-height: 100vh; */
            padding: 15px;
			/* border:1px solid red; */
        }
        .cust-form-container {
            width: 100%;
            max-width: 1380px;
            margin: 0 auto;
            /* background-color: white; */
            padding: 20px 15px;
            /* border-radius: 8px; */
            /* box-shadow: 0 2px 8px rgba(0,0,0,0.08); */
        }

        .cust-form-row {
            display: flex;
            flex-direction: column;
            margin-bottom: 18px;
            gap: 12px;
        }

        .cust-input-title,
        .cust-input-name,
        .cust-input-phone,
        .cust-input-email {
            width: 100%;
            height: 50px;
			background-color:#F0F0F0;
			color:#757575;
            padding: 0 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 12px;
            outline: none;
            transition: border-color 0.2s ease;
        }

        .cust-input-title:focus,
        .cust-input-name:focus,
        .cust-input-phone:focus,
        .cust-input-email:focus,
        .cust-input-captcha:focus,
        .cust-input-content:focus {
            border-color: #0066cc;
            box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.1);
        }

        .cust-input-content {
            width: 100%;
            min-height: 120px;
			background-color:#F0F0F0;
			color:#757575;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            resize: vertical;
            font-size: 12px;
            font-family: inherit;
            outline: none;
            transition: border-color 0.2s ease;
        }

        .cust-captcha-group {
            display: flex;
            align-items: center;
            gap: 10px;
        }
.cust-input-captcha {
    /* 保持原有样式 */
    flex: 1;
    height: 50px;
    background-color: #F0F0F0;
    color: #757575;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 12px;
    outline: none;
    
    /* 添加垂直对齐 */
    display: inline-block;  /* 确保可以使用 vertical-align */
    vertical-align: middle;
}

.cust-captcha-img {
    /* 保持原有样式 */
    width: 120px;
    height: 50px;
    /* border: 1px solid #ddd; */
    border-radius: 6px;
    cursor: pointer;
    touch-action: manipulation;
    
    /* 添加垂直对齐 */
    display: inline-block;  /* 确保可以使用 vertical-align */
    vertical-align: middle;
}

        .cust-privacy-row {
            margin-bottom: 22px;
            display: flex;
            align-items: center;
            font-size: 12px;
            color: #666;
        }
        #cust-privacy {
            margin-right: 8px;
            width: 18px;
            height: 18px;
            cursor: pointer;
        }
        #cust-privacyLink {
            color: #0066cc;
            text-decoration: underline;
            cursor: pointer;
            margin: 0 2px;
        }

        .cust-submit-btn {
            width: 100%;
            height: 55px;
            background-color: #0066cc;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
            touch-action: manipulation;
            transition: background-color 0.2s ease;
        }
        .cust-submit-btn:hover,
        .cust-submit-btn:active {
            background-color: #0052a3;
        }

        .cust-modal {
            display: none;
            position: fixed;
            z-index: 9999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6);
            padding: 20px;
            overflow-y: auto;
        }

        .cust-modal-content {
            background-color: white;
            width: 100%;
            max-width: 800px;
            max-height: 90vh;
            margin: 20px auto;
            padding: 20px;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .cust-modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #eee;
            padding-bottom: 12px;
            margin-bottom: 15px;
        }
        .cust-modal-title {
            margin: 0;
            font-size: 14px;
            color: #333;
        }
        .cust-close {
            color: #aaa;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            touch-action: manipulation;
        }
        .cust-close:hover {
            color: #000;
        }

        .cust-modal-body {
            flex: 1 1 auto;
            overflow-y: auto;
            padding: 0 5px;
            max-height: calc(90vh - 120px);
            line-height: 1.8;
        }
        .cust-privacy-content h3 {
            color: #333;
            margin-top: 20px;
            margin-bottom: 8px;
            font-size: 12px;
        }
        .cust-privacy-content p {
            line-height: 1.8;
            color: #666;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .cust-modal-footer {
            padding-top: 15px;
            border-top: 1px solid #eee;
            text-align: center;
        }
        .cust-agree-btn {
            background-color: #ff0000;
            color: white;
            border: none;
            padding: 14px 30px;
            font-size: 16px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.2s ease;
        }
        .cust-agree-btn:hover {
            background-color: #cc0000;
        }

        .cust-alert-modal {
            z-index: 10000;
        }
        .cust-alert-content {
            width: 100%;
            max-width: 320px;
            height: auto;
            padding: 30px 20px;
            text-align: center;
            margin: 50% auto;
            transform: translateY(-50%);
        }
        .cust-alert-message {
            margin: 0 0 25px 0;
            color: #333;
            font-size: 16px;
            line-height: 1.6;
        }
        .cust-alert-btn {
            background-color: #0066cc;
            color: white;
            border: none;
            padding: 12px 25px;
            font-size: 16px;
            border-radius: 6px;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }
        .cust-alert-btn:hover {
            background-color: #0052a3;
        }

        @media (min-width: 768px) {
            .cust-form-body {
                padding: 30px;
                display: flex;
                justify-content: center;
                padding-top: 50px;
            }
            .cust-form-container {
                padding: 30px;
            }
            .cust-form-row {
                flex-direction: row;
                align-items: center;
                gap: 20px;
            }
            .cust-input-title,
            .cust-input-name,
            .cust-input-phone,
            .cust-input-email {
                width: 50%;
                height: 45px;
            }
            .cust-input-content {
                min-height: 100px;
            }
            .cust-input-captcha {
                width: 200px;
                height: 40px;
                flex: none;
            }
            .cust-captcha-img {
                width: 100px;
                height: 40px;
            }
            .cust-submit-btn {
                width: 200px;
                height: 45px;
                font-size: 16px;
            }
            .cust-modal-content {
                margin: 50px auto;
                max-height: 80vh;
            }
            .cust-modal-body {
                max-height: calc(80vh - 120px);
            }
            .cust-alert-content {
                margin: 100px auto;
                transform: none;
            }
        }