删除web端巫溪会议代码

This commit is contained in:
liuye
2024-04-18 15:30:32 +08:00
parent d025673c53
commit cd708b373c
45 changed files with 0 additions and 791 deletions

View File

@@ -1,120 +0,0 @@
<template>
<div class="AppAgenda">
<div class="home-content">
<p class="time">935 940 </p>
<p class="text">重庆市巫溪县政府副县长<span>陈钢</span></p>
<p class="time">940 1000 </p>
<p class="text">中国工程院院士刘仲华院士<span>祝福视频</span></p>
<p class="title">第一篇章代用之茶巫溪老鹰茶</p>
<p class="time">1005 1020 </p>
<p class="text">中国茶叶学会理事西南大学涪陵研究院院长曾亮议题<span>老鹰茶的物质基础组成和功效评价</span></p>
<p class="time">1020 1035</p>
<p class="text">林草种质资源创新利用所副所长戴前莉议题<span>巫溪老鹰茶资源禀赋铸就产业先发展</span></p>
<p class="title">第二篇章健康之茶巫溪老鹰茶</p>
<p class="time">1035 1050</p>
<p class="text">中国农业科学院茶叶研究所所长茶业经济与文化研究创新团队首席科学家中国茶叶学会理事长姜仁华议题<span>科技赋能老鹰茶产品健康功效</span></p>
<p class="time">1050 1105</p>
<p class="text">中华全国供销合作总社杭州茶叶研究所党委委员谭蓉议题<span>不同加工工艺对老鹰茶风味品质的影响研究</span></p>
<p class="time">1105 1120</p>
<p class="text">重庆中医药学院中药学院副院长曹纬国副院长<br/>议题<span>老鹰茶食用价值研究</span></p>
<p class="title">第三篇章爆品之茶巫溪老鹰茶</p>
<p class="time">1120 1135</p>
<p class="text">宁饮川老鹰茶公司运营总监周泓妤议题<span>巫溪老鹰茶发展历程与品牌发展</span></p>
<p class="time">1135 1150</p>
<p class="text">金蒲莲老鹰茶公司负责人黎军议题<span>巫溪老鹰茶品牌营销金蒲莲的拓圈之路</span></p>
<p class="time">1150 1205</p>
<p class="text">深圳市华巨臣国际会展集团三茶创新研究院项目负责人&企划中心品牌副经理孙逸超议题<span>平台赋能巫溪老鹰茶品牌塑造与产业崛起之道</span></p>
<p class="time">1205 1220</p>
<p class="text">小罐茶联合创始人于进江议题<span>鹰姿飒爽打造百亿老鹰茶区域品牌</span></p>
<p class="time">1220 1230</p>
<p class="text">会议结束</p>
</div>
</div>
</template>
<script>
export default {
name: 'Agenda',
label: '活动议程',
props: {
instance: Function,
dict: Object,
menuName: {default: "活动议程"}
},
data() {
return {
}
},
mounted() {
},
methods: {
}
}
</script>
<style lang="scss">
.AppAgenda {
height: 100%;
width: 100%;
background-image: url("./img/detail-bg.png");
background-size: 100% 100%;
padding: 16px 0 64px 0;
overflow: auto;
.home-content {
min-height: calc(100% - 158px);
width: calc(100% - 32px);
margin: 0 16px;
padding: 24px 16px 14px;
background: #FFF;
border-radius: 12px;
.title {
line-height: 22px;
font-family: PingFangSC-SNaNpxibold;
font-weight: 600;
font-size: 16px;
color: #F5510A;
margin: 4px 0 0 2px;
}
.time {
line-height: 22px;
font-family: PingFangSC-SNaNpxibold;
font-weight: 600;
font-size: 16px;
color: #999;
margin-bottom: 2px;
}
.text {
color: #222;
font-size: 14px;
font-family: PingFangSC;
font-weight: 600;
line-height: 24px;
margin-bottom: 12px;
span {
display: inline-block;
font-weight: 400;
}
}
}
}
</style>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 750 KiB

View File

