From 9b032e4d917b3c3493788607310af3b6b2f38608 Mon Sep 17 00:00:00 2001 From: hotfusion Date: Wed, 23 Oct 2024 21:49:38 -0400 Subject: [PATCH] . --- src/view/hotfusion/src/assets/less/index.less | 42 +++++++- src/view/hotfusion/src/index.vue | 18 +++- src/view/hotfusion/src/pages/aboutus.vue | 9 +- src/view/hotfusion/src/pages/contactus.vue | 98 ++++++++++++++----- src/view/hotfusion/src/pages/home.vue | 10 +- src/view/hotfusion/src/pages/pricelist.vue | 12 ++- 6 files changed, 151 insertions(+), 38 deletions(-) diff --git a/src/view/hotfusion/src/assets/less/index.less b/src/view/hotfusion/src/assets/less/index.less index 7ab1f1d..96fa2ce 100644 --- a/src/view/hotfusion/src/assets/less/index.less +++ b/src/view/hotfusion/src/assets/less/index.less @@ -170,12 +170,41 @@ html { font-weight: bold; font-size: 15px; padding: 15px; - background-color: #f8f8f8 !important; + border-radius: 30px; + background-color: transparent !important; + border: solid 4px #fff; + color: #fff; + i,svg{ + font-size: 20px; + margin-right: 10px; + color: #fffdfa; + } + &.disabled{ + opacity: 0.2 !important; + } .container { - background-color: #f8f8f8 !important; + &.disabled { + opacity: 0.2 !important; + } + background-color: transparent !important; span { font-size: 15px; + color: #fff; + } + } + } + } + .contactus { + .splitpanes__pane{ + overflow: visible; + button{ + border: none; + &[disabled] { + opacity: 0.2 !important; + background-color: #121418 !important } + background-color: #1bb261 !important; + color: #fff; } } } @@ -189,4 +218,13 @@ html { width: 0; } } + .paragraph{ + .icon { + margin-bottom: 10px !important; + height: 100px !important; + i,svg { + font-size: 90px !important; + } + } + } } \ No newline at end of file diff --git a/src/view/hotfusion/src/index.vue b/src/view/hotfusion/src/index.vue index b0d1d04..c9bad25 100644 --- a/src/view/hotfusion/src/index.vue +++ b/src/view/hotfusion/src/index.vue @@ -15,8 +15,12 @@ export default { Scrollbar, A11y ], + swiper : false }), methods : { + onSwiper(e){ + this.swiper = e; + }, onSlideChange(e){ this.activeIndex = e.activeIndex; setTimeout(() => { @@ -46,6 +50,10 @@ export default { } }) }) + }, + goTo(e){ + if(e === 'contactus') + this.swiper.slideTo(4); } }, mounted() { @@ -57,18 +65,18 @@ export default {