From 767a60a882253de5a4fd8b8bc866a17bef9515ed Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=9D=A8=E6=A0=91=E6=98=8E?= <775174143@qq.com>
Date: Sat, 26 Oct 2019 16:02:09 +0800
Subject: [PATCH] =?UTF-8?q?=E7=AB=9E=E8=B5=9B=E8=B0=83=E6=95=B4?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 .../Competitioncommon/CompetitionCommon.css        |  8 ++++++++
 .../Competitioncommon/CompetitionContentsChart.js  | 14 +++++++-------
 2 files changed, 15 insertions(+), 7 deletions(-)

diff --git a/public/react/src/modules/competitions/Competitioncommon/CompetitionCommon.css b/public/react/src/modules/competitions/Competitioncommon/CompetitionCommon.css
index 22810c4b5..242b8a072 100644
--- a/public/react/src/modules/competitions/Competitioncommon/CompetitionCommon.css
+++ b/public/react/src/modules/competitions/Competitioncommon/CompetitionCommon.css
@@ -379,4 +379,12 @@
 .ranknameslast{
     font-size:16px;
     color:rgba(12,158,254,1);
+}
+
+.textleft{
+    text-align: left;
+}
+
+.textright{
+    text-align: right;
 }
\ No newline at end of file
diff --git a/public/react/src/modules/competitions/Competitioncommon/CompetitionContentsChart.js b/public/react/src/modules/competitions/Competitioncommon/CompetitionContentsChart.js
index 93eaec5b0..368b175cb 100644
--- a/public/react/src/modules/competitions/Competitioncommon/CompetitionContentsChart.js
+++ b/public/react/src/modules/competitions/Competitioncommon/CompetitionContentsChart.js
@@ -250,9 +250,9 @@ class CompetitionContents extends Component{
 					<style>
 						{
 							`
-							.ant-col-4 {
-										width: 19%;
-								}
+								.ant-col-9 {
+									width: 38.5%;
+						  	}
 							`
 						}
 
@@ -264,16 +264,16 @@ class CompetitionContents extends Component{
 							<Col span={4} order={1}>
 								<span className={"ranknames"}>您当前排名:{item.rank}</span>
 							</Col>
-							<Col span={4} order={2}>
+							<Col className="textleft" span={3} order={2}>
 								{item.user_name}
 							</Col>
-							<Col span={4} order={3}>
+							<Col className="textleft" span={9} order={3}>
 								{item.team_name}
 							</Col>
-							<Col span={4} order={4}>
+							<Col span={3} order={4}>
 								{item.cost_time}
 							</Col>
-							<Col span={4} order={5}>
+							<Col className="textright" span={3} order={5}>
 								<span className={"ranknameslast"}>{item.score}</span>
 							</Col>
 						</Row>