:global {
    .infoItem {
        .ant-form {
            margin: 20px 0 40px 0;
        }

        .ant-form-item {
            margin-bottom: 0 !important;
        }

        .ant-form-item-required::before {
            display: none;
        }

        #ant-descriptions-item-label-required::before {
            display: inline-block;
            margin-right: 4px;
            color: #f5222d;
            font-size: 14px;
            font-family: SimSun, sans-serif;
            line-height: 1;
            content: '*';
        }

        /* 解决页面元素跳动问题 */
        .ant-input:placeholder-shown {
            overflow: hidden;
        }

        /* 解决表格被挤压问题 */
        .ant-descriptions-item-label {
            white-space: normal;
            width: 120px;
        }

        .ant-descriptions-item-content {
            white-space: normal;
            width: 22%;
            max-width: 235px;
            word-wrap: anywhere;
        }
    }
}