diff --git a/public/react/src/modules/courses/busyWork/CommonWorkAppraise.js b/public/react/src/modules/courses/busyWork/CommonWorkAppraise.js
index ae40fedda..e24892680 100644
--- a/public/react/src/modules/courses/busyWork/CommonWorkAppraise.js
+++ b/public/react/src/modules/courses/busyWork/CommonWorkAppraise.js
@@ -271,11 +271,11 @@ class CommonWorkAppraise extends Component{
                   {work_members.map((item, index) => {
                     return <React.Fragment>
                       {isAdmin ? 
-                      <a className={`color-blue ${index == 0 ? '' : 'ml10'}`} href="javascript:void(0)" 
+                      <a className={`color-blue ${index == 0 ? '' : 'ml12'}`} href="javascript:void(0)" 
                           onClick={() => this.props.toWorkDetailPage(this.props.match.params, null, item.work_id)}
                       >
                         {item.user_name}
-                      </a> : <span className={`${index == 0 ? '' : 'ml10'}`} >{item.user_name}</span>}
+                      </a> : <span className={`${index == 0 ? '' : 'ml12'}`} >{item.user_name}</span>}
                       {item.is_leader && <LeaderIcon small={true} ></LeaderIcon>}
                     </React.Fragment>
                   })}