|
@@ -20,11 +20,10 @@
|
|
<view class="card-box">
|
|
<view class="card-box">
|
|
<view class="card-image" :style="{backgroundImage:`url(${image3})`}"></view>
|
|
<view class="card-image" :style="{backgroundImage:`url(${image3})`}"></view>
|
|
<view class="flex-column">
|
|
<view class="flex-column">
|
|
- <view class="title">成绩总分:</view>
|
|
|
|
-
|
|
|
|
|
|
+ <view class="total-card-title">成绩总分:</view>
|
|
<view class="flex-row">
|
|
<view class="flex-row">
|
|
- <view class="YS-title">{{reportData.totalScore}}</view>
|
|
|
|
- <view class="title" style="margin: 12rpx 0 0 4rpx;">分</view>
|
|
|
|
|
|
+ <view class="total-card-data">{{reportData.totalScore}}</view>
|
|
|
|
+ <view class="total-card-title" style="margin: 16rpx 0 0 6rpx;">分</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
@@ -58,26 +57,26 @@
|
|
<!-- <uni-th>名次</uni-th> -->
|
|
<!-- <uni-th>名次</uni-th> -->
|
|
<uni-th width="25" align="center">平均分</uni-th>
|
|
<uni-th width="25" align="center">平均分</uni-th>
|
|
<uni-th width="25" align="center">最高分</uni-th>
|
|
<uni-th width="25" align="center">最高分</uni-th>
|
|
- <uni-th width="25" align="center">差距分</uni-th>
|
|
|
|
|
|
+ <uni-th width="25" align="center">名次</uni-th>
|
|
</uni-tr>
|
|
</uni-tr>
|
|
<uni-tr v-for="(item,index) in reportData.tableData" :key="index">
|
|
<uni-tr v-for="(item,index) in reportData.tableData" :key="index">
|
|
<uni-td width="40" align="center">
|
|
<uni-td width="40" align="center">
|
|
<view class="title">{{item.subject}}</view>
|
|
<view class="title">{{item.subject}}</view>
|
|
</uni-td>
|
|
</uni-td>
|
|
<uni-td width="25" align="center">
|
|
<uni-td width="25" align="center">
|
|
- <view class="YS-title" :style="{color: item.grade > item.average ?'#23b46c':'#ff5959'}">
|
|
|
|
|
|
+ <view class="data" :style="{color: item.grade > item.average ?'#23b46c':'#ff5959'}">
|
|
{{item.grade}}
|
|
{{item.grade}}
|
|
</view>
|
|
</view>
|
|
</uni-td>
|
|
</uni-td>
|
|
<uni-td width="25" align="center">
|
|
<uni-td width="25" align="center">
|
|
- <view class="YS-title" style="color: #909399;">{{item.average}}</view>
|
|
|
|
|
|
+ <view class="data" style="color: #909399;">{{item.average}}</view>
|
|
</uni-td>
|
|
</uni-td>
|
|
<uni-td width="25" align="center">
|
|
<uni-td width="25" align="center">
|
|
- <view class="YS-title" style="color: #ff8caf;">{{item.top}}</view>
|
|
|
|
|
|
+ <view class="data" style="color: #ff8caf;">{{item.top}}</view>
|
|
</uni-td>
|
|
</uni-td>
|
|
<uni-td width="25" align="center">
|
|
<uni-td width="25" align="center">
|
|
- <view class="YS-title" :style="{color: item.gap === 0 ?'#23b46c':'#f9c752'}">
|
|
|
|
- {{item.gap}}
|
|
|
|
|
|
+ <view class="data">
|
|
|
|
+ {{item.rank}}
|
|
</view>
|
|
</view>
|
|
</uni-td>
|
|
</uni-td>
|
|
</uni-tr>
|
|
</uni-tr>
|
|
@@ -127,24 +126,73 @@
|
|
<view class="title-box">
|
|
<view class="title-box">
|
|
<view class="title">班级学生数</view>
|
|
<view class="title">班级学生数</view>
|
|
</view>
|
|
</view>
|
|
- <view class="YS-title">{{reportData.distributionData[0]}}人</view>
|
|
|
|
|
|
+ <view class="flex-baseline">
|
|
|
|
+ <view class="data">{{reportData.distributionData[0]}}</view>
|
|
|
|
+ <view class="unit">人</view>
|
|
|
|
+ </view>
|
|
</view>
|
|
</view>
|
|
<view class="data-item">
|
|
<view class="data-item">
|
|
<view class="title-box">
|
|
<view class="title-box">
|
|
<view class="title">年级学生数</view>
|
|
<view class="title">年级学生数</view>
|
|
</view>
|
|
</view>
|
|
- <view class="YS-title">{{reportData.distributionData[1]}}人</view>
|
|
|
|
|
|
+ <view class="flex-baseline">
|
|
|
|
+ <view class="data">{{reportData.distributionData[1]}}</view>
|
|
|
|
+ <view class="unit">人</view>
|
|
|
|
+ </view>
|
|
</view>
|
|
</view>
|
|
<view class="data-item">
|
|
<view class="data-item">
|
|
<view class="title-box">
|
|
<view class="title-box">
|
|
<view class="title">联考学生数</view>
|
|
<view class="title">联考学生数</view>
|
|
</view>
|
|
</view>
|
|
- <view class="YS-title">{{reportData.distributionData[2]}}人</view>
|
|
|
|
|
|
+ <view class="flex-baseline">
|
|
|
|
+ <view class="data">{{reportData.distributionData[2]}}</view>
|
|
|
|
+ <view class="unit">人</view>
|
|
|
|
+ </view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
|
|
|
|
+ <view class="card-item">
|
|
|
|
+ <view class="title-box">
|
|
|
|
+ <view class="title-tag"></view>
|
|
|
|
+ <view class="title">近期对比</view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="chart-box" style="height: 550rpx;">
|
|
|
|
+ <qiun-data-charts type="column" ontouch="true" :chartData="reportData.recentContrastChartData"
|
|
|
|
+ tooltipFormat='tooltipScore'
|
|
|
|
+ :opts="{padding:[-10, 20, 20, 10],yAxis:{gridType: 'dash',dashLength: 10},extra:{column:{barBorderCircle: false ,barBorderRadius: [6,6,0,0]}}}" />
|
|
|
|
+ </view>
|
|
|
|
+ <view class="cutting-line" />
|
|
|
|
+
|
|
|
|
+ <view class="title-box">
|
|
|
|
+ <view class="title-tag"></view>
|
|
|
|
+ <view class="title">诊断分析</view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="analysis-box">
|
|
|
|
+ <view class="flex-baseline">
|
|
|
|
+ <view class="subtitle">本次考试中</view>
|
|
|
|
+ <view class="title">{{advantage.name}}</view>
|
|
|
|
+ <view class="subtitle">得分率最高,是孩子优势科目;</view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="flex-baseline" style="margin-top: 20rpx;">
|
|
|
|
+ <view class="title" style="color: #ff5959;margin-left: 0;">{{disadvantage.name}}</view>
|
|
|
|
+ <view class="subtitle">相较其他科目</view>
|
|
|
|
+ <view class="title" style="color: #ff5959;">失分率最高</view>
|
|
|
|
+ <view class="subtitle">是劣势科目;</view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="flex-baseline" style="margin-top: 20rpx;">
|
|
|
|
+ <view class="subtitle">劣势科目失分率为</view>
|
|
|
|
+ <view class="title" style="color: #ff5959;">{{(1-disadvantage.score).toFixed(2)*100}}%</view>
|
|
|
|
+ <view class="subtitle">希望继续努力!</view>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="subtitle" style="margin:30rpx;font-size: 26rpx;">#结果由系统维度分析得出,仅供参考#</view>
|
|
|
|
+ <view class="btn">
|
|
|
|
+ <view class="btn-text">获取提分方案</view>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+
|
|
<view class="card-item">
|
|
<view class="card-item">
|
|
<view class="title-box">
|
|
<view class="title-box">
|
|
<view class="title-tag"></view>
|
|
<view class="title-tag"></view>
|
|
@@ -156,9 +204,55 @@
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<view class="chart-box">
|
|
<view class="chart-box">
|
|
- <qiun-data-charts type="radar" ontouch="true" :chartData="reportData.advantageChartData" tooltipFormat="meritsRadar"/>
|
|
|
|
|
|
+ <qiun-data-charts type="radar" ontouch="true" :chartData="reportData.advantageChartData"
|
|
|
|
+ tooltipFormat="meritsRadar" />
|
|
|
|
+ </view>
|
|
|
|
+ <view class="cutting-line" />
|
|
|
|
+
|
|
|
|
+ <view class="title-box">
|
|
|
|
+ <view class="title-tag"></view>
|
|
|
|
+ <view class="title">偏科分析</view>
|
|
|
|
+ </view>
|
|
|
|
+
|
|
|
|
+ <view class="analysis-box">
|
|
|
|
+ <view class="flex-baseline">
|
|
|
|
+ <view class="subtitle">本次考试中</view>
|
|
|
|
+ <view class="title">{{advantage.name}}</view>
|
|
|
|
+ <view class="subtitle">得分率最高,是孩子优势科目;</view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="flex-baseline" style="margin-top: 20rpx;">
|
|
|
|
+ <view class="title" style="color: #ff5959;margin-left: 0;">{{disadvantage.name}}</view>
|
|
|
|
+ <view class="subtitle">相较其他科目</view>
|
|
|
|
+ <view class="title" style="color: #ff5959;">失分率最高</view>
|
|
|
|
+ <view class="subtitle">是劣势科目;</view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="flex-baseline" style="margin-top: 20rpx;">
|
|
|
|
+ <view class="subtitle">劣势科目失分率为</view>
|
|
|
|
+ <view class="title" style="color: #ff5959;">{{(1-disadvantage.score).toFixed(2)*100}}%</view>
|
|
|
|
+ <view class="subtitle">希望继续努力!</view>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="subtitle" style="margin:30rpx;font-size: 26rpx;">#结果由系统维度分析得出,仅供参考#</view>
|
|
|
|
+ <view class="btn">
|
|
|
|
+ <view class="btn-text">获取提分方案</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
|
|
+
|
|
|
|
+ <view class="card-item">
|
|
|
|
+ <view class="title-box">
|
|
|
|
+ <view class="title-tag"></view>
|
|
|
|
+ <view class="title">评测分析报告</view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="btn-box">
|
|
|
|
+ <view class="subbtn">
|
|
|
|
+ <view class="subbtn-text">下载报告</view>
|
|
|
|
+ </view>
|
|
|
|
+ <view class="subbtn">
|
|
|
|
+ <view class="subbtn-text">分享报告</view>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+ </view>
|
|
|
|
+
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</template>
|
|
</template>
|
|
@@ -206,49 +300,49 @@
|
|
grade: 525,
|
|
grade: 525,
|
|
average: 499,
|
|
average: 499,
|
|
top: 521,
|
|
top: 521,
|
|
- gap: 38
|
|
|
|
|
|
+ rank: 5
|
|
},
|
|
},
|
|
{
|
|
{
|
|
subject: '语文',
|
|
subject: '语文',
|
|
grade: 83,
|
|
grade: 83,
|
|
average: 80,
|
|
average: 80,
|
|
top: 92,
|
|
top: 92,
|
|
- gap: 9
|
|
|
|
|
|
+ rank: 9
|
|
},
|
|
},
|
|
{
|
|
{
|
|
subject: '数学',
|
|
subject: '数学',
|
|
grade: 93,
|
|
grade: 93,
|
|
average: 84,
|
|
average: 84,
|
|
top: 99,
|
|
top: 99,
|
|
- gap: 6
|
|
|
|
|
|
+ rank: 6
|
|
},
|
|
},
|
|
{
|
|
{
|
|
subject: '外语',
|
|
subject: '外语',
|
|
grade: 92,
|
|
grade: 92,
|
|
average: 87,
|
|
average: 87,
|
|
top: 96,
|
|
top: 96,
|
|
- gap: 4
|
|
|
|
|
|
+ rank: 4
|
|
},
|
|
},
|
|
{
|
|
{
|
|
subject: '思品',
|
|
subject: '思品',
|
|
grade: 80,
|
|
grade: 80,
|
|
average: 83,
|
|
average: 83,
|
|
top: 92,
|
|
top: 92,
|
|
- gap: 3
|
|
|
|
|
|
+ rank: 3
|
|
},
|
|
},
|
|
{
|
|
{
|
|
subject: '体育',
|
|
subject: '体育',
|
|
grade: 99,
|
|
grade: 99,
|
|
average: 87,
|
|
average: 87,
|
|
top: 99,
|
|
top: 99,
|
|
- gap: 0
|
|
|
|
|
|
+ rank: 1
|
|
},
|
|
},
|
|
{
|
|
{
|
|
subject: '科学',
|
|
subject: '科学',
|
|
grade: 93,
|
|
grade: 93,
|
|
average: 89,
|
|
average: 89,
|
|
top: 96,
|
|
top: 96,
|
|
- gap: 3
|
|
|
|
|
|
+ rank: 3
|
|
}
|
|
}
|
|
],
|
|
],
|
|
classNum: 55,
|
|
classNum: 55,
|
|
@@ -269,10 +363,10 @@
|
|
distributionNum: "500-600",
|
|
distributionNum: "500-600",
|
|
distributionData: [12, 130, 333],
|
|
distributionData: [12, 130, 333],
|
|
advantageChartData: {
|
|
advantageChartData: {
|
|
- "categories": ["语文", "数学", "英语", "思品", "科学", "体育"],
|
|
|
|
|
|
+ "categories": ["语文", "数学", "英语", "科学", "思品", "体育"],
|
|
"series": [{
|
|
"series": [{
|
|
"name": "个人得分率",
|
|
"name": "个人得分率",
|
|
- "data": [90, 75, 85, 78, 82, 92]
|
|
|
|
|
|
+ "data": [82, 94, 84, 78, 95, 92]
|
|
},
|
|
},
|
|
{
|
|
{
|
|
"name": "平均得分率",
|
|
"name": "平均得分率",
|
|
@@ -283,6 +377,18 @@
|
|
"data": [96, 92, 94, 91, 89, 90]
|
|
"data": [96, 92, 94, 91, 89, 90]
|
|
}
|
|
}
|
|
]
|
|
]
|
|
|
|
+ },
|
|
|
|
+ recentContrastChartData: {
|
|
|
|
+ "categories": ["语文", "数学", "英语", "科学", "思品", "体育"],
|
|
|
|
+ series: [{
|
|
|
|
+ name: "当前测验成绩",
|
|
|
|
+ data: [82, 94, 84, 78, 95, 92]
|
|
|
|
+ },
|
|
|
|
+ {
|
|
|
|
+ name: "上次测验成绩",
|
|
|
|
+ data: [88, 84, 97, 92, 89, 93]
|
|
|
|
+ }
|
|
|
|
+ ],
|
|
}
|
|
}
|
|
},
|
|
},
|
|
contrastList: ['班级', '年级', '联考'],
|
|
contrastList: ['班级', '年级', '联考'],
|
|
@@ -292,13 +398,16 @@
|
|
meritsList: ['班级', '年级', '联考'],
|
|
meritsList: ['班级', '年级', '联考'],
|
|
meritsCurrent: 0,
|
|
meritsCurrent: 0,
|
|
tableLoading: false,
|
|
tableLoading: false,
|
|
|
|
+ advantage: '',
|
|
|
|
+ disadvantage: '',
|
|
image1: 'https://ouch-cdn2.icons8.com/PvGwCISfYx-NAQwl4UsdY2QXtMMiNDB6LllqLZ4jGoA/rs:fit:367:456/czM6Ly9pY29uczgu/b3VjaC1wcm9kLmFz/c2V0cy9wbmcvNzg1/LzhiM2MwZWU2LWFl/ODMtNDM2Mi05MGQy/LTBmMDk0N2M4N2E1/OC5wbmc.png',
|
|
image1: 'https://ouch-cdn2.icons8.com/PvGwCISfYx-NAQwl4UsdY2QXtMMiNDB6LllqLZ4jGoA/rs:fit:367:456/czM6Ly9pY29uczgu/b3VjaC1wcm9kLmFz/c2V0cy9wbmcvNzg1/LzhiM2MwZWU2LWFl/ODMtNDM2Mi05MGQy/LTBmMDk0N2M4N2E1/OC5wbmc.png',
|
|
image2: 'https://ouch-cdn2.icons8.com/I-PEjM-V1LXrgVE1_yaPi7LY2XrgFXgKmEvBD3r1h_Y/rs:fit:484:456/czM6Ly9pY29uczgu/b3VjaC1wcm9kLmFz/c2V0cy9wbmcvMzcy/LzA0ZDY3Y2NlLTM3/YTUtNGE3OC1iZTVi/LTY4MzgyYTQ2YmUz/Zi5wbmc.png',
|
|
image2: 'https://ouch-cdn2.icons8.com/I-PEjM-V1LXrgVE1_yaPi7LY2XrgFXgKmEvBD3r1h_Y/rs:fit:484:456/czM6Ly9pY29uczgu/b3VjaC1wcm9kLmFz/c2V0cy9wbmcvMzcy/LzA0ZDY3Y2NlLTM3/YTUtNGE3OC1iZTVi/LTY4MzgyYTQ2YmUz/Zi5wbmc.png',
|
|
- image3: 'https://cdn-icons-png.flaticon.com/512/4524/4524486.png',
|
|
|
|
|
|
+ image3: 'https://cdn-icons-png.flaticon.com/512/4524/4524478.png',
|
|
};
|
|
};
|
|
},
|
|
},
|
|
onLoad(param) {
|
|
onLoad(param) {
|
|
this.index = param.index
|
|
this.index = param.index
|
|
|
|
+ this.getAnalysisData()
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
changeContrast(e) {
|
|
changeContrast(e) {
|
|
@@ -309,6 +418,28 @@
|
|
},
|
|
},
|
|
changeMerits(e) {
|
|
changeMerits(e) {
|
|
this.meritsCurrent = e
|
|
this.meritsCurrent = e
|
|
|
|
+ },
|
|
|
|
+ getAnalysisData() {
|
|
|
|
+ let advantage = {
|
|
|
|
+ name: '',
|
|
|
|
+ score: 0
|
|
|
|
+ }
|
|
|
|
+ let disadvantage = {
|
|
|
|
+ name: '',
|
|
|
|
+ score: 1
|
|
|
|
+ }
|
|
|
|
+ this.reportData.gradeData.forEach((item, index) => {
|
|
|
|
+ if (item.grade / item.score > advantage.score) {
|
|
|
|
+ advantage.score = item.grade / item.score
|
|
|
|
+ advantage.name = item.subject
|
|
|
|
+ }
|
|
|
|
+ if (item.grade / item.score < disadvantage.score) {
|
|
|
|
+ disadvantage.score = item.grade / item.score
|
|
|
|
+ disadvantage.name = item.subject
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ this.advantage = advantage
|
|
|
|
+ this.disadvantage = disadvantage
|
|
}
|
|
}
|
|
},
|
|
},
|
|
}
|
|
}
|
|
@@ -321,7 +452,7 @@
|
|
.bg1 {
|
|
.bg1 {
|
|
position: fixed;
|
|
position: fixed;
|
|
width: 100%;
|
|
width: 100%;
|
|
- height: 800rpx;
|
|
|
|
|
|
+ height: 1200rpx;
|
|
background-size: 100%;
|
|
background-size: 100%;
|
|
background-repeat: no-repeat;
|
|
background-repeat: no-repeat;
|
|
background-image: linear-gradient(to top, #f3f4f9, #ff8caf);
|
|
background-image: linear-gradient(to top, #f3f4f9, #ff8caf);
|
|
@@ -330,7 +461,7 @@
|
|
.detail-image1 {
|
|
.detail-image1 {
|
|
position: absolute;
|
|
position: absolute;
|
|
top: 150rpx;
|
|
top: 150rpx;
|
|
- left: 580rpx;
|
|
|
|
|
|
+ left: 560rpx;
|
|
width: 300rpx;
|
|
width: 300rpx;
|
|
height: 350rpx;
|
|
height: 350rpx;
|
|
background-size: 100%;
|
|
background-size: 100%;
|
|
@@ -365,15 +496,18 @@
|
|
height: 100%;
|
|
height: 100%;
|
|
justify-content: space-around;
|
|
justify-content: space-around;
|
|
|
|
|
|
- .title {
|
|
|
|
|
|
+ .total-card-title {
|
|
|
|
+ line-height: 45rpx;
|
|
|
|
+ font-size: 45rpx;
|
|
color: #FFF;
|
|
color: #FFF;
|
|
- font-size: 38rpx;
|
|
|
|
- font-weight: 400;
|
|
|
|
|
|
+ font-family: YSfont;
|
|
}
|
|
}
|
|
|
|
|
|
- .YS-title {
|
|
|
|
- font-size: 80rpx;
|
|
|
|
|
|
+ .total-card-data {
|
|
color: #FFF;
|
|
color: #FFF;
|
|
|
|
+ font-size: 85rpx;
|
|
|
|
+ line-height: 45rpx;
|
|
|
|
+ font-family: YSfont;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -452,6 +586,13 @@
|
|
font-size: 30rpx;
|
|
font-size: 30rpx;
|
|
color: $title;
|
|
color: $title;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ .data {
|
|
|
|
+ line-height: 32rpx;
|
|
|
|
+ font-size: 32rpx;
|
|
|
|
+ font-weight: bold;
|
|
|
|
+ color: $title;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
.msg-box {
|
|
.msg-box {
|
|
@@ -463,9 +604,10 @@
|
|
background-color: #f3f4f9;
|
|
background-color: #f3f4f9;
|
|
|
|
|
|
.title {
|
|
.title {
|
|
|
|
+ height: 32rpx;
|
|
|
|
+ line-height: 32rpx;
|
|
color: #ff8caf;
|
|
color: #ff8caf;
|
|
margin: 0 6rpx;
|
|
margin: 0 6rpx;
|
|
- line-height: 30rpx;
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -525,12 +667,89 @@
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- .YS-title {
|
|
|
|
|
|
+ .data {
|
|
line-height: 70rpx;
|
|
line-height: 70rpx;
|
|
- font-size: 36rpx;
|
|
|
|
|
|
+ font-size: 35rpx;
|
|
|
|
+ font-weight: bold;
|
|
|
|
+ color: #ff8caf;
|
|
|
|
+ }
|
|
|
|
+ .unit{
|
|
|
|
+ margin-left: 4rpx;
|
|
|
|
+ line-height: 26rpx;
|
|
|
|
+ font-size: 26rpx;
|
|
|
|
+ font-weight: bold;
|
|
|
|
+ color: $subtitle;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ .cutting-line {
|
|
|
|
+ margin: 0 50rpx 20rpx 50rpx;
|
|
|
|
+ height: 1px;
|
|
|
|
+ background-color: #e6e7eb;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .analysis-box {
|
|
|
|
+ display: flex;
|
|
|
|
+ flex-direction: column;
|
|
|
|
+ margin: 10rpx 30rpx;
|
|
|
|
+
|
|
|
|
+ .title {
|
|
|
|
+ margin: 0 10rpx;
|
|
|
|
+ line-height: 35rpx;
|
|
|
|
+ font-size: 35rpx;
|
|
|
|
+ color: $color-pink;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .subtitle {
|
|
|
|
+ line-height: 30rpx;
|
|
|
|
+ font-size: 30rpx;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ color: $title;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .btn {
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ justify-content: center;
|
|
|
|
+ height: 80rpx;
|
|
|
|
+ margin: 0 30rpx 30rpx 30rpx;
|
|
|
|
+ background-color: #ff8caf;
|
|
|
|
+ border-radius: $border-radius;
|
|
|
|
+ box-shadow: $box-shadow;
|
|
|
|
+
|
|
|
|
+ .btn-text {
|
|
|
|
+ line-height: 38rpx;
|
|
|
|
+ font-size: 38rpx;
|
|
|
|
+ color: #FFF;
|
|
|
|
+ font-family: YSfont;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .btn-box {
|
|
|
|
+ display: flex;
|
|
|
|
+ justify-content: space-between;
|
|
|
|
+ margin: 10rpx 30rpx 30rpx 30rpx;
|
|
|
|
+
|
|
|
|
+ .subbtn {
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ justify-content: center;
|
|
|
|
+ height: 80rpx;
|
|
|
|
+ width: 46%;
|
|
|
|
+ border: 4rpx solid #ff8caf;
|
|
|
|
+ border-radius: $border-radius;
|
|
|
|
+ box-shadow: $box-shadow;
|
|
|
|
+
|
|
|
|
+ .subbtn-text {
|
|
|
|
+ line-height: 38rpx;
|
|
|
|
+ font-size: 38rpx;
|
|
|
|
+ color: #ff8caf;
|
|
|
|
+ font-family: YSfont;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|