|
@@ -1,5 +1,5 @@
|
|
<template>
|
|
<template>
|
|
- <div class="contrast_data">
|
|
|
|
|
|
+ <div class="contrast_university">
|
|
<head-component :headinfo=headinfo @backTo="backTo"></head-component>
|
|
<head-component :headinfo=headinfo @backTo="backTo"></head-component>
|
|
<div class="page-content">
|
|
<div class="page-content">
|
|
<div class="content-left">
|
|
<div class="content-left">
|
|
@@ -7,81 +7,84 @@
|
|
<div :class="[onePage?'item-box-active':'item-box']" @click="showPage(1)">
|
|
<div :class="[onePage?'item-box-active':'item-box']" @click="showPage(1)">
|
|
<img v-if="onePage" src="@/assets/images/environment/condition-search-h.png">
|
|
<img v-if="onePage" src="@/assets/images/environment/condition-search-h.png">
|
|
<img v-else src="@/assets/images/environment/condition-search.png">
|
|
<img v-else src="@/assets/images/environment/condition-search.png">
|
|
- 院校数据
|
|
|
|
|
|
+ 基本信息
|
|
</div>
|
|
</div>
|
|
<div :class="[twoPage?'item-box-active':'item-box']" @click="showPage(2)">
|
|
<div :class="[twoPage?'item-box-active':'item-box']" @click="showPage(2)">
|
|
<img v-if="twoPage" src="@/assets/images/environment/score-h.png">
|
|
<img v-if="twoPage" src="@/assets/images/environment/score-h.png">
|
|
<img v-else src="@/assets/images/environment/score.png">
|
|
<img v-else src="@/assets/images/environment/score.png">
|
|
- 录取分数线
|
|
|
|
|
|
+ 主修课程
|
|
|
|
+ </div>
|
|
|
|
+ <div :class="[twoPage?'item-box-active':'item-box']" @click="showPage(3)">
|
|
|
|
+ <img v-if="twoPage" src="@/assets/images/environment/score-h.png">
|
|
|
|
+ <img v-else src="@/assets/images/environment/score.png">
|
|
|
|
+ 专业解读
|
|
|
|
+ </div>
|
|
|
|
+ <div :class="[twoPage?'item-box-active':'item-box']" @click="showPage(4)">
|
|
|
|
+ <img v-if="twoPage" src="@/assets/images/environment/score-h.png">
|
|
|
|
+ <img v-else src="@/assets/images/environment/score.png">
|
|
|
|
+ 就业前景与方向
|
|
|
|
+ </div>
|
|
|
|
+ <div :class="[twoPage?'item-box-active':'item-box']" @click="showPage(5)">
|
|
|
|
+ <img v-if="twoPage" src="@/assets/images/environment/score-h.png">
|
|
|
|
+ <img v-else src="@/assets/images/environment/score.png">
|
|
|
|
+ 开设院校
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="content-right">
|
|
<div class="content-right">
|
|
<div class="one-page" v-show="onePage">
|
|
<div class="one-page" v-show="onePage">
|
|
- <table class="table">
|
|
|
|
- <tr>
|
|
|
|
- <td>大学名称</td>
|
|
|
|
- <td>{{ contrastA.name }}</td>
|
|
|
|
- <td>{{ contrastB.name }}</td>
|
|
|
|
|
|
+ <table class="table table-bordered">
|
|
|
|
+ <thead>
|
|
|
|
+ <tr class="one-tr">
|
|
|
|
+ <td class="first-title">专业名称</td>
|
|
|
|
+ <td v-for="(item,index) in contrastData" :key="index">{{ item.name }}</td>
|
|
</tr>
|
|
</tr>
|
|
- <tr>
|
|
|
|
- <td>基本信息</td>
|
|
|
|
- <td class="text-td">
|
|
|
|
- <p>创建时间:<span>{{ contrastA.ctime }}</span></p>
|
|
|
|
- <p>所在地区:<span>{{ contrastA.areaname }}</span></p>
|
|
|
|
- <p>院校隶属:<span>{{ contrastA.subjection }}</span></p>
|
|
|
|
- <p class="text-td-p">院校类型:<span> <dict-tag :options="school_category" :value="contrastA.categoryid"/></span></p>
|
|
|
|
- </td>
|
|
|
|
- <td class="text-td">
|
|
|
|
- <p>创建时间:<span>{{ contrastA.ctime }}</span></p>
|
|
|
|
- <p>所在地区:<span>{{ contrastA.areaname }}</span></p>
|
|
|
|
- <p>院校隶属:<span>{{ contrastA.subjection }}</span></p>
|
|
|
|
- <p class="text-td-p">院校类型:<span> <dict-tag :options="school_category" :value="contrastA.categoryid"/></span></p>
|
|
|
|
|
|
+ </thead>
|
|
|
|
+ <tbody>
|
|
|
|
+ <tr v-show="false"></tr>
|
|
|
|
+ <tr class="two-tr">
|
|
|
|
+ <td>专业代码</td>
|
|
|
|
+ <td class="text-td" v-for="(item,index) in contrastData" :key="index">
|
|
|
|
+ <p>创建时间:<span>{{ item.ctime }}</span></p>
|
|
|
|
+ <p>所在地区:<span>{{ item.areaname }}</span></p>
|
|
|
|
+ <p>院校隶属:<span>{{ item.subjection }}</span></p>
|
|
|
|
+ <p class="text-td-p">院校类型:<span> <dict-tag :options="school_category"
|
|
|
|
+ :value="item.categoryid"/></span></p>
|
|
</td>
|
|
</td>
|
|
-
|
|
|
|
</tr>
|
|
</tr>
|
|
<tr>
|
|
<tr>
|
|
- <td>院校特色</td>
|
|
|
|
- <td>
|
|
|
|
|
|
+ <td>学科门类</td>
|
|
|
|
+ <td v-for="(item,index) in contrastData" :key="index">
|
|
<div class="school-level-box">
|
|
<div class="school-level-box">
|
|
- <p class="school-level" style="background-color: #B3FC7C" v-show="contrastA.nef==='1'">985</p>
|
|
|
|
- <p class="school-level" style="background-color: #BBF88D" v-show="contrastA.too==='1'">211</p>
|
|
|
|
- <p class="school-level" style="background-color: #8CE349" v-show="contrastA.istopschool==='1'">
|
|
|
|
|
|
+ <p class="school-level" style="background-color: #B3FC7C" v-show="item.nef==='1'">985</p>
|
|
|
|
+ <p class="school-level" style="background-color: #BBF88D" v-show="item.too==='1'">211</p>
|
|
|
|
+ <p class="school-level" style="background-color: #8CE349" v-show="item.istopschool==='1'">
|
|
一流大学</p>
|
|
一流大学</p>
|
|
- <p class="school-level" style="background-color: #9DFF51" v-show="contrastA.istopsubject==='1'">
|
|
|
|
|
|
+ <p class="school-level" style="background-color: #9DFF51" v-show="item.istopsubject==='1'">
|
|
一流学科</p>
|
|
一流学科</p>
|
|
- <p class="school-level" style="background-color: #8ADFC4" v-show="contrastA.self==='1'">强</p>
|
|
|
|
- <p class="school-level" style="background-color: #1EC590" v-show="contrastA.graduate==='1'">研</p>
|
|
|
|
|
|
+ <p class="school-level" style="background-color: #8ADFC4" v-show="item.self==='1'">强</p>
|
|
|
|
+ <p class="school-level" style="background-color: #1EC590" v-show="item.graduate==='1'">研</p>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</td>
|
|
- <td>
|
|
|
|
- <div class="school-level-box">
|
|
|
|
- <p class="school-level" style="background-color: #B3FC7C" v-show="contrastA.nef==='1'">985</p>
|
|
|
|
- <p class="school-level" style="background-color: #BBF88D" v-show="contrastA.too==='1'">211</p>
|
|
|
|
- <p class="school-level" style="background-color: #8CE349" v-show="contrastA.istopschool==='1'">
|
|
|
|
- 一流大学</p>
|
|
|
|
- <p class="school-level" style="background-color: #9DFF51" v-show="contrastA.istopsubject==='1'">
|
|
|
|
- 一流学科</p>
|
|
|
|
- <p class="school-level" style="background-color: #8ADFC4" v-show="contrastA.self==='1'">强</p>
|
|
|
|
- <p class="school-level" style="background-color: #1EC590" v-show="contrastA.graduate==='1'">研</p>
|
|
|
|
- </div>
|
|
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td>一级学科</td>
|
|
|
|
+ <td v-for="(item,index) in contrastData" class="text-td ">
|
|
|
|
+ <dict-tag :options="property" :value="item.property"/>
|
|
</td>
|
|
</td>
|
|
</tr>
|
|
</tr>
|
|
<tr>
|
|
<tr>
|
|
- <td>学校性质</td>
|
|
|
|
- <td class="text-td "><dict-tag :options="property" :value="contrastA.property"/></td>
|
|
|
|
- <td class="text-td"><dict-tag :options="property" :value="contrastA.property"/></td>
|
|
|
|
|
|
+ <td>授权学位</td>
|
|
|
|
+ <td v-for="(item,index) in contrastData" :key="index" class="text-td">{{ item.address }}</td>
|
|
</tr>
|
|
</tr>
|
|
<tr>
|
|
<tr>
|
|
- <td>学校地址</td>
|
|
|
|
- <td class="text-td">{{ contrastA.address }}</td>
|
|
|
|
- <td class="text-td">{{ contrastA.address }}</td>
|
|
|
|
|
|
+ <td>修学年限</td>
|
|
|
|
+ <td v-for="(item,index) in contrastData" :key="index" class="text-td">{{ item.address }}</td>
|
|
</tr>
|
|
</tr>
|
|
|
|
+ </tbody>
|
|
</table>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<div class="two-page" v-show="twoPage">
|
|
<div class="two-page" v-show="twoPage">
|
|
- ///////
|
|
|
|
- 录取分数线
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<drag_component></drag_component>
|
|
<drag_component></drag_component>
|
|
@@ -188,23 +191,22 @@ function jumpTo(path) {
|
|
query: {name: 123}
|
|
query: {name: 123}
|
|
})
|
|
})
|
|
}
|
|
}
|
|
-function backTo(){
|
|
|
|
|
|
+
|
|
|
|
+function backTo() {
|
|
sessionStorage.removeItem('contrastA');
|
|
sessionStorage.removeItem('contrastA');
|
|
sessionStorage.removeItem('contrastB');
|
|
sessionStorage.removeItem('contrastB');
|
|
}
|
|
}
|
|
|
|
+
|
|
onMounted(() => {
|
|
onMounted(() => {
|
|
setHeadinfo()
|
|
setHeadinfo()
|
|
|
|
|
|
})
|
|
})
|
|
-const contrastA = ref({})
|
|
|
|
-const contrastB = ref({})
|
|
|
|
|
|
|
|
|
|
+const contrastData = ref({})
|
|
function getData() {
|
|
function getData() {
|
|
- const isValA = sessionStorage.getItem('contrastA') && JSON.parse(sessionStorage.getItem('contrastA'));
|
|
|
|
- const isValB = sessionStorage.getItem('contrastB') && JSON.parse(sessionStorage.getItem('contrastB'));
|
|
|
|
- contrastA.value = isValA;
|
|
|
|
- contrastB.value = isValB;
|
|
|
|
- console.log("{{contrastA.name}}", contrastA.value, contrastB.value)
|
|
|
|
|
|
+ const contrastList = sessionStorage.getItem('contrastList') && JSON.parse(sessionStorage.getItem('contrastList'));
|
|
|
|
+ contrastData.value = contrastList;
|
|
|
|
+ console.log("{{contrastA.name}}", contrastData.value)
|
|
}
|
|
}
|
|
|
|
|
|
const universityList = ref([])
|
|
const universityList = ref([])
|
|
@@ -261,8 +263,13 @@ const showEducationlevel = ref(false)
|
|
const showCharacteristic = ref(false)
|
|
const showCharacteristic = ref(false)
|
|
|
|
|
|
const {proxy} = getCurrentInstance()
|
|
const {proxy} = getCurrentInstance()
|
|
-const {gk_province, educationlevel, characteristic,school_category,property} = proxy.useDict('gk_province', 'educationlevel','school_category', 'characteristic','property')
|
|
|
|
-
|
|
|
|
|
|
+const {
|
|
|
|
+ gk_province,
|
|
|
|
+ educationlevel,
|
|
|
|
+ characteristic,
|
|
|
|
+ school_category,
|
|
|
|
+ property
|
|
|
|
+} = proxy.useDict('gk_province', 'educationlevel', 'school_category', 'characteristic', 'property')
|
|
|
|
|
|
|
|
|
|
function showAreaChooseHandler() {
|
|
function showAreaChooseHandler() {
|
|
@@ -319,7 +326,7 @@ p, div {
|
|
padding: 0;
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
|
|
-.contrast_data {
|
|
|
|
|
|
+.contrast_university {
|
|
background: url('@/assets/images/login/login-home-background.png') no-repeat;
|
|
background: url('@/assets/images/login/login-home-background.png') no-repeat;
|
|
background-size: 1920px 1080px;
|
|
background-size: 1920px 1080px;
|
|
z-index: 10;
|
|
z-index: 10;
|
|
@@ -400,7 +407,9 @@ p, div {
|
|
width: 1526px;
|
|
width: 1526px;
|
|
height: 887px;
|
|
height: 887px;
|
|
margin-top: 25px;
|
|
margin-top: 25px;
|
|
-
|
|
|
|
|
|
+ tr>td{
|
|
|
|
+ height:119px !important;
|
|
|
|
+ }
|
|
tr:nth-child(1) {
|
|
tr:nth-child(1) {
|
|
font-weight: 400;
|
|
font-weight: 400;
|
|
font-size: 32px;
|
|
font-size: 32px;
|
|
@@ -409,7 +418,6 @@ p, div {
|
|
|
|
|
|
td:nth-child(1) {
|
|
td:nth-child(1) {
|
|
width: 290px;
|
|
width: 290px;
|
|
- height: 100px;
|
|
|
|
background: #1E410E;
|
|
background: #1E410E;
|
|
border-radius: 32px 4px 4px 4px;
|
|
border-radius: 32px 4px 4px 4px;
|
|
border: 8px solid #E0EEF4;
|
|
border: 8px solid #E0EEF4;
|
|
@@ -418,7 +426,6 @@ p, div {
|
|
|
|
|
|
td:nth-child(2) {
|
|
td:nth-child(2) {
|
|
width: 620px;
|
|
width: 620px;
|
|
- height: 100px;
|
|
|
|
background: #1EC590;
|
|
background: #1EC590;
|
|
border-top: 8px solid #E0EEF4;
|
|
border-top: 8px solid #E0EEF4;
|
|
border-right: 8px solid #E0EEF4;
|
|
border-right: 8px solid #E0EEF4;
|
|
@@ -427,7 +434,6 @@ p, div {
|
|
|
|
|
|
td:nth-child(3) {
|
|
td:nth-child(3) {
|
|
width: 616px;
|
|
width: 616px;
|
|
- height: 119px;
|
|
|
|
background: #8CE349;
|
|
background: #8CE349;
|
|
border-radius: 4px 32px 4px 4px;
|
|
border-radius: 4px 32px 4px 4px;
|
|
border-top: 8px solid #E0EEF4;
|
|
border-top: 8px solid #E0EEF4;
|
|
@@ -439,7 +445,6 @@ p, div {
|
|
|
|
|
|
tr:nth-child(2) {
|
|
tr:nth-child(2) {
|
|
td:nth-child(1) {
|
|
td:nth-child(1) {
|
|
- height: 290px;
|
|
|
|
border-radius: 0px 0px 0px 0px;
|
|
border-radius: 0px 0px 0px 0px;
|
|
background: #1E410E;
|
|
background: #1E410E;
|
|
border-left: 8px solid #E0EEF4;
|
|
border-left: 8px solid #E0EEF4;
|
|
@@ -453,7 +458,6 @@ p, div {
|
|
|
|
|
|
td:nth-child(2) {
|
|
td:nth-child(2) {
|
|
width: 620px;
|
|
width: 620px;
|
|
- height: 290px;
|
|
|
|
background: #FFFFFF;
|
|
background: #FFFFFF;
|
|
border-radius: 4px 4px 4px 4px;
|
|
border-radius: 4px 4px 4px 4px;
|
|
//border-top: 8px solid #E0EEF4;
|
|
//border-top: 8px solid #E0EEF4;
|
|
@@ -467,7 +471,6 @@ p, div {
|
|
|
|
|
|
td:nth-child(3) {
|
|
td:nth-child(3) {
|
|
width: 620px;
|
|
width: 620px;
|
|
- height: 290px;
|
|
|
|
background: #FFFFFF;
|
|
background: #FFFFFF;
|
|
border-radius: 4px 4px 4px 4px;
|
|
border-radius: 4px 4px 4px 4px;
|
|
border-bottom: 8px solid #E0EEF4;
|
|
border-bottom: 8px solid #E0EEF4;
|
|
@@ -482,7 +485,6 @@ p, div {
|
|
tr:nth-child(3) {
|
|
tr:nth-child(3) {
|
|
td:nth-child(1) {
|
|
td:nth-child(1) {
|
|
width: 290px;
|
|
width: 290px;
|
|
- height: 180px;
|
|
|
|
background: #1E410E;
|
|
background: #1E410E;
|
|
border-radius: 4px 4px 4px 4px;
|
|
border-radius: 4px 4px 4px 4px;
|
|
border-left: 8px solid #E0EEF4;
|
|
border-left: 8px solid #E0EEF4;
|
|
@@ -496,7 +498,6 @@ p, div {
|
|
|
|
|
|
td:nth-child(2) {
|
|
td:nth-child(2) {
|
|
width: 620px;
|
|
width: 620px;
|
|
- height: 210px;
|
|
|
|
background: #FFFFFF;
|
|
background: #FFFFFF;
|
|
border-radius: 4px 4px 4px 4px;
|
|
border-radius: 4px 4px 4px 4px;
|
|
border-bottom: 8px solid #E0EEF4;
|
|
border-bottom: 8px solid #E0EEF4;
|
|
@@ -505,7 +506,6 @@ p, div {
|
|
|
|
|
|
td:nth-child(3) {
|
|
td:nth-child(3) {
|
|
width: 620px;
|
|
width: 620px;
|
|
- height: 210px;
|
|
|
|
background: #FFFFFF;
|
|
background: #FFFFFF;
|
|
border-radius: 4px 4px 4px 4px;
|
|
border-radius: 4px 4px 4px 4px;
|
|
border-bottom: 8px solid #E0EEF4;
|
|
border-bottom: 8px solid #E0EEF4;
|
|
@@ -516,7 +516,6 @@ p, div {
|
|
tr:nth-child(4) {
|
|
tr:nth-child(4) {
|
|
td:nth-child(1) {
|
|
td:nth-child(1) {
|
|
width: 290px;
|
|
width: 290px;
|
|
- height: 110px;
|
|
|
|
background: #1E410E;
|
|
background: #1E410E;
|
|
border-radius: 4px 4px 4px 4px;
|
|
border-radius: 4px 4px 4px 4px;
|
|
border-left: 8px solid #E0EEF4;
|
|
border-left: 8px solid #E0EEF4;
|
|
@@ -531,7 +530,6 @@ p, div {
|
|
|
|
|
|
td:nth-child(2) {
|
|
td:nth-child(2) {
|
|
width: 620px;
|
|
width: 620px;
|
|
- height: 119px;
|
|
|
|
background: #FFFFFF;
|
|
background: #FFFFFF;
|
|
border-radius: 4px 4px 4px 4px;
|
|
border-radius: 4px 4px 4px 4px;
|
|
border-bottom: 8px solid #E0EEF4;
|
|
border-bottom: 8px solid #E0EEF4;
|
|
@@ -544,7 +542,6 @@ p, div {
|
|
|
|
|
|
td:nth-child(3) {
|
|
td:nth-child(3) {
|
|
width: 620px;
|
|
width: 620px;
|
|
- height: 119px;
|
|
|
|
background: #FFFFFF;
|
|
background: #FFFFFF;
|
|
border-radius: 4px 4px 4px 4px;
|
|
border-radius: 4px 4px 4px 4px;
|
|
border-bottom: 8px solid #E0EEF4;
|
|
border-bottom: 8px solid #E0EEF4;
|
|
@@ -559,7 +556,42 @@ p, div {
|
|
tr:nth-child(5) {
|
|
tr:nth-child(5) {
|
|
td:nth-child(1) {
|
|
td:nth-child(1) {
|
|
width: 290px;
|
|
width: 290px;
|
|
- height: 100px;
|
|
|
|
|
|
+ background: #1E410E;
|
|
|
|
+ //border-radius: 4px 4px 4px 32px;
|
|
|
|
+ border-left: 8px solid #E0EEF4;
|
|
|
|
+ border-right: 8px solid #E0EEF4;
|
|
|
|
+ border-bottom: 8px solid #E0EEF4;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ font-size: 32px;
|
|
|
|
+ color: #FFFFFF;
|
|
|
|
+ line-height: 16px;
|
|
|
|
+ text-align: center;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ td:nth-child(2) {
|
|
|
|
+ width: 290px;
|
|
|
|
+ border-right: 8px solid #E0EEF4;
|
|
|
|
+ border-bottom: 8px solid #E0EEF4;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ font-size: 32px;
|
|
|
|
+ color: #333333;
|
|
|
|
+ line-height: 52px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ td:nth-child(3) {
|
|
|
|
+ width: 290px;
|
|
|
|
+ border-right: 8px solid #E0EEF4;
|
|
|
|
+ border-bottom: 8px solid #E0EEF4;
|
|
|
|
+ border-radius: 4px 4px 32px 4px;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ font-size: 32px;
|
|
|
|
+ color: #333333;
|
|
|
|
+ line-height: 52px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ tr:nth-child(6) {
|
|
|
|
+ td:nth-child(1) {
|
|
|
|
+ width: 290px;
|
|
background: #1E410E;
|
|
background: #1E410E;
|
|
border-radius: 4px 4px 4px 32px;
|
|
border-radius: 4px 4px 4px 32px;
|
|
border-left: 8px solid #E0EEF4;
|
|
border-left: 8px solid #E0EEF4;
|
|
@@ -595,7 +627,6 @@ p, div {
|
|
line-height: 52px;
|
|
line-height: 52px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
.school-level-box {
|
|
.school-level-box {
|
|
display: flex;
|
|
display: flex;
|
|
justify-content: left;
|
|
justify-content: left;
|
|
@@ -620,10 +651,13 @@ p, div {
|
|
}
|
|
}
|
|
|
|
|
|
.text-td {
|
|
.text-td {
|
|
- text-align: center;
|
|
|
|
- .text-td-p{
|
|
|
|
|
|
+ //text-align: center;
|
|
|
|
+ width: 300px;
|
|
|
|
+ //border: 1px solid;
|
|
|
|
+ padding-left: 150px;
|
|
|
|
+ .text-td-p {
|
|
display: flex;
|
|
display: flex;
|
|
- justify-content: center;
|
|
|
|
|
|
+ //justify-content: center;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -633,12 +667,13 @@ p, div {
|
|
display: flex;
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
align-items: center;
|
|
|
|
+
|
|
.table {
|
|
.table {
|
|
width: 1526px;
|
|
width: 1526px;
|
|
height: 887px;
|
|
height: 887px;
|
|
margin-top: 25px;
|
|
margin-top: 25px;
|
|
|
|
|
|
- tr:nth-child(1) {
|
|
|
|
|
|
+ .one-tr {
|
|
font-weight: 400;
|
|
font-weight: 400;
|
|
font-size: 32px;
|
|
font-size: 32px;
|
|
color: #FFFFFF;
|
|
color: #FFFFFF;
|
|
@@ -674,9 +709,9 @@ p, div {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- tr:nth-child(2) {
|
|
|
|
|
|
+ .two-tr {
|
|
td:nth-child(1) {
|
|
td:nth-child(1) {
|
|
- height: 290px;
|
|
|
|
|
|
+ height: 100px;
|
|
border-radius: 0px 0px 0px 0px;
|
|
border-radius: 0px 0px 0px 0px;
|
|
background: #1E410E;
|
|
background: #1E410E;
|
|
border-left: 8px solid #E0EEF4;
|
|
border-left: 8px solid #E0EEF4;
|
|
@@ -687,7 +722,6 @@ p, div {
|
|
color: #FFFFFF;
|
|
color: #FFFFFF;
|
|
text-align: center;
|
|
text-align: center;
|
|
}
|
|
}
|
|
-
|
|
|
|
td:nth-child(2) {
|
|
td:nth-child(2) {
|
|
width: 620px;
|
|
width: 620px;
|
|
height: 290px;
|
|
height: 290px;
|
|
@@ -701,7 +735,6 @@ p, div {
|
|
color: #333333;
|
|
color: #333333;
|
|
line-height: 52px;
|
|
line-height: 52px;
|
|
}
|
|
}
|
|
-
|
|
|
|
td:nth-child(3) {
|
|
td:nth-child(3) {
|
|
width: 620px;
|
|
width: 620px;
|
|
height: 290px;
|
|
height: 290px;
|
|
@@ -792,10 +825,48 @@ p, div {
|
|
line-height: 52px;
|
|
line-height: 52px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
tr:nth-child(5) {
|
|
tr:nth-child(5) {
|
|
td:nth-child(1) {
|
|
td:nth-child(1) {
|
|
width: 290px;
|
|
width: 290px;
|
|
|
|
+ height: 110px;
|
|
|
|
+ background: #1E410E;
|
|
|
|
+ border-radius: 4px 4px 4px 4px;
|
|
|
|
+ border-left: 8px solid #E0EEF4;
|
|
|
|
+ border-right: 8px solid #E0EEF4;
|
|
|
|
+ border-bottom: 8px solid #E0EEF4;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ font-size: 32px;
|
|
|
|
+ color: #FFFFFF;
|
|
|
|
+ line-height: 16px;
|
|
|
|
+ text-align: center;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ td:nth-child(2) {
|
|
|
|
+ width: 290px;
|
|
|
|
+ height: 100px;
|
|
|
|
+ border-right: 8px solid #E0EEF4;
|
|
|
|
+ border-bottom: 8px solid #E0EEF4;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ font-size: 32px;
|
|
|
|
+ color: #333333;
|
|
|
|
+ line-height: 52px;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ td:nth-child(3) {
|
|
|
|
+ width: 290px;
|
|
|
|
+ height: 100px;
|
|
|
|
+ border-right: 8px solid #E0EEF4;
|
|
|
|
+ border-bottom: 8px solid #E0EEF4;
|
|
|
|
+ border-radius: 4px 4px 32px 4px;
|
|
|
|
+ font-weight: 400;
|
|
|
|
+ font-size: 32px;
|
|
|
|
+ color: #333333;
|
|
|
|
+ line-height: 52px;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ tr:nth-child(6) {
|
|
|
|
+ td:nth-child(1) {
|
|
|
|
+ width: 290px;
|
|
height: 100px;
|
|
height: 100px;
|
|
background: #1E410E;
|
|
background: #1E410E;
|
|
border-radius: 4px 4px 4px 32px;
|
|
border-radius: 4px 4px 4px 32px;
|
|
@@ -858,7 +929,8 @@ p, div {
|
|
|
|
|
|
.text-td {
|
|
.text-td {
|
|
text-align: center;
|
|
text-align: center;
|
|
- .text-td-p{
|
|
|
|
|
|
+
|
|
|
|
+ .text-td-p {
|
|
display: flex;
|
|
display: flex;
|
|
justify-content: center;
|
|
justify-content: center;
|
|
}
|
|
}
|