12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148 |
- <template>
- <div class="contrast_university">
- <head-component :headinfo=headinfo @backTo="backTo"></head-component>
- <div class="page-content">
- <div class="content-left">
- <div class="tab-box">
- <div :class="[onePage?'item-box-active':'item-box']" @click="showPage(1)">
- <img v-if="onePage" src="@/assets/images/environment/contrast/01-active.png">
- <img v-else src="@/assets/images/environment/contrast/01.png">
- 基本信息
- </div>
- <div :class="[twoPage?'item-box-active':'item-box']" @click="showPage(2)">
- <img v-if="twoPage" src="@/assets/images/environment/contrast/02-active.png">
- <img v-else src="@/assets/images/environment/contrast/02.png">
- 主修课程
- </div>
- <div :class="[threePage?'item-box-active':'item-box']" @click="showPage(3)">
- <img v-if="threePage" src="@/assets/images/environment/contrast/03.png">
- <img v-else src="@/assets/images/environment/contrast/03-active.png">
- 专业解读
- </div>
- <div :class="[fourPage?'item-box-active':'item-box']" @click="showPage(4)">
- <img v-if="fourPage" src="@/assets/images/environment/contrast/04-active.png">
- <img v-else src="@/assets/images/environment/contrast/04.png">
- 就业前景与方向
- </div>
- <div :class="[fivePage?'item-box-active':'item-box']" @click="showPage(5)">
- <img v-if="fivePage" src="@/assets/images/environment/contrast/05-active.png">
- <img v-else src="@/assets/images/environment/contrast/05.png">
- 开设院校
- </div>
- </div>
- </div>
- <div class="content-right">
- <div class="one-page" v-show="onePage">
- <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.specialty.name }}</td>
- </tr>
- </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 style="text-align: center">{{ item.specialty.code }}</p>
- </td>
- </tr>
- <tr>
- <td>学科门类</td>
- <td class="text-td" v-for="(item,index) in contrastData" :key="index">
- <p style="text-align: center;font-size: 32px">{{ item.smoSpecialty && item.smoSpecialty.subjectcategories }}</p>
- </td>
- </tr>
- <tr>
- <td>一级学科</td>
- <td class="text-td" v-for="(item,index) in contrastData" :key="index">
- <p style="text-align: center">{{ item.smoSpecialty && item.smoSpecialty.firstsubject }}</p>
- </td>
- </tr>
- <tr>
- <td>授权学位</td>
- <td v-for="(item,index) in contrastData" :key="index" >
- <p>{{ item.specialty.degree }}</p>
- </td>
- </tr>
- <tr>
- <td>修学年限</td>
- <td v-for="(item,index) in contrastData" :key="index" class="text-td">{{ item.specialty.years }}</td>
- </tr>
- </tbody>
- </table>
- </div>
- <div class="two-page" v-show="twoPage">
- <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>
- </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 style="text-align: left;padding:10px;font-size: 28px" v-html="item.specialty.course"></p>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- <div class="three-page" v-show="threePage">
- <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>
- </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">
- <div class="info" v-if="!item.specialty.describe" v-html="item.specialty.describe"></div>
- <div class="info" v-else >暂无</div>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- <div class="four-page" v-show="fourPage">
- <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.specialty.name }}</td>
- </tr>
- </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">
- <div class="info" v-html="item.specialty.describe"></div>
- <!-- <p style="text-align: center" >{{ item.code }}</p>-->
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- <div class="five-page" v-show="fivePage">
- <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>
- </thead>
- <tbody>
- <tr v-show="false"></tr>
- <tr class="two-tr">
- <td>开设院校</td>
- <td class="school-box" v-for="(item,index) in contrastData" :key="index">
- <div class="info" v-for="(item,index) in item.kaishe_list">
- {{ item.name }}
- </div>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
- <drag_component></drag_component>
- </div>
- </div>
- </template>
- <script setup>
- import headComponent from '@/views/xjc-integratedmachine/components/head_component.vue'
- import Drag_component from "@/views/xjc-integratedmachine/components/drag_component.vue";
- import {ref} from "vue";
- import {getUniversityByKeyword} from "@/api/xjc-integratedmachine/environment/university.js";
- import {getCompareList} from "@/api/xjc-integratedmachine/environment/common.js";
- import {occupationDetail} from "@/api/xjc-integratedmachine/environment/occupation.js";
- import {specialtyDetail} from "@/api/xjc-integratedmachine/environment/specialty.js";
- const router = useRouter()
- const onePage = ref(true)
- const twoPage = ref(false)
- const threePage = ref(false)
- const fourPage = ref(false)
- const fivePage = ref(false)
- const contrastList = ref(false)
- const form = ref({
- areaid: null,
- areaname: null,
- educationlevel: null,
- educationlevelName: null,
- characteristic: null,
- characteristicName: null,
- name: null
- })
- const keyInput = ref(false);
- const headinfo = ref({})
- function setHeadinfo() {
- headinfo.value = {
- title: '',
- user: {
- avatar: '头像路径',
- nickName: '张三'
- },
- backUrl: '/xjc-integratedmachine/environment/index',
- homeUrl: '/xjc-integratedmachine/environment/index',
- contrastPage:true,
- contrastType:'major'
- }
- }
- //切换tabs
- const showPage = (val) => {
- if (val === 1) {
- onePage.value = true;
- twoPage.value = false;
- threePage.value = false;
- fourPage.value = false;
- fivePage.value = false;
- } else if (val === 2) {
- onePage.value = false;
- twoPage.value = true;
- threePage.value = false;
- fourPage.value = false;
- fivePage.value = false;
- } else if (val === 3) {
- onePage.value = false;
- twoPage.value = false;
- threePage.value = true;
- fourPage.value = false;
- fivePage.value = false;
- }else if (val === 4) {
- onePage.value = false;
- twoPage.value = false;
- threePage.value = false;
- fourPage.value = true;
- fivePage.value = false;
- }else if (val === 5) {
- onePage.value = false;
- twoPage.value = false;
- threePage.value = false;
- fourPage.value = false;
- fivePage.value = true;
- }
- }
- function jumpTo(path) {
- router.push({
- path: path,
- query: {name: 123}
- })
- }
- function backTo() {
- }
- onMounted(() => {
- setHeadinfo()
- })
- const contrastData = ref([])
- function getData() {
- getCompareList({
- type:'2'
- }).then(resp => {
- contrastData.value = resp.rows
- contrastData.value.map(item =>{
- specialtyDetail({
- id: item.businessId
- }).then(resp => {
- console.log(resp,"resp")
- item.smoSpecialty = resp.smoSpecialty
- item.kaishe_list = resp.kaishe_list
- })
- })
- console.log("contrastData.value",contrastData.value);
- })
- }
- // 定义一个函数,用于将关键词变为红色
- function highlightKeywords(text, keywords) {
- // 遍历关键词列表
- keywords.forEach(keyword => {
- // 使用正则表达式匹配关键词,并替换为带有红色样式的HTML标签
- // 这里使用全局匹配标志'g',以确保替换所有出现的关键词
- console.log("keywords", keywords)
- let regex = new RegExp(keyword, 'g');
- text = text.replace(regex, `<span style="color: #0DE6A1;">${keyword}</span>`);
- console.log("text", text)
- });
- return text;
- }
- function toDetail(row) {
- router.push({
- path: '/xjc-integratedmachine/environment/university_details_video',
- query: {
- id: row.id,
- name: row.name,
- }
- })
- }
- const tab = ref("tj")
- function changeTab(path) {
- tab.value = path
- }
- const showAreaChoose = ref(false)
- const showEducationlevel = ref(false)
- const showCharacteristic = ref(false)
- const {proxy} = getCurrentInstance()
- const {
- gk_province,
- educationlevel,
- characteristic,
- school_category,
- property
- } = proxy.useDict('gk_province', 'educationlevel', 'school_category', 'characteristic', 'property')
- function showAreaChooseHandler() {
- showAreaChoose.value = true
- }
- function chooseArea(item) {
- form.value.areaid = item.value
- form.value.areaname = item.label
- showAreaChoose.value = false
- }
- function showEducationlevelHandler() {
- showEducationlevel.value = true
- }
- function chooseEducationlevel(item) {
- form.value.educationlevel = item.value
- form.value.educationlevelName = item.label
- showEducationlevel.value = false
- }
- function showCharacteristicHandler() {
- showCharacteristic.value = true
- }
- function chooseCharacteristic(item) {
- form.value.characteristic = item.value
- form.value.characteristicName = item.label
- showCharacteristic.value = false
- }
- function search() {
- router.push({
- path: '/xjc-integratedmachine/environment/university_list',
- query: form.value
- })
- }
- onMounted(() => {
- setHeadinfo()
- getData()
- })
- </script>
- <style scoped lang="scss">
- p, div {
- margin: 0;
- padding: 0;
- }
- .contrast_university {
- background: url('@/assets/images/login/login-home-background.png') no-repeat;
- background-size: 1920px 1080px;
- z-index: 10;
- width: 100%;
- height: 1080px;
- .page-content {
- width: 100%;
- position: absolute;
- top: 100px;
- bottom: 0;
- display: flex;
- justify-content: space-between;
- .content-left {
- width: 244px;
- height: 957px;
- background: rgba(255, 255, 255, 0.26);
- ::v-deep .el-menu-item .is-active {
- background: red !important;
- }
- .item-box {
- width: 244px;
- height: 80px;
- color: #B3B3B3;
- display: flex;
- align-items: center;
- margin-right: 5px;
- font-weight: bold;
- font-size: 20px;
- background: #C8FFED;
- img {
- width: 28px;
- height: 28px;
- margin-right: 10px;
- margin-left: 40px;
- }
- }
- .item-box-active {
- width: 244px;
- height: 80px;
- background: #1EC590;
- font-weight: bold;
- font-size: 20px;
- display: flex;
- color: #FFFFFF;
- line-height: 40px;
- margin-right: 5px;
- align-items: center;
- img {
- width: 28px;
- height: 28px;
- margin-right: 10px;
- margin-left: 40px;
- }
- }
- }
- .content-right {
- width: 1615px;
- height: 926px;
- background: #FFFFFF;
- border-radius: 35px 35px 35px 35px;
- margin-top: 13px;
- margin-right: 24px;
- overflow: auto;
- .one-page {
- display: flex;
- justify-content: center;
- align-items: center;
- .table {
- width: 1526px;
- height: 887px;
- margin-top: 25px;
- tr>td{
- height:119px !important;
- }
- tr:nth-child(1) {
- font-weight: 400;
- font-size: 32px;
- color: #FFFFFF;
- text-align: center;
- td:nth-child(1) {
- width: 290px;
- background: #1E410E;
- border-radius: 32px 4px 4px 4px;
- border: 8px solid #E0EEF4;
- }
- td:nth-child(2) {
- width: 620px;
- background: #1EC590;
- border-top: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- border-bottom: 8px solid #E0EEF4;
- }
- td:nth-child(3) {
- width: 616px;
- background: #8CE349;
- border-radius: 4px 32px 4px 4px;
- border-top: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- border-bottom: 8px solid #E0EEF4;
- }
- }
- tr:nth-child(2) {
- td:nth-child(1) {
- border-radius: 0px 0px 0px 0px;
- background: #1E410E;
- border-left: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- border-bottom: 8px solid #E0EEF4;
- font-weight: 400;
- font-size: 32px;
- color: #FFFFFF;
- text-align: center;
- }
- td:nth-child(2) {
- width: 620px;
- background: #FFFFFF;
- border-radius: 4px 4px 4px 4px;
- //border-top: 8px solid #E0EEF4;
- border-bottom: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- font-weight: 400;
- font-size: 32px;
- color: #333333;
- line-height: 52px;
- }
- td:nth-child(3) {
- width: 620px;
- background: #FFFFFF;
- border-radius: 4px 4px 4px 4px;
- border-bottom: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- font-weight: 400;
- font-size: 32px;
- color: #333333;
- line-height: 52px;
- }
- }
- tr:nth-child(3) {
- td:nth-child(1) {
- width: 290px;
- 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;
- text-align: center;
- }
- td:nth-child(2) {
- width: 620px;
- background: #FFFFFF;
- border-radius: 4px 4px 4px 4px;
- border-bottom: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- }
- td:nth-child(3) {
- width: 620px;
- background: #FFFFFF;
- border-radius: 4px 4px 4px 4px;
- border-bottom: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- }
- }
- tr:nth-child(4) {
- td:nth-child(1) {
- width: 290px;
- 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: 620px;
- background: #FFFFFF;
- border-radius: 4px 4px 4px 4px;
- border-bottom: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- font-weight: 400;
- font-size: 32px;
- color: #333333;
- line-height: 52px;
- }
- td:nth-child(3) {
- width: 620px;
- background: #FFFFFF;
- border-radius: 4px 4px 4px 4px;
- border-bottom: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- font-weight: 400;
- font-size: 32px;
- color: #333333;
- line-height: 52px;
- }
- }
- tr:nth-child(5) {
- td:nth-child(1) {
- width: 290px;
- 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;
- text-align: center;
- }
- 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;
- text-align: center;
- }
- }
- tr:nth-child(6) {
- td:nth-child(1) {
- width: 290px;
- 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;
- height: 100px;
- border-right: 8px solid #E0EEF4;
- border-bottom: 8px solid #E0EEF4;
- font-weight: 400;
- font-size: 32px;
- color: #333333;
- line-height: 52px;
- text-align: center;
- }
- 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;
- text-align: center;
- }
- }
- .school-level-box {
- display: flex;
- justify-content: left;
- flex-wrap: wrap;
- width: 620px;
- padding-left: 30px;
- .school-level {
- margin-right: 20px;
- width: 174px;
- height: 54px;
- background: #B3FC7C;
- border-radius: 5px 5px 5px 5px;
- font-weight: bold;
- font-size: 20px;
- color: #000000;
- line-height: 54px;
- text-align: center;
- margin-top: 10px;
- }
- }
- .text-td {
- width: 300px;
- .text-td-p {
- display: flex;
- }
- }
- }
- }
- .two-page {
- display: flex;
- flex-direction: column;
- align-items: center;
- .table {
- width: 1526px;
- height: 887px;
- margin-top: 25px;
- .one-tr {
- font-weight: 400;
- font-size: 32px;
- color: #FFFFFF;
- text-align: center;
- td:nth-child(1) {
- width: 290px;
- height: 100px;
- background: #1E410E;
- border-radius: 32px 4px 4px 4px;
- border: 8px solid #E0EEF4;
- }
- td:nth-child(2) {
- width: 620px;
- height: 100px;
- background: #1EC590;
- border-top: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- border-bottom: 8px solid #E0EEF4;
- }
- td:nth-child(3) {
- width: 616px;
- height: 119px;
- background: #8CE349;
- border-radius: 4px 32px 4px 4px;
- border-top: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- border-bottom: 8px solid #E0EEF4;
- }
- }
- .two-tr {
- td:nth-child(1) {
- height: 100px;
- border-radius: 0px 0px 0px 0px;
- background: #1E410E;
- border-left: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- border-bottom: 8px solid #E0EEF4;
- font-weight: 400;
- font-size: 32px;
- color: #FFFFFF;
- text-align: center;
- }
- td:nth-child(2) {
- width: 620px;
- height: 290px;
- background: #FFFFFF;
- border-radius: 4px 4px 4px 4px;
- //border-top: 8px solid #E0EEF4;
- border-bottom: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- font-weight: 400;
- font-size: 32px;
- color: #333333;
- line-height: 52px;
- }
- td:nth-child(3) {
- width: 620px;
- height: 290px;
- background: #FFFFFF;
- border-radius: 4px 4px 4px 4px;
- border-bottom: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- font-weight: 400;
- font-size: 32px;
- color: #333333;
- line-height: 52px;
- }
- }
- .text-td {
- text-align: center;
- .text-td-p {
- display: flex;
- justify-content: center;
- }
- }
- }
- }
- .three-page {
- display: flex;
- flex-direction: column;
- align-items: center;
- .table {
- width: 1526px;
- height: 887px;
- margin-top: 25px;
- .one-tr {
- font-weight: 400;
- font-size: 32px;
- color: #FFFFFF;
- text-align: center;
- td:nth-child(1) {
- width: 290px;
- height: 100px;
- background: #1E410E;
- border-radius: 32px 4px 4px 4px;
- border: 8px solid #E0EEF4;
- }
- td:nth-child(2) {
- width: 620px;
- height: 100px;
- background: #1EC590;
- border-top: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- border-bottom: 8px solid #E0EEF4;
- }
- td:nth-child(3) {
- width: 616px;
- height: 119px;
- background: #8CE349;
- border-radius: 4px 32px 4px 4px;
- border-top: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- border-bottom: 8px solid #E0EEF4;
- }
- }
- .two-tr {
- td:nth-child(1) {
- height: 100px;
- border-radius: 0px 0px 0px 0px;
- background: #1E410E;
- border-left: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- border-bottom: 8px solid #E0EEF4;
- font-weight: 400;
- font-size: 32px;
- color: #FFFFFF;
- text-align: center;
- }
- td:nth-child(2) {
- width: 620px;
- height: 290px;
- background: #FFFFFF;
- border-radius: 4px 4px 4px 4px;
- //border-top: 8px solid #E0EEF4;
- border-bottom: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- font-weight: 400;
- font-size: 32px;
- color: #333333;
- line-height: 52px;
- }
- td:nth-child(3) {
- width: 620px;
- height: 290px;
- background: #FFFFFF;
- border-radius: 4px 4px 4px 4px;
- border-bottom: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- font-weight: 400;
- font-size: 32px;
- color: #333333;
- line-height: 52px;
- }
- }
- .text-td {
- text-align: center;
- .text-td-p {
- display: flex;
- justify-content: center;
- }
- }
- }
- }
- .four-page{
- display: flex;
- flex-direction: column;
- align-items: center;
- .table {
- width: 1526px;
- height: 887px;
- margin-top: 25px;
- .one-tr {
- font-weight: 400;
- font-size: 32px;
- color: #FFFFFF;
- text-align: center;
- td:nth-child(1) {
- width: 290px;
- height: 100px;
- background: #1E410E;
- border-radius: 32px 4px 4px 4px;
- border: 8px solid #E0EEF4;
- }
- td:nth-child(2) {
- width: 620px;
- height: 100px;
- background: #1EC590;
- border-top: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- border-bottom: 8px solid #E0EEF4;
- }
- td:nth-child(3) {
- width: 616px;
- height: 119px;
- background: #8CE349;
- border-radius: 4px 32px 4px 4px;
- border-top: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- border-bottom: 8px solid #E0EEF4;
- }
- }
- .two-tr {
- td:nth-child(1) {
- height: 100px;
- border-radius: 0px 0px 0px 0px;
- background: #1E410E;
- border-left: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- border-bottom: 8px solid #E0EEF4;
- font-weight: 400;
- font-size: 32px;
- color: #FFFFFF;
- text-align: center;
- }
- td:nth-child(2) {
- width: 620px;
- height: 290px;
- background: #FFFFFF;
- border-radius: 4px 4px 4px 4px;
- //border-top: 8px solid #E0EEF4;
- border-bottom: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- font-weight: 400;
- font-size: 32px;
- color: #333333;
- line-height: 52px;
- }
- td:nth-child(3) {
- width: 620px;
- height: 290px;
- background: #FFFFFF;
- border-radius: 4px 4px 4px 4px;
- border-bottom: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- font-weight: 400;
- font-size: 32px;
- color: #333333;
- line-height: 52px;
- }
- }
- .text-td {
- text-align: center;
- .text-td-p {
- display: flex;
- justify-content: center;
- }
- }
- }
- }
- .five-page{
- display: flex;
- flex-direction: column;
- align-items: center;
- .table {
- width: 1526px;
- height: 887px;
- margin-top: 25px;
- .one-tr {
- font-weight: 400;
- font-size: 32px;
- color: #FFFFFF;
- text-align: center;
- td:nth-child(1) {
- width: 290px;
- height: 100px;
- background: #1E410E;
- border-radius: 32px 4px 4px 4px;
- border: 8px solid #E0EEF4;
- }
- td:nth-child(2) {
- width: 620px;
- height: 100px;
- background: #1EC590;
- border-top: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- border-bottom: 8px solid #E0EEF4;
- }
- td:nth-child(3) {
- width: 616px;
- height: 119px;
- background: #8CE349;
- border-radius: 4px 32px 4px 4px;
- border-top: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- border-bottom: 8px solid #E0EEF4;
- }
- }
- .two-tr {
- td:nth-child(1) {
- height: 100px;
- border-radius: 0px 0px 0px 0px;
- background: #1E410E;
- border-left: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- border-bottom: 8px solid #E0EEF4;
- font-weight: 400;
- font-size: 32px;
- color: #FFFFFF;
- text-align: center;
- }
- td:nth-child(2) {
- width: 620px;
- background: #FFFFFF;
- border-radius: 4px 4px 4px 4px;
- //border-top: 8px solid #E0EEF4;
- border-bottom: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- font-weight: 400;
- font-size: 32px;
- color: #333333;
- line-height: 52px;
- }
- td:nth-child(3) {
- width: 620px;
- background: #FFFFFF;
- border-radius: 4px 4px 4px 4px;
- border-bottom: 8px solid #E0EEF4;
- border-right: 8px solid #E0EEF4;
- font-weight: 400;
- font-size: 32px;
- color: #333333;
- line-height: 52px;
- }
- .school-box{
- //display: flex;
- //justify-content: space-around;
- //flex-wrap: wrap;
- .info{
- //width: 200px;
- //height: 200px;
- margin-left: 30px;
- }
- }
- }
- .text-td {
- text-align: center;
- .text-td-p {
- display: flex;
- justify-content: center;
- }
- }
- }
- }
- }
- }
- }
- .dialog-box {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- div {
- //border: 1px solid;
- }
- p {
- min-width: 120px;
- padding-left: 10px;
- padding-right: 10px;
- height: 60px;
- margin-left: 10px;
- margin-right: 10px;
- border: 1px solid;
- font-weight: 400;
- font-size: 30px;
- color: #333333;
- text-align: center;
- line-height: 60px;
- border-radius: 10px;
- }
- }
- .dialog-box2 {
- display: flex;
- justify-content: space-around;
- }
- </style>
|