@@ -1,150 +0,0 @@
<template>
<div class="AppCheckInfo">
<div class="home-content">
<div class="check-info">
<div class="item">
<div class="title">
<img src="./img/time-icon.png" alt="">入住时间
</div>
<p>2024年4月23日至2024年4月24日</p>
</div>
<div class="item">
<div class="title">
<img src="./img/hotel-icon.png" alt="">入住酒店
</div>
<p>水韵酒店</p>
</div>
<div class="item">
<div class="title">
<img src="./img/address-icon.png" alt="">酒店地址
</div>
<p>春申大道421号</p>
</div>
</div>
<div class="map-info">
<!-- <ai-t-map :map.sync="map" ref="AiTMap" :lib.sync="mapLib" @loaded="onMapInit" /> -->
<!-- <ai-map class="eventMap" :map.sync="map" :lib.sync="AMap"/> -->
<div id="map" style="width: 100%; height: 280px;"></div>
<!-- <ai-map :map.sync="map" :lib.sync="AMap"/> -->
</div>
<div class="bottom-bg"></div>
</div>
</div>
</template>
<script>
import AMapLoader from '@amap/amap-jsapi-loader'
export default {
name: 'CheckInfo',
label: '入住信息',
props: {
instance: Function,
dict: Object,
menuName: {default: "入住信息"}
},
data() {
return {
map: null,
AMap: null,
}
},
mounted() {
this.$nextTick(() => {
this.initMap()
})
},
methods: {
initMap() {
AMapLoader.load({
key: 'b553334ba34f7ac3cd09df9bc8b539dc',
version: '2.0',
plugins: ['AMap.Geocoder'],
}).then(AMap => {
let map = new AMap.Map('map', {
resizeEnable: true,
center: [109.559364, 31.39439],
zoom: 18,
})
var marker = new AMap.Marker({
position: map.getCenter(),
icon: '//a.amap.com/jsapi_demos/static/demo-center/icons/poi-marker-default.png',
offset: new AMap.Pixel(-13, -30)
});
marker.setMap(map);
marker.setTitle('水韵酒店');
marker.setLabel({
offset: new AMap.Pixel(20, 20), //设置文本标注偏移量
content: "<div class='info'>水韵酒店</div>", //设置文本标注内容
direction: 'right' //设置文本标注方位
});
})
},
}
}
</script>
<style lang="scss">
.AppCheckInfo {
height: 100%;
width: 100%;
background-image: url("./img/detail-bg.png");
background-size: 100% 100%;
padding: 16px 0 64px 0;
overflow: auto;
.home-content {
height: 100%;
width: calc(100% - 32px);
margin: 0 16px;
background: #FFF;
border-radius: 12px;
.check-info {
padding: 46px 18px 20px 18px;
.item {
margin-bottom: 20px;
.title {
line-height: 22px;
font-family: PingFangSC-SNaNpxibold;
font-weight: 600;
font-size: 16px;
color: #222;
margin-bottom: 6px;
img {
display: inline-block;
width: 18px;
height: 18px;
vertical-align: middle;
margin-right: 6px;
}
}
p {
line-height: 25px;
font-family: PingFangSC-Regular;
font-weight: 400;
font-size: 18px;
color: #999;
padding-left: 24px;
}
}
}
.map-info {
padding: 0 16px;
width: 100%;
height: 205px;
}
.bottom-bg {
height: calc(100% - 350px);
width: 100%;
background-image: url("./img/bottom-bg.png");
background-size: 100% 100%;
position: fixed;
bottom: 0;
left: 0;
}
}
}
</style>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 162 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 750 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 902 B

View File

