提交 33323923 authored 作者: matian's avatar matian

feat:新增加州浸会大学

上级 02784124
No preview for this file type
<template>
<div class="video-wrapper" :class="className">
<div v-if="!isMobile" class="content" @mouseenter="handleMouseEnter" @mouseleave="showType = ''" @mousemove="handleMouseEnter" @click="handleClick" ref="target" :style="{ cursor: mouseCursor }">
<div
v-if="!isMobile"
class="content"
@mouseenter="handleMouseEnter"
@mouseleave="showType = ''"
@mousemove="handleMouseEnter"
@click="handleClick"
ref="target"
:style="{ cursor: mouseCursor }"
>
<!-- <ul class="video-list">
<li class="video-item" v-for="(item, index) in list" :key="index">
<div class="video-poster">
......@@ -17,8 +26,13 @@
<div class="swiper-wrapper">
<div class="swiper-slide" v-for="(item, index) in list" :key="index">
<div class="item-media">
<img :src="item.poster">
<div class="video-play" @click.stop="open(item)" @mouseenter.stop="handleVideoMouseEnter" @mousemove.stop="handleVideoMouseEnter"></div>
<img :src="item.poster" />
<div
class="video-play"
@click.stop="open(item)"
@mouseenter.stop="handleVideoMouseEnter"
@mousemove.stop="handleVideoMouseEnter"
></div>
</div>
<div class="item-text">
<div class="item-text-tit">{{ item.title }}</div>
......@@ -36,8 +50,13 @@
<div class="swiper-wrapper">
<div class="swiper-slide" v-for="(item, index) in list" :key="index">
<div class="item-media">
<img :src="item.poster">
<div class="video-play" @click.stop="open(item)" @mouseenter.stop="handleVideoMouseEnter" @mousemove.stop="handleVideoMouseEnter"></div>
<img :src="item.poster" />
<div
class="video-play"
@click.stop="open(item)"
@mouseenter.stop="handleVideoMouseEnter"
@mousemove.stop="handleVideoMouseEnter"
></div>
</div>
<div class="item-text">
<div class="item-text-tit">{{ item.title }}</div>
......@@ -71,16 +90,16 @@ export default {
isShow: false,
list: [
{
title: '玛丽伍德大学校长致词',
desc: 'Address from the President of Marywood University',
title: '加州浸会大学校长致辞',
desc: 'Address from the Prisident ofCBU',
src: 'https://webapp-pub.ezijing.com/project/marywood-plus/video2.mp4',
poster: 'https://webapp-pub.ezijing.com/project/marywood-plus/video_poster1.png?v=2'
poster: 'https://webapp-pub.ezijing.com/project_online_pc/edd/video_poster1.png?v=2'
},
{
title: '玛丽伍德大学介绍',
title: '加州浸会大学介绍',
desc: 'The Introduction of Marywood University',
src: 'https://webapp-pub.ezijing.com/project/marywood/marywood.mp4',
poster: 'https://webapp-pub.ezijing.com/project/marywood-plus/video_poster.png?v=1'
poster: 'https://webapp-pub.ezijing.com/project_online_pc/edd/video_poster2.png?v=1'
}
],
// 当前播放的视频
......@@ -113,9 +132,10 @@ export default {
methods: {
handleMouseEnter(e) {
const target = this.$refs.target.getBoundingClientRect()
if((e.clientX - target.left) < ((target.right - target.left) / 2)) {
if (e.clientX - target.left < (target.right - target.left) / 2) {
if (this.showIndex > 0) {
this.mouseCursor = 'url(https://www.harvard.edu/wp-content/themes/core/assets/img/theme/featured-stories/arrow-left-dark.svg) 30 30, e-resize'
this.mouseCursor =
'url(https://www.harvard.edu/wp-content/themes/core/assets/img/theme/featured-stories/arrow-left-dark.svg) 30 30, e-resize'
this.showType = 'left'
} else {
this.mouseCursor = 'default'
......@@ -123,7 +143,8 @@ export default {
}
} else {
if (this.showIndex < this.list.length - 1) {
this.mouseCursor = 'url(https://www.harvard.edu/wp-content/themes/core/assets/img/theme/featured-stories/arrow-right-dark.svg) 30 30, e-resize'
this.mouseCursor =
'url(https://www.harvard.edu/wp-content/themes/core/assets/img/theme/featured-stories/arrow-right-dark.svg) 30 30, e-resize'
this.showType = 'right'
} else {
this.mouseCursor = 'default'
......@@ -136,7 +157,7 @@ export default {
console.log(this.showIndex)
if (this.showType === 'left') {
this.handlePrev()
} else if (this.showType === 'right'){
} else if (this.showType === 'right') {
this.handleNext()
}
},
......@@ -186,14 +207,14 @@ export default {
.is-pc {
margin-top: 56px;
.video-wrapper {
background: url(https://webapp-pub.ezijing.com/project/marywood-plus/video_bg.png?v=1) no-repeat center center;
background: url(https://webapp-pub.ezijing.com/project_online_pc/edd/video_bg.png?v=1) no-repeat center center;
background-size: cover;
}
.content {
max-width: 1200px;
margin: 0 auto;
position: relative;
padding:65px 0;
padding: 65px 0;
}
.video-list {
display: flex;
......@@ -264,7 +285,7 @@ export default {
z-index: 10;
}
.video-next {
left:unset;
left: unset;
right: -40px;
background: url(https://webapp-pub.ezijing.com/project/marywood-plus/icon_next.png) no-repeat center center;
}
......@@ -286,23 +307,23 @@ export default {
transform: translate(-50%, -50%);
z-index: 10000;
}
.swiper-container{
.swiper-container {
height: 550px;
// .swiper-wrapper{
// }
.swiper-slide{
width:1080px !important;
position:relative;
display:flex;
.swiper-slide {
width: 1080px !important;
position: relative;
display: flex;
align-items: center;
// margin-left:50px;
.item-media{
width:550px;
height:550px;
position:relative;
img{
width:100%;
height:100%;
.item-media {
width: 550px;
height: 550px;
position: relative;
img {
width: 100%;
height: 100%;
}
.video-play {
position: absolute;
......@@ -317,30 +338,30 @@ export default {
z-index: 2200;
}
}
.item-text{
flex:1;
color:#fff;
padding:0 40px;
.item-text-tit{
font-size:36px;
line-height:60px;
.item-text {
flex: 1;
color: #fff;
padding: 0 40px;
.item-text-tit {
font-size: 36px;
line-height: 60px;
}
.item-text-desc{
font-size:20px;
.item-text-desc {
font-size: 20px;
}
}
&:after{
content: "";
&:after {
content: '';
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: rgba(0,0,0,.6);
background: rgba(0, 0, 0, 0.6);
}
&.swiper-slide-active:after{
display:none;
&.swiper-slide-active:after {
display: none;
}
}
}
......@@ -418,20 +439,20 @@ export default {
transform: translateY(-50%);
z-index: 10000;
}
.swiper-container{
.swiper-container {
height: 4.5rem;
// .swiper-wrapper{
// }
.swiper-slide{
width:3.2rem;
position:relative;
padding:0 0.1rem;
.item-media{
width:3rem;
position:relative;
img{
width:100%;
height:3rem;
.swiper-slide {
width: 3.2rem;
position: relative;
padding: 0 0.1rem;
.item-media {
width: 3rem;
position: relative;
img {
width: 100%;
height: 3rem;
}
.video-play {
position: absolute;
......@@ -445,31 +466,31 @@ export default {
cursor: pointer;
z-index: 2200;
}
&:after{
content: "";
&:after {
content: '';
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: rgba(0,0,0,.7);
background: rgba(0, 0, 0, 0.7);
}
}
.item-text{
flex:1;
color:#454545;
padding:0.1rem 0.2rem 0;
.item-text-tit{
font-size:0.22rem;
line-height:0.5rem;
.item-text {
flex: 1;
color: #454545;
padding: 0.1rem 0.2rem 0;
.item-text-tit {
font-size: 0.22rem;
line-height: 0.5rem;
}
.item-text-desc{
font-size:0.16rem
.item-text-desc {
font-size: 0.16rem;
}
}
&.swiper-slide-active .item-media:after{
display:none;
&.swiper-slide-active .item-media:after {
display: none;
}
}
}
......
<template>
<div :class="isMobile ? 'is-h5' : 'is-pc'">
<div class="banner-content">
<img class="img" src="https://webapp-pub.ezijing.com/project/marywood-plus/pc-index-banner.png?v=4" />
<img class="img" src="https://webapp-pub.ezijing.com/project_online_pc/edd/banner.png?v=4" />
<div class="banner_navList">
<div class="banner_nav" v-for="(item, index) in navList" :key="index" @click="navClick(item)">
<div class="nav_top">
......
......@@ -85,37 +85,37 @@ export default {
return {
listData: [
{
web_img_uri: 'https://webapp-pub.ezijing.com/project/marywood-plus/pc-index-project-intro-01.png?v=4',
web_img_uri: 'https://webapp-pub.ezijing.com/project_online_pc/edd/pc-index-project-intro-01.png?v=4',
item_desc_tit: '国际名校、权威可靠',
item_desc_con:
'清控紫荆教育是以清华五道口相关知识产权创设而成,自成立以来与多所国际名校合作且实现课程学分互认,所获文凭均受中国教育部与国际认证,具有很强的国际化办学经验和教学水平。'
},
{
web_img_uri: 'https://webapp-pub.ezijing.com/project/marywood-plus/pc-index-project-intro-02.png?v=4',
web_img_uri: 'https://webapp-pub.ezijing.com/project_online_pc/edd/pc-index-project-intro-02.png?v=4',
item_desc_tit: '无需联考、灵活录取',
item_desc_con:
'无需参加国内竞争激烈的研究生联考,没有托福成绩的学生可以完成紫荆英语强化项目替代语言成绩。该课程以及考核成绩被美国大学认可,达到录取标准即可直接入读相应硕士课程。'
},
{
web_img_uri: 'https://webapp-pub.ezijing.com/project/marywood-plus/pc-index-project-intro-03.png?v=4',
web_img_uri: 'https://webapp-pub.ezijing.com/project_online_pc/edd/pc-index-project-intro-03.png?v=4',
item_desc_tit: '前沿专业、就业广阔',
item_desc_con:
'项目提供当前数字经济领域前沿专业,使毕业生具有国际背景和全球化竞争力。此外毕业生享受国家为留学归国人员提供的落户指标、创业支持、购买免税汽车等待遇。'
},
{
web_img_uri: 'https://webapp-pub.ezijing.com/project/marywood-plus/pc-index-project-intro-04.png?v=4',
web_img_uri: 'https://webapp-pub.ezijing.com/project_online_pc/edd/pc-index-project-intro-04.png?v=4',
item_desc_tit: '省时省费、性价比优',
item_desc_con:
'经过在国内学习一年后,学生只需再在国外学习一年即可获得中国教育部和国际认可的硕士学历学位,既节省时间成本又节约经济花销。'
},
{
web_img_uri: 'https://webapp-pub.ezijing.com/project/marywood-plus/pc-index-project-intro-05.png?v=4',
web_img_uri: 'https://webapp-pub.ezijing.com/project_online_pc/edd/pc-index-project-intro-05.png?v=4',
item_desc_tit: '国际视野、本土实践',
item_desc_con:
'本项目全部采用双语教学、小班授课,帮助学生提前适应美国教学模式;授课师资由清北人资深教授和优秀外教组成,保证国际化同时兼具本土实践,为留学归国工作建立无缝连接。'
},
{
web_img_uri: 'https://webapp-pub.ezijing.com/project/marywood-plus/pc-index-project-intro-06.png?v=4',
web_img_uri: 'https://webapp-pub.ezijing.com/project_online_pc/edd/pc-index-project-intro-06.png?v=4',
item_desc_tit: '全额退款、安心无忧',
item_desc_con:
'就读期间,因个人原因中途放弃或因外部不可抗力因素(如签证不通过等)无法出国学习,个人缴纳的第1学年费用全额退还。'
......@@ -212,34 +212,34 @@ export default {
.swiper-slide {
width: 250px;
height: 569px;
overflow:hidden;
position:relative;
.item_media{
width:100%;
height:100%;
position:absolute;
left:0;
top:0;
img{
transition:0.3s;
width:100%;
height:100%;
overflow: hidden;
position: relative;
.item_media {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
img {
transition: 0.3s;
width: 100%;
height: 100%;
}
&:after{
content: "";
&:after {
content: '';
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: rgba(0,0,0,.7);
background: rgba(0, 0, 0, 0.7);
}
}
.item_desc {
position:absolute;
left:0;
top:0;
position: absolute;
left: 0;
top: 0;
width: 250px;
height: 349px;
// background-color: #ededed;
......@@ -251,7 +251,7 @@ export default {
padding: 34px 37px 53px 33px;
// transform-origin: bottom;
transform: translateY(450px);
transition:0.3s;
transition: 0.3s;
.item_desc_tit {
font-size: 20px;
font-weight: 400;
......@@ -267,10 +267,10 @@ export default {
}
}
}
.swiper-slide:hover{
.item_media{
img{
transform:scale(1.1);
.swiper-slide:hover {
.item_media {
img {
transform: scale(1.1);
}
}
.item_desc {
......@@ -283,7 +283,7 @@ export default {
}
}
}
.card-list{
.card-list {
width: 1200px;
position: relative;
margin-top: 17px;
......@@ -293,35 +293,35 @@ export default {
.card-item {
width: 386px;
height: 336px;
margin-bottom:20px;
overflow:hidden;
position:relative;
.item_media{
width:100%;
height:100%;
position:absolute;
left:0;
top:0;
img{
transition:0.3s;
width:100%;
height:100%;
margin-bottom: 20px;
overflow: hidden;
position: relative;
.item_media {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
img {
transition: 0.3s;
width: 100%;
height: 100%;
}
&:after{
content: "";
&:after {
content: '';
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: rgba(0,0,0,.6);
background: rgba(0, 0, 0, 0.6);
}
}
.item_desc {
position:absolute;
left:0;
top:80px;
position: absolute;
left: 0;
top: 80px;
width: 386px;
height: 249px;
// background-color: #ededed;
......@@ -336,7 +336,7 @@ export default {
font-size: 21px;
font-weight: 600;
color: #fff;
line-height:36px;
line-height: 36px;
}
.item_desc_con {
font-size: 16px;
......@@ -345,14 +345,14 @@ export default {
margin-top: 34px;
line-height: 32px;
transform: translateY(270px);
transition:0.3s;
transition: 0.3s;
}
}
}
.card-item:hover{
.item_media{
img{
transform:scale(1.1);
.card-item:hover {
.item_media {
img {
transform: scale(1.1);
}
}
.item_desc {
......@@ -473,10 +473,10 @@ export default {
}
}
}
.card-list-outer{
.card-list-outer {
overflow-x: auto;
}
.card-list{
.card-list {
width: 12.6rem;
position: relative;
margin-top: 17px;
......@@ -485,35 +485,35 @@ export default {
.card-item {
width: 2rem;
height: 2.75rem;
overflow:hidden;
position:relative;
float:left;
.item_media{
width:100%;
height:100%;
position:absolute;
left:0;
top:0;
img{
transition:0.3s;
width:100%;
height:100%;
overflow: hidden;
position: relative;
float: left;
.item_media {
width: 100%;
height: 100%;
position: absolute;
left: 0;
top: 0;
img {
transition: 0.3s;
width: 100%;
height: 100%;
}
&:after{
content: "";
&:after {
content: '';
display: block;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: rgba(0,0,0,.6);
background: rgba(0, 0, 0, 0.6);
}
}
.item_desc {
position:absolute;
left:0;
top:0.6rem;
position: absolute;
left: 0;
top: 0.6rem;
width: 100%;
height: 2rem;
// background-color: #ededed;
......@@ -528,9 +528,9 @@ export default {
font-size: 0.16rem;
font-weight: 500;
color: #fff;
line-height:0.3rem;
width:100%;
text-align:center;
line-height: 0.3rem;
width: 100%;
text-align: center;
}
.item_desc_con {
font-size: 0.12rem;
......@@ -538,7 +538,7 @@ export default {
color: #fff;
margin-top: 0.2rem;
line-height: 0.24rem;
text-align:justify;
text-align: justify;
}
}
}
......
......@@ -3,18 +3,17 @@
<div class="service-content max-width-center">
<card title="项目定位" v-if="!isMobile">
<div class="desc">
清控紫荆教育联合美国多所知名院校联合推出国际硕士1+1项目,聚焦商业数据分析、金融科技、大数据、人工智能等数字经济领域前沿专业,以“能力导向一体化”教学体系为指引,建立“通识教育、专业教育、实践教育和创新教育”四位一体的国际化创新人才培养体系,致力于:
<!-- 1. 培养具有卓越的创新实践能力和国际竞争力的行业领军人才;2. 为无需联考且向往通过国际先进教育资源取得硕士学历与学位的人士提供实现路径。 -->
<p>1. 培养具有卓越的创新实践能力和国际竞争力的行业领军人才。</p>
<p>2. 为无需联考且向往通过国际先进教育资源取得硕士学历与学位的人士提供实现路径。</p>
本项目致力于:
<p>1.培养立足中国、放眼全球,集管理实践与理论研究之大成的卓越企业家和商业领袖。</p>
<p>2.提供利用先进国际教育资源迈向兼具理论造诣与实践经验的顶尖学者成长之路。</p>
</div>
</card>
<div v-else>
<div class="tit">项目定位</div>
<div class="desc">
清控紫荆教育联合美国多所知名院校联合推出国际硕士1+1项目,聚焦商业数据分析、金融科技、大数据、人工智能等数字经济领域前沿专业,以“能力导向一体化”教学体系为指引,建立“通识教育、专业教育、实践教育和创新教育”四位一体的国际化创新人才培养体系,致力于:
<p>1. 培养具有卓越的创新实践能力和国际竞争力的行业领军人才</p>
<p>2. 为无需联考且向往通过国际先进教育资源取得硕士学历与学位的人士提供实现路径</p>
本项目致力于:
<p>1.培养立足中国、放眼全球,集管理实践与理论研究之大成的卓越企业家和商业领袖</p>
<p>2.提供利用先进国际教育资源迈向兼具理论造诣与实践经验的顶尖学者成长之路</p>
</div>
</div>
</div>
......
......@@ -23,13 +23,16 @@
</div>
<div class="about">
<div class="about-item">
<label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;址:</label><p>北京市海淀区中关村东路1号院清华科技园7号楼威盛大厦5层</p>
<label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;址:</label>
<p>北京市海淀区中关村东路1号院清华科技园7号楼威盛大厦5层</p>
</div>
<div class="about-item">
<label>联系电话:</label><p>010-62798073</p>
<label>联系电话:</label>
<p>010-62798073</p>
</div>
<div class="about-item">
<label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;箱:</label><p><a href="mailto:service@ezijing.com">liuxue@ezijing.com</a></p>
<label>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;箱:</label>
<p><a href="mailto:service@ezijing.com">liuxue@ezijing.com</a></p>
</div>
</div>
<!-- <div class="link">
......@@ -109,9 +112,9 @@ export default {
font-size: 0.11rem;
font-weight: 300;
color: #ffffff;
.about-item{
display:flex;
margin-bottom:0.06rem;
.about-item {
display: flex;
margin-bottom: 0.06rem;
}
}
}
......
......@@ -3,13 +3,13 @@
<div class="foot-box">
<div class="foot-content">
<div class="left-content">
<img src="https://webapp-pub.ezijing.com/project/marywood/bottom_logo.png" />
<img src="https://webapp-pub.ezijing.com/project_online_pc/edd/bottom_logo.png" />
<div class="bottom">
<div class="bottom_left con">
<a href="/project-intro/introduce">关于项目</a>
<a href="/question/question">常见问题</a>
<a href="https://www.ezijing.com/" target="_blank">清控紫荆教育</a>
<a href="/">国际硕士1+1</a>
<a href="/">工商管理学博士EDD</a>
</div>
<div class="line"></div>
<div class="bottom_center con">
......@@ -33,9 +33,7 @@
<div class="bottom">
<div class="address" v-html="$t('foot.address')"></div>
<div class="phone" v-html="$t('foot.contact')"></div>
<a class="mail" href="mailto:liuxue@ezijing.com"
>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;箱:liuxue@ezijing.com</a
>
<a class="mail" href="mailto:liuxue@ezijing.com">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;箱:liuxue@ezijing.com</a>
<!-- <div class="mail" v-html="$t('foot.email')"></div> -->
</div>
</div>
......@@ -114,7 +112,6 @@ export default {}
.left-content {
display: flex;
flex-direction: column;
width: 457px;
.bottom {
margin-top: 42px;
display: flex;
......
......@@ -10,11 +10,11 @@
<img @click="goWebsite" src="https://zws-imgs-pub.ezijing.com/static/ezijing/logo/ezijing-logo.svg" />
<div class="line"></div>
<nuxt-link to="/">
<div class="title">国际硕士1+1</div>
<div class="title">工商管理学博士EDD</div>
</nuxt-link>
<!-- <img src="https://webapp-pub.oss-cn-beijing.aliyuncs.com/project/marywood/marywood_logo.svg" /> -->
</div>
<div class="user" v-if="user.id">
<span>{{ user.realname || user.nickname }}</span
><em>|</em><span class="logout" @click="logout">{{ $t('menu.out') }}</span>
......@@ -119,7 +119,7 @@ li {
border-right: 1px solid #aa1941;
height: 26px;
width: 0;
margin:0 20px;
margin: 0 20px;
}
.title {
font-size: 30px;
......
......@@ -50,13 +50,13 @@ export default {
// 项目介绍
{
name: this.$t('menu.project'),
path: '/project-intro/introduce',
childern: [
{ name: this.$t('menu.projectChild.bg'), path: '/project-intro/introduce' },
{ name: this.$t('menu.newsChild.hot'), path: '/news/hot' }
// { name: this.$t('menu.projectChild.feature'), path: '/project-intro/charac' },
// { name: this.$t('menu.projectChild.cert'), path: '/project-intro/certificate' }
]
path: '/project-intro/introduce'
// childern: [
// { name: this.$t('menu.projectChild.bg'), path: '/project-intro/introduce' },
// { name: this.$t('menu.newsChild.hot'), path: '/news/hot' }
// // { name: this.$t('menu.projectChild.feature'), path: '/project-intro/charac' },
// // { name: this.$t('menu.projectChild.cert'), path: '/project-intro/certificate' }
// ]
},
// 项目优势
// {
......
......@@ -28,7 +28,7 @@ export default {
schoolChild: {
school1: '斯蒂文斯理工学院',
school2: '纽约州立大学石溪分校',
school3: '玛丽伍德大学'
school3: '加州浸会大学'
},
enrollChild: {
process: '报名流程',
......
......@@ -17,7 +17,7 @@ export default {
// }),
// Global page headers: https://go.nuxtjs.dev/config-head
head: {
title: '紫荆教育国际硕士1+1',
title: '工商管理学博士EDD',
htmlAttrs: {
lang: 'en'
},
......
<template>
<app-frame :data="frameParams" :class="isMobile ? 'is-h5' : 'is-pc'">
<img src="https://webapp-pub.ezijing.com/project/marywood-plus/enroll-process-apply-banner.png" />
<img src="https://webapp-pub.ezijing.com/project_online_pc/edd/enroll-process-banner.png" />
<div class="content-mian">
<ul>
<li class="applyList_con">
<div class="apply_name">报名时间</div>
<div class="apply_desc">报 名 申 请 :<span class="apply_desc_time">2022年4月11日–2022年7月29日</span></div>
<div class="apply_desc">面 试 及 录 取 :<span class="apply_desc_time">2022年5月-7月</span></div>
<div class="apply_desc">入学手续及注册:<span class="apply_desc_time">2022年8月</span></div>
</li>
<li class="applyList_con">
<div class="apply_name">学历要求</div>
<div class="apply_desc">本科学历及以上或者本科在读</div>
<div class="apply_desc">
获得工商管理硕士(MBA)学位(持有Online MBA学位申请者需经单独审核)
</div>
<div class="apply_desc">
拥有MBA以外专业硕士学位的申请者需5年以上的管理经验;学员同时需要参加紫荆教育提供的商业领域相关先修课程,
</div>
<div class="apply_desc">
以确保有资格修读工商管理博士(DBA)项目。
</div>
</li>
<li class="applyList_con">
<div class="apply_name">GPA要求</div>
<div class="apply_desc">在校GPA不低于2.5,或具有研究生学习潜力的优秀学生</div>
<div class="apply_desc">在校GPA不低于3.0</div>
<div class="apply_desc">
GPA不足3.0的学员需证明拥有8年以上管理经验,并接受由紫荆—CBU教职人员参加的一对一面试。
</div>
</li>
<li class="applyList_con">
<div class="apply_name">语言要求</div>
<div class="apply_name">语言要求<span class="apply_name_desc">(二选一即可)</span></div>
<div class="apply_desc">
托福成绩不低于79分或雅思6.0以上
</div>
<div class="apply_desc">
托福不低于79分,或者通过ZIEP测试。<br />
ZIEP(Zijing Intensive English
Program)即紫荆语言强化课程项目,是紫荆教育针对没有托福成绩的优秀学生提供的替代语言课程,该课程及考核成绩被众多美国大学认可。
完成ZIEP(Zijing Intensive English Program)即紫荆语言强化课程并完成相关测试。
托福不低于79分,或者通过ZIEP测试。
</div>
</li>
</ul>
......@@ -143,12 +163,21 @@ export default {
font-weight: 500;
color: #333333;
margin-top: 51px;
.apply_name_desc {
font-weight: 400 !important;
color: #999999 !important;
}
}
.apply_desc {
font-size: 16px;
font-weight: 400;
color: #666666;
margin-top: 20px;
.apply_desc_time {
font-size: 16px;
font-weight: 400;
color: #aa1941 !important;
}
}
}
li {
......
<template>
<app-frame :data="frameParams" :class="isMobile ? 'is-h5' : 'is-pc'">
<img src="https://webapp-pub.ezijing.com/project/marywood-plus/enroll-process-banner.png" />
<img src="https://webapp-pub.ezijing.com/project_online_pc/edd/enroll-process-banner.png" />
<div class="apply">
<div class="apply-line"></div>
<div class="apply-item">
......
......@@ -9,7 +9,7 @@
<!-- 校园风光 -->
<!-- <school-senery /> -->
<!-- 最新动态 -->
<news />
<!-- <news /> -->
<!-- 视频 -->
<Video style="margin-bottom:0.2rem" />
<!-- 右侧功能栏 -->
......@@ -22,7 +22,7 @@ import banners from '../components/home/banners.vue'
import projectPosition from '../components/home/projectPosition.vue'
import projectFeatures from '../components/home/projectFeatures'
// import schoolSenery from '../components/home/schoolSenery.vue'
import news from '../components/home/news'
// import news from '../components/home/news'
import presence from '../components/home/presence'
import commonProblem from '../components/home/commonProblem'
import openClass from '../components/home/openClass'
......@@ -37,7 +37,7 @@ export default {
projectPosition,
projectFeatures,
// schoolSenery,
news,
// news,
presence,
commonProblem,
openClass,
......
<template>
<app-frame :data="frameParams" :class="isMobile ? 'is-h5' : 'is-pc'">
<img src="https://webapp-pub.ezijing.com/project/marywood-plus/project-intro_banner.png" class="banner" />
<img src="https://webapp-pub.ezijing.com/project_online_pc/edd/project_intro_banner.png" class="banner" />
<div class="part_content">
<div class="part_item">
国际硕士1+1项目是针对在读本科生或往届生提供的研究生学历晋升通道。第一个“1”是指大三或大四的本科生在被美国大学硕士项目预录取后,第1年在国内就读(已工作人士可以边工作边就读)。国内就读课程主要为语言课与硕士项目所需的部分学分课(不超过总学分的三分之一),由美国大学认可的国内大学或者有实力的教育机构实施录取和教学,一般用时12-15个月。第二个“1”是指在完成第一个“1”的要求之后,获得美国大学的正式录取,本科毕业当年可直接衔接赴美留学(已工作的人士第二年也需赴美全日制学习),完成剩余学分,毕业后获得美方硕士学位,回国后可被中国(教育部)留学服务中心认证为硕士研究生学历。
工商管理博士2+1项目是针对拥有硕士学位的企业中高管理层或高校学者提供的工商管理领域最高层次的学位教育项目与学历提升通道。学员在被美国大学录取后,最快可于3年之内完成项目学习。其中,2年的学习与研究阶段可在美国大学授权认可的国内大学或教育机构开展,另有1年需赴美就读工商管理博士项目的相关专业课程。在学员通过项目所有学分课程并顺利完成毕业论文答辩等要求后,方能获得美国大学所颁发的工商管理博士学位,并可被中国(教育部)留学服务中心认证为博士研究生学历。
</div>
<div class="part_item">
国际硕士1+1项目基于美国大学对中国教育机构或者大学的充分认证与授权,使得学生申请过程更加便捷。同其他赴美硕士留学项目相比,节省了国内备考与海外学习时间的同时也节约了可观的留学花费,已经成为越来越多优秀大学生的升硕选择。
</div>
<div class="part_item">
清控紫荆教育联合美国多所知名院校联合推出国际硕士1+1项目,聚焦商业数据分析、金融科技、大数据、人工智能等数字经济领域前沿专业,以“能力导向一体化”教学体系为指引,建立“通识教育、专业教育、实践教育和创新教育”四位一体的国际化创新人才培养体系,致力于:
<!-- 1. 培养具有卓越的创新实践能力和国际竞争力的行业领军人才;2. 为无需联考且向往通过国际先进教育资源取得硕士学历与学位的人士提供实现路径。 -->
<p>1. 培养具有卓越的创新实践能力和国际竞争力的行业领军人才。</p>
<p>2. 为无需联考且向往通过国际先进教育资源取得硕士学历与学位的人士提供实现路径。</p>
工商管理博士2+1项目基于美国大学对有实力的中国教育机构或者大学的充分认证与授权,使得学员申请与求学过程更加灵活、便捷。同其他工商管理博士留学项目相比,节省了学员国内备考与海外学习时间的同时,为学者型的商界领袖和兼具实践经验的管理学者们集合了立足本土、放眼国际的海内外优势教育资源。
</div>
<!-- <img
v-if="!isMobile"
class="part_img"
......@@ -60,11 +55,11 @@ export default {
{
name: this.$t('menu.projectChild.bg'),
path: '/project-intro/introduce'
},
{
name: this.$t('menu.newsChild.hot'),
path: '/news/hot'
}
// {
// name: this.$t('menu.newsChild.hot'),
// path: '/news/hot'
// }
]
}
}
......@@ -91,7 +86,7 @@ export default {
line-height: 34px;
color: #424242;
padding-bottom: 20px;
text-align:justify;
text-align: justify;
}
.part_img {
width: 100%;
......@@ -127,7 +122,7 @@ export default {
line-height: 0.24rem;
color: #424242;
padding-bottom: 0.2rem;
text-align:justify;
text-align: justify;
}
.part_img {
width: 100%;
......
......@@ -32,79 +32,38 @@ export default {
},
questionList: [
{
tit: '1.如何申请2022级紫荆-玛丽伍德大学国际1+1硕士项目?大概流程是什么,需要提交哪些材料? ',
desc: '本项目由中国招生办公室审核录取,具体流程请参考官网《紫荆教育——玛丽伍德大学国际硕士1+1项目招生简章》'
},
{
tit: '2.录取人数有没有限制?',
desc:
'紫荆教育—玛丽伍德大学国际硕士1+1项目采用申请面试制度。考生在系统提交申请材料,经招生评审委员会审核通过会获得面试资格;招生办会根据申请材料情况分批次面试录取,各批次的面试人数和条件录取人数视当批申请人数和申请人资质而定。如某批次申请人数较多、资质较好,则该批次面试人数和条件录取人数均会较多。'
},
{
tit: '3.申请的截止日期和面试的时间安排是怎样的?',
tit: '1.如何申请你们的博士项目,流程是什么? ',
desc:
'请参考招生简章紫荆教育-玛丽伍德大学国际硕士1+1项目校历,学生提交资料后紫荆-玛丽伍德大学MBA硕士项目中心会审核资料,并发送面试邀请函,具体面试时间以通知为准;'
},
{
tit: '4.如何评价考生的英语水平?',
desc:
'考生申请时不需要提供托福/雅思成绩,但是面试官会考察学生的研究生学习潜质,和英语学习能力;预录取考生通过一年的玛丽伍德大学英语及学术课程学习并通过ZIEP英语测试或者取得托福79分/雅思6.0及以上成绩,达到美方录取条件会获得正式录取;'
},
{
tit: '5.GRE/GMAT相关问题?',
desc: '项目申请时不需要提供GRE/GMAT考试,但如果有有效成绩,也欢迎提交作为参考。'
'本项目由中国招生办公室审核录取,流程是先在线提交报名申请、上传报名材料、初步审核、预约面试、面试通过发放录取、缴费报名、补交材料、注册学籍、开课学习。'
},
{
tit: '6.大专生能否报考你们项目?专升本可以吗?',
desc: `该项目报考条件:<br />
学历要求:本科学历及以上或者本科在读;<br />
GPA要求:在校 GPA不低于 2.5或具有研究生学习潜力的优秀学生;<br />
优秀大专生如果能够提供自考本科在读证明也可以申请但是需要保证出国前获得本科学历;专升本在读本科考生以及已本科毕业考生均可申请;`
},
{
tit: '7.成人教育的本科毕业证(无学位证)可否报名?',
desc: '可以。只要获得了教育部批准的国民系列教育本科及以上(含本科)毕业学历,符合相应报考条件就可以报考。'
},
{
tit: '8.我英语不好,担忧英语过不了关、学习跟不上。怎么办?',
desc:
'考虑到部分考生有以上担忧,紫荆教育-玛丽伍德大学国际硕士1+1项目申请时无英语成绩硬性要求,且国内一年的课程中涵盖英语能力课以及玛丽伍德大学硕士学分课,国内阶段上课语言主要以中文为主,外籍老师学术课程,有班主任/助教,全程辅导;一般通过面试官考察的学生是有足够的学习能力;另入学后同学若因个人主观或客观因素无法赴美留学可申请全额退学费;'
tit: '2.录取人数有没有限制?',
desc: '有的,本项目名额有限每期限招30人,择优录取。'
},
{
tit: '9.本项目是全日制还是非全日制?上课安排是怎样的?',
tit: '3.非商科专业的硕士能否报考你们项目?单证可以报吗?',
desc:
'紫荆教育—玛丽伍德大学国际硕士1+1项目,分为国内、国外两个学习阶段,国际硕士1+1项目是针对在读本科生或往届生提供的研究生学历晋升通道。第一个“1”是指大三或大四的本科生在被美国大学硕士项目预录取后,第1年通过online方式在国内就读。国内就读课程主要为语言课与硕士项目所需的部分学分课(约总学分的三分之一)。第二个“1”是指在完成第一个“1”的要求之后,获得美国大学的正式录取,本科毕业当年可直接衔接赴美全日制留学(已工作的人士第二年也需赴美全日制学习),完成剩余学分,毕业后获得美方硕士学位,回国后可被中国(教育部)留学服务中心认证为硕士研究生学历。上课安排,可参考招生简章。'
'本项目只接受硕士或以上学历申请,不限专业但非商科背景学员需部分相关先修课;单证情况:持有国内外硕士学位证的申请者符合报名条件;持有Online MBA学位申请者需经单独审核。 '
},
{
tit: '10.紫荆教育-玛丽伍德大学项目学费是多少?能不能申请分期缴纳?',
tit: '4.本项目学制多久?获得的士学位证书与在美国全日制就读是否相同?',
desc:
'本项目的学费由紫荆教育学费和玛丽伍德大学学费两部分组成,由学生向紫荆教育和玛丽伍德大学分别缴纳。其中紫荆教育费用为78080元人民币,由学生以人民币形式一次缴纳到紫荆教育。玛丽伍德大学学费学员第二学年以美金形式向玛丽伍德大学缴纳,约合 20,000美金,其中学费 12,000美金,住宿费 8,000美金,美方学费缴纳方式同学赴美后按照玛丽伍德大学要求缴纳,具体情况参照玛丽伍德大学官方收费标准。(详见<a href=" https://www.marywood.edu/cashier/tuition-and-fees.html" target="_blank">https://www.marywood.edu/cashier/tuition-and-fees.html</a>)'
'本项目分为国内、国外两个学习阶段,不同项目课程时长会稍有区别,整体而言国内学习2年国外学习1年,具体安排可参考开学课表。毕业获得的证书和在美全日制学习获得的证书完全一致,没有差别。'
},
{
tit: '11. 美国学费的部分包括了住宿,请问是学校统一安排住宿还是校外自己找?',
tit: '5.我的英语不好,担心英语过不了关,课程学习跟不上。怎么办?',
desc:
'美国玛丽伍德大学统一安排校内住宿。玛丽伍德大学住宿、教学楼,图书馆,音乐厅,体育馆等相关设施完备舒适;欢迎同学们可登录玛丽伍德大学官网查看<a href="https://www.marywood.edu/campus-life/" target="_blank">https://www.marywood.edu/campus-life/</a>'
'报名我们的博士项目是没有强制托福雅思成绩要求的,去美国的时候才需要提交语言成绩。我们在课程中专门配备了足够课时的英语语言课,帮助学员提升英语能力,掌握考试技巧,考到要求的语言分数。同时为学生提供学术英语课,帮助学生学习如何做英文演讲和写学术论文,具备充分的用英语学习的能力。国内阶段上课语言主要以中文为主,如是外籍老师上课,会有助教或是字幕翻译,课后作业可以纯中文提交。通常我们的学员经过课程学习,整体英语能力会有极大的提升,可以顺利衔接国外的学习。'
},
{
tit: '12. 疫情期间,赴美留学签证是否受影响?',
desc: `目前美国学校学生签证业务已重启,学校正常发放录取,正常签发I-20 (用于美国签证的材料)。若因疫情等不可抗力原因,美国学校也会开启远程办公,这样I-20签发和邮寄的工作就会有所延迟。<br/>
因此,申请本项目的学员,建议收到学校Offer后尽快启动I-20的申请工作。有了I-20就可以预约签证,接下来预约签证办理就可以了。在这期间可以提前准备好签证所需材料,以便办理时可以及时顺利签证通过,届时中国招生办公室也会协助同学们办理。`
tit: '6.你们的项目可以做留学认证吗?',
desc: `这个项目肯定是可以做中留服认证的。首先这是紫荆教育和美国大学联合培养的正规项目,合作的大学都是中国教育部认证的正规大学,可以通过教育部的涉外监管信息网查到相关信息。中国留服中心对学历认证的要求是在国外全日制学习一年以上并有往返签证记录,我们的项目符合出入境时限要求,学员获得的毕业证书与在海外就读2年的学生无任何差异,不会有非全日制、在线、远程等字样。所以2+1项目的毕业学员完全符合中留服学历认证的要求,获取的毕业证书可以进行留学认证,也享有留学生福利待遇。
`
},
{
tit: '13. I-20是什么?',
tit: '7.为什么你们项目在中外合作办学里查不到?会影响学历认证吗?',
desc:
'I-20表格是每位去美国读书的同学(美国留学(F-1)或作访问学者 (J-1)签证持有者)入学和签证面试时的必备文件,用于申请赴美签证,证明申请者的学生身份、入学资格、以及学生合法工作的资格。有一些学校是在录取了学生之后直接就发给学生I-20,有些学校则需要学生录取后申请I-20,在申请时,提交的方式有两种,一种是通过国际快递邮寄给学校,一种是通过邮箱,上传扫描件,以邮件的方式发给学校。'
},
{
tit: '14.在美国读书期间可以勤工俭学吗?',
desc: `同学赴美后为缓解经济压力以及锻炼独立生活能力可以勤工俭学或者校外打工,但打工时长有限制。对于持有F-1签证的学生,美国移民局规定学生可以在学校内打工,每周的工作时间不超过20小时;<br/>
入学一年之后可以在学校外打工,每周工作时间不超过20小时;此外假期也可以打工,需要申请包括,课程实习许可(Curricular Practical Training,CPT),工作实习许可(Optional Practical Training,OPT),每周工作时间不超过40小时。<br/>
持F-1签证的学生可以在美国办理社会安全号(SSN),相当于国内的身份证,在办理银行信用卡、驾照和购车时可提供重要帮助。`
},
{
tit: '15.赴美留学生的医疗保险',
desc: `去美国留学(F-1)或作访问学者 (J-1),一般都需要购买医疗保险。美国绝大多数学校需要提供医疗保险证明,才能给予注册,且规定持有J签证的访问学者和家属在美期间必须有医疗保险,否则可能被要求离境。<br/>
美国的多数学校也会为本校学生提供学生集体医疗保险,同学也可选择在校外自行购买医疗保险。`
'我们的项目是统招计划之外,无需联考,报名后筛选条件,符合要求者择优录取,所以不需要去教育部或者中留服单独备案。合作的美国大学都是教育部认证备案的正规大学,所以不影响回国学历认证。'
}
]
}
......
......@@ -2,31 +2,68 @@
<div>
<div v-if="!isMobile" class="is-pc">
<div class="banner">
<img class="img_banner" src="https://webapp-pub.ezijing.com/project/marywood/marywood_banner_02.jpg" />
<!-- <img class="img_banner" src="https://webapp-pub.ezijing.com/project/marywood/marywood_banner.png" /> -->
<!-- <div class="btn">
<button class="btn1" @click="$router.push('/my/account')">报名申请</button>
</div> -->
<img class="img_banner" src="https://webapp-pub.ezijing.com/project_online_pc/edd/school_banner.png" />
</div>
<div class="content">
<img class="img1" src="https://webapp-pub.ezijing.com/project/marywood-plus/pc-school-img1.png?v=2" />
<!-- 学校介绍 -->
<div class="content_school">
<div class="content_left">
<div class="content_left_tit">
<div class="line"></div>
<div class="tit_desc">加州浸会大学介绍</div>
</div>
<div class="content_left_bottom">
加州浸会大学(California Baptist
University,简称CBU)是位于美国加利福尼亚州里弗赛德(加利福尼亚州南部,河滨市)的一所创立于1950年的综合性私立大学。CBU位于加州河滨市,距离洛杉矶60英里。目前拥有8500余名本科生和研究生,提供超过150多种本科专业及
40多种硕士学位和证书课程。CBU开设会计、建筑、航空、生物化学、商务、工程、平面设计、市场营销、音乐、护理学、工程学等150余种专业。“Live
your purpose.”这句话不仅仅是个口号 ,也传递了 CBU 教育经验的精髓。
素以一流的学术及卓越的师资而闻名的CBU被“美国新闻与世界报道”评为全美顶尖大学之一,在美国西部大学排名第34位,也是南加州顶尖的研究生学位授予大学之一。除了高质量的学术课程以外,学校还拥有WASC、ACBSP、CTC、NASM、BRN、CCNE、ABET等多重权威认证.
</div>
</div>
<img class="content_right" src="https://webapp-pub.ezijing.com/project_online_pc/edd/pc-school-img11.png?v=2" />
</div>
<div class="content">
<div class="img-box">
<img class="img2" src="https://webapp-pub.ezijing.com/project/marywood-plus/pc-school-img8.png" />
<!-- 专业介绍 -->
<div class="content_part">
<div class="img-box" style="height:600px">
<img class="img2" src="https://webapp-pub.ezijing.com/project_online_pc/edd/pc-school-img8.png" />
</div>
<div class="content_desc">
<div class="content_tit">
<div class="line"></div>
<div class="tit_desc">加州浸会大学介绍</div>
</div>
<div class="content_intro">
旨在培养创新型领导者,寻求在公共、私人和非营利组织中发挥最大影响力。这项为在职成年人设立的56个单元的工商管理在线博士学位,包括论文,可以在三年内完成。学生们将每八周集中学习一门在线课程。课程和课程旨在满足负责应对当今全球商业环境的专业人士的需求。
</div>
</div>
<img class="img22" src="https://webapp-pub.ezijing.com/project/marywood-plus/pc-college-intro-img1.png?v=2" />
</div>
<img class="img4" src="https://webapp-pub.ezijing.com/project/marywood-plus/pc-school-img9.png" />
<div class="content">
<img src="https://webapp-pub.ezijing.com/project/marywood-plus/school-apply-img.png" />
<!-- 申请条件 -->
<div class="content_part" style="flex-direction: column">
<div class="content_tit">
<div class="line"></div>
<div class="tit_desc">申请条件</div>
</div>
<div class="content_list">
<div class="content_list_item" v-for="(item, index) in applyList" :key="index">
<div class="content_list_item_top">
<img :src="item.img" alt="" />
<div class="top_text">{{ item.tit }}</div>
</div>
<div class="content_list_item_center" v-html="item.desc"></div>
<div class="content_list_item_bottom" v-html="item.tips"></div>
</div>
<!-- </div> -->
</div>
<!-- <img src="https://webapp-pub.ezijing.com/project_online_pc/edd/school-apply-img.png" /> -->
</div>
<!-- 学制安排 -->
<div class="content_tit">
<div class="line"></div>
<div class="tit_desc">学制安排</div>
</div>
<!-- <img class="img4" src="https://webapp-pub.ezijing.com/project/marywood/marywood3611.png" /> -->
<div class="content">
<div class="content_part">
<div class="img5 img55">
<div class="mask"></div>
<div class="desc">
......@@ -63,47 +100,20 @@
</div>
</div>
</div>
<!-- <div class="content"> -->
<!-- <img src="https://webapp-pub.ezijing.com/project/marywood/marywood36.png" /> -->
<!-- </div> -->
<!-- 院校荣誉 -->
<img class="img4" src="https://webapp-pub.ezijing.com/project_online_pc/edd/pc-school-img9.png" />
<!-- 课程设置 -->
<div class="content_tit">
<div class="line"></div>
<div class="tit_desc">课程设置</div>
</div>
<div class="course-set">
<!-- <div class="head-tab">
<div @click="courseTab(0)" :class="!courseSetTab ? 'btn active' : 'btn'">
<p>工商管理硕士</p>
<p>Master of Business Administration</p>
</div>
<div @click="courseTab(1)" :class="courseSetTab ? 'btn active' : 'btn'">
<p>管理信息系统硕士</p>
<p>M.S. in Management Information Systems</p>
</div>
</div>
<div style="padding: 40px">
<img v-if="!courseSetTab" src="https://webapp-pub.ezijing.com/project/marywood-plus/pc-school-img2.png" />
<img v-else src="https://webapp-pub.ezijing.com/project/marywood-plus/pc-school-img3.png" />
</div> -->
<img src="https://webapp-pub.ezijing.com/project/marywood-plus/pc-school-course.png?v=1">
</div>
<div class="content_tit">
<div class="line"></div>
<div class="tit_desc">校园风光</div>
</div>
<div class="swiper-content" @mouseenter="swiperStop" @mouseleave="swiperStart">
<div v-swiper:mySwiper="swiperOption" ref="mySwiper">
<div class="swiper-wrapper">
<div class="swiper-slide" v-for="(item, index) in listData" :key="index">
<img :src="item.web_img_uri" />
</div>
</div>
</div>
<img src="https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online_pc/edd/school-course-img1.png?v=1" />
</div>
</div>
<div v-else class="is-h5">
<div class="banner">
<!-- <img class="img_banner" src="https://webapp-pub.ezijing.com/project/marywood/banner.jpg" width="100%" /> -->
<img
class="img_banner"
src="https://webapp-pub.ezijing.com/project/marywood/marywood_banner_02.jpg"
......@@ -125,10 +135,6 @@
</div>
<div class="h5-title m-t-10">学制安排</div>
<div class="img-list">
<!-- <img src="https://webapp-pub.ezijing.com/project/marywood/h5/school-nimg1.png" />
<img src="https://webapp-pub.ezijing.com/project/marywood/h5/school-nimg2.png" />
<img src="https://webapp-pub.ezijing.com/project/marywood/h5/school-nimg3.png" />
<img src="https://webapp-pub.ezijing.com/project/marywood/h5/school-nimg4.png" /> -->
<div class="xz-content">
<div class="xz-item xz1">
<div class="mask"></div>
......@@ -166,50 +172,13 @@
</div>
</div>
</div>
<div class="h5-title m-t-10">课程设置</div>
<div class="h5-course-set">
<img src="https://webapp-pub.ezijing.com/project/marywood-plus/h5/school-course-img1.png" style="margin-bottom:0.3rem">
<img src="https://webapp-pub.ezijing.com/project/marywood-plus/h5/school-course-img2.png">
<!-- <div class="h5-head">
<div
@click="courseTab(0)"
:class="!courseSetTab ? 'btn active' : 'btn'"
style="margin: 0 0.42rem 0 0.06rem"
>
<p>工商管理硕士</p>
<p>Master of Business Administration</p>
</div>
<div @click="courseTab(1)" :class="courseSetTab ? 'btn active' : 'btn'">
<p>管理信息系统硕士</p>
<p>M.S. in Management Information Systems</p>
</div>
</div>
<div v-if="!courseSetTab" style="padding: 0.35rem 0.1rem">
<img src="https://webapp-pub.ezijing.com/project/marywood-plus/h5-curriculum1.png" />
<img
src="https://webapp-pub.ezijing.com/project/marywood-plus/h5-curriculum2.png"
style="margin-top: 0.43rem"
/>
</div>
<div v-else style="padding: 0.35rem 0.1rem">
<img src="https://webapp-pub.ezijing.com/project/marywood-plus/h5-curriculum3.png" />
<img
src="https://webapp-pub.ezijing.com/project/marywood-plus/h5-curriculum4.png"
style="margin-top: 0.43rem"
/>
</div> -->
</div>
<div class="h5-title m-t-10">校园风光</div>
<div class="swiper-content" @mouseenter="swiperStop" @mouseleave="swiperStart">
<div v-swiper:mySwiper="swiperOption2" ref="mySwiper">
<div class="swiper-wrapper">
<div class="swiper-slide" v-for="(item, index) in listDataH5" :key="index">
<img :src="item.web_img_uri" />
</div>
</div>
<div class="swiper-pagination"></div>
</div>
<img
src="https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online_pc/edd/school-course-img1.png"
style="margin-bottom:0.3rem"
/>
</div>
</div>
</div>
......@@ -223,6 +192,27 @@ export default {
const _this = this
return {
applyList: [
{
img: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online_pc/edd/apply_step1.png',
tit: '学历要求',
desc: '获得工商管理硕士(MBA)学位<br />拥有MBA以外专业硕士学位的申请者需5年以上的管理经验',
tips: '*持有Online MBA学位申请者需经单独审核'
},
{
img: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online_pc/edd/apply_step2.png',
tit: '语言要求',
desc: '·托福成绩不低于79分或雅思6.0以上<br />·完成ZIEP项目',
tips:
' *ZIEP(Zijing Intensive English Program)即紫荆语言强化课程项目,是紫荆教育针对没有托福成绩的优秀学生提供的替代语言课程,该课程及考核成绩被众多美国大学认可。'
},
{
img: 'https://webapp-pub.oss-cn-beijing.aliyuncs.com/project_online_pc/edd/apply_step3.png',
tit: 'GPA要求',
desc: '在校GPA≥2.5<br />或具有研究生学习潜力的优秀学生',
tips: ''
}
],
courseSetTab: 0,
popupVisible: false,
listData: [
......@@ -274,19 +264,6 @@ export default {
}
}
}
// frameParams: {
// banner: 'https://webapp-pub.ezijing.com/project/marywood/mary_banner_nx4.jpg',
// slider: [
// {
// name: this.$t('menu.schoolChild.school3'),
// path: '/school/school3'
// },
// {
// name: this.$t('menu.courseChild.teachers'),
// path: '/about/teacher'
// }
// ]
// }
}
},
computed: {
......@@ -316,35 +293,12 @@ export default {
background: #fff;
width: 1200px;
margin: 30px auto 0;
padding:50px 30px;
img{
width:1140px;
}
// .head-tab {
// height: 120px;
// border-bottom: 1px solid #bebebe;
// display: flex;
// justify-content: space-evenly;
// .btn {
// p {
// font-size: 26px;
// font-weight: 400;
// color: #959595;
// text-align: center;
// line-height: 100%;
// // -webkit-background-clip: text;
// // -webkit-text-fill-color: transparent;
// }
// padding-top: 60px;
// cursor: pointer;
// &.active {
// border-bottom: 1px solid #aa1941;
// p {
// color: #aa1941;
// }
// }
// }
// }
padding: 50px 30px;
margin-bottom: 111px;
img {
width: 1140px;
}
}
.banner {
position: relative;
......@@ -375,13 +329,168 @@ export default {
opacity: 1;
}
}
.content_school {
// background-color: #ccc;
height: 661px;
width: 1200px;
margin: 70px auto;
text-align: center;
display: flex;
justify-content: space-around;
align-items: center;
.content_left {
padding-right: 152px;
min-width: 524px;
height: 100%;
.content {
// background-color: red;
.content_tit {
text-align: center;
display: flex;
justify-content: flex-start;
margin-top: 64px;
.line {
width: 6px;
height: 34px;
background: #aa1941;
margin-right: 9px;
margin-top: 6px;
}
.tit_desc {
color: #333333;
font-size: 34px;
font-weight: bold;
}
}
.content_left_bottom {
font-size: 16px;
font-weight: 300;
color: #424242;
margin-top: 66px;
text-align: left;
line-height: 1.5;
}
}
.content_right {
min-width: 596px;
height: 100%;
// background-color: yellow;
}
}
.content_tit {
width: 1200px;
margin: auto;
text-align: center;
display: flex;
justify-content: flex-start;
margin-top: 64px;
.line {
width: 6px;
height: 34px;
background: #aa1941;
margin-right: 9px;
margin-top: 6px;
}
.tit_desc {
color: #333333;
font-size: 34px;
font-weight: bold;
}
}
.content_part {
width: 1200px;
margin: auto;
text-align: center;
margin-top: 70px;
display: flex;
.content_list {
width: 100%;
display: flex;
justify-content: space-around;
align-items: center;
.content_list_item {
padding: 68px 39px 0 41px;
width: 380px;
height: 483px;
opacity: 1;
.content_list_item_top {
img {
width: 91.66px;
height: 100%;
}
.top_text {
font-size: 20px;
font-weight: 500;
color: #484848;
}
}
.content_list_item_center {
text-align: left;
font-size: 16px;
font-weight: 400;
color: #666666;
margin-top: 37px;
line-height: 2;
}
.content_list_item_bottom {
font-size: 14px;
font-weight: 400;
color: #999999;
margin-top: 27px;
text-align: left;
line-height: 2;
}
}
}
.content_list_item:nth-child(3) .content_list_item_center {
text-align: center;
}
.content_list_item:nth-child(1) {
padding-top: 75px;
}
.content_list_item:nth-child(1) .content_list_item_top .top_text {
margin-top: 35px;
}
.content_list_item:nth-child(2) .content_list_item_top .top_text {
margin-top: 29px;
}
.content_list_item:nth-child(3) .content_list_item_top .top_text {
margin-top: 30px;
}
.content_desc {
width: 536px;
padding-left: 30px;
.content_tit {
text-align: center;
display: flex;
justify-content: flex-start;
margin-top: 64px;
.line {
width: 6px;
height: 34px;
background: #aa1941;
margin-right: 9px;
margin-top: 6px;
}
.tit_desc {
color: #333333;
font-size: 34px;
font-weight: bold;
}
}
.content_intro {
font-size: 16px;
font-weight: 300;
color: #424242;
line-height: 1.5;
margin-top: 66px;
}
}
img {
width: 100%;
height: 100%;
......@@ -426,8 +535,8 @@ export default {
justify-content: center;
margin-top: 137px;
transition: all 0.15s ease-in;
position:relative;
z-index:11;
position: relative;
z-index: 11;
.desc_tit {
font-size: 24px;
font-weight: 500;
......@@ -469,16 +578,16 @@ export default {
}
.img5 {
background: url('https://webapp-pub.ezijing.com/project/marywood-plus/pc-school-img4.png');
background: url('https://webapp-pub.ezijing.com/project_online_pc/edd/pc-school-img4.png');
}
.img6 {
background: url('https://webapp-pub.ezijing.com/project/marywood-plus/pc-school-img5.png');
background: url('https://webapp-pub.ezijing.com/project_online_pc/edd/pc-school-img5.png');
}
.img7 {
background: url('https://webapp-pub.ezijing.com/project/marywood-plus/pc-school-img6.png');
background: url('https://webapp-pub.ezijing.com/project_online_pc/edd/pc-school-img6.png');
}
.img8 {
background: url('https://webapp-pub.ezijing.com/project/marywood-plus/pc-school-img7.png');
background: url('https://webapp-pub.ezijing.com/project_online_pc/edd/pc-school-img7.png');
}
}
.img4 {
......@@ -486,7 +595,7 @@ export default {
height: 100%;
margin-top: 68px;
}
.content_tit {
.content_left_tit {
width: 1200px;
margin: auto;
text-align: center;
......@@ -537,7 +646,7 @@ export default {
}
.h5-course-set {
background: #fff;
padding:0.2rem 0.12rem;
padding: 0.2rem 0.12rem;
.h5-head {
height: 0.7rem;
border-bottom: 1px solid #bebebe;
......@@ -630,8 +739,8 @@ export default {
justify-content: center;
margin-top: 0.4rem;
transition: all 0.15s ease-in;
position:relative;
z-index:11;
position: relative;
z-index: 11;
.desc_tit {
font-size: 0.16rem;
font-weight: 500;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论