反馈修改完成-1104

master
Lee 2022-11-04 15:34:59 +08:00
parent 5bde58a8d4
commit 2abe4b7c5a
28 changed files with 151 additions and 80 deletions

View File

@ -179,6 +179,15 @@ class Goods extends BaseGoods {
} }
View::assign('hot_collect', $hot_collect_list); View::assign('hot_collect', $hot_collect_list);
$favorites_model = model('favorites');
//判断是否已经收藏
$favorites_info = $favorites_model->getOneFavorites(array(
'fav_id' => "$goods_id",
'member_id' => session('member_id')
));
View::assign('is_collected', !empty($favorites_info));
return View::fetch($this->template_dir . 'goods'); return View::fetch($this->template_dir . 'goods');
} }
@ -678,6 +687,7 @@ class Goods extends BaseGoods {
echo input('param.callback') . '(' . json_encode(model('area')->getAreaArrayForJson()) . ')'; echo input('param.callback') . '(' . json_encode(model('area')->getAreaArrayForJson()) . ')';
} }
} }
?> ?>

View File

@ -10,8 +10,8 @@
<span class="wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.4s">If you have any questions,<br />please check below for the fastest way<br />to get in touch with us!</span> <span class="wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.4s">If you have any questions,<br />please check below for the fastest way<br />to get in touch with us!</span>
</h5> </h5>
</div> </div>
<img class="contact-right-bg" src="{$Think.HOME_SITE_ROOT}/new/images/contact-right-bg.png"> <img class="contact-right-bg wow fadeInLeft" data-wow-duration="0.8s" data-wow-delay="0.3s" src="{$Think.HOME_SITE_ROOT}/new/images/contact-right-bg.png">
<img class="contact-left-bg" src="{$Think.HOME_SITE_ROOT}/new/images/contact-left-bg.png"> <img class="contact-left-bg wow fadeInRight" data-wow-duration="0.8s" data-wow-delay="0.3s" src="{$Think.HOME_SITE_ROOT}/new/images/contact-left-bg.png">
</div> </div>
<main class="contact-container wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0"> <main class="contact-container wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0">
<section class="wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s"> <section class="wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s">

View File

@ -47,7 +47,7 @@
<section class="main-1-1 wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0"> <section class="main-1-1 wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0">
<div class="main-center container"> <div class="main-center container">
<div class="title wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s"> <div class="title wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s">
<h3 class="wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.4s">What We Provide</h3> <h3 class="wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.4s">What We Provide ?</h3>
<p class="wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.4s">Credit-bearing online courses</p> <p class="wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.4s">Credit-bearing online courses</p>
<span class="wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.4s">For individual online courses, students can choose between live ("synchronous") or recorded ("asynchronous") courses as the mode of instruction. Along with the usual spring, summer, fall, and winter terms, there are also self-paced courses available, allowing students to choose the appropriate classes based on their own schedules.</span> <span class="wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.4s">For individual online courses, students can choose between live ("synchronous") or recorded ("asynchronous") courses as the mode of instruction. Along with the usual spring, summer, fall, and winter terms, there are also self-paced courses available, allowing students to choose the appropriate classes based on their own schedules.</span>
</div> </div>

View File

@ -218,6 +218,7 @@
justify-content: center; justify-content: center;
align-items: center; align-items: center;
width: 10.3rem; width: 10.3rem;
height: 1.5rem;
border-radius: 0.35rem; border-radius: 0.35rem;
background-color: #18d777; background-color: #18d777;
font-size: 1rem; font-size: 1rem;
@ -455,14 +456,18 @@
</div> </div>
<div class="btn-wrap wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.4s"> <div class="btn-wrap wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.4s">
<a href="javascript:collect_goods('{$goods.goods_id}','count','goods_collect');" class="collect-btn"> <a href="javascript:collect_goods('{$goods.goods_id}','count','goods_collect');" class="collect-btn">
{if $is_collected}
<img src="{$Think.HOME_SITE_ROOT}/new/images/icon-red-stars.png" alt="收藏"> <img src="{$Think.HOME_SITE_ROOT}/new/images/icon-red-stars.png" alt="收藏">
{else}
<img src="{$Think.HOME_SITE_ROOT}/new/images/icon-white-stars.png" alt="收藏">
{/if}
</a> </a>
{if $IsHaveBuy=="0"} {if $IsHaveBuy=="0"}
<!-- 加入购物车--> <!-- 加入购物车-->
{if $goods.cart == true} {if $goods.cart == true}
<a href="javascript:void(0);" dstype="addcart_submit" <a href="javascript:void(0);" dstype="addcart_submit"
class="btn addcart {if $goods['goods_state'] == 0 || $goods['goods_storage'] <= 0}no-addcart{/if}" class="btn addcart {if $goods['goods_state'] == 0 || $goods['goods_storage'] <= 0}no-addcart{/if}"
title="{$Think.lang.goods_index_add_to_cart}">Add to title="{$Think.lang.goods_index_add_to_cart}">Add to{$is_collected}
Cart <i class="addcart-ico">1</i></a> Cart <i class="addcart-ico">1</i></a>
{/if} {/if}
<a href="javascript:void(0);" dstype="buynow_submit" <a href="javascript:void(0);" dstype="buynow_submit"

