|
@@ -2,12 +2,31 @@
|
|
|
<div class="home">
|
|
<div class="home">
|
|
|
<div class="main">
|
|
<div class="main">
|
|
|
<!-- 底部的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">
|
|
<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.type}.png`)" alt="" />
|
|
<img :src="require(`@/assets/images/pc/icon_${item.type}.png`)" alt="" />
|
|
|
{{ 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 class="flooTxt" :class="{ flooTxtOne: oneTxt, hideText: hideText }">
|
|
|
|
|
+ <!-- <div class="close-btn" @click="hideText = !hideText"><span v-if="hideText">展开</span><span v-else>收起</span></div> -->
|
|
|
|
|
+ <div class="num" v-if="flooTab.length === 1 && data[myType] && data[myType].length && data[myType].length > 1">{{ myInd + 1 }} / {{ data[myType].length }}</div>
|
|
|
|
|
+ <div class="flooTxtBox">
|
|
|
|
|
+ <div class="myTitle">{{ myTitle }}</div>
|
|
|
|
|
+ <!-- <div class="line"></div> -->
|
|
|
|
|
+ <!-- 视频的介绍 -->
|
|
|
|
|
+ <div class="myTxt" v-if="myType === 'video' && videoTxt[myInd]">
|
|
|
|
|
+ {{ videoTxt[myInd] }}
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="myTxt" v-if="myType === 'img' && imgTxt[myInd]">
|
|
|
|
|
+ {{ imgTxt[myInd] }}
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="myTxt" v-html="myTxt"></div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="pic"></div>
|
|
|
</div>
|
|
</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>
|
|
@@ -17,7 +36,7 @@
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<!-- 如果只有一个模块 -->
|
|
<!-- 如果只有一个模块 -->
|
|
|
- <div class="oneTabNum" v-if="flooTab.length === 1 && data[myType] && data[myType].length && data[myType].length > 1">{{ myInd + 1 }} / {{ data[myType].length }}</div>
|
|
|
|
|
|
|
+ <!-- <div class="oneTabNum" v-if="flooTab.length === 1 && data[myType] && data[myType].length && data[myType].length > 1">{{ myInd + 1 }} / {{ data[myType].length }}</div> -->
|
|
|
|
|
|
|
|
<!-- 主要内容 -->
|
|
<!-- 主要内容 -->
|
|
|
|
|
|
|
@@ -48,25 +67,6 @@
|
|
|
></div>
|
|
></div>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|
|
|
-
|
|
|
|
|
- <!-- 下面的文字介绍 -->
|
|
|
|
|
-
|
|
|
|
|
- <div class="flooTxt" :class="{ flooTxtOne: oneTxt, hideText: hideText }">
|
|
|
|
|
- <div class="close-btn" @click="hideText = !hideText"><span v-if="hideText">展开</span><span v-else>收起</span></div>
|
|
|
|
|
- <div class="flooTxtBox">
|
|
|
|
|
- <div class="myTitle">{{ myTitle }}</div>
|
|
|
|
|
- <div class="line"></div>
|
|
|
|
|
- <!-- 视频的介绍 -->
|
|
|
|
|
- <div class="myTxt" v-if="myType === 'video' && videoTxt[myInd]">
|
|
|
|
|
- {{ videoTxt[myInd] }}
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="myTxt" v-if="myType === 'img' && imgTxt[myInd]">
|
|
|
|
|
- {{ imgTxt[myInd] }}
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="myTxt" v-html="myTxt"></div>
|
|
|
|
|
- </div>
|
|
|
|
|
- <div class="pic"></div>
|
|
|
|
|
- </div>
|
|
|
|
|
</div>
|
|
</div>
|
|
|
<!-- 查看图片 -->
|
|
<!-- 查看图片 -->
|
|
|
<viewer class="viewerCla" ref="viewer" :images="lookPics">
|
|
<viewer class="viewerCla" ref="viewer" :images="lookPics">
|
|
@@ -76,6 +76,7 @@
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
|
|
+// 图片懒加载
|
|
|
export default {
|
|
export default {
|
|
|
name: "Home",
|
|
name: "Home",
|
|
|
data() {
|
|
data() {
|
|
@@ -120,9 +121,20 @@ export default {
|
|
|
|
|
|
|
|
// 只有标题和文字(没有视频,没有模型,没有图片)
|
|
// 只有标题和文字(没有视频,没有模型,没有图片)
|
|
|
oneTxt: false,
|
|
oneTxt: false,
|
|
|
|
|
+ isShow: false,
|
|
|
|
|
+ dom: null,
|
|
|
};
|
|
};
|
|
|
},
|
|
},
|
|
|
watch: {
|
|
watch: {
|
|
|
|
|
+ "dom.isShown"(val) {
|
|
|
|
|
+ if (val) {
|
|
|
|
|
+ let closepop = window.parent.document.getElementById("closepop");
|
|
|
|
|
+ closepop.style.display = "none";
|
|
|
|
|
+ } else {
|
|
|
|
|
+ let closepop = window.parent.document.getElementById("closepop");
|
|
|
|
|
+ closepop.style.display = "block";
|
|
|
|
|
+ }
|
|
|
|
|
+ },
|
|
|
myType() {
|
|
myType() {
|
|
|
this.myInd = 0;
|
|
this.myInd = 0;
|
|
|
},
|
|
},
|
|
@@ -159,9 +171,27 @@ export default {
|
|
|
},
|
|
},
|
|
|
// 点击查看大图
|
|
// 点击查看大图
|
|
|
lookImg(url) {
|
|
lookImg(url) {
|
|
|
- let dom = this.$refs.viewer.$viewer;
|
|
|
|
|
- this.lookPics = [url];
|
|
|
|
|
- dom.show();
|
|
|
|
|
|
|
+ if (!this.dom) {
|
|
|
|
|
+ this.dom = this.$refs.viewer.$viewer;
|
|
|
|
|
+ this.lookPics = [url];
|
|
|
|
|
+ }
|
|
|
|
|
+ this.dom.show();
|
|
|
|
|
+
|
|
|
|
|
+ // setTimeout(() => {
|
|
|
|
|
+ // this.$refs.viewer.on("show", () => {
|
|
|
|
|
+ // console.error("show");
|
|
|
|
|
+ // });
|
|
|
|
|
+ // }, 1000);
|
|
|
|
|
+ // console.error(window.parent.getElementById("closepop"));
|
|
|
|
|
+
|
|
|
|
|
+ // this.$refs.viewer.$viewer.addEventListener('hide',()=>{
|
|
|
|
|
+
|
|
|
|
|
+ // console.error('hide')
|
|
|
|
|
+ // })
|
|
|
|
|
+ // try {
|
|
|
|
|
+ // let closepop = window.parent.getElementById("closepop");
|
|
|
|
|
+ // closepop.style.display = "none";
|
|
|
|
|
+ // } catch (err) {}
|
|
|
},
|
|
},
|
|
|
async getData() {
|
|
async getData() {
|
|
|
// https://www.4dmodel.com/
|
|
// https://www.4dmodel.com/
|
|
@@ -232,7 +262,7 @@ export default {
|
|
|
height: 100%;
|
|
height: 100%;
|
|
|
// background-color: rgba(255, 252, 247, 0.6);
|
|
// background-color: rgba(255, 252, 247, 0.6);
|
|
|
// backdrop-filter: blur(10px);
|
|
// backdrop-filter: blur(10px);
|
|
|
- background: linear-gradient(180deg, rgba(14, 13, 10, 0.6) 0%, rgba(44, 42, 36, 0.6) 100%);
|
|
|
|
|
|
|
+ background: rgba(0, 0, 0, 0.7);
|
|
|
backdrop-filter: blur(12.5px);
|
|
backdrop-filter: blur(12.5px);
|
|
|
position: relative;
|
|
position: relative;
|
|
|
#myAudio {
|
|
#myAudio {
|
|
@@ -245,10 +275,14 @@ export default {
|
|
|
height: 60px;
|
|
height: 60px;
|
|
|
}
|
|
}
|
|
|
.main {
|
|
.main {
|
|
|
- width: 1200px;
|
|
|
|
|
|
|
+ width: 100%;
|
|
|
margin: 0 auto;
|
|
margin: 0 auto;
|
|
|
height: 100%;
|
|
height: 100%;
|
|
|
- padding-top: 40px;
|
|
|
|
|
|
|
+ // padding-top: 40px;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ justify-content: flex-start;
|
|
|
|
|
+ flex-direction: row;
|
|
|
.flooTabBox {
|
|
.flooTabBox {
|
|
|
z-index: 10;
|
|
z-index: 10;
|
|
|
position: absolute;
|
|
position: absolute;
|
|
@@ -288,14 +322,23 @@ export default {
|
|
|
// width: 100%;
|
|
// width: 100%;
|
|
|
// height: calc(100% - 200px);
|
|
// height: calc(100% - 200px);
|
|
|
|
|
|
|
|
- position: absolute;
|
|
|
|
|
|
|
+ // position: absolute;
|
|
|
border-radius: 6px;
|
|
border-radius: 6px;
|
|
|
overflow: hidden;
|
|
overflow: hidden;
|
|
|
- width: 100%;
|
|
|
|
|
|
|
+ width: 50%;
|
|
|
|
|
+ // width: 100%;
|
|
|
height: calc(100% - 200px);
|
|
height: calc(100% - 200px);
|
|
|
- left: 50%;
|
|
|
|
|
- top: 50%;
|
|
|
|
|
- transform: translate(-50%, -50%);
|
|
|
|
|
|
|
+ // left: 50%;
|
|
|
|
|
+ // top: 50%;
|
|
|
|
|
+ // transform: translate(-50%, -50%);
|
|
|
|
|
+ &::before {
|
|
|
|
|
+ content: "";
|
|
|
|
|
+ width: 35px;
|
|
|
|
|
+ height: 768px;
|
|
|
|
|
+ background: url(../assets/images/pc/Vector1.png) no-repeat;
|
|
|
|
|
+ background-size: 100% 100%;
|
|
|
|
|
+ position: absolute;
|
|
|
|
|
+ }
|
|
|
.audioIcon {
|
|
.audioIcon {
|
|
|
z-index: 10;
|
|
z-index: 10;
|
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
@@ -310,6 +353,7 @@ export default {
|
|
|
left: 50%;
|
|
left: 50%;
|
|
|
transform: translateX(-50%);
|
|
transform: translateX(-50%);
|
|
|
font-size: 14px;
|
|
font-size: 14px;
|
|
|
|
|
+ display: none;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.contenBoxMain {
|
|
.contenBoxMain {
|
|
@@ -351,7 +395,7 @@ export default {
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
.imgBox {
|
|
.imgBox {
|
|
|
- padding: 100px 100px 120px;
|
|
|
|
|
|
|
+ padding: 0px 70px;
|
|
|
.smImgBox {
|
|
.smImgBox {
|
|
|
width: 100%;
|
|
width: 100%;
|
|
|
height: 100%;
|
|
height: 100%;
|
|
@@ -371,13 +415,13 @@ export default {
|
|
|
}
|
|
}
|
|
|
.awccJJ {
|
|
.awccJJ {
|
|
|
cursor: pointer;
|
|
cursor: pointer;
|
|
|
- position: absolute;
|
|
|
|
|
|
|
+ position: fixed;
|
|
|
top: 50%;
|
|
top: 50%;
|
|
|
transform: translateY(-50%);
|
|
transform: translateY(-50%);
|
|
|
left: 10px;
|
|
left: 10px;
|
|
|
- width: 37px;
|
|
|
|
|
- height: 37px;
|
|
|
|
|
- background-image: url("../assets/images/pc/left.png");
|
|
|
|
|
|
|
+ width: 56px;
|
|
|
|
|
+ height: 56px;
|
|
|
|
|
+ background-image: url("../assets/images/pc/icon_left.png");
|
|
|
background-size: 100% 100%;
|
|
background-size: 100% 100%;
|
|
|
&:focus {
|
|
&:focus {
|
|
|
outline: none;
|
|
outline: none;
|
|
@@ -386,7 +430,7 @@ export default {
|
|
|
.rightJJ {
|
|
.rightJJ {
|
|
|
left: auto;
|
|
left: auto;
|
|
|
right: 10px;
|
|
right: 10px;
|
|
|
- background-image: url("../assets/images/pc/right.png");
|
|
|
|
|
|
|
+ background-image: url("../assets/images/pc/icon_right.png");
|
|
|
}
|
|
}
|
|
|
.noClick {
|
|
.noClick {
|
|
|
cursor: default;
|
|
cursor: default;
|
|
@@ -394,22 +438,28 @@ export default {
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
.flooTxt {
|
|
.flooTxt {
|
|
|
- width: 566px;
|
|
|
|
|
|
|
+ // width: 566px;
|
|
|
|
|
+
|
|
|
|
|
+ width: 50%;
|
|
|
height: 100%;
|
|
height: 100%;
|
|
|
- position: absolute;
|
|
|
|
|
- right: 0;
|
|
|
|
|
- top: 0;
|
|
|
|
|
- padding: 71px 62px 30px 58px;
|
|
|
|
|
- background: linear-gradient(138deg, rgba(33, 28, 21, 0.9) 27.8%, rgba(90, 78, 61, 0.9) 97.76%);
|
|
|
|
|
|
|
+ // position: absolute;
|
|
|
|
|
+ // right: 0;
|
|
|
|
|
+ // top: 0;
|
|
|
|
|
+ padding: 71px 94px 30px 258px;
|
|
|
|
|
+ // background: linear-gradient(138deg, rgba(33, 28, 21, 0.9) 27.8%, rgba(90, 78, 61, 0.9) 97.76%);
|
|
|
|
|
+ box-sizing: border-box;
|
|
|
transition: transform 0.3s;
|
|
transition: transform 0.3s;
|
|
|
transform: translateX(0);
|
|
transform: translateX(0);
|
|
|
- &.hideText {
|
|
|
|
|
- transform: translateX(566px);
|
|
|
|
|
- .close-btn {
|
|
|
|
|
- background: url(../assets/images/pc/tab-close.png) no-repeat;
|
|
|
|
|
- background-size: 100% 100%;
|
|
|
|
|
- }
|
|
|
|
|
|
|
+ .num {
|
|
|
|
|
+ display: none;
|
|
|
}
|
|
}
|
|
|
|
|
+ // &.hideText {
|
|
|
|
|
+ // transform: translateX(566px);
|
|
|
|
|
+ // .close-btn {
|
|
|
|
|
+ // background: url(../assets/images/pc/tab-close.png) no-repeat;
|
|
|
|
|
+ // background-size: 100% 100%;
|
|
|
|
|
+ // }
|
|
|
|
|
+ // }
|
|
|
.close-btn {
|
|
.close-btn {
|
|
|
// width: 69px;
|
|
// width: 69px;
|
|
|
// height: 156px;
|
|
// height: 156px;
|
|
@@ -435,11 +485,17 @@ export default {
|
|
|
height: 100%;
|
|
height: 100%;
|
|
|
// overflow-y: auto;
|
|
// overflow-y: auto;
|
|
|
// overflow-x: hidden;
|
|
// overflow-x: hidden;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ justify-content: center;
|
|
|
|
|
+ flex-direction: column;
|
|
|
.myTitle {
|
|
.myTitle {
|
|
|
- color: #ffecb0;
|
|
|
|
|
- font-size: 36px;
|
|
|
|
|
|
|
+ font-size: 24px;
|
|
|
|
|
+ color: #ffffff;
|
|
|
font-weight: bold;
|
|
font-weight: bold;
|
|
|
|
|
+ text-align: left;
|
|
|
margin-bottom: 10px;
|
|
margin-bottom: 10px;
|
|
|
|
|
+ width: 100%;
|
|
|
}
|
|
}
|
|
|
.line {
|
|
.line {
|
|
|
width: 448px;
|
|
width: 448px;
|
|
@@ -448,16 +504,16 @@ export default {
|
|
|
background-size: 100% 100%;
|
|
background-size: 100% 100%;
|
|
|
}
|
|
}
|
|
|
.myTxt {
|
|
.myTxt {
|
|
|
- font-size: 20px;
|
|
|
|
|
|
|
+ font-size: 18px;
|
|
|
color: #ffffff;
|
|
color: #ffffff;
|
|
|
line-height: 40px;
|
|
line-height: 40px;
|
|
|
text-align: left;
|
|
text-align: left;
|
|
|
- margin-top: 40px;
|
|
|
|
|
|
|
+ margin-top: 10px;
|
|
|
padding-right: 30px;
|
|
padding-right: 30px;
|
|
|
padding-bottom: 10px;
|
|
padding-bottom: 10px;
|
|
|
- overflow-y: auto;
|
|
|
|
|
- overflow-x: hidden;
|
|
|
|
|
- height: calc(100% - 101px);
|
|
|
|
|
|
|
+ // overflow-y: auto;
|
|
|
|
|
+ // overflow-x: hidden;
|
|
|
|
|
+ // height: calc(100% - 101px);
|
|
|
&::-webkit-scrollbar {
|
|
&::-webkit-scrollbar {
|
|
|
/*滚动条整体样式*/
|
|
/*滚动条整体样式*/
|
|
|
width: 3px; /*高宽分别对应横竖滚动条的尺寸*/
|
|
width: 3px; /*高宽分别对应横竖滚动条的尺寸*/
|
|
@@ -504,10 +560,12 @@ export default {
|
|
|
width: 100%;
|
|
width: 100%;
|
|
|
height: 100%;
|
|
height: 100%;
|
|
|
padding: 0;
|
|
padding: 0;
|
|
|
- position: absolute;
|
|
|
|
|
- top: 50%;
|
|
|
|
|
- left: 50%;
|
|
|
|
|
- transform: translate(-50%, -50%);
|
|
|
|
|
|
|
+ // position: absolute;
|
|
|
|
|
+ // top: 50%;
|
|
|
|
|
+ // left: 50%;
|
|
|
|
|
+ // transform: translate(-50%, -50%);
|
|
|
|
|
+ justify-content: flex-end;
|
|
|
|
|
+ flex-direction: column-reverse;
|
|
|
.flooTabBox {
|
|
.flooTabBox {
|
|
|
width: 100%;
|
|
width: 100%;
|
|
|
// bottom: 20px;
|
|
// bottom: 20px;
|
|
@@ -530,10 +588,18 @@ export default {
|
|
|
}
|
|
}
|
|
|
.mainCon {
|
|
.mainCon {
|
|
|
border-radius: 8px 8px 0 0;
|
|
border-radius: 8px 8px 0 0;
|
|
|
- height: 235px;
|
|
|
|
|
- top: 128px;
|
|
|
|
|
- left: 0;
|
|
|
|
|
|
|
+ height: 50%;
|
|
|
|
|
+ width: 80%;
|
|
|
|
|
+ // padding: 10px 0;
|
|
|
|
|
+ overflow: visible;
|
|
|
transform: none;
|
|
transform: none;
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+ &::before {
|
|
|
|
|
+ display: none;
|
|
|
|
|
+ }
|
|
|
|
|
+ .oneTabNum {
|
|
|
|
|
+ display: block;
|
|
|
|
|
+ }
|
|
|
.audioIcon {
|
|
.audioIcon {
|
|
|
cursor: default;
|
|
cursor: default;
|
|
|
right: auto;
|
|
right: auto;
|
|
@@ -561,69 +627,83 @@ export default {
|
|
|
}
|
|
}
|
|
|
.imgBox {
|
|
.imgBox {
|
|
|
// padding: 60px 50px 80px;
|
|
// padding: 60px 50px 80px;
|
|
|
- padding:50px 0 0 ;
|
|
|
|
|
|
|
+ padding: 0;
|
|
|
.smImgBox {
|
|
.smImgBox {
|
|
|
cursor: default;
|
|
cursor: default;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
.awccJJ {
|
|
.awccJJ {
|
|
|
- left: 5px;
|
|
|
|
|
|
|
+ left: -10%;
|
|
|
width: 36px;
|
|
width: 36px;
|
|
|
height: 36px;
|
|
height: 36px;
|
|
|
cursor: default;
|
|
cursor: default;
|
|
|
|
|
+ position: absolute;
|
|
|
background-image: url("../assets/images/mobile/icon_left.png");
|
|
background-image: url("../assets/images/mobile/icon_left.png");
|
|
|
}
|
|
}
|
|
|
.rightJJ {
|
|
.rightJJ {
|
|
|
left: auto;
|
|
left: auto;
|
|
|
- right: 5px;
|
|
|
|
|
|
|
+ right: -10%;
|
|
|
background-image: url("../assets/images/mobile/icon_right.png");
|
|
background-image: url("../assets/images/mobile/icon_right.png");
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
.flooTxt {
|
|
.flooTxt {
|
|
|
width: 100%;
|
|
width: 100%;
|
|
|
margin-top: 0;
|
|
margin-top: 0;
|
|
|
- padding: 20px 15px 15px;
|
|
|
|
|
- height: 200px;
|
|
|
|
|
|
|
+ padding: 10px 15px 10px;
|
|
|
|
|
+ height: 50%;
|
|
|
|
|
+ background: #ffffff;
|
|
|
// background-color: #fff;
|
|
// background-color: #fff;
|
|
|
- border-radius: 0 0 8px 8px;
|
|
|
|
|
- height: 325px;
|
|
|
|
|
- bottom: 0;
|
|
|
|
|
- left: 0;
|
|
|
|
|
|
|
+ border-radius: 20px 20px 0 0;
|
|
|
|
|
+ // height: 325px;
|
|
|
|
|
+ // bottom: 0;
|
|
|
|
|
+ // left: 0;
|
|
|
|
|
+ color: rgba(124, 102, 66, 1);
|
|
|
top: auto;
|
|
top: auto;
|
|
|
- background-image: url("../assets/images/mobile/bg2.png");
|
|
|
|
|
|
|
+ // background-image: url("../assets/images/mobile/bg2.png");
|
|
|
transform: none;
|
|
transform: none;
|
|
|
-
|
|
|
|
|
|
|
+ .num {
|
|
|
|
|
+ display: block;
|
|
|
|
|
+ font-weight: 400;
|
|
|
|
|
+ font-size: 16px;
|
|
|
|
|
+ text-align: center;
|
|
|
|
|
+ color: #000;
|
|
|
|
|
+ border-bottom: 1px solid #949494;
|
|
|
|
|
+ padding: 10px;
|
|
|
|
|
+ margin-bottom: 26px;
|
|
|
|
|
+ height: 40px;
|
|
|
|
|
+ }
|
|
|
.pic,
|
|
.pic,
|
|
|
.close-btn {
|
|
.close-btn {
|
|
|
display: none;
|
|
display: none;
|
|
|
}
|
|
}
|
|
|
.flooTxtBox {
|
|
.flooTxtBox {
|
|
|
|
|
+ justify-content: flex-start;
|
|
|
|
|
+ height: calc(100% - 80px);
|
|
|
|
|
+ overflow-y: scroll;
|
|
|
.line {
|
|
.line {
|
|
|
display: none;
|
|
display: none;
|
|
|
}
|
|
}
|
|
|
.myTitle {
|
|
.myTitle {
|
|
|
- font-size: 18px;
|
|
|
|
|
- position: fixed;
|
|
|
|
|
- top: 34px;
|
|
|
|
|
- left: 50%;
|
|
|
|
|
- transform: translateX(-50%);
|
|
|
|
|
- width: 70%;
|
|
|
|
|
- white-space: nowrap;
|
|
|
|
|
- overflow: hidden;
|
|
|
|
|
- text-overflow: ellipsis;
|
|
|
|
|
- text-align: center;
|
|
|
|
|
|
|
+ color: rgba(124, 102, 66, 1);
|
|
|
|
|
+ font-size: 20px;
|
|
|
|
|
+ font-weight: bold;
|
|
|
|
|
+ // white-space: nowrap;
|
|
|
|
|
+ // // overflow: hidden;
|
|
|
|
|
+ // text-overflow: ellipsis;
|
|
|
|
|
+ text-align: left;
|
|
|
}
|
|
}
|
|
|
.myTxt {
|
|
.myTxt {
|
|
|
- font-size: 14px;
|
|
|
|
|
|
|
+ font-size: 16px;
|
|
|
line-height: 22px;
|
|
line-height: 22px;
|
|
|
- padding: 0 34px 10px;
|
|
|
|
|
|
|
+ // padding: 0 34px 10px;
|
|
|
width: 100%;
|
|
width: 100%;
|
|
|
- height: calc(325px - 64px) !important;
|
|
|
|
|
|
|
+ color: rgba(124, 102, 66, 1);
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
.flooTxtOne {
|
|
.flooTxtOne {
|
|
|
|
|
+ color: rgba(124, 102, 66, 1);
|
|
|
height: 100%;
|
|
height: 100%;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|