@@ -1,186 +0,0 @@
<template>
<div class="AppDetail">
<!-- <div class="top-title">{{tabList[tabIndex]}}</div> -->
<div class="home-content">
<div class="tab">
<div :class="tabIndex == index ? 'item active': 'item'" v-for="(item, index) in tabList" :key="index" @click="tabIndex=index">{{ item }}</div>
</div>
<div class="tab-content" v-if="tabIndex == 0">
<div class="title">天地灵气 逍遥巫溪</div>
<p>
天地灵巫,融水汇溪巫溪由此得名,古称上古盐都,今誉峡郡桃源全县幅员面积4030平方公里,辖32个乡镇(街道),户籍人口54万
获得了全国文明城市国家卫生县城国家园林县城中国人居环境范例奖全国森林旅游示范县全国药材生产红旗县等殊荣,为长江三峡
黄金三角文旅协同发展示范区2023,全县地区生产总值130.6亿元同比增长6:5%
</p>
<img src="./img/detail-ljwx.png" alt="">
</div>
<div class="tab-content" v-if="tabIndex == 1">
<div class="title">巫巴文化的故乡</div>
<p>
始建于汉建安十五年,历代政区迭变,悠久的历史积淀了厚重的巴风巫韵曾创造出利分秦楚域,泽沛汉唐年一泉流白玉万里走黄金的辉煌,
孕育了神秘的巫文化盐文化巫溪县是中华烤鱼文化的发源地,古法技艺味美鲜香享誉全国;国家历史文化名镇-宁厂古镇,宝源山天赐
盐泉亘古不竭,古法制盐技艺传承千年;有神秘悠远的盐马古栈道,有雄险奇秀的云台峰,有堪称世界之谜的荆竹坝西汉岩棺群,有三峡库区唯一未
淹没的古县城大宁古城...巫溪,是探索人类历史文明密码的宝库
</p>
<img src="./img/detail-wbwh.png" alt="">
</div>
<div class="tab-content" v-if="tabIndex == 2">
<div class="title">三峡库区的生态明珠</div>
<p>
巫溪是三峡库区的生态明珠境内山清水秀资源富集,重庆第一高峰阴条岭亚洲第一深谷兰英大峡谷天下第一溪大宁河,
有全市唯一一条I类水质河流-后溪河,有被誉为大宁河七峡之冠的妙峡,更有南国第一高山草甸-红池坝,是重庆市第一森林资源大县
森林覆盖率达70.2%,是旅游观光休闲度假的一方圣地境内立体气候独特农特产品绿色有重庆市唯一中欧互认免检农产品-巫溪洋芋
有大西南地区面积最大的野生老鹰茶生长地是中国老鹰茶之乡;有历经千年传承品味正宗的巫溪烤鱼,国际烤鱼之乡;有享誉全国的
太白贝母大宁党参巫溪独活等优质药材,中国道地药材之乡
</p>
<img src="./img/detail-stmz.png" alt="">
</div>
<div class="tab-content" v-if="tabIndex == 3">
<div class="title">老鹰茶名字的由来</div>
<p>
传说在上古时期,神农氏到深山收罗草药,吃了一种草后不幸中毒,正值生命垂危之际,突然一只受伤的老鹰飞到树上,在啄食了几片树叶后便缓解了伤势
神农氏看到之后也学着老鹰拾起几片清香缕缕的树叶,放入口中嚼而食之,顿觉神清气爽,诸毒豁然而解神农氏也不知此神树为何种树木,因与老鹰相遇而
发现就将其命名为老鹰树百姓常采叶煮饮之,最终成为了家喻户晓流传千古的老鹰茶的树叶,放入口中嚼而食之,顿觉神清气爽,诸毒豁然而解
神农氏也不知此神树为何种树木,因与老鹰相遇而发现就将其命名为老鹰树,百姓常采叶煮饮之,最终成为了家喻户晓流传千古的老鹰茶
</p>
<img src="./img/detail-lycyl.png" alt="">
</div>
<div class="tab-content" v-if="tabIndex == 4">
<div class="title">巫溪老鹰茶历史悠久</div>
<p>
老鹰茶在我国发展历史悠久,最早可追溯至春秋战国时代,唐朝时期曾为贡茶,宋朝时期已作为茶马互市博马贸易的主要商品,
明朝时期被收录于本草纲目之中此外万县乡土志中也曾对老鹰茶有过记载和描述(当时巫溪县属于万县市管理)
</p>
<p>
巫溪老鹰茶发展基本上与巫盐文化同时期产生古代巫溪盐业发达,但山高路陡,食盐运输全靠人背马驮,运输期间只能自
备茶水老鹰茶因长时间不变味,成为了盐夫商旅之人的必备饮用茶几百年来,老鹰茶作为巫溪群众的日常饮品,在生产生
活中具有重要地位直至今日,巫溪民间将老鹰茶称为盐背子茶药王茶还仍然保留着夏日饮用老鹰茶解渴日常以老
鹰茶泡饭等生活习惯
</p>
<img src="./img/detail-lycls.png" alt="">
</div>
<div class="tab-content" v-if="tabIndex == 5">
<div class="title">品质优良 品牌响亮</div>
<p>
根据浙江省茶叶学会出具的巫溪老鹰茶科学技术成果评价报告表明,巫溪老鹰茶具有三个明显的成分特性:①老鹰茶属樟科植物不含咖啡碱,不会兴奋神经,
还能促进和提高睡眠质量②老鹰茶富含黄酮类物质,远高于其他茶类,具有抗衰老氧化降血糖血脂保肝免疫等多种功效③老鹰茶富含芳香油,具有除臭
祛味抗炎降火的特殊功效
</p>
<p>
按照家军书记调研巫溪后关于将巫溪老鹰茶作为一县一品重庆爆品打造的部署要求,巫溪县委县政府已明确将巫溪老鹰茶列入全县一主两辅
特色产业进行重点打造到2030年,全县老鹰茶种植规模将达20万亩年总产量达1万吨,年综合产值达50亿元,巫溪老鹰茶将成为具有重庆辨识度
国际影响力的爆品,领跑茶叶产业新赛道
</p>
<img src="./img/detail-pzypp.png" alt="">
</div>
</div>
</div>
</template>
<script>
export default {
name: 'AppDetail',
label: '了解巫溪',
props: {
instance: Function,
dict: Object,
menuName: {default: "了解巫溪"}
},
data() {
return {
tabList: ['了解巫溪', '巫巴文化', '生态明珠', '老鹰茶由来', '老鹰茶历史', '品质与品牌'],
tabIndex: 0
}
},
mounted() {
},
methods: {
}
}
</script>
<style lang="scss">
.AppDetail {
height: 100%;
width: 100%;
background-image: url("./img/detail-bg.png");
background-size: 100% 100%;
padding-top: 16px;
.top-title {
font-family: PingFangSC-SNaNpxibold;
font-weight: 600;
font-size: 17px;
line-height: 24px;
color: #FFF;
letter-spacing: 0;
text-align: center;
padding-top: 10px;
text-align: center;
margin-bottom: 26px;
}
.home-content {
height: calc(100% - 158px);
width: calc(100% - 32px);
margin: 0 16px;
background: #FFF;
border-radius: 12px;
.tab-content {
padding: 0 16px;
.title {
line-height: 30px;
font-family: PingFangSC-SNaNpxibold;
font-weight: 600;
font-size: 22px;
color: #222;
text-align: center;
padding: 20px 0 18px 0;
}
p {
width: 100%;
font-family: PingFangSC-Regular;
font-weight: 400;
font-size: 15px;
color: #222;
text-align: justify;
line-height: 26px;
word-break: break-all;
text-indent: 2em;
margin-bottom: 16px;
}
img {
width: 100%;
height: 254px;
margin-bottom: 16px;
}
}
.tab {
position: fixed;
top: 500px;
left: 0;
padding: 8px;
background: rgba($color: #fff, $alpha: 0.4);
border-radius: 4px;
.item {
width: 88px;
line-height: 34px;
color: #666;
font-family: PingFangSC-Regular;
font-weight: 400;
font-size: 14px;
text-align: center;
}
.active {
background: #FFF;
border-radius: 4px;
color: #F5510A;
}
}
}
}
</style>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 750 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 623 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 612 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 467 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 446 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 366 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 382 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 755 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 131 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 120 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 121 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 150 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.6 KiB

View File

@@ -1,142 +0,0 @@
<template>
<div class="AppIntroduce">
<div class="home-content">
<div class="tab">
<div :class="tabIndex == index ? 'item active': 'item'" v-for="(item, index) in tabList" :key="index" @click="tabIndex=index">{{ item }}</div>
</div>
<div class="tab-content" v-if="tabIndex == 0">
<div class="title">2024巫溪老鹰茶文旅消费节<br/>研讨会暨产销对接会</div>
<img src="./img/detail-hyjs.png" alt="" class="detail-img">
<p>
中国老鹰茶之乡·2024巫溪老鹰茶文旅消费节将于4月23日开幕期间将举办文创大赛斗茶大赛科普研学等系列
</p>
<p>
消费节前期巫溪组织专家对巫溪老鹰茶的历史渊源独特功效制作工艺泡饮技巧文化价值等5个方面进行深入研究并开展茶博士
说老鹰茶科普活动推动老鹰茶产业规范化发展制定了育苗产品加工产品等系列巫溪老鹰茶相关行业标准开展市场推广启动了
老鹰茶特色示范产区命名和茶王茶后评比工作擦亮天地灵气 巫咸古茶品牌举办渝你同饮巫溪老鹰茶山城快闪活动开发巫溪
老鹰茶老冰棍等系列产品全方位展示巫溪老鹰茶产业发展成果消费节期间将通过全网直播等形式全过程展示市级非遗技艺巫溪老
鹰茶制作工艺并推出老鹰茶长桌宴举办巫溪老鹰产销对接会主题研学和盐茶古道徒步等活动
</p>
</div>
<div class="tab-content" v-if="tabIndex == 1">
<div class="title">座位表</div>
<img src="./img/seat-img.png" alt="" class="seat-img">
</div>
</div>
</div>
</template>
<script>
export default {
name: 'AppIntroduce',
label: '会议介绍',
props: {
instance: Function,
dict: Object,
menuName: {default: "会议介绍"}
},
data() {
return {
tabList: ['了解会议', '座位表'],
tabIndex: 0
}
},
mounted() {
},
methods: {
}
}
</script>
<style lang="scss">
.AppIntroduce {
height: 100%;
width: 100%;
background-image: url("./img/detail-bg.png");
background-size: 100% 100%;
padding-top: 16px;
.top-title {
font-family: PingFangSC-SNaNpxibold;
font-weight: 600;
font-size: 17px;
line-height: 24px;
color: #FFF;
letter-spacing: 0;
text-align: center;
padding-top: 10px;
text-align: center;
margin-bottom: 26px;
}
.home-content {
min-height: calc(100% - 158px);
width: calc(100% - 32px);
margin: 0 16px;
background: #FFF;
border-radius: 12px;
padding-bottom: 32px;
.tab-content {
padding: 0 16px;
.title {
line-height: 30px;
font-family: PingFangSC-SNaNpxibold;
font-weight: 600;
font-size: 22px;
color: #222;
text-align: center;
padding: 20px 0 18px 0;
}
p {
width: 100%;
font-family: PingFangSC-Regular;
font-weight: 400;
font-size: 15px;
color: #222;
text-align: justify;
line-height: 26px;
word-break: break-all;
text-indent: 2em;
margin-bottom: 16px;
}
.detail-img {
width: 100%;
height: 254px;
margin-bottom: 16px;
}
.seat-img {
width: 100%;
height: 220px;
margin-top: 10px;
}
}
.tab {
position: fixed;
top: 500px;
left: 0;
padding: 8px;
background: rgba($color: #fff, $alpha: 0.4);
border-radius: 4px;
.item {
width: 88px;
line-height: 34px;
color: #666;
font-family: PingFangSC-Regular;
font-weight: 400;
font-size: 14px;
text-align: center;
}
.active {
background: #FFF;
border-radius: 4px;
color: #F5510A;
}
}
}
}
</style>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 750 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 411 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 302 KiB

View File

@@ -1,193 +0,0 @@
<template>
<div class="AppMeeting">
<div class="top-title">2024巫溪老鹰茶文旅消费节</div>
<div class="home-content">
<div class="home-logo">
<img src="./img/home-logo.png" alt="">
</div>
<div class="home-title">
<img src="./img/home-title.png" alt="">
</div>
<div class="home-welcome">
<img src="./img/home-welcome.png" alt="">
</div>
<div class="flex-content">
<div class="item" v-for="(item, index) in list" :key="index" @click="linkTo(item.linkUrl)">
<img :src="item.icon" alt="">
<p>{{item.text}}</p>
</div>
</div>
</div>
<div class="home-footer">
<p>主办单位</p>
<div>中共巫溪县委员会 巫溪县人民政府</div>
</div>
</div>
</template>
<script>
export default {
name: 'AppMeeting',
label: '会议首页',
props: {
instance: Function,
dict: Object,
menuName: {default: "会议首页"}
},
data() {
return {
list: [
{
linkUrl: '../AppDetail/AppDetail',
icon: require('./img/home-ljwx-icon.png'),
text: '了解巫溪'
},
{
linkUrl: '../AppIntroduce/AppIntroduce',
icon: require('./img/home-hyjs-icon.png'),
text: '会议介绍'
},
{
linkUrl: '../AppAgenda/AppAgenda',
icon: require('./img/home-hdyc-icon.png'),
text: '活动议程'
},
{
linkUrl: '../AppCheckInfo/AppCheckInfo',
icon: require('./img/home-rzxx-icon.png'),
text: '入住信息'
}
]
}
},
mounted() {
},
methods: {
linkTo(url) {
this.$router.push({path: url})
}
}
}
</script>
<style lang="scss">
.AppMeeting {
height: 100%;
width: 100%;
background-image: url("./img/home-bg.png");
background-size: 100% 100%;
padding-top: 16px;
.top-title {
font-family: PingFangSC-SNaNpxibold;
font-weight: 600;
font-size: 17px;
line-height: 24px;
color: #FFF;
letter-spacing: 0;
text-align: center;
padding-top: 10px;
text-align: center;
margin-bottom: 26px;
}
.home-content {
height: calc(100% - 158px);
width: calc(100% - 32px);
margin: 0 16px;
background: #FFF;
border-radius: 12px;
.home-logo {
text-align: center;
img {
width: 66px;
height: 66px;
margin: 28px 0 21px 0;
}
}
.home-title {
text-align: center;
img {
width: 287px;
height: 64px;
margin-bottom: 20px;
}
}
.home-welcome {
text-align: center;
margin: 21px 0 45px 0;
img {
width: 66px;
height: 20px;
}
}
.content-text {
line-height: 25px;
font-family: PingFangSC-Regular;
font-weight: 400;
font-size: 18px;
color: #222;
text-align: center;
margin-bottom: 41px;
}
.flex-content {
padding-left: 16px;
.item {
width: calc(50% - 16px);
height: 140px;
background-size: 100% 100%;
margin: 0 16px 16px 0;
text-align: center;
float: left;
img {
display: inline-block;
width: 32px;
height: 32px;
margin: 39px 0 16px 0;
}
p {
line-height: 22px;
font-family: PingFangSC-Medium;
font-weight: 500;
font-size: 16px;
color: #857351;
}
}
.item:nth-of-type(1) {
background-image: url("./img/home-ljwx-bg.png");
}
.item:nth-of-type(2) {
background-image: url("./img/home-hyjs-bg.png");
}
.item:nth-of-type(3) {
background-image: url("./img/home-hdyc-bg.png");
}
.item:nth-of-type(4) {
background-image: url("./img/home-rzxx-bg.png");
}
}
}
.home-footer {
padding: 44px 0 10px 0;
text-align: center;
font-size: 14px;
color: #FFF;
line-height: 20px;
p {
font-family: PingFangSC-Regular;
font-weight: 400;
margin-bottom: 4px;
}
div {
font-family: PingFangSC-SNaNpxibold;
font-weight: 600;
}
}
}
</style>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 755 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 131 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 120 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 121 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 150 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.6 KiB