| 12345678910111213141516171819202122232425262728293031323334353637383940414243 | .annualReport-form {    .half-item {        width: 50%;        float: left;        height: auto;        margin-bottom: 0;        >p {            line-height: 27px;            min-height: 27px;            color: #000;        }        >.item-title {            color: #999;            font-size: 14px;        }    }    .annualReport-box {        background: #eee;        padding: 10px;        .four-item {            float: left;            width: 25%;            >p {                line-height: 27px;                min-height: 27px;                color: #000;            }            >.item-title {                color: #999;                font-size: 14px;            }        }    }    .ant-form-item {        .ant-form-item-label {            text-align: left;            label {                font-size: 14px;                color: #999;            }        }    }}
 |