|
@@ -1,7 +1,9 @@
|
|
|
<template>
|
|
<template>
|
|
|
<div class="home">
|
|
<div class="home">
|
|
|
<div class="main">
|
|
<div class="main">
|
|
|
- <div class="myTitle">{{ myTitle }}</div>
|
|
|
|
|
|
|
+ <div class="logo"><img :src="require('@/assets/images/logo.png')" alt="" draggable="false" /></div>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- <div class="myTitle">{{ myTitle }}</div> -->
|
|
|
<div class="mainCon" v-show="!oneTxt">
|
|
<div class="mainCon" v-show="!oneTxt">
|
|
|
<audio id="myAudio" v-if="audio" v-show="isOneAduio" :src="urlToFitFu(audio)" controls></audio>
|
|
<audio id="myAudio" v-if="audio" v-show="isOneAduio" :src="urlToFitFu(audio)" controls></audio>
|
|
|
<!-- 如果只有一个模块 -->
|
|
<!-- 如果只有一个模块 -->
|
|
@@ -18,8 +20,7 @@
|
|
|
|
|
|
|
|
<div class="contenBoxMain swiper-container">
|
|
<div class="contenBoxMain swiper-container">
|
|
|
<div class="swiper-wrapper">
|
|
<div class="swiper-wrapper">
|
|
|
- <div class="contenBox swiper-slide" v-for="(item, index) in data[myType]"
|
|
|
|
|
- :key="myType === 'video' ? item.url : item">
|
|
|
|
|
|
|
+ <div class="contenBox swiper-slide" v-for="(item, index) in data[myType]" :key="myType === 'video' ? item.url : item">
|
|
|
<!-- 模型页面 -->
|
|
<!-- 模型页面 -->
|
|
|
<div class="modelBox" v-if="myType === 'model'">
|
|
<div class="modelBox" v-if="myType === 'model'">
|
|
|
<iframe :src="urlToFitFu(item)" frameborder="0" v-if="index === myInd"></iframe>
|
|
<iframe :src="urlToFitFu(item)" frameborder="0" v-if="index === myInd"></iframe>
|
|
@@ -38,11 +39,8 @@
|
|
|
</div>
|
|
</div>
|
|
|
<!-- 左右箭头 -->
|
|
<!-- 左右箭头 -->
|
|
|
<template v-if="!isMobile">
|
|
<template v-if="!isMobile">
|
|
|
- <div @click="cutMyInd(-1, myInd === 0)" class="leftJJ awccJJ" :class="{ noClick: myInd === 0 }"
|
|
|
|
|
- v-if="data[myType] && data[myType].length > 1"></div>
|
|
|
|
|
- <div @click="cutMyInd(1, myInd === data[myType].length - 1)" class="rightJJ awccJJ"
|
|
|
|
|
- :class="{ noClick: myInd === data[myType].length - 1 }" v-if="data[myType] && data[myType].length > 1">
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ <div @click="cutMyInd(-1, myInd === 0)" class="leftJJ awccJJ" :class="{ noClick: myInd === 0 }" v-if="data[myType] && data[myType].length > 1"></div>
|
|
|
|
|
+ <div @click="cutMyInd(1, myInd === data[myType].length - 1)" class="rightJJ awccJJ" :class="{ noClick: myInd === data[myType].length - 1 }" v-if="data[myType] && data[myType].length > 1"></div>
|
|
|
</template>
|
|
</template>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
@@ -52,12 +50,10 @@
|
|
|
<!-- 下面的文字介绍 -->
|
|
<!-- 下面的文字介绍 -->
|
|
|
<div class="flooTxt" :class="{ flooTxtOne: oneTxt }">
|
|
<div class="flooTxt" :class="{ flooTxtOne: oneTxt }">
|
|
|
<div class="flooTxtBox">
|
|
<div class="flooTxtBox">
|
|
|
- <!-- <div class="myTitle">{{ myTitle }}</div> -->
|
|
|
|
|
|
|
+ <div class="myTitle">{{ myTitle }}</div>
|
|
|
<!-- 视频的介绍 -->
|
|
<!-- 视频的介绍 -->
|
|
|
- <div class="myTxt" v-if="myType === 'video' && videoTxt[myInd]" v-html="videoTxt[myInd]">
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="myTxt" v-if="myType === 'img' && imgTxt[myInd]" v-html="imgTxt[myInd]">
|
|
|
|
|
- </div>
|
|
|
|
|
|
|
+ <div class="myTxt" v-if="myType === 'video' && videoTxt[myInd]" v-html="videoTxt[myInd]"></div>
|
|
|
|
|
+ <div class="myTxt" v-if="myType === 'img' && imgTxt[myInd]" v-html="imgTxt[myInd]"></div>
|
|
|
<div class="myTxt" v-html="myTxt"></div>
|
|
<div class="myTxt" v-html="myTxt"></div>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
@@ -69,19 +65,11 @@
|
|
|
|
|
|
|
|
<!-- 底部的tab -->
|
|
<!-- 底部的tab -->
|
|
|
<div class="flooTabBox" v-if="flooTab.length > 1">
|
|
<div class="flooTabBox" v-if="flooTab.length > 1">
|
|
|
- <div @click="myType = item.type" class="tabRow" :class="{ tabRowAc: myType === item.type }"
|
|
|
|
|
- v-for="item in flooTab" :key="item.id">
|
|
|
|
|
- <img :src="require(`@/assets/images/pc/icon${item.id}${myType === item.type ? 'Ac' : ''
|
|
|
|
|
- }.png`)
|
|
|
|
|
- " alt="" />
|
|
|
|
|
|
|
+ <div @click="myType = item.type" class="tabRow" :class="{ tabRowAc: myType === item.type }" v-for="item in flooTab" :key="item.id">
|
|
|
|
|
+ <img :src="require(`@/assets/images/pc/icon${item.id}${myType === item.type ? 'Ac' : ''}.png`)" alt="" />
|
|
|
<div>
|
|
<div>
|
|
|
{{ item.name }}
|
|
{{ item.name }}
|
|
|
- <span v-if="
|
|
|
|
|
- data[item.type] &&
|
|
|
|
|
- data[item.type].length &&
|
|
|
|
|
- data[item.type].length > 1
|
|
|
|
|
- ">{{ item.type === myType ? myInd + 1 + "/" : null
|
|
|
|
|
- }}{{ data[item.type].length }}</span>
|
|
|
|
|
|
|
+ <span v-if="data[item.type] && data[item.type].length && data[item.type].length > 1">{{ item.type === myType ? myInd + 1 + "/" : null }}{{ data[item.type].length }}</span>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
<!-- 音频图标 -->
|
|
<!-- 音频图标 -->
|
|
@@ -94,13 +82,12 @@
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
-import Swiper from "swiper"
|
|
|
|
|
-import "swiper/css/swiper.min.css"
|
|
|
|
|
|
|
+import Swiper from "swiper";
|
|
|
|
|
+import "swiper/css/swiper.min.css";
|
|
|
|
|
|
|
|
export default {
|
|
export default {
|
|
|
name: "Home",
|
|
name: "Home",
|
|
|
- components: {
|
|
|
|
|
- },
|
|
|
|
|
|
|
+ components: {},
|
|
|
data() {
|
|
data() {
|
|
|
return {
|
|
return {
|
|
|
isMobile: /iPhone|iPad|iPod|Android/i.test(navigator.userAgent),
|
|
isMobile: /iPhone|iPad|iPod|Android/i.test(navigator.userAgent),
|
|
@@ -143,29 +130,29 @@ export default {
|
|
|
|
|
|
|
|
// 只有标题和文字(没有视频,没有模型,没有图片)
|
|
// 只有标题和文字(没有视频,没有模型,没有图片)
|
|
|
oneTxt: false,
|
|
oneTxt: false,
|
|
|
- }
|
|
|
|
|
|
|
+ };
|
|
|
},
|
|
},
|
|
|
watch: {
|
|
watch: {
|
|
|
myType() {
|
|
myType() {
|
|
|
- this.myInd = 0
|
|
|
|
|
|
|
+ this.myInd = 0;
|
|
|
},
|
|
},
|
|
|
// 音频的开启和关闭
|
|
// 音频的开启和关闭
|
|
|
audioSta(val) {
|
|
audioSta(val) {
|
|
|
- const dom = document.querySelector("#myAudio")
|
|
|
|
|
|
|
+ const dom = document.querySelector("#myAudio");
|
|
|
if (val) {
|
|
if (val) {
|
|
|
- dom.play()
|
|
|
|
|
|
|
+ dom.play();
|
|
|
dom.onended = () => {
|
|
dom.onended = () => {
|
|
|
// console.log("----音频播放完毕");
|
|
// console.log("----音频播放完毕");
|
|
|
- this.audioSta = false
|
|
|
|
|
- }
|
|
|
|
|
- } else dom.pause()
|
|
|
|
|
|
|
+ this.audioSta = false;
|
|
|
|
|
+ };
|
|
|
|
|
+ } else dom.pause();
|
|
|
},
|
|
},
|
|
|
},
|
|
},
|
|
|
computed: {},
|
|
computed: {},
|
|
|
methods: {
|
|
methods: {
|
|
|
// 本地化 url 适配
|
|
// 本地化 url 适配
|
|
|
urlToFitFu(url) {
|
|
urlToFitFu(url) {
|
|
|
- return url
|
|
|
|
|
|
|
+ return url;
|
|
|
// const resUrl = url;
|
|
// const resUrl = url;
|
|
|
// if (url.includes("https://super.4dage.com")) {
|
|
// if (url.includes("https://super.4dage.com")) {
|
|
|
// return url.replace("https://super.4dage.com", "");
|
|
// return url.replace("https://super.4dage.com", "");
|
|
@@ -176,22 +163,22 @@ export default {
|
|
|
|
|
|
|
|
// 点击左右箭头
|
|
// 点击左右箭头
|
|
|
cutMyInd(num) {
|
|
cutMyInd(num) {
|
|
|
- console.log(num, this.swiper)
|
|
|
|
|
- if (!this.swiper) return
|
|
|
|
|
|
|
+ console.log(num, this.swiper);
|
|
|
|
|
+ if (!this.swiper) return;
|
|
|
if (num > 0) {
|
|
if (num > 0) {
|
|
|
- this.swiper.slideNext()
|
|
|
|
|
|
|
+ this.swiper.slideNext();
|
|
|
} else {
|
|
} else {
|
|
|
- this.swiper.slidePrev()
|
|
|
|
|
|
|
+ this.swiper.slidePrev();
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
// 点击查看大图
|
|
// 点击查看大图
|
|
|
lookImg(url) {
|
|
lookImg(url) {
|
|
|
// console.log(url)
|
|
// console.log(url)
|
|
|
- let dom = this.$refs.viewer.$viewer
|
|
|
|
|
- this.lookPics = [url]
|
|
|
|
|
|
|
+ let dom = this.$refs.viewer.$viewer;
|
|
|
|
|
+ this.lookPics = [url];
|
|
|
// console.log(Object.keys(dom))
|
|
// console.log(Object.keys(dom))
|
|
|
- dom.options.toolbar = false
|
|
|
|
|
- dom.show()
|
|
|
|
|
|
|
+ dom.options.toolbar = false;
|
|
|
|
|
+ dom.show();
|
|
|
},
|
|
},
|
|
|
async getData() {
|
|
async getData() {
|
|
|
// https://www.4dmodel.com/
|
|
// https://www.4dmodel.com/
|
|
@@ -202,83 +189,76 @@ export default {
|
|
|
// let url = `/data/${
|
|
// let url = `/data/${
|
|
|
//本地化部署
|
|
//本地化部署
|
|
|
this.id
|
|
this.id
|
|
|
- }/hot/js/data.js?time=${Math.random()}`
|
|
|
|
|
- let result = (await this.$http.get(url)).data
|
|
|
|
|
- const resData = result[this.m]
|
|
|
|
|
|
|
+ }/hot/js/data.js?time=${Math.random()}`;
|
|
|
|
|
+ let result = (await this.$http.get(url)).data;
|
|
|
|
|
+ const resData = result[this.m];
|
|
|
// console.log("----", resData);
|
|
// console.log("----", resData);
|
|
|
if (resData) {
|
|
if (resData) {
|
|
|
- this.audio = resData.backgroundMusic
|
|
|
|
|
|
|
+ this.audio = resData.backgroundMusic;
|
|
|
// 只有单独的音频上传
|
|
// 只有单独的音频上传
|
|
|
- if (
|
|
|
|
|
- resData.backgroundMusic &&
|
|
|
|
|
- !resData.model &&
|
|
|
|
|
- !resData.video &&
|
|
|
|
|
- !resData.images
|
|
|
|
|
- ) {
|
|
|
|
|
- this.isOneAduio = true
|
|
|
|
|
|
|
+ if (resData.backgroundMusic && !resData.model && !resData.video && !resData.images) {
|
|
|
|
|
+ this.isOneAduio = true;
|
|
|
}
|
|
}
|
|
|
// 底部的tab
|
|
// 底部的tab
|
|
|
- const arr = []
|
|
|
|
|
- const obj = {}
|
|
|
|
|
|
|
+ const arr = [];
|
|
|
|
|
+ const obj = {};
|
|
|
if (resData.model) {
|
|
if (resData.model) {
|
|
|
- obj.model = resData.model
|
|
|
|
|
- arr.push({ id: 1, type: "model", name: "模型" })
|
|
|
|
|
|
|
+ obj.model = resData.model;
|
|
|
|
|
+ arr.push({ id: 1, type: "model", name: "模型" });
|
|
|
}
|
|
}
|
|
|
if (resData.video) {
|
|
if (resData.video) {
|
|
|
- obj.video = resData.video
|
|
|
|
|
- arr.push({ id: 2, type: "video", name: "视频" })
|
|
|
|
|
|
|
+ obj.video = resData.video;
|
|
|
|
|
+ arr.push({ id: 2, type: "video", name: "视频" });
|
|
|
}
|
|
}
|
|
|
if (resData.images) {
|
|
if (resData.images) {
|
|
|
- obj.img = resData.images
|
|
|
|
|
- arr.push({ id: 3, type: "img", name: "图片" })
|
|
|
|
|
|
|
+ obj.img = resData.images;
|
|
|
|
|
+ arr.push({ id: 3, type: "img", name: "图片" });
|
|
|
}
|
|
}
|
|
|
- this.flooTab = arr
|
|
|
|
|
- this.data = obj
|
|
|
|
|
|
|
+ this.flooTab = arr;
|
|
|
|
|
+ this.data = obj;
|
|
|
|
|
|
|
|
// 当前type的值 应该为
|
|
// 当前type的值 应该为
|
|
|
- if (resData.model) this.myType = "model"
|
|
|
|
|
- else if (resData.video) this.myType = "video"
|
|
|
|
|
- else if (resData.images) this.myType = "img"
|
|
|
|
|
|
|
+ if (resData.model) this.myType = "model";
|
|
|
|
|
+ else if (resData.video) this.myType = "video";
|
|
|
|
|
+ else if (resData.images) this.myType = "img";
|
|
|
|
|
|
|
|
- this.myTitle = resData.title || ""
|
|
|
|
|
- this.myTxt = resData.content || ""
|
|
|
|
|
- this.videoTxt = resData.videosDesc || []
|
|
|
|
|
- this.imgTxt = resData.imagesDesc || []
|
|
|
|
|
|
|
+ this.myTitle = resData.title || "";
|
|
|
|
|
+ this.myTxt = resData.content || "";
|
|
|
|
|
+ this.videoTxt = resData.videosDesc || [];
|
|
|
|
|
+ this.imgTxt = resData.imagesDesc || [];
|
|
|
|
|
|
|
|
// 只有 标题和 文字介绍(没有视频,没有模型,没有图片)
|
|
// 只有 标题和 文字介绍(没有视频,没有模型,没有图片)
|
|
|
if (!obj.model && !obj.video && !obj.img && !resData.backgroundMusic) {
|
|
if (!obj.model && !obj.video && !obj.img && !resData.backgroundMusic) {
|
|
|
- this.oneTxt = true
|
|
|
|
|
|
|
+ this.oneTxt = true;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
this.$nextTick(() => {
|
|
this.$nextTick(() => {
|
|
|
- const _this = this
|
|
|
|
|
- this.swiper = new Swiper('.contenBoxMain', {
|
|
|
|
|
|
|
+ const _this = this;
|
|
|
|
|
+ this.swiper = new Swiper(".contenBoxMain", {
|
|
|
on: {
|
|
on: {
|
|
|
slideChange() {
|
|
slideChange() {
|
|
|
- _this.myInd = this.activeIndex
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ _this.myInd = this.activeIndex;
|
|
|
|
|
+ },
|
|
|
},
|
|
},
|
|
|
pagination: {
|
|
pagination: {
|
|
|
- el: '.swiper-pagination',
|
|
|
|
|
- }
|
|
|
|
|
- })
|
|
|
|
|
- })
|
|
|
|
|
|
|
+ el: ".swiper-pagination",
|
|
|
|
|
+ },
|
|
|
|
|
+ });
|
|
|
|
|
+ });
|
|
|
}
|
|
}
|
|
|
},
|
|
},
|
|
|
},
|
|
},
|
|
|
mounted() {
|
|
mounted() {
|
|
|
- this.getData()
|
|
|
|
|
|
|
+ this.getData();
|
|
|
},
|
|
},
|
|
|
-}
|
|
|
|
|
|
|
+};
|
|
|
</script>
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
<style lang="less" scoped>
|
|
|
.home {
|
|
.home {
|
|
|
- background: url("../assets/images/pc/hot_bg.png") no-repeat center center;
|
|
|
|
|
- background-color: rgba(transparent, 0.8);
|
|
|
|
|
|
|
+ background-color: rgba(rgba(248, 242, 232, 0.8));
|
|
|
background-size: 100% 100%;
|
|
background-size: 100% 100%;
|
|
|
- border-radius: 10px;
|
|
|
|
|
- color: rgba(80, 61, 42, 0.9);
|
|
|
|
|
|
|
+ color: #9d0800;
|
|
|
.swiper-pagination {
|
|
.swiper-pagination {
|
|
|
margin: 10px 0 0;
|
|
margin: 10px 0 0;
|
|
|
position: relative;
|
|
position: relative;
|
|
@@ -288,7 +268,7 @@ export default {
|
|
|
gap: 6px;
|
|
gap: 6px;
|
|
|
width: 100%;
|
|
width: 100%;
|
|
|
|
|
|
|
|
- :deep(.swiper-pagination-bullet) {
|
|
|
|
|
|
|
+ ::v-deep .swiper-pagination-bullet {
|
|
|
width: 24px;
|
|
width: 24px;
|
|
|
height: 4px;
|
|
height: 4px;
|
|
|
border-radius: 2px;
|
|
border-radius: 2px;
|
|
@@ -296,7 +276,7 @@ export default {
|
|
|
opacity: 1;
|
|
opacity: 1;
|
|
|
|
|
|
|
|
&.swiper-pagination-bullet-active {
|
|
&.swiper-pagination-bullet-active {
|
|
|
- background: #603C23;
|
|
|
|
|
|
|
+ background: #603c23;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
@@ -327,14 +307,18 @@ export default {
|
|
|
font-size: 22px;
|
|
font-size: 22px;
|
|
|
font-weight: 700;
|
|
font-weight: 700;
|
|
|
margin-bottom: 20px;
|
|
margin-bottom: 20px;
|
|
|
- text-align: center;
|
|
|
|
|
|
|
+ }
|
|
|
|
|
+ .logo {
|
|
|
|
|
+ position: fixed;
|
|
|
|
|
+ top: 30px;
|
|
|
|
|
+ left: 30px;
|
|
|
}
|
|
}
|
|
|
.mainCon {
|
|
.mainCon {
|
|
|
position: relative;
|
|
position: relative;
|
|
|
border-radius: 6px;
|
|
border-radius: 6px;
|
|
|
overflow: hidden;
|
|
overflow: hidden;
|
|
|
width: 100%;
|
|
width: 100%;
|
|
|
- height: calc(100% - 200px);
|
|
|
|
|
|
|
+ height: calc(100% - 320px);
|
|
|
.oneTabNum {
|
|
.oneTabNum {
|
|
|
z-index: 10;
|
|
z-index: 10;
|
|
|
position: absolute;
|
|
position: absolute;
|
|
@@ -363,14 +347,14 @@ export default {
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
.videoBox {
|
|
.videoBox {
|
|
|
- padding: 0px 50px;
|
|
|
|
|
|
|
+ padding: 0px 350px;
|
|
|
video {
|
|
video {
|
|
|
width: 100%;
|
|
width: 100%;
|
|
|
height: 100%;
|
|
height: 100%;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
.imgBox {
|
|
.imgBox {
|
|
|
- padding: 0px 50px;
|
|
|
|
|
|
|
+ padding: 0px 350px;
|
|
|
.smImgBox {
|
|
.smImgBox {
|
|
|
width: 100%;
|
|
width: 100%;
|
|
|
height: 100%;
|
|
height: 100%;
|
|
@@ -388,9 +372,9 @@ export default {
|
|
|
position: absolute;
|
|
position: absolute;
|
|
|
top: 50%;
|
|
top: 50%;
|
|
|
transform: translateY(-50%);
|
|
transform: translateY(-50%);
|
|
|
- left: 30px;
|
|
|
|
|
- width: 16px;
|
|
|
|
|
- height: 30px;
|
|
|
|
|
|
|
+ left: 16%;
|
|
|
|
|
+ width: 40px;
|
|
|
|
|
+ height: 40px;
|
|
|
background-image: url("../assets/images/pc/left.png");
|
|
background-image: url("../assets/images/pc/left.png");
|
|
|
background-size: 100% 100%;
|
|
background-size: 100% 100%;
|
|
|
z-index: 1;
|
|
z-index: 1;
|
|
@@ -400,7 +384,7 @@ export default {
|
|
|
}
|
|
}
|
|
|
.rightJJ {
|
|
.rightJJ {
|
|
|
left: auto;
|
|
left: auto;
|
|
|
- right: 30px;
|
|
|
|
|
|
|
+ right: 16%;
|
|
|
background-image: url("../assets/images/pc/right.png");
|
|
background-image: url("../assets/images/pc/right.png");
|
|
|
}
|
|
}
|
|
|
.noClick {
|
|
.noClick {
|
|
@@ -486,13 +470,12 @@ export default {
|
|
|
// 移动端
|
|
// 移动端
|
|
|
@media screen and (max-width: 1000px) {
|
|
@media screen and (max-width: 1000px) {
|
|
|
.home {
|
|
.home {
|
|
|
- background: url("../assets/images/pc/hot_bg_M.png") no-repeat center center;
|
|
|
|
|
- background-size: cover !important;
|
|
|
|
|
|
|
+ background-color: rgba(rgba(248, 242, 232, 0.9));
|
|
|
.swiper-pagination {
|
|
.swiper-pagination {
|
|
|
margin: 10px 0 0;
|
|
margin: 10px 0 0;
|
|
|
gap: 4px;
|
|
gap: 4px;
|
|
|
|
|
|
|
|
- :deep(.swiper-pagination-bullet) {
|
|
|
|
|
|
|
+ ::v-deep .swiper-pagination-bullet {
|
|
|
width: 15px;
|
|
width: 15px;
|
|
|
height: 3px;
|
|
height: 3px;
|
|
|
}
|
|
}
|
|
@@ -506,12 +489,17 @@ export default {
|
|
|
height: 100%;
|
|
height: 100%;
|
|
|
padding: 0;
|
|
padding: 0;
|
|
|
position: absolute;
|
|
position: absolute;
|
|
|
|
|
+ justify-content: end;
|
|
|
.myTitle {
|
|
.myTitle {
|
|
|
font-size: 16px;
|
|
font-size: 16px;
|
|
|
}
|
|
}
|
|
|
|
|
+ .logo {
|
|
|
|
|
+ display: none;
|
|
|
|
|
+ }
|
|
|
.mainCon {
|
|
.mainCon {
|
|
|
border-radius: 0;
|
|
border-radius: 0;
|
|
|
height: calc(100% - 195px);
|
|
height: calc(100% - 195px);
|
|
|
|
|
+ margin: 92px 0 20px;
|
|
|
.contenBox {
|
|
.contenBox {
|
|
|
.videoBox {
|
|
.videoBox {
|
|
|
padding: 0 30px;
|
|
padding: 0 30px;
|
|
@@ -551,11 +539,20 @@ export default {
|
|
|
margin-top: -5px;
|
|
margin-top: -5px;
|
|
|
width: 100%;
|
|
width: 100%;
|
|
|
padding: 10px 15px 0px 15px;
|
|
padding: 10px 15px 0px 15px;
|
|
|
- max-height: 98px;
|
|
|
|
|
-
|
|
|
|
|
|
|
+ max-height: 200px;
|
|
|
|
|
+ padding-bottom: 20px;
|
|
|
|
|
+ background: url("../assets/images/textBg.png") no-repeat;
|
|
|
|
|
+ background-size: 100% 100%;
|
|
|
|
|
+ border-radius: 30px 30px 0 0;
|
|
|
.flooTxtBox {
|
|
.flooTxtBox {
|
|
|
padding: 0;
|
|
padding: 0;
|
|
|
|
|
+ height: 92%;
|
|
|
|
|
+ margin-top: 20px;
|
|
|
|
|
+ .myTitle {
|
|
|
|
|
+ color: #e1bd83;
|
|
|
|
|
+ }
|
|
|
.myTxt {
|
|
.myTxt {
|
|
|
|
|
+ color: #fff;
|
|
|
font-size: 14px;
|
|
font-size: 14px;
|
|
|
line-height: 22px;
|
|
line-height: 22px;
|
|
|
}
|
|
}
|