View File

@ -17,7 +17,7 @@
</style> </style>
<main class="member-container wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0"> <main class="member-container wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0">
<img class="wow fadeIn" data-wow-duration="0.8s" data-wow-delay="0.2s" src="{$Think.HOME_SITE_ROOT}/new/images/logo.png" alt="LIGHT COURSE"> <!-- <img class="wow fadeIn" data-wow-duration="0.8s" data-wow-delay="0.2s" src="{$Think.HOME_SITE_ROOT}/new/images/logo.png" alt="LIGHT COURSE"> -->
<section class="container main-center"> <section class="container main-center">
<div class="img wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s"> <div class="img wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s">
<h2>7000+ </h2> <h2>7000+ </h2>

View File

@ -10,7 +10,7 @@
}) })
</script> </script>
<main class="member-container"> <main class="member-container">
<img class="wow fadeIn" data-wow-duration="0.8s" data-wow-delay="0.2s" src="{$Think.HOME_SITE_ROOT}/new/images/logo.png" alt="LIGHT COURSE"> <!-- <img class="wow fadeIn" data-wow-duration="0.8s" data-wow-delay="0.2s" src="{$Think.HOME_SITE_ROOT}/new/images/logo.png" alt="LIGHT COURSE"> -->
<section class="container main-center"> <section class="container main-center">
<div class="img wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s"> <div class="img wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s">
<h2>7000+ </h2> <h2>7000+ </h2>

View File

@ -25,9 +25,9 @@
} }
</style> </style>
<div class="see-banner wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0"> <div class="see-banner wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0">
<div class="main-center container wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s"> <div class="main-center container">
<h1>How to Apply</h1> <h1 class="wow fadeInUp" data-wow-duration="0.8s" data-wow-delay="0.2s">How to Apply</h1>
<em> <em class="wow fadeIn" data-wow-duration="0.8s" data-wow-delay="0.4s">
<img src="{$Think.HOME_SITE_ROOT}/new/images/process-top-bg.png"> <img src="{$Think.HOME_SITE_ROOT}/new/images/process-top-bg.png">
</em> </em>
</div> </div>

View File

@ -379,7 +379,7 @@
</main> </main>
<section class="container-mask form-wrap"> <section class="container-mask form-wrap">
<div class="container form-mask" style="max-width: 50rem"> <div class="container form-mask" style="max-width: 60rem">
<div class="iconf close-iconf"></div> <div class="iconf close-iconf"></div>
<div action="" onsubmit="return false" class="form-container form ui "> <div action="" onsubmit="return false" class="form-container form ui ">
<h2 class="c1" style="text-align: center">Talk to a LightCourse advisor</h2> <h2 class="c1" style="text-align: center">Talk to a LightCourse advisor</h2>

View File

