.lg-enterprise-content {
    min-height: 800px;
    padding-top: 80px;
}

body {
    background-color: #f5f5f5;
}

.lg-enterprise-content .enterprise-content {
    display: flex;
}

.lg-enterprise-content .enterprise-content .left-panel {
    width: 40%;
    background: linear-gradient(to right bottom, #172F97, #315FDE);
    color: white;
    padding: 120px;
    text-align: center;
}

.lg-enterprise-content .enterprise-content .left-panel .text-header{
    font-size: 36px;
    font-weight: 900;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}

.lg-enterprise-content .enterprise-content .left-panel .text-message{
    font-size: 16px;
    font-weight: 700;
    margin-top: 50px;
    color: white;
}

.lg-enterprise-content .enterprise-content .left-panel .benefits{
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    margin-top: 100px;
    margin-left: 50px;
}
.lg-enterprise-content .enterprise-content .left-panel .benefits .benefit-item{
    
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.lg-enterprise-content .enterprise-content .left-panel .benefits .benefit-item:before{
    content: "✓";
    margin-right: 10px;
    color: #4caf50;
    font-weight: bold;
}



.lg-enterprise-content .enterprise-content .right-panel {
    width: 60%;
    background-color: #f8f9fa;
    padding: 50px 80px 50px 100px;
}
.lg-enterprise-content .enterprise-content .right-panel .form-container {
    background-color: white;
    border-radius: 8px;
    padding: 40px 130px 30px 130px;
    min-height: 800px;
    min-width: 900px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.lg-enterprise-content .enterprise-content .right-panel .form-container .form-header {
    color: rgba(37, 99, 235, 0.88);
    font-family: "Inter";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    text-align: center;
}

.lg-enterprise-content .enterprise-content .right-panel .form-group {    
    margin-bottom: 20px;
}

/* 新增：行内表单组样式 */
.lg-enterprise-content .enterprise-content .right-panel .form-group.inline-group {
    display: flex;
    gap: 20px;
    margin-top: 50px;
}

.lg-enterprise-content .enterprise-content .right-panel .form-group.inline-group > div {
    flex: 1;
}

.lg-enterprise-content .enterprise-content .right-panel .form-group.business-scenario{
    background-color: #F0F7FF;
    padding: 20px;
    min-height: 140px;
    width: 100%;
}


/* 必填项星号样式 */
label.required:after {
    content: "*";
    color: red;
    margin-left: 4px;
}

.lg-enterprise-content .enterprise-content .right-panel .form-group .submit-btn {    
    background-color: #315FDE;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 40%;
    gap: 8px; /* 图标和文字之间的间距 */
    transition: background-color 0.3s;
}

.lg-enterprise-content .enterprise-content .right-panel .submit-btn:hover {        
    background-color: #172F97;
}
.submit-btn img {
    vertical-align: middle; /* 确保图标垂直居中 */
}
.lg-enterprise-content .enterprise-content .right-panel .form-container .security-note {
    font-size: 12px;
    color: #666;
    margin-top: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px; /* 图标和文字之间的间距 */
}

.security-note .highlight {
    color: #1890ff; /* 蓝色高亮 */
    font-weight: 500;
}

.security-note img {
    vertical-align: middle; /* 确保图标垂直居中 */
}
label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.88);
}

input[type="text"],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #D9D9D9;
    border-radius: 6px;
    font-size: 14px;
}
/* 输入框获取焦点时的样式 */
input[type="text"]:focus,
select:focus,
textarea:focus {
    border-color: #2243B4; /* 高亮边框颜色 */
    box-shadow: 0 0 0 2px rgba(34, 67, 180, 0.2); /* 可选：添加轻微的外发光效果 */
}
textarea {
    height: 150px;
    resize: vertical;
    border: 1px solid #D9D9D9;
    border-radius: 6px;
}