.enterprise-modal .modal-content {
    width: 734px;
    max-height: 80vh;
    overflow-y: auto;
}

.detail-section {
    margin-bottom: 24px;
    display: flex;
    flex-wrap: wrap;
    margin-left: -3px;
    margin-right: -3px;
}

.detail-section {
    margin-bottom: 24px;
}

.detail-section .form-content {
    display: flex;
    flex-wrap: wrap;
    margin-left: -3px;
    margin-right: -3px;
}

.form-group-inline {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 8px;
    width: calc(50% - 6px);
    margin-left: 3px;
    margin-right: 3px;
    flex-shrink: 0;  /* 防止label缩小 */
}

/* 图片相关的form-group-inline占据整行 */
.form-group-inline.full-width {
    width: calc(100% - 6px);
}

.form-group-inline label {
    min-width: unset;
    margin: 0;
    margin-right: 4px;
    color: #666;
    text-align: left;
    font-weight: normal;  /* 移除加粗 */
    flex-shrink: 0;  /* 防止label缩小 */
}

.form-group-inline span {
    font-weight: 400;
    color: #333;
    text-align: left;
    padding-left: 0;  /* 移除可能的内边距 */
}

.section-title {
    font-size: 16px;
    color: #333;
    margin-bottom: 16px;
    font-weight: 500;
    width: 100%;
}

.image-preview {
    width: 200px;
    height: 120px;
    border: 1px solid #d9d9d9;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

/* 图片悬浮放大效果 */
.image-preview:hover .hover-image {
    display: block;
}

.hover-image {
    display: none;
    position: fixed;
    z-index: 1000;
    width: 300px;
    height: auto;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border-radius: 4px;
    padding: 4px;
}

.hover-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 修改按钮样式 */
.modal-actions .reject-btn {
    background: #fff;
    border: 1px solid #d9d9d9;
    color: rgba(0, 0, 0, 0.85);
    margin-right: 8px;
}

.modal-actions .reject-btn:hover {
    color: #ff4d4f;
    border-color: #ff4d4f;
}

.modal-actions .approve-btn {
    background-color: #FDAA4D;
    border: 1px solid #FDAA4D;
    color: #fff;
}

.modal-actions .approve-btn:hover {
    background-color: #ec9935;
    border-color: #ec9935;
}

.modal-header {
    margin: 0 0 20px;
    text-align: left;
    font-size: 16px;
    padding: 0 0 16px 0;
    line-height: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.modal-actions {
    padding: 16px 0;
    margin: 0 0px -16px;
    text-align: right;
    border-top: 1px solid #f0f0f0;
}

.id-card-container {
    display: flex;
    gap: 16px;
    width: calc(100% - 6px);
    margin: 0 3px;
}

.id-card-container .form-group-inline {
    width: calc(50% - 8px);
    margin: 0;
}

.license-container {
    display: flex;
    gap: 16px;
    width: 100%;
}

.license-item {
    flex: 1;
    display: flex;
}

.license-item label {
    display: block;
    margin-bottom: 8px;
    color: #666;
}