@ -50,7 +50,7 @@
position: relative; position: relative;
} }
.about-banner{ .about-banner{
background-color: #07cd6a; background-color: #00db6d;
padding: 2.5rem 0; padding: 2.5rem 0;
} }
@ -220,7 +220,7 @@
.about .main-2 { .about .main-2 {
padding-top: 18.8rem; padding-top: 18.8rem;
padding-bottom: 4.3rem; padding-bottom: 4.3rem;
background-color: #07cd6a; background-color: #00db6d;
margin-top: -12.25rem; margin-top: -12.25rem;
position: relative; position: relative;
z-index: -1; z-index: -1;

View File

@ -235,7 +235,6 @@ input::placeholder{
outline: none; outline: none;
box-sizing: border-box; box-sizing: border-box;
word-break: break-word; word-break: break-word;
letter-spacing: -0.025em;
} }
body { body {
@ -245,6 +244,7 @@ body {
min-width: 300px; min-width: 300px;
padding-top: 7rem; padding-top: 7rem;
padding-bottom: 4rem; padding-bottom: 4rem;
letter-spacing: -0.025em;
} }
.f-light{ .f-light{
@ -968,7 +968,7 @@ div[data-sidebar-main="mask"] {
} }
p { p {
line-height: 2; line-height: 1.5;
} }
.a-hover:hover { .a-hover:hover {
@ -977,7 +977,7 @@ p {
} }
.main-title { .main-title {
margin-bottom: 4.8rem; margin-bottom: 3.6rem;
} }
.main-title h2 { .main-title h2 {
@ -1743,30 +1743,24 @@ p {
border-radius: 0.5rem; border-radius: 0.5rem;
} }
.main-QA .content .accordion li:hover .link{
opacity: .8;
}
.main-QA .content .accordion li:hover .submenu{
opacity: .7;
}
.main-QA .content .accordion li:last-of-type { .main-QA .content .accordion li:last-of-type {
margin-bottom: 0; margin-bottom: 0;
} }
.main-QA .content .accordion li .link { .main-QA .content .accordion li .link {
padding: 0.9rem; padding: 0.9rem;
transition: all .6s;
} }
.main-QA .content .accordion li.open .submenu { .main-QA .content .accordion li.open .submenu {
display: block; display: block;
transition: all .6s;
} }
.main-QA .content .accordion li.open h5 span { .main-QA .content .accordion li.open h5 span {
font-size: 1.3rem; font-size: 1.3rem;
/*color: #00db6d;*/ transition: all .6s;
}
.main-QA .content .accordion li:hover .link h5 span{
color: #00db6d;
} }
.main-QA .content .accordion li.open h5 i::after { .main-QA .content .accordion li.open h5 i::after {
@ -1817,7 +1811,8 @@ p {
.main-QA .content .accordion li h6 { .main-QA .content .accordion li h6 {
font-size: 0.8rem; font-size: 0.8rem;
color: #00db6d; font-size: 0.9rem;
color: #505050;
margin-top: 0.9rem; margin-top: 0.9rem;
margin-bottom: 0.5rem; margin-bottom: 0.5rem;
} }
@ -1825,7 +1820,7 @@ p {
.main-QA .content .accordion li p { .main-QA .content .accordion li p {
line-height: 1.8; line-height: 1.8;
color: #000; color: #000;
font-size: 0.8rem; font-size: 0.75rem;
color: #505050; color: #505050;
} }
@ -2441,6 +2436,7 @@ p {
.hint-search-content .item .link span { .hint-search-content .item .link span {
margin-right: 0.5rem; margin-right: 0.5rem;
font-size: 0.8rem;
} }
.hint-search-content .item .link em { .hint-search-content .item .link em {
@ -2478,6 +2474,7 @@ header #pc-header>div>ul {
} }
header #pc-header>div>ul li>a { header #pc-header>div>ul li>a {
font-family: "HarmonyOS_Sans_Bold" !important;
display: inline-block; display: inline-block;
height: 5rem; height: 5rem;
font-size: 0.8rem; font-size: 0.8rem;
@ -2561,16 +2558,21 @@ header #pc-header .search-form>div {
margin-left: 0.5rem; margin-left: 0.5rem;
height: 2rem; height: 2rem;
} }
header #pc-header .search-form>div span{
font-family: "HarmonyOS_Sans_Bold" !important;
}
header #pc-header .search-form>div input { header #pc-header .search-form>div input {
width: 14rem; width: 14rem;
height: 2rem; height: 2rem;
font-size: 0.8rem; font-size: 0.8rem;
font-family: "HarmonyOS_Sans_Bold" !important;
} }
header #pc-header .search-form>div input::placeholder { header #pc-header .search-form>div input::placeholder {
font-size: 0.8rem; font-size: 0.8rem;
color: #999; color: #999;
font-family: "HarmonyOS_Sans_Bold" !important;
} }
header #pc-header .search-form>div .i { header #pc-header .search-form>div .i {
@ -2914,6 +2916,7 @@ header #pc-header .right .member p{
header #pc-header .right .member p a { header #pc-header .right .member p a {
margin: 0 0.3rem; margin: 0 0.3rem;
font-size: 0.75rem; font-size: 0.75rem;
font-family: "HarmonyOS_Sans_Bold" !important;
} }
header #pc-header .right .member p a:hover { header #pc-header .right .member p a:hover {
@ -2922,12 +2925,21 @@ header #pc-header .right .member p a:hover {
header #pc-header .right .member .member-on { header #pc-header .right .member .member-on {
position: relative; position: relative;
display: flex;
align-items: center;
margin-top: 0.2rem;
} }
header #pc-header .right .member .member-on:hover .second { header #pc-header .right .member .member-on:hover .second {
display: block; display: block;
} }
header #pc-header .right .member .member-on a{
font-family: "HarmonyOS_Sans_Bold" !important;
font-size: 0.75rem;
margin-right: 0.2rem;
}
header #pc-header .right .member .member-on .second { header #pc-header .right .member .member-on .second {
position: absolute; position: absolute;
top: 100%; top: 100%;
@ -3082,7 +3094,7 @@ footer .foot .container .copyright p * {
footer .footer { footer .footer {
background-color: #ebebeb; background-color: #ebebeb;
padding: 4rem 0 1.25rem; padding: 2.7rem 0 0.65rem;
} }
footer .footer>div { footer .footer>div {
@ -3093,6 +3105,7 @@ footer .footer>div {
footer .footer .main-center{ footer .footer .main-center{
max-width: 71.875%; max-width: 71.875%;
align-items: flex-end;
} }
footer .footer .left { footer .footer .left {
@ -3100,6 +3113,7 @@ footer .footer .left {
flex-direction: column; flex-direction: column;
justify-content: space-between; justify-content: space-between;
margin-left: 1.3rem; margin-left: 1.3rem;
height: 9rem;
} }
footer .footer .left * { footer .footer .left * {
@ -3107,7 +3121,7 @@ footer .footer .left * {
} }
footer .footer .left .info { footer .footer .left .info {
font-size: 0.7rem; font-size: 0.65rem;
margin-left: 0.4rem; margin-left: 0.4rem;
line-height: 1.5; line-height: 1.5;
} }
@ -3161,18 +3175,19 @@ footer .footer .right ul span {
footer .footer .right ul a { footer .footer .right ul a {
display: block; display: block;
transition: all .6s; transition: all .6s;
line-height: 2.2; line-height: 1.67;
color: #424242;
} }
footer .footer .right ul a:hover { footer .footer .right ul a:hover {
opacity: .65; color: #00db6d;
} }
footer .footer .copyright { footer .footer .copyright {
max-width: calc(100% - 3.6rem); max-width: calc(100% - 3.6rem);
display: flex; display: flex;
justify-content: flex-end; justify-content: flex-end;
margin: 3.5rem auto 0; margin: 3rem auto 0;
} }
footer .footer .copyright * { footer .footer .copyright * {

View File

@ -85,23 +85,20 @@
.page-banner { .page-banner {
position: relative; position: relative;
} }
.page-banner .swiper-container{
height: 36.4rem;
}
.page-banner .swiper-slide{ .page-banner .swiper-slide{
height: 36.4rem; height: 33.15rem;
overflow: hidden; overflow: hidden;
} }
.page-banner img { .page-banner .swiper-slide img {
width: 100%; width: 100%;
min-height: 36.4rem; min-height: 100%;
} }
.page-banner .pagination{ .page-banner .pagination{
margin: 0; margin: 0;
} }
.page-banner .swiper-container-horizontal>.swiper-pagination-bullets{ .page-banner .swiper-container-horizontal>.swiper-pagination-bullets{
bottom: 3rem !important; bottom: 1.5rem !important;
} }
.page-banner .swiper-pagination .swiper-pagination-bullet{ .page-banner .swiper-pagination .swiper-pagination-bullet{
width: 0.65rem; width: 0.65rem;
@ -290,6 +287,7 @@ h4 {
} }
.course-details .main-1{ .course-details .main-1{
padding-bottom: 0; padding-bottom: 0;
padding-top: 6rem;
} }
.course-details .main-1>div { .course-details .main-1>div {
padding-bottom: 5.8rem; padding-bottom: 5.8rem;
@ -298,6 +296,7 @@ h4 {
.course-details .main-1 .container { .course-details .main-1 .container {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: center;
} }
.course-details .main-1 .container>.left { .course-details .main-1 .container>.left {
@ -305,7 +304,7 @@ h4 {
} }
.course-details .main-1 .container>.left .basic-information{ .course-details .main-1 .container>.left .basic-information{
margin-top: 4rem; margin-top: 2.5rem;
} }
.course-details .main-1 .container>.left h1 { .course-details .main-1 .container>.left h1 {
@ -337,7 +336,7 @@ h4 {
} }
.course-details .main-1 .container>.left>div.content1 { .course-details .main-1 .container>.left>div.content1 {
margin-top: 4rem; margin-top: 3rem;
} }
.course-details .main-1 .container>.left>div.content1 h2{ .course-details .main-1 .container>.left>div.content1 h2{
margin-bottom: 0.5rem; margin-bottom: 0.5rem;
@ -346,9 +345,6 @@ h4 {
font-size: 1.1rem; font-size: 1.1rem;
line-height: 1.35; line-height: 1.35;
max-width: 80%; max-width: 80%;
}
.course-details .main-1 .container>.left>div.content1 {
} }
.course-details .main-1 .container>.left>div.content1 .more-btn1{ .course-details .main-1 .container>.left>div.content1 .more-btn1{
box-sizing: border-box; box-sizing: border-box;
@ -395,7 +391,7 @@ h4 {
.course-details .main-1 .container>.right { .course-details .main-1 .container>.right {
box-sizing: border-box; box-sizing: border-box;
width: 39.25rem; width: 39.25rem;
padding: 2.8rem; padding: 2.2rem 2.8rem;
border: 0.7rem solid #4ce699; border: 0.7rem solid #4ce699;
position: relative; position: relative;
} }
@ -414,7 +410,7 @@ h4 {
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
justify-content: space-between; justify-content: space-between;
height: 14rem; height: 13rem;
margin-top: 2rem; margin-top: 2rem;
} }
@ -437,7 +433,7 @@ h4 {
.course-details .main-1 .container>.right .info .t .item p { .course-details .main-1 .container>.right .info .t .item p {
font-size: 1rem; font-size: 1rem;
line-height: 1.5; line-height: 1.5;
margin-bottom: 0.7rem !important; margin-bottom: 0.1rem !important;
} }
.course-details .main-1 .container>.right .info .t .item p.clk { .course-details .main-1 .container>.right .info .t .item p.clk {
@ -509,7 +505,8 @@ h4 {
} }
.course-details .main-1 .container>.right .time{ .course-details .main-1 .container>.right .time{
height: 14.3rem; height: 12.5rem;
margin-top: 3.25rem;
} }
.course-details .main-1 .container>.right .btn-wrap { .course-details .main-1 .container>.right .btn-wrap {
@ -562,7 +559,7 @@ h4 {
.course-details .main-02 { .course-details .main-02 {
display: flex; display: flex;
align-items: center; align-items: center;
padding: 4rem 0; padding: 2.5rem 0;
background-color: #ffff1b; background-color: #ffff1b;
text-align: center; text-align: center;
@ -585,7 +582,7 @@ h4 {
margin-top: 1.2rem; margin-top: 1.2rem;
} }
.course-details .main-2{ .course-details .main-2{
padding: 4rem 0; padding: 3.5rem 0 4.5rem;
background-color: #dedede; background-color: #dedede;
} }
@ -928,12 +925,13 @@ h4 {
font-family: "HarmonyOS_Sans_Medium" !important; font-family: "HarmonyOS_Sans_Medium" !important;
font-size: 0.85rem; font-size: 0.85rem;
text-align: left; text-align: left;
color: #ffffff;
} }
.course-details .main-2 .con1 .c2{ .course-details .main-2 .con1 .c2{
display: inline-block; display: inline-block;
font-size: 1rem; font-size: 1rem;
margin-top: 3.6rem; margin-top: 1.3rem;
color: #00db6d; color: #00db6d;
} }
@ -957,11 +955,12 @@ h4 {
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
color: #00db6d;
height: 5.5rem; height: 5.5rem;
text-align: center; text-align: center;
line-height: 1.4; line-height: 1.4;
min-height: 3.2rem; min-height: 3.2rem;
margin: 1rem 0 3rem; margin: 0.5rem 0 1.75rem;
} }
.course-details .main-2 .con1 .item-list1 h6>span{ .course-details .main-2 .con1 .item-list1 h6>span{
font-size: 1.5rem; font-size: 1.5rem;
@ -970,11 +969,20 @@ h4 {
.course-details .main-2 .con1 .item-list1 .item{ .course-details .main-2 .con1 .item-list1 .item{
width: calc(33.33% - 1rem); width: calc(33.33% - 1rem);
background-color: #ffffff; background-size: cover;
position: relative; position: relative;
margin-top: 0.9rem; margin-top: 0.9rem;
padding: 2.35rem; padding: 2.35rem;
} }
.course-details .main-2 .con1 .item-list1 .item:nth-of-type(1){
background-image: url('../images/transfe-bg01.jpg');
}
.course-details .main-2 .con1 .item-list1 .item:nth-of-type(2){
background-image: url('../images/transfe-bg02.jpg');
}
.course-details .main-2 .con1 .item-list1 .item:nth-of-type(3){
background-image: url('../images/transfe-bg03.jpg');
}
.course-details .main-2 .con1 .item-list1 .item::after{ .course-details .main-2 .con1 .item-list1 .item::after{
content: ""; content: "";
@ -1010,7 +1018,7 @@ h4 {
width: 53rem; width: 53rem;
background-color: #00db6d; background-color: #00db6d;
border-radius: 1rem; border-radius: 1rem;
margin: 4.2rem auto 0; margin: 2.2rem auto 0;
padding: 1.1rem; padding: 1.1rem;
} }
.course-details .main-2 .con1 .shadow p{ .course-details .main-2 .con1 .shadow p{
@ -1085,7 +1093,7 @@ h4 {
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
width: calc(50% - 0.55rem); width: calc(50% - 0.55rem);
height: 20rem; height: 19.15rem;
background-color: #dedede; background-color: #dedede;
padding: 0 4.8rem; padding: 0 4.8rem;
} }
@ -1254,7 +1262,7 @@ h4 {
.program-info .container, .program-info .container,
.program-info .content{ .program-info .content{
width: calc(50% - 0.8rem); width: calc(50% - 0.8rem);
padding: 4.2rem; padding: 2.7rem 4.2rem;
border: 1px solid #222; border: 1px solid #222;
border-radius: 0.5rem; border-radius: 0.5rem;
} }
@ -1274,11 +1282,14 @@ h4 {
font-family: "HarmonyOS_Sans_Regular" !important; font-family: "HarmonyOS_Sans_Regular" !important;
font-size: 0.85rem; font-size: 0.85rem;
margin-bottom: 2.5rem; margin-bottom: 2.5rem;
line-height: 1.76;
margin-bottom: 0 !important;
} }
.program-info .container p{ .program-info .container p{
max-width: 19rem; max-width: 19rem;
margin: 0 auto; margin: 0 auto !important;
line-height: 1.76;
} }
.program-info .container p>em{ .program-info .container p>em{
display: inline-block; display: inline-block;
@ -1296,7 +1307,7 @@ h4 {
.program-details .main-2-1 .des{ .program-details .main-2-1 .des{
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: flex-end; align-items: center;
} }
.program-details .main-2-1 .content1 .des .d-left{ .program-details .main-2-1 .content1 .des .d-left{
width: 42%; width: 42%;
@ -1326,7 +1337,8 @@ h4 {
} }
.program-details .main-2-1 .d-right{ .program-details .main-2-1 .d-right{
width: 40%; width: 32.25%;
margin-right: 7.25%;
} }
.program-details .main-2-1 .d-right img{ .program-details .main-2-1 .d-right img{
width: 100%; width: 100%;
@ -1359,7 +1371,7 @@ h4 {
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
width: calc(25% - 0.825rem) !important; width: calc(25% - 0.825rem) !important;
height: 16.7rem; height: 13.2rem;
background-color: #ffff1b; background-color: #ffff1b;
border-radius: 0.5rem; border-radius: 0.5rem;
margin-top: 1rem; margin-top: 1rem;

View File

@ -59,7 +59,7 @@
.see-banner .main-center { .see-banner .main-center {
max-width: 100%; max-width: 100%;
background-color: #18d777; background-color: #00db6d;
} }
.see-banner h1 { .see-banner h1 {

View File

@ -76,8 +76,13 @@
display: block; display: block;
} }
.index-banner{
overflow: hidden;
}
.index-banner .swiper-container .swiper-slide { .index-banner .swiper-container .swiper-slide {
background-color: #fff; background-color: #fff;
height: 39rem;
position: relative; position: relative;
} }
@ -88,6 +93,7 @@
.index-banner .swiper-container .swiper-slide>.imgg img{ .index-banner .swiper-container .swiper-slide>.imgg img{
width: 100%; width: 100%;
min-height: 100%;
} }
.index-banner-txt { .index-banner-txt {
@ -109,12 +115,14 @@
margin-bottom: 0 !important; margin-bottom: 0 !important;
color: #00db6d; color: #00db6d;
text-align: right; text-align: right;
letter-spacing: 0;
} }
.index-banner-txt em { .index-banner-txt em {
font-size: 3.6rem; font-size: 3.6rem;
line-height: 1; line-height: 1;
margin-bottom: 1.2rem; margin-bottom: 1.2rem;
letter-spacing: -0.05em;
} }
.index-banner-txt span{ .index-banner-txt span{
width: 100%; width: 100%;
@ -172,7 +180,7 @@
justify-content: center; justify-content: center;
align-items: center; align-items: center;
width: 100%; width: 100%;
height: 18rem; height: 14rem;
background-color: #03d068; background-color: #03d068;
} }
.index-banner-info .left{ .index-banner-info .left{
@ -614,7 +622,8 @@
} }
main .main-1{ main .main-1{
padding-bottom: 7.5rem; padding-top: 4.5rem;
padding-bottom: 5.2rem;
} }
main .main-1 .container { main .main-1 .container {
@ -679,14 +688,19 @@ main .main-1 .container .item .icon-more{
right: 0.9rem; right: 0.9rem;
z-index: 2; z-index: 2;
transform: translateY(-50%); transform: translateY(-50%);
transition: all .6s;
} }
main .main-1 .container .item .icon-more img{ main .main-1 .container .item .icon-more img{
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
main .main-1 .container .item:hover .icon-more{
right: 0.6rem;
opacity: 0.65;
}
main .main-1 .container .item .text { main .main-1 .container .item .text {
width: 7rem; width: calc(100% - 4.6rem);
position: absolute; position: absolute;
left: 2.3rem; left: 2.3rem;
bottom: 1.8rem; bottom: 1.8rem;
@ -731,21 +745,21 @@ main .main-1 .more-btn1{
} }
main .main-2 { main .main-2 {
padding: 4.5rem 0 0; padding: 3.9rem 0 0;
background-color: #dedede; background-color: #dedede;
} }
main .main-2 .main-center{ main .main-2 .main-center{
max-width: 100%; max-width: 100%;
padding-top: 0.75rem; padding-top: 0;
} }
main .main-2 .swiper-wrapper { main .main-2 .swiper-wrapper {
height: 32rem; height: 26rem;
} }
main .main-2 .container .item { main .main-2 .container .item {
display: flex; display: flex;
width: 100%; width: 100%;
height: 32rem; height: 26rem;
overflow: hidden; overflow: hidden;
} }
@ -826,7 +840,7 @@ main .main-2 .container .item .text {
} }
main .main-2 .container .item .text p:first-child { main .main-2 .container .item .text p:first-child {
margin-bottom: 4rem !important; margin-bottom: 2.5rem !important;
} }
main .main-2 .container .item .text em { main .main-2 .container .item .text em {
@ -873,7 +887,7 @@ main .main-3 {
justify-content: center; justify-content: center;
align-items: center; align-items: center;
width: 100%; width: 100%;
height: 20.5rem; padding: 3.1rem 0 3.8rem;
background-color: #00db6d; background-color: #00db6d;
} }
@ -884,12 +898,13 @@ main .main-3 .main-title{
main .main-3 h2 { main .main-3 h2 {
font-size: 1.9rem; font-size: 1.9rem;
color: #ffff1b; color: #ffff1b;
margin-bottom: 2rem; margin-bottom: 0.8rem;
text-align: left; text-align: left;
} }
main .main-3 p{ main .main-3 p{
display: block; display: block;
font-family: "HarmonyOS_Sans_Bold" !important;
max-width: 53rem; max-width: 53rem;
font-size: 0.85rem; font-size: 0.85rem;
line-height: 1.47; line-height: 1.47;
@ -904,7 +919,7 @@ main .main-3 more-btn1{
main .main-4{ main .main-4{
padding: 6.4rem 0 4.5rem; padding: 4.6rem 0 7rem;
} }
main .main-4 .main-center{ main .main-4 .main-center{

View File

@ -449,7 +449,7 @@
content: ""; content: "";
position: absolute; position: absolute;
top: 50%; top: 50%;
width: 4rem; width: 1.8rem;
border-bottom: 1px solid #ebebeb; border-bottom: 1px solid #ebebeb;
} }

View File

@ -63,7 +63,7 @@
.see-banner .main-center { .see-banner .main-center {
max-width: 100%; max-width: 100%;
background-color: #18d777; background-color: #00dced;
} }
.see-banner>img{ .see-banner>img{
@ -81,6 +81,7 @@
padding: 5.4rem 0; padding: 5.4rem 0;
text-align: center; text-align: center;
position: relative; position: relative;
color: #ffffff;
z-index: 2; z-index: 2;
} }
@ -93,7 +94,7 @@
top: 50%; top: 50%;
z-index: 0; z-index: 0;
transform: translate(-50%,-50%); transform: translate(-50%,-50%);
animation: bg_name 0.8s infinite; /* animation: bg_name 0.8s infinite; */
} }
.see-banner em>img{ .see-banner em>img{
width: 100%; width: 100%;
@ -185,7 +186,7 @@
.main-1 .main-center{ .main-1 .main-center{
max-width: 70.31%; max-width: 70.31%;
background-color: #18d777; background-color: #00dced;
padding: 3.6rem; padding: 3.6rem;
} }
@ -201,6 +202,7 @@
color: #ffffff; color: #ffffff;
} }
.main-1 .wrap p{ .main-1 .wrap p{
font-family: "HarmonyOS_Sans_Bold" !important;
font-size: 0.85rem; font-size: 0.85rem;
line-height: 1.8; line-height: 1.8;
margin-top: 1.5rem; margin-top: 1.5rem;

View File

@ -64,7 +64,7 @@
.see-banner .main-center { .see-banner .main-center {
max-width: 100%; max-width: 100%;
background-color: #18d777; background-color: #00db6d;
} }
.see-banner h1 { .see-banner h1 {
@ -187,19 +187,23 @@
} }
.see-container .main-1-1 .title{ .see-container .main-1-1 .title{
background-color: #00db6d; background-image: url(../images/who-bg-01.jpg);
background-size: cover;
padding: 1rem 5.5rem; padding: 1rem 5.5rem;
} }
.see-container .main-1-1 .title-2{ .see-container .main-1-1 .title-2{
background-image: url(../images/who-bg-02.jpg);
padding: 0.75rem 5.5rem; padding: 0.75rem 5.5rem;
} }
.see-container .main-1-1 .title h3{ .see-container .main-1-1 .title h3{
font-family: "HarmonyOS_Sans_Black" !important; font-family: "HarmonyOS_Sans_Black" !important;
font-size: 1.5rem; font-size: 1.5rem;
line-height: 1.5; line-height: 1.5;
color: #ffff1b;
margin: 0; margin: 0;
} }
.see-container .main-1-1 .title p{ .see-container .main-1-1 .title p{
color: #ffff1b;
font-size: 1.1rem; font-size: 1.1rem;
line-height: 1.2; line-height: 1.2;
} }
@ -245,11 +249,17 @@
} }
.see-container .main-1-1 .list-last .item{ .see-container .main-1-1 .list-last .item{
background-color: #00db6d; background-image: url(../images/who-bg-04.jpg);
background-size: cover;
} }
.see-container .main-1-1 .list-last .item:first-child{ .see-container .main-1-1 .list-last .item:first-child{
width: calc(66.66% - 0.25rem); width: calc(66.66% - 0.25rem);
padding-left: 5.5rem; padding-left: 5.5rem;
background-image: url(../images/who-bg-03.jpg);
}
.see-container .main-1-1 .list-last .item h4{
color: #ffff1b;
} }
.see-container .main-1-1 .list-last .item:first-child h4{ .see-container .main-1-1 .list-last .item:first-child h4{
@ -275,7 +285,9 @@
.see-container .main-1-2 .main-center{ .see-container .main-1-2 .main-center{
max-width: 100%; max-width: 100%;
} }
.see-container .main-1-2 .main-title{
margin-bottom: 3.75rem;
}
.student-programs-swiper .pagination{ .student-programs-swiper .pagination{

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.1 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.9 KiB

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 72 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 66 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB