提交 609fccfa authored 作者: 王鹏飞's avatar 王鹏飞

chore: update

上级 20f01a9f
......@@ -23,7 +23,7 @@ body {
margin: 0;
background: #f9f8f8;
color: #333;
min-width: 1300px;
min-width: 1200px;
}
p {
margin: 0;
......
......@@ -30,7 +30,7 @@ defineProps({
flex: 1;
// border-left: 7px solid #aa1941;
// padding-left: 20px;
font-size: 32px;
font-size: 30px;
font-weight: bold;
line-height: 1;
// text-align: v-bind(titleAlign);
......
......@@ -18,10 +18,10 @@ const items = [
name: '解决方案中心',
href: 'solution/ai',
},
{
name: '职业技能中心',
href: '/certificate',
},
// {
// name: '职业技能中心',
// href: '/certificate',
// },
{
name: '学习服务中心',
href: 'https://saas-learn.ezijing.com',
......@@ -71,19 +71,19 @@ const items = [
name: '中华全国供销合作总社',
href: 'https://www.chinacoop.gov.cn',
},
{
name: '国家新闻出版署',
href: 'https://www.nppa.gov.cn',
},
{
name: '广播电视总局',
href: 'https://www.nrta.gov.cn',
},
{
name: '国家新闻出版署',
href: 'https://www.nppa.gov.cn',
},
],
},
{
name: '申请试用',
},
// {
// name: '申请试用',
// },
]
</script>
......@@ -189,11 +189,12 @@ const items = [
background: var(--main-color);
}
.app-footer-inner {
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
color: #fff;
padding: 80px 0;
padding: 40px 0;
display: flex;
gap: 60px;
a:hover {
color: #fff;
}
......@@ -205,25 +206,26 @@ const items = [
flex: 1;
}
dt {
font-size: 22px;
font-size: 20px;
line-height: 1;
margin-bottom: 28px;
}
dd {
font-size: 18px;
font-size: 14px;
line-height: 32px;
}
}
.app-footer-right {
h4 {
font-size: 22px;
font-size: 20px;
font-weight: normal;
line-height: 1;
margin-bottom: 28px;
}
.address {
dl {
display: flex;
font-size: 16px;
font-size: 14px;
line-height: 32px;
}
dt {
......
......@@ -54,7 +54,7 @@ export default {
<style lang="scss">
.is-pc {
.app-main {
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
padding: 60px 0;
}
......@@ -78,7 +78,7 @@ export default {
position: relative;
padding: 0 20px;
height: 40px;
font-size: 22px;
font-size: 18px;
line-height: 40px;
text-align: center;
color: #777777;
......
......@@ -358,8 +358,8 @@ const btnDisabledTimer = () => {
li {
position: relative;
width: 80px;
height: 80px;
width: 60px;
height: 60px;
display: flex;
align-items: center;
justify-content: center;
......
......@@ -38,7 +38,7 @@ onMounted(async () => {
<style lang="scss">
.is-pc {
.article-detail {
width: 1300px;
width: 1200px;
margin: 30px auto;
}
.article-back {
......
......@@ -72,7 +72,7 @@ onMounted(async () => {
<style lang="scss" scoped>
.is-pc {
.news-card {
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
padding: 60px 0;
.content-box {
......
......@@ -85,7 +85,7 @@ const submit = () => {
.content-main {
padding-top: 24px;
.form-box {
width: 1300px;
width: 1200px;
height: 500px;
margin: 0 auto 40px;
background: url(https://webapp-pub.ezijing.com/www/pc/next/cert/cert_application_bg.png);
......
......@@ -18,16 +18,19 @@
</template>
<script setup>
import { Swiper, SwiperSlide } from 'swiper/vue'
import { Navigation } from 'swiper/modules'
import { Navigation, Autoplay } from 'swiper/modules'
import { getAdvertisementList } from '@/api'
const config = useRuntimeConfig()
const swiperOption = {
modules: [Navigation],
modules: [Navigation, Autoplay],
speed: 400,
autoplay: true,
delay: 3000,
autoplay: {
delay: 3000,
disableOnInteraction: false,
pauseOnMouseEnter: true,
},
observer: true,
observerParent: true,
navigation: {
......@@ -36,13 +39,17 @@ const swiperOption = {
},
loop: true,
}
const data = [
{ web_img_uri: 'https://webapp-pub.ezijing.com/www/pc/next/banner1.jpg' },
{ web_img_uri: 'https://webapp-pub.ezijing.com/www/pc/next/banner2.jpg' },
{ web_img_uri: 'https://webapp-pub.ezijing.com/www/pc/next/banner3.jpg' },
]
// 使用 useAsyncData 进行服务端渲染
const { data } = await useAsyncData('banner-ads', async () => {
const params = { project_id: config.public.projectId, type_tag: 'ad_banner' }
const res = await getAdvertisementList(params)
return [{ web_img_uri: '/images/banner.jpg' }, ...res.data.data] || []
})
// const { data } = await useAsyncData('banner-ads', async () => {
// const params = { project_id: config.public.projectId, type_tag: 'ad_banner' }
// const res = await getAdvertisementList(params)
// return [{ web_img_uri: '/images/banner.jpg' }, ...res.data.data] || []
// })
</script>
<style lang="scss">
......
......@@ -156,12 +156,11 @@ const rows = [
<style lang="scss">
.home-enterprise {
scroll-margin-top: 170px;
background: #f0f2f5;
padding-bottom: 90px;
.home-enterprise-inner {
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
.home-enterprise-title {
......@@ -196,20 +195,20 @@ const rows = [
.home-enterprise-box {
position: relative;
flex: 1;
min-height: 210px;
min-height: 160px;
&:hover {
z-index: 10;
.home-enterprise-box-inner {
padding: 60px 30px 0;
padding: 20px 20px 0;
color: #fff;
background-color: var(--main-color);
height: calc(200% + 10px);
display: flex;
align-items: flex-start;
justify-content: flex-start;
gap: 40px;
gap: 10px;
}
.home-enterprise-box-inner-header {
......@@ -217,7 +216,7 @@ const rows = [
gap: 14px;
}
.home-enterprise-box-name {
font-size: 20px;
font-size: 18px;
white-space: nowrap;
}
.home-enterprise-box-icon {
......@@ -252,6 +251,7 @@ const rows = [
gap: 18px;
background-color: #fff;
border-radius: 12px;
padding: 0 20px;
}
.home-enterprise-box-inner-header {
......@@ -263,7 +263,7 @@ const rows = [
.home-enterprise-box-name {
font-family: Source Han Sans CN;
font-size: 16px;
font-size: 14px;
line-height: 1;
text-align: center;
}
......@@ -271,7 +271,7 @@ const rows = [
.home-enterprise-box-desc {
display: none;
font-family: Source Han Sans CN;
font-size: 16px;
font-size: 14px;
line-height: 20px;
white-space: pre-wrap;
}
......
......@@ -2,12 +2,12 @@
const rows1 = [
`中国中小企业协会
副会长单位`,
`中国电子商会
元宇宙专业委员会
副理事长单位`,
`中国中小企业协会
数字经济人才专业委员会
秘书长单位`,
`中国电子商会
元宇宙专业委员会
副理事长单位`,
`全国数智商业
产教融合共同体
副理事长单位`,
......@@ -63,7 +63,7 @@ AAA级
<style lang="scss">
.home-honor {
background: linear-gradient(161deg, #aa1941 50%, #a24979 100%);
overflow: hidden;
.home-honor-bg {
position: absolute;
bottom: 0;
......@@ -75,7 +75,7 @@ AAA级
.home-honor-inner {
position: relative;
max-width: 1300px;
max-width: 1200px;
height: 580px;
margin: 0 auto;
......@@ -114,11 +114,12 @@ AAA级
li {
position: relative;
width: 174px;
width: 154px;
height: 200px;
font-size: 14px;
font-size: 12px;
line-height: 24px;
background: url(~/assets/images/home/honor_bg.png) no-repeat center center;
background-size: contain;
color: #fff;
text-align: center;
white-space: pre-wrap;
......@@ -138,6 +139,7 @@ AAA级
&:hover {
background: url(~/assets/images/home/honor_bg_hover.png) no-repeat center center;
background-size: contain;
}
span {
min-height: 80px;
......
......@@ -96,7 +96,7 @@ const menuGroups = [
<style lang="scss">
.app-menu {
position: relative;
max-width: 1300px;
max-width: 1200px;
margin: -100px auto 0;
background: #fff;
box-shadow: 0px 0px 16px 1px rgba(0, 0, 0, 0.12);
......@@ -105,7 +105,7 @@ const menuGroups = [
}
.menu-inner {
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
}
......@@ -120,12 +120,12 @@ const menuGroups = [
}
.menu-label {
padding: 0 30px;
padding: 0 20px;
display: flex;
align-items: center;
justify-content: center;
gap: 6px;
font-size: 18px;
font-size: 16px;
font-weight: bold;
}
......@@ -150,13 +150,12 @@ const menuGroups = [
flex-direction: column;
align-items: center;
justify-content: center;
padding: 16px 24px;
border-radius: 12px;
text-decoration: none;
color: var(--main-color);
transition: transform 0.3s;
position: relative;
width: 180px;
width: 160px;
height: 120px;
}
......@@ -211,12 +210,12 @@ const menuGroups = [
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 15px;
margin-bottom: 10px;
color: #6c6c6c;
}
.menu-name {
font-size: 16px;
font-size: 14px;
line-height: 20px;
text-align: center;
font-weight: bold;
......
......@@ -122,7 +122,7 @@ const currentList = computed(() => {
padding-bottom: 80px;
.home-partner-inner {
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
.home-partner-title {
......
......@@ -201,12 +201,11 @@ const colList = computed(() => {
<style lang="scss">
.home-personal {
scroll-margin-top: 170px;
padding-bottom: 90px;
background: #fff;
.home-personal-inner {
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
.home-personal-title {
......@@ -291,7 +290,7 @@ const colList = computed(() => {
h3 {
font-family: Source Han Sans CN;
font-weight: bold;
font-size: 24px;
font-size: 22px;
line-height: 1;
}
......@@ -302,7 +301,7 @@ const colList = computed(() => {
li {
font-family: Source Han Sans CN;
font-weight: 400;
font-size: 16px;
font-size: 14px;
line-height: 30px;
white-space: nowrap;
}
......@@ -317,7 +316,7 @@ const colList = computed(() => {
h3 {
font-family: Source Han Sans CN;
font-weight: bold;
font-size: 24px;
font-size: 22px;
line-height: 1;
margin-bottom: 40px;
}
......@@ -355,7 +354,7 @@ const colList = computed(() => {
}
dt {
font-size: 18px;
font-size: 16px;
font-weight: bold;
line-height: 1;
color: var(--main-color);
......@@ -363,7 +362,7 @@ const colList = computed(() => {
}
li {
font-size: 16px;
font-size: 14px;
line-height: 30px;
}
}
......@@ -382,7 +381,7 @@ const colList = computed(() => {
}
li {
font-size: 16px;
font-size: 14px;
line-height: 26px;
}
}
......@@ -428,7 +427,7 @@ const colList = computed(() => {
}
li {
font-size: 16px;
font-size: 14px;
line-height: 24px;
}
}
......
......@@ -110,7 +110,7 @@ onMounted(() => {
</script>
<style lang="scss">
.home-news {
max-width: 1300px;
max-width: 1200px;
padding-bottom: 90px;
margin: 0 auto;
......@@ -119,7 +119,7 @@ onMounted(() => {
display: flex;
.left-content {
flex: 0 0 650px;
flex: 0 0 600px;
height: 282px;
background: #ffffff;
box-shadow: 0px 0px 29px rgba(0, 0, 0, 0.03);
......@@ -185,7 +185,7 @@ onMounted(() => {
.txt {
margin-left: 33px;
font-size: 18px;
font-size: 16px;
font-weight: 400;
color: #424242;
text-overflow: ellipsis;
......@@ -202,21 +202,18 @@ onMounted(() => {
.right-content {
margin-left: 45px;
flex: 1;
height: 282px;
ul {
li+li {
li + li {
margin-top: 35px;
}
li {
a {
display: flex;
align-items: center;
}
&:hover {
.content_con {
.text {
......@@ -276,7 +273,7 @@ onMounted(() => {
.text {
text-align: left;
font-size: 18px;
font-size: 16px;
font-weight: 500;
color: #333333;
display: -webkit-box;
......@@ -289,7 +286,7 @@ onMounted(() => {
.desc {
text-align: left;
font-size: 13px;
font-size: 14px;
font-weight: 400;
line-height: 22px;
color: #666666;
......
......@@ -106,7 +106,6 @@ const rows = [
{ name: '低空技术', href: '/platform/dk' },
{ name: '低空文旅', href: '/platform/dk' },
{ name: '低空物流', href: '/platform/dk' },
{ name: '…', href: '/platform/dk' },
],
},
],
......@@ -157,22 +156,22 @@ const rows = [
</li>
</ul>
<template v-if="box.icon">
<SchoolIcons :name="box.icon" />
<ul class="home-school-box-list" v-if="box.items">
<li v-for="item in box.items" :key="item.name">
<a :href="item.href" target="_blank">{{ item.name }}</a>
</li>
</ul>
<div>
<SchoolIcons :name="box.icon" />
<div class="home-school-box-title" v-if="box.title">
<a :href="box.href" target="_blank">{{ box.title }}</a>
</div>
<ul class="home-school-box-desc" v-if="box.desc">
<li v-for="desc in box.desc" :key="desc.name">
<a :href="desc.href" target="_blank">{{ desc.name }}</a>
</li>
</ul>
</div>
<ul class="home-school-box-list" v-if="box.items">
<li v-for="item in box.items" :key="item.name">
<a :href="item.href" target="_blank">{{ item.name }}</a>
</li>
</ul>
<ul class="home-school-box-desc" v-if="box.desc">
<li v-for="desc in box.desc" :key="desc.name">
<a :href="desc.href" target="_blank">{{ desc.name }}</a>
</li>
</ul>
</template>
</div>
</div>
......@@ -184,11 +183,10 @@ const rows = [
<style lang="scss">
.home-school {
scroll-margin-top: 170px;
background: #fff;
.home-school-inner {
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
.home-school-title {
......@@ -223,7 +221,7 @@ const rows = [
.home-school-col:nth-child(even) {
.home-school-box {
padding: 18px;
padding: 12px;
background-color: #dee2ea;
}
}
......@@ -238,7 +236,7 @@ const rows = [
.home-school-col:nth-child(even) {
.home-school-box {
padding: 18px;
padding: 12px;
background-color: #efecea;
}
}
......@@ -270,7 +268,7 @@ const rows = [
justify-content: center;
font-family: Source Han Sans CN;
font-weight: bold;
font-size: 18px;
font-size: 16px;
line-height: 24px;
text-align: center;
}
......@@ -288,7 +286,7 @@ const rows = [
background-color: #fff;
border-radius: 22px;
font-family: Source Han Sans CN;
font-size: 16px;
font-size: 14px;
line-height: 32px;
text-align: center;
......@@ -301,13 +299,13 @@ const rows = [
.home-school-box-list {
position: relative;
z-index: 10;
margin: 10px 0;
// margin: 10px 0;
li {
font-family: Source Han Sans CN;
font-weight: bold;
font-size: 16px;
line-height: 32px;
font-weight: 500;
font-size: 14px;
line-height: 26px;
white-space: nowrap;
&:hover {
......@@ -318,25 +316,23 @@ const rows = [
.home-school-box-icon {
display: flex;
gap: 10px;
gap: 16px;
}
.home-school-box-watermark {
position: absolute;
right: 0;
bottom: 0;
font-family:
Source Han Sans CN,
Source Han Sans CN;
font-family: Source Han Sans CN;
font-weight: bold;
font-size: 51px;
font-size: 48px;
color: #dbd4d0;
line-height: 1;
opacity: 0.2;
}
.home-school-box-ai {
padding: 38px 155px !important;
padding: 20px 80px !important;
background-image: url('~/assets/images/home/icon_ai.png');
background-position: right center;
background-repeat: no-repeat;
......@@ -344,7 +340,7 @@ const rows = [
.home-school-box-btns {
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: 20px 115px;
gap: 20px 40px;
& li:nth-child(1),
& li:nth-child(2) {
......@@ -358,11 +354,11 @@ const rows = [
}
.home-school-box-title {
margin: 10px 0;
// margin: 10px 0;
font-family: Source Han Sans CN;
font-weight: bold;
font-size: 16px;
line-height: 32px;
font-size: 14px;
line-height: 26px;
white-space: nowrap;
&:hover {
......@@ -372,9 +368,10 @@ const rows = [
.home-school-box-desc {
li {
font-weight: 500;
font-size: 14px;
color: #333333;
line-height: 24px;
line-height: 26px;
white-space: nowrap;
}
}
......
export const useUser = () => {}
<template>
<app-frame :tabs="tabs">
<img src="https://webapp-pub.ezijing.com/www/pc/home/banner.png" class="banner" />
<img src="https://webapp-pub.ezijing.com/www/pc/home/banner.png?v=1" class="banner" />
<template #article>
<div class="intr-content-box">
<div class="text-content">
......@@ -86,7 +86,7 @@ watch(
indexActive.value = parseInt(query.index)
}
},
{ immediate: true }
{ immediate: true },
)
const changeIndex = (n) => {
......
......@@ -130,7 +130,7 @@ const handleDialogClick = (event) => {
<style lang="scss" scoped>
.card {
margin: 80px auto;
max-width: 1300px;
max-width: 1200px;
}
.card-hd {
align-items: center;
......@@ -298,7 +298,7 @@ const handleDialogClick = (event) => {
.banner img {
width: 100%;
min-width: 1300px;
min-width: 1200px;
object-fit: cover;
}
......
......@@ -278,7 +278,7 @@ const tabList = [
border-bottom: 1px solid var(--main-color);
}
&-inner {
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
}
}
......@@ -287,10 +287,10 @@ const tabList = [
background: url('https://webapp-pub.ezijing.com/www/pc/next/ai/ai_banner.jpg') no-repeat center center;
background-size: cover;
&-inner {
max-width: 1300px;
max-width: 1200px;
height: 100%;
margin: 0 auto;
padding-left: 52px;
display: flex;
flex-direction: column;
justify-content: center;
......@@ -324,6 +324,7 @@ const tabList = [
.ys-list {
display: flex;
justify-content: space-between;
gap: 20px;
.ys-list-item {
position: relative;
height: 340px;
......@@ -375,9 +376,7 @@ const tabList = [
}
}
.jx-desc {
font-family:
Source Han Sans CN,
Source Han Sans CN;
font-family: Source Han Sans CN;
font-weight: 400;
font-size: 16px;
line-height: 24px;
......@@ -478,9 +477,7 @@ const tabList = [
}
}
.bz-desc {
font-family:
Source Han Sans CN,
Source Han Sans CN;
font-family: Source Han Sans CN;
font-weight: 400;
font-size: 16px;
color: #333333;
......@@ -528,7 +525,7 @@ const tabList = [
justify-content: space-between;
}
.tab {
width: 540px;
width: 480px;
color: #fff;
&-header {
display: flex;
......
......@@ -26,7 +26,7 @@ const listOptions = {
<style lang="scss" scoped>
.main_content {
width: 1300px;
width: 1200px;
margin: 30px auto;
.banner {
......
......@@ -124,7 +124,7 @@ const tabList = [
border-bottom: 1px solid var(--main-color);
}
&-inner {
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
}
}
......@@ -133,10 +133,9 @@ const tabList = [
background: url('https://webapp-pub.ezijing.com/www/pc/next/bi/bi_banner.jpg') no-repeat center center;
background-size: cover;
&-inner {
max-width: 1300px;
max-width: 1200px;
height: 100%;
margin: 0 auto;
padding-left: 52px;
display: flex;
flex-direction: column;
justify-content: center;
......@@ -169,9 +168,7 @@ const tabList = [
}
.jx-desc {
font-family:
Source Han Sans CN,
Source Han Sans CN;
font-family: Source Han Sans CN;
font-weight: 400;
font-size: 16px;
line-height: 24px;
......@@ -212,9 +209,7 @@ const tabList = [
}
}
.bz-desc {
font-family:
Source Han Sans CN,
Source Han Sans CN;
font-family: Source Han Sans CN;
font-weight: 400;
font-size: 16px;
color: #333333;
......@@ -222,7 +217,7 @@ const tabList = [
}
.tab {
width: 540px;
width: 480px;
color: #fff;
&-header {
display: flex;
......
......@@ -133,7 +133,7 @@ const zzfwList = ['顶层设计服务', '技能培训服务', '行业讲座服
border-bottom: 1px solid var(--main-color);
}
&-inner {
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
}
}
......@@ -142,10 +142,10 @@ const zzfwList = ['顶层设计服务', '技能培训服务', '行业讲座服
background: url('https://webapp-pub.ezijing.com/www/pc/next/cert/cert_banner.png') no-repeat center center;
background-size: cover;
&-inner {
max-width: 1300px;
max-width: 1200px;
height: 100%;
margin: 0 auto;
padding-left: 52px;
display: flex;
flex-direction: column;
justify-content: center;
......@@ -307,7 +307,9 @@ const zzfwList = ['顶层设计服务', '技能培训服务', '行业讲座服
h4 {
padding: 64px 0 45px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #fff;
display: flex;
......@@ -316,7 +318,9 @@ const zzfwList = ['顶层设计服务', '技能培训服务', '行业讲座服
}
p {
font-size: 16px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #ffffff;
line-height: 40px;
......@@ -329,7 +333,9 @@ const zzfwList = ['顶层设计服务', '技能培训服务', '行业讲座服
li {
flex: 1;
font-size: 22px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #333333;
line-height: 80px;
......
......@@ -233,7 +233,7 @@ const xsList = ref([
}
.cover-inner {
height: 100%;
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
......@@ -241,7 +241,7 @@ const xsList = ref([
}
}
.section-inner {
width: 1300px;
width: 1200px;
margin: 0 auto;
padding-bottom: 90px;
}
......@@ -354,6 +354,9 @@ const xsList = ref([
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
img {
width: 100%;
}
}
.ds-type-list {
display: flex;
......
......@@ -208,7 +208,7 @@ const gkList = ref([
}
.cover-inner {
height: 100%;
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
......@@ -222,7 +222,7 @@ const gkList = ref([
background-color: #f9f8f8;
}
.section-inner {
width: 1300px;
width: 1200px;
margin: 0 auto;
padding: 100px 0;
}
......
......@@ -293,14 +293,18 @@ const jfalList = ref([
color: #ffffff;
h2 {
font-size: 42px;
font-family: Source Han Sans CN-Bold, Source Han Sans CN;
font-family:
Source Han Sans CN-Bold,
Source Han Sans CN;
font-weight: bold;
line-height: 1;
}
h3 {
margin-bottom: 20px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 1;
letter-spacing: 4px;
......@@ -314,7 +318,9 @@ const jfalList = ref([
h6 {
margin-bottom: 24px;
font-size: 20px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 1;
letter-spacing: 2px;
......@@ -322,7 +328,9 @@ const jfalList = ref([
p {
max-width: 644px;
font-size: 14px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
line-height: 26px;
}
a {
......@@ -330,7 +338,9 @@ const jfalList = ref([
width: 112px;
height: 36px;
font-size: 16px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #ffffff;
line-height: 36px;
......@@ -340,7 +350,7 @@ const jfalList = ref([
}
.cover-inner {
height: 100%;
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
......@@ -354,7 +364,7 @@ const jfalList = ref([
background-color: #f9f8f8;
}
.section-inner {
width: 1300px;
width: 1200px;
margin: 0 auto;
padding: 100px 0;
}
......@@ -414,7 +424,9 @@ const jfalList = ref([
p {
margin-top: 48px;
font-size: 18px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #ffffff;
}
......@@ -432,7 +444,9 @@ const jfalList = ref([
height: 60px;
background: #f2f2f2;
font-size: 15px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #424242;
}
......@@ -459,7 +473,9 @@ const jfalList = ref([
h4 {
padding: 64px 0 45px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #fff;
display: flex;
......@@ -468,7 +484,9 @@ const jfalList = ref([
}
p {
font-size: 16px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #ffffff;
line-height: 40px;
......@@ -481,7 +499,9 @@ const jfalList = ref([
li {
flex: 1;
font-size: 22px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #333333;
line-height: 80px;
......@@ -516,7 +536,9 @@ const jfalList = ref([
justify-content: space-between;
p {
font-size: 20px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #333333;
line-height: 30px;
......@@ -578,7 +600,9 @@ const jfalList = ref([
width: 270px;
height: 70px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 70px;
color: #333333;
......
......@@ -289,14 +289,18 @@ const jfalList = ref([
color: #ffffff;
h2 {
font-size: 42px;
font-family: Source Han Sans CN-Bold, Source Han Sans CN;
font-family:
Source Han Sans CN-Bold,
Source Han Sans CN;
font-weight: bold;
line-height: 1;
}
h3 {
margin-bottom: 20px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 1;
letter-spacing: 4px;
......@@ -310,7 +314,9 @@ const jfalList = ref([
h6 {
margin-bottom: 24px;
font-size: 20px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 1;
letter-spacing: 2px;
......@@ -318,7 +324,9 @@ const jfalList = ref([
p {
max-width: 644px;
font-size: 14px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
line-height: 26px;
}
a {
......@@ -326,7 +334,9 @@ const jfalList = ref([
width: 112px;
height: 36px;
font-size: 16px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #ffffff;
line-height: 36px;
......@@ -336,7 +346,7 @@ const jfalList = ref([
}
.cover-inner {
height: 100%;
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
......@@ -350,7 +360,7 @@ const jfalList = ref([
background-color: #f9f8f8;
}
.section-inner {
width: 1300px;
width: 1200px;
margin: 0 auto;
padding: 100px 0;
}
......@@ -410,7 +420,9 @@ const jfalList = ref([
p {
margin-top: 48px;
font-size: 18px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #ffffff;
}
......@@ -428,7 +440,9 @@ const jfalList = ref([
height: 60px;
background: #f2f2f2;
font-size: 15px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #424242;
}
......@@ -455,7 +469,9 @@ const jfalList = ref([
h4 {
padding: 64px 0 45px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #fff;
display: flex;
......@@ -464,7 +480,9 @@ const jfalList = ref([
}
p {
font-size: 16px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #ffffff;
line-height: 40px;
......@@ -477,7 +495,9 @@ const jfalList = ref([
li {
flex: 1;
font-size: 22px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #333333;
line-height: 80px;
......@@ -512,7 +532,9 @@ const jfalList = ref([
justify-content: space-between;
p {
font-size: 20px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #333333;
line-height: 30px;
......@@ -574,7 +596,9 @@ const jfalList = ref([
width: 270px;
height: 70px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 70px;
color: #333333;
......
......@@ -271,14 +271,18 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
color: #ffffff;
h2 {
font-size: 42px;
font-family: Source Han Sans CN-Bold, Source Han Sans CN;
font-family:
Source Han Sans CN-Bold,
Source Han Sans CN;
font-weight: bold;
line-height: 1;
}
h3 {
margin-bottom: 20px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 1;
letter-spacing: 4px;
......@@ -292,7 +296,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
h6 {
margin-bottom: 24px;
font-size: 20px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 1;
letter-spacing: 2px;
......@@ -300,7 +306,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
p {
max-width: 644px;
font-size: 14px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
line-height: 26px;
}
a {
......@@ -308,7 +316,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
width: 112px;
height: 36px;
font-size: 16px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #ffffff;
line-height: 36px;
......@@ -318,7 +328,7 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
}
.cover-inner {
height: 100%;
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
......@@ -332,7 +342,7 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
background-color: #f9f8f8;
}
.section-inner {
width: 1300px;
width: 1200px;
margin: 0 auto;
padding: 100px 0;
}
......@@ -392,7 +402,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
p {
margin-top: 48px;
font-size: 18px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #ffffff;
}
......@@ -410,7 +422,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
height: 60px;
background: #f2f2f2;
font-size: 15px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #424242;
}
......@@ -437,7 +451,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
h4 {
padding: 64px 0 45px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #fff;
display: flex;
......@@ -446,7 +462,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
}
p {
font-size: 16px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #ffffff;
line-height: 40px;
......@@ -459,7 +477,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
li {
flex: 1;
font-size: 22px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #333333;
line-height: 80px;
......@@ -494,7 +514,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
justify-content: space-between;
p {
font-size: 20px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #333333;
line-height: 30px;
......@@ -556,7 +578,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
width: 270px;
height: 70px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 70px;
color: #333333;
......
......@@ -271,14 +271,18 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
color: #ffffff;
h2 {
font-size: 42px;
font-family: Source Han Sans CN-Bold, Source Han Sans CN;
font-family:
Source Han Sans CN-Bold,
Source Han Sans CN;
font-weight: bold;
line-height: 1;
}
h3 {
margin-bottom: 20px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 1;
letter-spacing: 4px;
......@@ -292,7 +296,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
h6 {
margin-bottom: 24px;
font-size: 20px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 1;
letter-spacing: 2px;
......@@ -300,7 +306,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
p {
max-width: 644px;
font-size: 14px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
line-height: 26px;
}
a {
......@@ -308,7 +316,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
width: 112px;
height: 36px;
font-size: 16px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #ffffff;
line-height: 36px;
......@@ -318,7 +328,7 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
}
.cover-inner {
height: 100%;
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
......@@ -332,7 +342,7 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
background-color: #f9f8f8;
}
.section-inner {
width: 1300px;
width: 1200px;
margin: 0 auto;
padding: 100px 0;
}
......@@ -392,7 +402,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
p {
margin-top: 48px;
font-size: 18px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #ffffff;
}
......@@ -410,7 +422,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
height: 60px;
background: #f2f2f2;
font-size: 15px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #424242;
}
......@@ -437,7 +451,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
h4 {
padding: 64px 0 45px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #fff;
display: flex;
......@@ -446,7 +462,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
}
p {
font-size: 16px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #ffffff;
line-height: 40px;
......@@ -459,7 +477,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
li {
flex: 1;
font-size: 22px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #333333;
line-height: 80px;
......@@ -494,7 +514,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
justify-content: space-between;
p {
font-size: 20px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #333333;
line-height: 30px;
......@@ -556,7 +578,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
width: 270px;
height: 70px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 70px;
color: #333333;
......
......@@ -90,14 +90,18 @@ const jfalList = ref([
color: #ffffff;
h2 {
font-size: 42px;
font-family: Source Han Sans CN-Bold, Source Han Sans CN;
font-family:
Source Han Sans CN-Bold,
Source Han Sans CN;
font-weight: bold;
line-height: 1;
}
h3 {
margin-bottom: 20px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 1;
letter-spacing: 4px;
......@@ -111,7 +115,9 @@ const jfalList = ref([
h6 {
margin-bottom: 24px;
font-size: 20px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 1;
letter-spacing: 2px;
......@@ -119,7 +125,9 @@ const jfalList = ref([
p {
max-width: 644px;
font-size: 14px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
line-height: 26px;
}
a {
......@@ -127,7 +135,9 @@ const jfalList = ref([
width: 112px;
height: 36px;
font-size: 16px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #ffffff;
line-height: 36px;
......@@ -137,7 +147,7 @@ const jfalList = ref([
}
.cover-inner {
height: 100%;
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
......@@ -151,7 +161,7 @@ const jfalList = ref([
background-color: #fff;
}
.section-inner {
width: 1300px;
width: 1200px;
margin: 0 auto;
padding: 100px 0;
}
......@@ -202,7 +212,9 @@ const jfalList = ref([
p {
margin-top: 48px;
font-size: 18px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #ffffff;
}
......@@ -213,7 +225,9 @@ const jfalList = ref([
span {
display: inline-block;
font-size: 20px;
font-family: Source Han Sans CN-Normal, Source Han Sans CN;
font-family:
Source Han Sans CN-Normal,
Source Han Sans CN;
font-weight: 400;
color: #424242;
line-height: 34px;
......@@ -235,7 +249,9 @@ const jfalList = ref([
height: 60px;
background: #f2f2f2;
font-size: 15px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #424242;
}
......@@ -258,7 +274,9 @@ const jfalList = ref([
right: 0;
bottom: 0;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #fff;
display: flex;
......@@ -273,7 +291,9 @@ const jfalList = ref([
li {
flex: 1;
font-size: 22px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #333333;
line-height: 80px;
......
......@@ -135,14 +135,18 @@ const jfalList = ref([
color: #ffffff;
h2 {
font-size: 42px;
font-family: Source Han Sans CN-Bold, Source Han Sans CN;
font-family:
Source Han Sans CN-Bold,
Source Han Sans CN;
font-weight: bold;
line-height: 1;
}
h3 {
margin-bottom: 20px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 1;
letter-spacing: 4px;
......@@ -156,7 +160,9 @@ const jfalList = ref([
h6 {
margin-bottom: 24px;
font-size: 20px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 1;
letter-spacing: 2px;
......@@ -164,13 +170,15 @@ const jfalList = ref([
p {
max-width: 644px;
font-size: 14px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
line-height: 26px;
}
}
.cover-inner {
height: 100%;
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
......@@ -184,7 +192,7 @@ const jfalList = ref([
background-color: #f9f8f8;
}
.section-inner {
width: 1300px;
width: 1200px;
margin: 0 auto;
padding: 100px 0;
}
......@@ -263,14 +271,18 @@ const jfalList = ref([
}
h3 {
font-size: 20px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #333333;
line-height: 34px;
}
p {
font-size: 16px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #6c6c6c;
line-height: 34px;
......@@ -294,7 +306,9 @@ const jfalList = ref([
border: 1px solid #dfdfdf;
h3 {
font-size: 24px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #333;
line-height: 34px;
......@@ -313,7 +327,9 @@ const jfalList = ref([
background-color: var(--main-color);
border-radius: 30px;
font-size: 22px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #fff;
line-height: 60px;
......
......@@ -79,7 +79,7 @@ watch(
() => {
fetchList()
},
{ immediate: true }
{ immediate: true },
)
</script>
......@@ -100,14 +100,18 @@ watch(
color: #ffffff;
h2 {
font-size: 42px;
font-family: Source Han Sans CN-Bold, Source Han Sans CN;
font-family:
Source Han Sans CN-Bold,
Source Han Sans CN;
font-weight: bold;
line-height: 1;
}
h3 {
margin-bottom: 20px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 1;
letter-spacing: 4px;
......@@ -121,7 +125,9 @@ watch(
h6 {
margin-bottom: 24px;
font-size: 20px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 1;
letter-spacing: 2px;
......@@ -129,7 +135,9 @@ watch(
p {
max-width: 644px;
font-size: 14px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
line-height: 26px;
}
a {
......@@ -137,7 +145,9 @@ watch(
width: 112px;
height: 36px;
font-size: 16px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #ffffff;
line-height: 36px;
......@@ -147,7 +157,7 @@ watch(
}
.cover-inner {
height: 100%;
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
......@@ -155,7 +165,7 @@ watch(
}
}
.main {
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
}
.tab {
......@@ -170,7 +180,9 @@ watch(
text-align: center;
background-color: #fff;
font-size: 16px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #333333;
cursor: pointer;
......@@ -239,7 +251,9 @@ watch(
padding: 100px 0;
h1 {
font-size: 30px;
font-family: Source Han Sans CN-Bold, Source Han Sans CN;
font-family:
Source Han Sans CN-Bold,
Source Han Sans CN;
font-weight: bold;
color: #333333;
line-height: 46px;
......@@ -249,7 +263,9 @@ watch(
.article-text {
margin-top: 30px;
font-size: 16px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #333333;
line-height: 32px;
......
......@@ -90,14 +90,18 @@ const jfalList = ref([
color: #ffffff;
h2 {
font-size: 42px;
font-family: Source Han Sans CN-Bold, Source Han Sans CN;
font-family:
Source Han Sans CN-Bold,
Source Han Sans CN;
font-weight: bold;
line-height: 1;
}
h3 {
margin-bottom: 20px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 1;
letter-spacing: 4px;
......@@ -111,7 +115,9 @@ const jfalList = ref([
h6 {
margin-bottom: 24px;
font-size: 20px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 1;
letter-spacing: 2px;
......@@ -119,7 +125,9 @@ const jfalList = ref([
p {
max-width: 644px;
font-size: 14px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
line-height: 26px;
}
a {
......@@ -127,7 +135,9 @@ const jfalList = ref([
width: 112px;
height: 36px;
font-size: 16px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #ffffff;
line-height: 36px;
......@@ -137,7 +147,7 @@ const jfalList = ref([
}
.cover-inner {
height: 100%;
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
......@@ -151,7 +161,7 @@ const jfalList = ref([
background-color: #fff;
}
.section-inner {
width: 1300px;
width: 1200px;
margin: 0 auto;
padding: 100px 0;
}
......@@ -202,7 +212,9 @@ const jfalList = ref([
p {
margin-top: 48px;
font-size: 18px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #ffffff;
}
......@@ -213,7 +225,9 @@ const jfalList = ref([
span {
display: inline-block;
font-size: 20px;
font-family: Source Han Sans CN-Normal, Source Han Sans CN;
font-family:
Source Han Sans CN-Normal,
Source Han Sans CN;
font-weight: 400;
color: #424242;
line-height: 34px;
......@@ -235,7 +249,9 @@ const jfalList = ref([
height: 60px;
background: #f2f2f2;
font-size: 15px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #424242;
}
......@@ -258,7 +274,9 @@ const jfalList = ref([
right: 0;
bottom: 0;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #fff;
display: flex;
......@@ -273,7 +291,9 @@ const jfalList = ref([
li {
flex: 1;
font-size: 22px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #333333;
line-height: 80px;
......
......@@ -66,7 +66,7 @@
<HomeAlumniStories style="margin-top: 96px" />
<NewsCard style="margin-top: 96px" baseUrl="/internationalDegree/news" :params="newsParams"></NewsCard>
<TeacherCard :list="teacherList" style="margin-top: 96px"></TeacherCard>
<TeacherCard :list="teacherList"></TeacherCard>
</div>
<FormSubmit></FormSubmit>
</div>
......
......@@ -182,7 +182,7 @@ const faList = [
text-align: center;
}
&-inner {
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
}
}
......@@ -191,10 +191,10 @@ const faList = [
background: url('~/assets/images/job/job_banner.png') no-repeat center center;
background-size: cover;
&-inner {
max-width: 1300px;
max-width: 1200px;
height: 100%;
margin: 0 auto;
padding-left: 52px;
display: flex;
flex-direction: column;
justify-content: center;
......@@ -256,7 +256,7 @@ const faList = [
}
}
&-content {
width: 1300px;
width: 1200px;
margin: 0 auto;
height: 100%;
}
......@@ -274,14 +274,18 @@ const faList = [
}
.t1 {
margin-top: 40px;
font-family: Source Han Sans CN, Source Han Sans CN;
font-family:
Source Han Sans CN,
Source Han Sans CN;
font-weight: 500;
font-size: 20px;
color: #333333;
line-height: 30px;
}
.t2 {
font-family: Source Han Sans CN, Source Han Sans CN;
font-family:
Source Han Sans CN,
Source Han Sans CN;
font-weight: 400;
font-size: 16px;
color: #333333;
......@@ -344,6 +348,9 @@ const faList = [
display: flex;
align-items: center;
position: relative;
width: 550px;
height: 140px;
background-color: #efecea;
&::after {
position: absolute;
content: '';
......@@ -398,9 +405,6 @@ const faList = [
top: 0;
z-index: 1;
}
width: 600px;
height: 140px;
background-color: #efecea;
&:nth-child(4n + 1),
&:nth-child(4n + 2) {
......
......@@ -74,7 +74,7 @@
border-bottom: 1px solid var(--main-color);
}
&-inner {
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
}
}
......@@ -83,10 +83,10 @@
background: url('https://webapp-pub.ezijing.com/www/pc/next/dk/banner.jpg') no-repeat center center;
background-size: cover;
&-inner {
max-width: 1300px;
max-width: 1200px;
height: 100%;
margin: 0 auto;
padding-left: 52px;
display: flex;
flex-direction: column;
justify-content: center;
......@@ -97,7 +97,9 @@
line-height: 1;
}
h2 {
font-family: Source Han Sans CN, Source Han Sans CN;
font-family:
Source Han Sans CN,
Source Han Sans CN;
font-weight: 500;
font-size: 24px;
color: #ffffff;
......@@ -117,7 +119,7 @@
}
.section-desc {
font-family: Source Han Sans CN, Source Han Sans CN;
font-family: Source Han Sans CN;
font-weight: 400;
font-size: 16px;
line-height: 24px;
......
......@@ -261,7 +261,7 @@ const dkjjList = [
background-color: #f9f8f8;
}
.section-inner {
width: 1300px;
width: 1200px;
margin: 0 auto;
padding: 100px 0;
}
......
......@@ -293,14 +293,18 @@ const jfalList = ref([
color: #ffffff;
h2 {
font-size: 42px;
font-family: Source Han Sans CN-Bold, Source Han Sans CN;
font-family:
Source Han Sans CN-Bold,
Source Han Sans CN;
font-weight: bold;
line-height: 1;
}
h3 {
margin-bottom: 20px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 1;
letter-spacing: 4px;
......@@ -314,7 +318,9 @@ const jfalList = ref([
h6 {
margin-bottom: 24px;
font-size: 20px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 1;
letter-spacing: 2px;
......@@ -322,7 +328,9 @@ const jfalList = ref([
p {
max-width: 644px;
font-size: 14px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
line-height: 26px;
}
a {
......@@ -330,7 +338,9 @@ const jfalList = ref([
width: 112px;
height: 36px;
font-size: 16px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #ffffff;
line-height: 36px;
......@@ -340,7 +350,7 @@ const jfalList = ref([
}
.cover-inner {
height: 100%;
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
......@@ -354,7 +364,7 @@ const jfalList = ref([
background-color: #f9f8f8;
}
.section-inner {
width: 1300px;
width: 1200px;
margin: 0 auto;
padding: 100px 0;
}
......@@ -414,7 +424,9 @@ const jfalList = ref([
p {
margin-top: 48px;
font-size: 18px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #ffffff;
}
......@@ -432,7 +444,9 @@ const jfalList = ref([
height: 60px;
background: #f2f2f2;
font-size: 15px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #424242;
}
......@@ -459,7 +473,9 @@ const jfalList = ref([
h4 {
padding: 64px 0 45px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #fff;
display: flex;
......@@ -468,7 +484,9 @@ const jfalList = ref([
}
p {
font-size: 16px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #ffffff;
line-height: 40px;
......@@ -481,7 +499,9 @@ const jfalList = ref([
li {
flex: 1;
font-size: 22px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #333333;
line-height: 80px;
......@@ -516,7 +536,9 @@ const jfalList = ref([
justify-content: space-between;
p {
font-size: 20px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #333333;
line-height: 30px;
......@@ -578,7 +600,9 @@ const jfalList = ref([
width: 270px;
height: 70px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 70px;
color: #333333;
......
......@@ -289,14 +289,18 @@ const jfalList = ref([
color: #ffffff;
h2 {
font-size: 42px;
font-family: Source Han Sans CN-Bold, Source Han Sans CN;
font-family:
Source Han Sans CN-Bold,
Source Han Sans CN;
font-weight: bold;
line-height: 1;
}
h3 {
margin-bottom: 20px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 1;
letter-spacing: 4px;
......@@ -310,7 +314,9 @@ const jfalList = ref([
h6 {
margin-bottom: 24px;
font-size: 20px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 1;
letter-spacing: 2px;
......@@ -318,7 +324,9 @@ const jfalList = ref([
p {
max-width: 644px;
font-size: 14px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
line-height: 26px;
}
a {
......@@ -326,7 +334,9 @@ const jfalList = ref([
width: 112px;
height: 36px;
font-size: 16px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #ffffff;
line-height: 36px;
......@@ -336,7 +346,7 @@ const jfalList = ref([
}
.cover-inner {
height: 100%;
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
......@@ -350,7 +360,7 @@ const jfalList = ref([
background-color: #f9f8f8;
}
.section-inner {
width: 1300px;
width: 1200px;
margin: 0 auto;
padding: 100px 0;
}
......@@ -410,7 +420,9 @@ const jfalList = ref([
p {
margin-top: 48px;
font-size: 18px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #ffffff;
}
......@@ -428,7 +440,9 @@ const jfalList = ref([
height: 60px;
background: #f2f2f2;
font-size: 15px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #424242;
}
......@@ -455,7 +469,9 @@ const jfalList = ref([
h4 {
padding: 64px 0 45px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #fff;
display: flex;
......@@ -464,7 +480,9 @@ const jfalList = ref([
}
p {
font-size: 16px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #ffffff;
line-height: 40px;
......@@ -477,7 +495,9 @@ const jfalList = ref([
li {
flex: 1;
font-size: 22px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #333333;
line-height: 80px;
......@@ -512,7 +532,9 @@ const jfalList = ref([
justify-content: space-between;
p {
font-size: 20px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #333333;
line-height: 30px;
......@@ -574,7 +596,9 @@ const jfalList = ref([
width: 270px;
height: 70px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 70px;
color: #333333;
......
......@@ -355,7 +355,7 @@ const zzfwList = ref(['一流专业建设咨询', 'AIGC 创客空间规划', '
}
.cover-inner {
height: 100%;
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
......@@ -364,7 +364,7 @@ const zzfwList = ref(['一流专业建设咨询', 'AIGC 创客空间规划', '
}
.section-inner {
width: 1300px;
width: 1200px;
margin: 90px auto;
}
.section-title {
......
......@@ -355,7 +355,7 @@ const zzfwList = ref(['金融科技专业申报', '校企联合实验室共建',
}
.cover-inner {
height: 100%;
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
......@@ -364,7 +364,7 @@ const zzfwList = ref(['金融科技专业申报', '校企联合实验室共建',
}
.section-inner {
width: 1300px;
width: 1200px;
margin: 90px auto;
}
.section-title {
......
......@@ -253,7 +253,7 @@ const jfalList = ref([
}
.cover-inner {
height: 100%;
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
......@@ -262,7 +262,7 @@ const jfalList = ref([
}
.section-inner {
width: 1300px;
width: 1200px;
margin: 90px auto;
}
.section-title {
......
......@@ -371,7 +371,7 @@ const jfalList = ref([
}
.cover-inner {
height: 100%;
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
......@@ -380,7 +380,7 @@ const jfalList = ref([
}
.section-inner {
width: 1300px;
width: 1200px;
margin: 90px auto;
}
.section-title {
......
......@@ -271,14 +271,18 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
color: #ffffff;
h2 {
font-size: 42px;
font-family: Source Han Sans CN-Bold, Source Han Sans CN;
font-family:
Source Han Sans CN-Bold,
Source Han Sans CN;
font-weight: bold;
line-height: 1;
}
h3 {
margin-bottom: 20px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 1;
letter-spacing: 4px;
......@@ -292,7 +296,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
h6 {
margin-bottom: 24px;
font-size: 20px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 1;
letter-spacing: 2px;
......@@ -300,7 +306,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
p {
max-width: 644px;
font-size: 14px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
line-height: 26px;
}
a {
......@@ -308,7 +316,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
width: 112px;
height: 36px;
font-size: 16px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #ffffff;
line-height: 36px;
......@@ -318,7 +328,7 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
}
.cover-inner {
height: 100%;
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
......@@ -332,7 +342,7 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
background-color: #f9f8f8;
}
.section-inner {
width: 1300px;
width: 1200px;
margin: 0 auto;
padding: 100px 0;
}
......@@ -392,7 +402,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
p {
margin-top: 48px;
font-size: 18px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #ffffff;
}
......@@ -410,7 +422,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
height: 60px;
background: #f2f2f2;
font-size: 15px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #424242;
}
......@@ -437,7 +451,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
h4 {
padding: 64px 0 45px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #fff;
display: flex;
......@@ -446,7 +462,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
}
p {
font-size: 16px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #ffffff;
line-height: 40px;
......@@ -459,7 +477,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
li {
flex: 1;
font-size: 22px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #333333;
line-height: 80px;
......@@ -494,7 +514,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
justify-content: space-between;
p {
font-size: 20px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #333333;
line-height: 30px;
......@@ -556,7 +578,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
width: 270px;
height: 70px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 70px;
color: #333333;
......
......@@ -271,14 +271,18 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
color: #ffffff;
h2 {
font-size: 42px;
font-family: Source Han Sans CN-Bold, Source Han Sans CN;
font-family:
Source Han Sans CN-Bold,
Source Han Sans CN;
font-weight: bold;
line-height: 1;
}
h3 {
margin-bottom: 20px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 1;
letter-spacing: 4px;
......@@ -292,7 +296,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
h6 {
margin-bottom: 24px;
font-size: 20px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 1;
letter-spacing: 2px;
......@@ -300,7 +306,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
p {
max-width: 644px;
font-size: 14px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
line-height: 26px;
}
a {
......@@ -308,7 +316,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
width: 112px;
height: 36px;
font-size: 16px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #ffffff;
line-height: 36px;
......@@ -318,7 +328,7 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
}
.cover-inner {
height: 100%;
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
......@@ -332,7 +342,7 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
background-color: #f9f8f8;
}
.section-inner {
width: 1300px;
width: 1200px;
margin: 0 auto;
padding: 100px 0;
}
......@@ -392,7 +402,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
p {
margin-top: 48px;
font-size: 18px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #ffffff;
}
......@@ -410,7 +422,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
height: 60px;
background: #f2f2f2;
font-size: 15px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #424242;
}
......@@ -437,7 +451,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
h4 {
padding: 64px 0 45px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #fff;
display: flex;
......@@ -446,7 +462,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
}
p {
font-size: 16px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #ffffff;
line-height: 40px;
......@@ -459,7 +477,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
li {
flex: 1;
font-size: 22px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #333333;
line-height: 80px;
......@@ -494,7 +514,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
justify-content: space-between;
p {
font-size: 20px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
color: #333333;
line-height: 30px;
......@@ -556,7 +578,9 @@ const zzfwList = ref(['顶层设计服务', '师资培训服务', '行业讲座
width: 270px;
height: 70px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 70px;
color: #333333;
......
......@@ -362,7 +362,7 @@ const zzfwList = ref(['顶层设计服务', '实验室空间规划', '行业专
}
.cover-inner {
height: 100%;
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
......@@ -371,7 +371,7 @@ const zzfwList = ref(['顶层设计服务', '实验室空间规划', '行业专
}
.section-inner {
width: 1300px;
width: 1200px;
margin: 90px auto;
}
.section-title {
......
......@@ -362,7 +362,7 @@ const zzfwList = ref(['网络工程专业建设', '实训室空间设计', '行
}
.cover-inner {
height: 100%;
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
......@@ -371,7 +371,7 @@ const zzfwList = ref(['网络工程专业建设', '实训室空间设计', '行
}
.section-inner {
width: 1300px;
width: 1200px;
margin: 90px auto;
}
.section-title {
......
......@@ -361,7 +361,7 @@ const zzfwList = ref(['物联网专业建设规划', '创客空间/实验室设
}
.cover-inner {
height: 100%;
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
......@@ -370,7 +370,7 @@ const zzfwList = ref(['物联网专业建设规划', '创客空间/实验室设
}
.section-inner {
width: 1300px;
width: 1200px;
margin: 90px auto;
}
.section-title {
......
......@@ -137,14 +137,18 @@ const jfalList = ref([
color: #333;
h2 {
font-size: 60px;
font-family: Source Han Sans CN-Bold, Source Han Sans CN;
font-family:
Source Han Sans CN-Bold,
Source Han Sans CN;
font-weight: bold;
line-height: 1;
}
h3 {
margin-bottom: 20px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 1;
letter-spacing: 4px;
......@@ -158,7 +162,9 @@ const jfalList = ref([
h6 {
margin-bottom: 24px;
font-size: 24px;
font-family: Source Han Sans CN-Medium, Source Han Sans CN;
font-family:
Source Han Sans CN-Medium,
Source Han Sans CN;
font-weight: 500;
line-height: 1;
letter-spacing: 2px;
......@@ -167,13 +173,15 @@ const jfalList = ref([
p {
max-width: 736px;
font-size: 18px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
line-height: 30px;
}
}
.cover-inner {
height: 100%;
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
......@@ -187,7 +195,7 @@ const jfalList = ref([
background-color: #f9f8f8;
}
.section-inner {
width: 1300px;
width: 1200px;
margin: 0 auto;
padding: 100px 0;
}
......@@ -266,14 +274,18 @@ const jfalList = ref([
}
h3 {
font-size: 20px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #333333;
line-height: 34px;
}
p {
font-size: 16px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #6c6c6c;
line-height: 34px;
......@@ -297,7 +309,9 @@ const jfalList = ref([
border: 1px solid #dfdfdf;
h3 {
font-size: 24px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #333;
line-height: 34px;
......@@ -316,7 +330,9 @@ const jfalList = ref([
background-color: var(--main-color);
border-radius: 30px;
font-size: 22px;
font-family: Source Han Sans CN-Regular, Source Han Sans CN;
font-family:
Source Han Sans CN-Regular,
Source Han Sans CN;
font-weight: 400;
color: #fff;
line-height: 60px;
......
......@@ -246,11 +246,13 @@ const bzList = [
text-align: center;
}
&-inner {
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
}
&-desc {
font-family: Source Han Sans CN, Source Han Sans CN;
font-family:
Source Han Sans CN,
Source Han Sans CN;
font-weight: 400;
font-size: 18px;
line-height: 30px;
......@@ -265,10 +267,10 @@ const bzList = [
center;
background-size: cover;
&-inner {
max-width: 1300px;
max-width: 1200px;
height: 100%;
margin: 0 auto;
padding-left: 52px;
display: flex;
flex-direction: column;
justify-content: center;
......@@ -279,7 +281,9 @@ const bzList = [
line-height: 1;
}
h2 {
font-family: Source Han Sans CN, Source Han Sans CN;
font-family:
Source Han Sans CN,
Source Han Sans CN;
font-weight: 500;
font-size: 24px;
color: var(--main-color);
......@@ -300,6 +304,7 @@ const bzList = [
.ys-list {
display: flex;
justify-content: space-between;
gap: 20px;
&-item {
position: relative;
height: 340px;
......
......@@ -236,7 +236,7 @@ const lfList = [
}
.cover-inner {
height: 100%;
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: center;
......@@ -245,7 +245,7 @@ const lfList = [
}
.section-inner {
width: 1300px;
width: 1200px;
margin: 0 auto;
// padding: 100px 0;
}
......
......@@ -261,7 +261,7 @@ const bzList = [
text-align: center;
}
&-inner {
max-width: 1300px;
max-width: 1200px;
margin: 0 auto;
}
&-desc {
......@@ -281,10 +281,10 @@ const bzList = [
background: url('https://webapp-pub.ezijing.com/www/pc/next/new-dobule-high/banner.jpg') no-repeat center center;
background-size: cover;
&-inner {
max-width: 1300px;
max-width: 1200px;
height: 100%;
margin: 0 auto;
padding-left: 52px;
display: flex;
flex-direction: column;
justify-content: center;
......
-----BEGIN PRIVATE KEY-----
MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQDQkUDulxOFSiZN
SQByhJvjziU05hPTZcly6C2Bpn6tqdBiotI9ExPF+1BqEqygiZ6orcSQ11xW6FQA
I6xsd44bA9pAGJyzEmyK1vBwUllIvy665P64hjx0hGL8e8xSCecd3LA+aiqty/6j
IeQ5WL7SBKkGLnhfFrhnoCTnBc/4X6PWpN9xLpTl+4JfK58qfjt6pSod1YDHMYDe
GEPFiPKNYawFYzkE50FxkujJ0zilTol7nFNjMrEKsjXaDXvDPrC//RmfXsULpOoQ
kvDZp9Eiy3ZHvW/nsfizWea7bDvZpLIzPtBHmOrz76Uayhp4caAFlAAuUVoNYAPn
l52qKm3/AgMBAAECggEAYBWKxF/1LkKqwpAPFLLi3l/p5CTanVkXJUixLjl1wquo
xMgd8uUHBv5wXW2c+Zhs72ieVdvhPmhpymak2JN7dBaiRUURa63hM1UyD4zgdRMe
hBta/cdZspQKxiaCSoklYCx7RUXDw61m8eB7M7AeuMJM2/wsmCHvck3kskmLNfCD
6r4/k211dJIyd4pZaOGUpXk2q/80jlOxRyt5ze4yItiLh6tLcChafFqU7g/G2NCa
zd85HS8nwbUGd1J8tgSNapX9bmauoPPcxtGyLtKMCoJivhbLRMFto4lwLAiFWQWV
HBWNGKjhNMEUjQQh3krldgMKMiK9ry/81cs+xF6OAQKBgQDUHHTc7lWIhRJqspOT
onIZQgC1X/6QCiqNRKACrFwaMK3nhD7hijl1AO2b8WR89l34vFVT7MzkPkyDVod4
ZD9H83azgtBRDLW5fs3mw6E/dTDqE9qu7Ptw6OVcGNHpRgOYk2tbR3poRcHeloX/
/mD9Etj6M+x5wUlbP9DF7t+77wKBgQD7uRV3tieF6tEn3xaczSS1w9pZBY59lGSz
EQSozWf+nF/N/8uXJQrGS5DwhRgjH3qBkMt7wx0tYnhZjGbGqBxG49ScEasahx72
jMNVyGKX8ZXSm9wpnWdIHy+XnNTIUiVjru4a7xxBlMpBCdKPq77vLypEVxRK6eMB
D1s4vEOe8QKBgBRP9VEC8eX0+GKHX2KP9+U7UN4Np08b6h9FJx2aa+eGKeE15N+s
YPw3bom0gC8HWNBtGK7EyopA/QrGyopY70ZwpjlimZhpYy20WvtyWIq/KkQASrzd
rOaPJwe+yLtSHR4LYAiJu8sogvxR5dsx/Q+/MlAjkM3IGMJIRjHuQja5AoGBAJmE
omwVAnuw3whjDSZqEmZsYOED+4fpFZUD3wSX6UGl2uQGigLPC4guE+IsObFKBGu6
g+8h6syADogGkbO8WSp+zm60c9bE64RQCt1pTX//TXFZrucOYSviISNk+XyGZNkr
mXmBtIjmlocd13XZt6Ol7zAor26Uv+YomGi8oLzxAoGABn1aaxSEclu6LUVGOzxY
qlgeyJbCzuWX6kRWvi14TeUm1WEU906Ne8apGjynx3l6qR7/LbjQrGRK1R/gMoHO
OmpZANgdSQEw2eIs+kEMYNpZEUD+9jKhtGlI7Z3uS/+7QSHH6sa4/zSCa6KyHUus
VVHxq6SAJISF+xTozN/XGIA=
-----END PRIVATE KEY-----
-----BEGIN CERTIFICATE-----
MIIEADCCAmigAwIBAgIQZ9aCeaRPzbHPSS2pWOl5SjANBgkqhkiG9w0BAQsFADBP
MR4wHAYDVQQKExVta2NlcnQgZGV2ZWxvcG1lbnQgQ0ExEjAQBgNVBAsMCW1heEBi
b2dvbjEZMBcGA1UEAwwQbWtjZXJ0IG1heEBib2dvbjAeFw0yNjAyMDMwMjQzMjFa
Fw0yODA1MDMwMjQzMjFaMEMxJzAlBgNVBAoTHm1rY2VydCBkZXZlbG9wbWVudCBj
ZXJ0aWZpY2F0ZTEYMBYGA1UECwwPbWF4QGJvZ29uIChNYXgpMIIBIjANBgkqhkiG
9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0JFA7pcThUomTUkAcoSb484lNOYT02XJcugt
gaZ+ranQYqLSPRMTxftQahKsoImeqK3EkNdcVuhUACOsbHeOGwPaQBicsxJsitbw
cFJZSL8uuuT+uIY8dIRi/HvMUgnnHdywPmoqrcv+oyHkOVi+0gSpBi54Xxa4Z6Ak
5wXP+F+j1qTfcS6U5fuCXyufKn47eqUqHdWAxzGA3hhDxYjyjWGsBWM5BOdBcZLo
ydM4pU6Je5xTYzKxCrI12g17wz6wv/0Zn17FC6TqEJLw2afRIst2R71v57H4s1nm
u2w72aSyMz7QR5jq8++lGsoaeHGgBZQALlFaDWAD55edqipt/wIDAQABo2QwYjAO
BgNVHQ8BAf8EBAMCBaAwEwYDVR0lBAwwCgYIKwYBBQUHAwEwHwYDVR0jBBgwFoAU
Snxuhaez2tptVFUj9BqqivFtRyIwGgYDVR0RBBMwEYIPZGV2LmV6aWppbmcuY29t
MA0GCSqGSIb3DQEBCwUAA4IBgQAR0lY1wyw6uEg7IuxfskiqXQ0RvnQsbpOVc9Gs
/n6WOhw0RRGc1RZ+COJDurZtFjnW9f59IbLO8QDsb+V03Ydyqze8btzcIzsOxdyC
n74TYmDaDAxdhe0UEDDGZJ4U6wu+mUB6pUWap0JyjdXvpoJcwtt11n1EdSyXCtIY
LevSSPI75hqOGsAcao0ryKdyFjtXnNU79x04DX+8piXgksYnSQRP1yX3SzALUfnN
eszsQs9tvXO1xioodem1ISTm7YQsJxmxTPRB496zboaNNz21ROjVTfhoWKfUV9CY
tELfiio9MpNYnkdP1qAye1fcsWbN1TSdWebM289zuSiutQRZu2aQaYur9jhxTk2u
dvwXtAFDfPjjmnA/zrAUj77/EAgFeSY8tiIPw7RYPc9sUDTpYaMkpG5U0onR3r2E
9blw5egfOOwmhJ/S1jin+eePwg6TwQ3OqaftSqCMPY44qmfjny++bSLF5JWE7BkO
q38yo3tKEMB7PulZo4te5DxkrTU=
-----END CERTIFICATE-----
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devServer: {
host: 'dev.ezijing.com',
https: { key: './dev.ezijing.com-key.pem', cert: './dev.ezijing.com.pem' },
},
compatibilityDate: '2025-07-15',
devtools: { enabled: false },
modules: ['@nuxtjs/i18n', '@element-plus/nuxt'],
......
......@@ -4,7 +4,7 @@
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev --open --port 4000",
"dev": "nuxt dev --open",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare"
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论