Commit 3c1be630 authored by Zhang Xiaojie's avatar Zhang Xiaojie

fix:UI

parent a3cd7ece
...@@ -70,7 +70,7 @@ ...@@ -70,7 +70,7 @@
</div> </div>
<div class="h-px bg-footerBorder"></div> <div class="h-px bg-footerBorder"></div>
<div <div
class="text-xs text-footerBorder text-center py-3" class="text-xs text-footerSecondFont text-center py-3"
>Copyright © 2021 杭州库链科技有限公司 浙ICP备17050749号-5</div> >Copyright © 2021 杭州库链科技有限公司 浙ICP备17050749号-5</div>
</div> </div>
</div> </div>
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
> >
<slot name="logo" /> <slot name="logo" />
<div <div
class="text-sm font-medium flex flex-row items-center justify-between -mb-1" class="text-sm font-medium flex flex-row items-center justify-between -mb-1"
:class="theme === 'white' ? ' text-white' : ' text-black '" :class="theme === 'white' ? ' text-white' : ' text-black '"
> >
<div <div
...@@ -43,7 +43,8 @@ ...@@ -43,7 +43,8 @@
<svg-icon <svg-icon
iconClass="arrowDown" iconClass="arrowDown"
class="w-4 h-4 ml-2" class="w-4 h-4 ml-2"
:class="currentNav == NAV_EVENT.NAV1 && theme != 'white' ? 'transform rotate-180 text-mainBlue transition duration-150' : 'transform rotate-0 transition duration-150'" :class="[currentNav == NAV_EVENT.NAV1 ? 'transform rotate-180 transition duration-150' : 'transform rotate-0 transition duration-150',
currentNav == NAV_EVENT.NAV1 && theme !== 'white' ? 'text-mainBlue' : '']"
/> />
</div> </div>
<div <div
...@@ -57,7 +58,8 @@ ...@@ -57,7 +58,8 @@
iconClass="arrowDown" iconClass="arrowDown"
class="w-4 h-4 ml-2" class="w-4 h-4 ml-2"
:class="[theme === 'white' ? '' : 'hover:text-mainBlue hover:border-b-2 hover:border-mainBlue', :class="[theme === 'white' ? '' : 'hover:text-mainBlue hover:border-b-2 hover:border-mainBlue',
currentNav == NAV_EVENT.NAV2 && theme != 'white' ? 'transform rotate-180 text-mainBlue transition duration-150' : 'transform rotate-0 transition duration-150']" currentNav == NAV_EVENT.NAV1 && theme !== 'white' ? 'text-mainBlue' : '',
currentNav == NAV_EVENT.NAV2 ? 'transform rotate-180 transition duration-150' : 'transform rotate-0 transition duration-150']"
/> />
</div> </div>
<div <div
...@@ -150,7 +152,7 @@ const handleClick = (e: Event, item: NAV_EVENT) => { ...@@ -150,7 +152,7 @@ const handleClick = (e: Event, item: NAV_EVENT) => {
if (currentNav.value == NAV_EVENT.NAV0 || currentNav.value == NAV_EVENT.NAV2 || currentNav.value == NAV_EVENT.NAV3) { if (currentNav.value == NAV_EVENT.NAV0 || currentNav.value == NAV_EVENT.NAV2 || currentNav.value == NAV_EVENT.NAV3) {
router.push({ name: item }) router.push({ name: item })
} }
if(item == NAV_EVENT.NAV4){ if (item == NAV_EVENT.NAV4) {
window.open('https://slc.8n.cn/login') window.open('https://slc.8n.cn/login')
} }
} }
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<div <div
v-for="nav in navs" v-for="nav in navs"
:key="nav.id" :key="nav.id"
class="w-1/6 px-2 flex flex-row items-center justify-center py-3 cursor-pointer border-b-2 border-transparent" class="w-1/6 px-2 flex flex-row items-center justify-center py-4 cursor-pointer border-b-2 border-transparent"
:class="currentNav == nav.id ? ' border-blue-400' : ''" :class="currentNav == nav.id ? ' border-blue-400' : ''"
@click="handleNavClick($event, nav.id)" @click="handleNavClick($event, nav.id)"
> >
......
...@@ -43,7 +43,7 @@ const getImgUrl = computed(() => { ...@@ -43,7 +43,7 @@ const getImgUrl = computed(() => {
let offSetTop = ref(0) let offSetTop = ref(0)
const nav = ref() const nav = ref()
let show = ref(true) let show = ref(true)
const NAV_OFFSET_TOP = 297 const NAV_OFFSET_TOP = 300
const handleScroll = (e: Event): void => { const handleScroll = (e: Event): void => {
const target: HTMLDocument = e.target as HTMLDocument; const target: HTMLDocument = e.target as HTMLDocument;
offSetTop.value = target.scrollingElement?.scrollTop as number; offSetTop.value = target.scrollingElement?.scrollTop as number;
......
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
} }
.footerSecondFont{ .footerSecondFont{
@apply text-sm text-footerSecondFont opacity-50 pb-3 cursor-pointer @apply text-sm text-footerSecondFont pb-3 cursor-pointer
} }
.footerMainFontMobile{ .footerMainFontMobile{
......
<template> <template>
<div :class="props.data.id % 2 == 0 ? ' bg-systemCardBg' : ' bg-white'" class="pt-10 pb-24"> <div :class="props.data.id % 2 == 0 ? ' bg-systemCardBg' : ' bg-white'" class="pt-10 pb-24">
<div class="wrappper flex w-bodySet px-48 mx-auto items-center justify-between" :class="style" ref="card" data-aos="fade-up" data-aos-duration="600" data-aos-easing="ease-in-out-cubic"> <div
<div > class="wrappper flex w-bodySet px-48 mx-auto items-center justify-between"
:class="style"
ref="card"
data-aos="fade-up"
data-aos-duration="600"
data-aos-easing="ease-in-out-cubic"
>
<div>
<svg-icon v-if="props.data.url" :iconClass="props.data.url" width="576px" height="464px" /> <svg-icon v-if="props.data.url" :iconClass="props.data.url" width="576px" height="464px" />
<img v-else :src="getImgUrl(props.data.png!)" /> <img v-else :src="getImgUrl(props.data.png!)" />
</div> </div>
...@@ -13,7 +20,8 @@ ...@@ -13,7 +20,8 @@
<svg-icon :iconClass="props.data.icon" class="w-12 h-12 mb-1" /> <svg-icon :iconClass="props.data.icon" class="w-12 h-12 mb-1" />
<div class="pt-2 text-headerMain text-2xl font-semibold">{{ props.data.title }}</div> <div class="pt-2 text-headerMain text-2xl font-semibold">{{ props.data.title }}</div>
<div class="text-sm text-contentMain pt-4 text-justify">{{ props.data.detail }}</div> <div class="text-sm text-contentMain pt-4 text-justify">{{ props.data.detail }}</div>
</div>
</div>
</div> </div>
</div> </div>
</template> </template>
...@@ -49,12 +57,21 @@ const style = computed(() => { ...@@ -49,12 +57,21 @@ const style = computed(() => {
</script> </script>
<style scoped> <style scoped>
/* 文字逐行进入效果 */ /* 文字逐行进入效果 */
.isActive { .isActive {
animation: 1s cubic-bezier(.455,.03,.515,.955) 0s forwards line_enter; transform: translateY(-10%) translateZ(0);
/* animation: 1s cubic-bezier(.455,.03,.515,.955) 0s forwards line_enter; */
animation: 2s cubic-bezier(0.43, 0.195, 0.02, 1) 0s forwards line_enter;
} }
.line {
position: relative;
display: block;
will-change: opacity, transform;
opacity: 0;
transform: translateY(100%) translateZ(0);
animation: 0s cubic-bezier(0.43, 0.195, 0.02, 1) 0s forwards line_leave;
}
@keyframes line_enter { @keyframes line_enter {
0% { 0% {
opacity: 0; opacity: 0;
......
...@@ -3,37 +3,37 @@ export const productsList= [ ...@@ -3,37 +3,37 @@ export const productsList= [
id:1, id:1,
title:'流程自动运行', title:'流程自动运行',
detail:'明确类存证任务,无需手动分配后续任务步骤和成员,任务将按照预定的流程自动运行,有效提升办公效率。', detail:'明确类存证任务,无需手动分配后续任务步骤和成员,任务将按照预定的流程自动运行,有效提升办公效率。',
icon:'pp1', icon:'c1',
}, },
{ {
id:2, id:2,
title:'任务分工协作', title:'任务分工协作',
detail:'任务处理成员可以是一人、多人、某个角色或者某个部门,只需其中一人完成任务即可,实现任务协作。', detail:'任务处理成员可以是一人、多人、某个角色或者某个部门,只需其中一人完成任务即可,实现任务协作。',
icon:'pp2', icon:'c2',
}, },
{ {
id:3, id:3,
title:'企业合作协同', title:'企业合作协同',
detail:'拓展型任务协作模式,结合溯源授权与关联,实现多家企业合作协同处理溯源任务,常用于供应链溯源场景。', detail:'拓展型任务协作模式,结合溯源授权与关联,实现多家企业合作协同处理溯源任务,常用于供应链溯源场景。',
icon:'pp3', icon:'c3',
}, },
{ {
id:4, id:4,
title:'企业组织架构', title:'企业组织架构',
detail:'支持搭建真实的企业组织架构和添加部门成员,为任务协作提供组织基础,为员工提供企业通讯录。', detail:'支持搭建真实的企业组织架构和添加部门成员,为任务协作提供组织基础,为员工提供企业通讯录。',
icon:'pp4', icon:'c4',
}, },
{ {
id:5, id:5,
title:'权限精准管控', title:'权限精准管控',
detail:'根据业务需要创建不同角色,角色拥有不同功能权限和数据管控范围,员工与角色绑定,实现权限精准管控。', detail:'根据业务需要创建不同角色,角色拥有不同功能权限和数据管控范围,员工与角色绑定,实现权限精准管控。',
icon:'pp5', icon:'c5',
}, },
{ {
id:6, id:6,
title:'资产发行流通', title:'资产发行流通',
detail:'针对已上链的特有价值任务(单据、固有资产等),可以发行FT或NFT通证,实现资产数字化,提升资产流通性。', detail:'针对已上链的特有价值任务(单据、固有资产等),可以发行FT或NFT通证,实现资产数字化,提升资产流通性。',
icon:'pp6', icon:'c6',
} }
] ]
......
...@@ -25,7 +25,7 @@ export const provennanceList = [ ...@@ -25,7 +25,7 @@ export const provennanceList = [
children: [ children: [
{ {
id: 21, id: 21,
product: '通正版商城', product: '通',
detail: '商品生产周期资产化、交易资产', detail: '商品生产周期资产化、交易资产',
icon: 'tongzhengshangcheng', icon: 'tongzhengshangcheng',
route: '/mail' route: '/mail'
......
...@@ -28,7 +28,7 @@ export default [ ...@@ -28,7 +28,7 @@ export default [
title: '交易商城', title: '交易商城',
detail: '发行的NFT类型通证,可以划转到区块链商城用于交易,支持NFT商品发布、购买、转让和赠送,交易全流程上链。NFT商品信息可溯源,保障商品质量,增强消费者购买信心。', detail: '发行的NFT类型通证,可以划转到区块链商城用于交易,支持NFT商品发布、购买、转让和赠送,交易全流程上链。NFT商品信息可溯源,保障商品质量,增强消费者购买信心。',
icon: 'fenbu', icon: 'fenbu',
png: 'system4', url: 'system4',
}, },
] ]
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="53px" height="53px" viewBox="0 0 53 53" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>首页备份 22</title>
<defs>
<filter x="-39.1%" y="-34.6%" width="178.3%" height="169.2%" filterUnits="objectBoundingBox" id="filter-1">
<feGaussianBlur stdDeviation="3" in="SourceGraphic"></feGaussianBlur>
</filter>
</defs>
<g id="企业溯源" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g transform="translate(-273.000000, -719.000000)">
<rect fill="#FFFFFF" x="0" y="0" width="1440" height="6487"></rect>
<g id="编组-5" transform="translate(275.000000, 730.000000)">
<circle id="椭圆形" fill="#2B37FF" cx="16" cy="16" r="16"></circle>
<circle id="椭圆形备份-10" fill="#D6F4FF" cx="34" cy="16" r="16"></circle>
<path d="M30.6210852,3 C31.9669093,5.09872777 32.8870771,6.74311315 33.3815885,7.93315615 C33.8761,9.12319914 34.4155705,10.9914367 35,13.5378688 C34.5052304,17.6355703 33.9657599,20.4826548 33.3815885,22.079122 C32.7974172,23.6755893 30.8100881,25.9825486 27.4196013,29 L19.6287523,26.3552374 L12,20.2930629 C13.7009829,18.2167087 14.9879095,16.7856877 15.8607798,16 C16.7336501,15.2143123 17.2851901,11.5474677 17.5153997,4.99946633 L30.6210852,3 Z" id="路径-31" fill="#2B37FF" opacity="0.486077445" filter="url(#filter-1)"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="53px" height="53px" viewBox="0 0 53 53" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>首页备份 21</title>
<defs>
<filter x="-29.8%" y="-18.2%" width="159.6%" height="136.4%" filterUnits="objectBoundingBox" id="filter-1">
<feGaussianBlur stdDeviation="2" in="SourceGraphic"></feGaussianBlur>
</filter>
</defs>
<g id="企业溯源" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g transform="translate(-672.000000, -719.000000)">
<rect fill="#FFFFFF" x="0" y="0" width="1440" height="6487"></rect>
<g id="fill_squarestack3ddown" transform="translate(676.000000, 721.000000)">
<path d="M15.4235112,18.7296653 L33.2752695,7.43943704 C33.8373743,7.06586553 35.4000738,6.66692987 36,6.58880155 C34.8757905,4.5955448 29.3815001,3.15111283 27.2478495,4.56792708 L9.87542151,16.1059687 C8.70436349,16.8838394 8,18.2019958 8,19.6145207 L8.00521681,40.5686652 C8.0058689,43.2368456 11.6384218,45.2771316 13.9970447,44.9692141 C13.6592602,44.3704492 13.4616758,43.6692641 13.4616758,42.896516 C13.2105136,33.7489004 13.260614,26.8653793 13.6119768,22.2459528 C13.6296542,22.0135445 13.6119768,20.8548647 13.9970447,20.0985156 C14.2537566,19.5942828 14.7292455,19.1379993 15.4235112,18.7296653 Z" id="路径" fill="#2B36FF" fill-rule="nonzero"></path>
<path d="M7.39016066,14.3637212 L24.2875105,3.37467755 C24.84709,2.99590221 26.402769,2.59140939 27,2.51219276 C25.880841,0.49117006 20.4715717,-0.83289688 18.3475067,0.60365351 L1.86699608,11.7034766 C0.701199097,12.492183 0,13.8287012 0,15.2609026 L0.00519336849,36.506937 C0.00584253261,39.2122849 3.62207602,41.280992 5.97010266,40.9687853 C5.63383564,40.3616796 5.43713891,39.650727 5.43713891,38.8672146 C5.18710511,29.5921733 5.23698038,22.6127652 5.58676471,17.9289903 C5.60436273,17.6933446 5.58676471,16.5185245 5.97010266,15.7516394 C6.22566129,15.2403827 6.69901396,14.7777433 7.39016066,14.3637212 Z" id="路径备份-2" fill="#D6F4FF" fill-rule="nonzero"></path>
<path d="M37.7642078,8 C36.9858555,8 36.1877313,8.21910707 35.452877,8.70272179 L17.8954627,20.2667063 C16.7118905,21.0462816 16,22.3673267 16,23.7829471 L16.0052726,44.7830113 C16.0059316,47.2583291 18.0411154,49 20.2351331,49 C21.0134855,49 21.8116097,48.7808929 22.5464639,48.2972782 L40.1045373,36.7339517 C41.2881095,35.9543764 42,34.6333313 42,33.2177109 L41.9940684,12.2169887 C41.9934093,9.74167095 39.9582256,8 37.7642078,8 Z" id="路径" fill="#D6F4FF" fill-rule="nonzero"></path>
<polygon id="路径-2" fill="#2B36FF" opacity="0.351726714" filter="url(#filter-1)" points="37.7333333 9.37773145 37.7333333 29.358695 17.5853109 42.3777315 17.5853109 24.6092359 17.9134323 21.8086861 31.9085885 12.4093718"></polygon>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="53px" height="53px" viewBox="0 0 53 53" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>首页备份 8</title>
<defs>
<path d="M24.8981144,10.4886504 C23.9298461,10.8978856 23.3045426,11.8183477 23.3040984,12.8350814 L23.3040984,20.782815 C23.3040984,25.6506977 25.5690684,30.0005705 29.560111,32.9983605 L36.4390572,37.6642963 C37.3611791,38.289679 38.5929192,38.289679 39.5150412,37.6642963 L46.341965,33.0355444 C50.38503,29.9999294 52.65,25.6500566 52.65,20.782815 L52.65,12.8357225 C52.65,11.8185236 52.0246952,10.8974318 51.055984,10.4880093 L39.0508424,5.41689745 C38.3665909,5.12770085 37.5875075,5.12770085 36.903256,5.41689745 L24.8981144,10.4886504 Z" id="path-1"></path>
<filter x="-13.6%" y="-12.1%" width="127.3%" height="124.3%" filterUnits="objectBoundingBox" id="filter-2">
<feGaussianBlur stdDeviation="3.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<filter x="-108.6%" y="-61.8%" width="317.2%" height="223.6%" filterUnits="objectBoundingBox" id="filter-3">
<feGaussianBlur stdDeviation="5" in="SourceGraphic"></feGaussianBlur>
</filter>
<path d="M10.6594672,5.77777778 L8.97639344,5.77777778 L8.97639344,3.46666667 C8.97639344,1.54555556 7.47565266,0 5.6102459,0 C3.74483914,0 2.24409836,1.54555556 2.24409836,3.46666667 L2.24409836,5.77777778 L0.56102459,5.77777778 C0.252461066,5.77777778 0,6.03777778 0,6.35555556 L0,13.2888889 C0,13.6066667 0.252461066,13.8666667 0.56102459,13.8666667 L10.6594672,13.8666667 C10.9680307,13.8666667 11.2204918,13.6066667 11.2204918,13.2888889 L11.2204918,6.35555556 C11.2204918,6.03777778 10.9680307,5.77777778 10.6594672,5.77777778 Z M5.6102459,10.9777778 C4.99311885,10.9777778 4.48819672,10.4577778 4.48819672,9.82222222 C4.48819672,9.18666667 4.99311885,8.66666667 5.6102459,8.66666667 C6.22737295,8.66666667 6.73229508,9.18666667 6.73229508,9.82222222 C6.73229508,10.4577778 6.22737295,10.9777778 5.6102459,10.9777778 Z M7.85434426,5.77777778 L3.36614754,5.77777778 L3.36614754,3.46666667 C3.36614754,2.19555556 4.3759918,1.15555556 5.6102459,1.15555556 C6.8445,1.15555556 7.85434426,2.19555556 7.85434426,3.46666667 L7.85434426,5.77777778 Z" id="path-4"></path>
<filter x="-17.8%" y="-14.4%" width="135.6%" height="128.8%" filterUnits="objectBoundingBox" id="filter-5">
<feGaussianBlur stdDeviation="1.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<filter x="-96.2%" y="-48.1%" width="292.3%" height="196.2%" filterUnits="objectBoundingBox" id="filter-6">
<feGaussianBlur stdDeviation="5" in="SourceGraphic"></feGaussianBlur>
</filter>
</defs>
<g id="企业溯源" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g transform="translate(-1116.000000, -719.000000)">
<rect fill="#FFFFFF" x="0" y="0" width="1440" height="6487"></rect>
<g id="编组-7" transform="translate(1116.000000, 726.000000)">
<g id="编组-4">
<g id="shuju9" fill="#2C35FF" fill-rule="nonzero">
<path d="M0.675091009,10.3352667 L17.789986,18.7367735 C18.2357488,18.9523078 18.8328884,19.0666667 19.4192642,19.0666667 C20.007808,19.0666667 20.6028177,18.9523078 21.0485424,18.7367735 L38.1634755,10.3352667 C39.0657268,9.89321846 39.0657268,9.17180685 38.1634755,8.72975861 L21.0506724,0.330455395 C20.5362531,0.103481953 19.9800157,-0.00899950826 19.4193023,0.000562315755 C18.8350944,0.000562315755 18.2357488,0.112678812 17.792192,0.330455395 L0.675091009,8.73196228 C-0.225030336,9.17180685 -0.225030336,9.89321846 0.675091009,10.3352667 Z" id="路径"></path>
<path d="M38.1680492,18.2081038 L34.6276784,16.6049953 C34.2145813,16.4142288 34.1021258,16.424395 33.6673967,16.6131281 C33.2348727,16.8038589 21.0478232,22.3254194 21.0478232,22.3254194 C20.5936292,22.524283 20.0075149,22.6297967 19.4214386,22.6297967 C18.8353623,22.6297967 18.238413,22.524283 17.792887,22.3254194 C17.792887,22.3254194 5.932407,16.9560654 5.37659251,16.7003785 C4.77101324,16.424395 4.59799604,16.424395 4.05081156,16.671949 L0.674789932,18.1979376 C-0.224929977,18.605831 -0.224929977,19.2714089 0.674789932,19.6793023 L17.782052,27.4309536 C18.227616,27.6298529 18.8244893,27.7333333 19.4106036,27.7333333 C19.996718,27.7333333 20.5936292,27.6298529 21.0391552,27.428956 L38.1464554,19.6772691 C39.0677691,19.2795418 39.0677691,18.6159615 38.1680492,18.2081038 Z" id="路径"></path>
<path d="M38.1681499,28.741057 L34.6269629,27.016298 C34.2137705,26.8110554 34.1012891,26.8198055 33.6664598,27.0250097 C33.2338361,27.2302906 21.0548145,33.181711 21.0548145,33.181711 C20.6005158,33.3934777 20.0143044,33.5069982 19.4258874,33.5069982 C18.8418055,33.5069982 18.2425891,33.3934777 17.7991279,33.1795235 C17.7991279,33.1795235 5.93378413,27.4027205 5.37780352,27.1276309 C4.77212268,26.8307047 4.59902756,26.8307047 4.05392241,27.0970825 L0.674916976,28.741057 C-0.224972325,29.1776772 -0.224972325,29.8937619 0.674916976,30.332608 L17.7883285,38.6725253 C18.2339572,38.8952295 18.8310061,39 19.4172555,39 C20.0013374,39 20.6005158,38.8864795 21.044015,38.6725253 L38.1573885,30.332608 C39.0659478,29.8937619 39.0659478,29.1798647 38.1681879,28.7388695 L38.1681499,28.741057 Z" id="路径"></path>
</g>
<g id="形状" fill-rule="nonzero">
<use fill="#D7F4FF" xlink:href="#path-1"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
</g>
<path d="M36.2508197,12.6865931 L36.2508197,31.4875556 C35.5231462,33.0170733 34.6135544,33.7818322 33.5220442,33.7818322 C32.430534,33.7818322 29.7758097,31.8342155 25.5578712,27.9389822 L22.4409836,14.3513015 L24.7740521,13.3936955 L36.2508197,9.51516556 L36.2508197,12.6865931 Z" id="路径-28" fill="#2B37FF" opacity="0.326160976" filter="url(#filter-3)"></path>
<g id="suoding" transform="translate(32.798361, 13.000000)" fill-rule="nonzero">
<g id="形状">
<use fill="#D6F4FF" xlink:href="#path-4"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-5)" xlink:href="#path-4"></use>
</g>
</g>
</g>
<path d="M35.6361947,7.8 C36.2212684,11.0173386 36.2212684,14.6639757 35.6361947,18.7399112 C34.5271914,26.4658202 35.7421089,23.1351438 33.8883,27.390106 C30.8339226,34.4006778 26.8263271,38.2706425 21.8655135,39 L20.475,18.7399112 L21.8655135,9.20704046 L32.569421,7.8 L35.6361947,7.8 Z" id="路径-25" fill="#2B37FF" opacity="0.26121085" filter="url(#filter-6)"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="53px" height="53px" viewBox="0 0 53 53" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>首页备份 9</title>
<defs>
<rect id="path-1" x="34" y="28" width="19" height="19" rx="4"></rect>
<filter x="-10.5%" y="-10.5%" width="121.1%" height="121.1%" filterUnits="objectBoundingBox" id="filter-2">
<feGaussianBlur stdDeviation="1.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<filter x="-85.7%" y="-85.7%" width="271.4%" height="271.4%" filterUnits="objectBoundingBox" id="filter-3">
<feGaussianBlur stdDeviation="2" in="SourceGraphic"></feGaussianBlur>
</filter>
<rect id="path-4" x="0" y="28" width="19" height="19" rx="4"></rect>
<filter x="-10.5%" y="-10.5%" width="121.1%" height="121.1%" filterUnits="objectBoundingBox" id="filter-5">
<feGaussianBlur stdDeviation="1.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<filter x="-85.7%" y="-85.7%" width="271.4%" height="271.4%" filterUnits="objectBoundingBox" id="filter-6">
<feGaussianBlur stdDeviation="2" in="SourceGraphic"></feGaussianBlur>
</filter>
</defs>
<g id="企业溯源" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g transform="translate(-274.000000, -948.000000)">
<rect fill="#FFFFFF" x="0" y="0" width="1440" height="6487"></rect>
<rect id="矩形备份-42" x="274" y="948" width="55" height="55"></rect>
<g id="编组-34" transform="translate(274.000000, 951.000000)">
<path d="M9.90909091,39.9230769 L9.90909091,28 C9.90909091,25.2385763 12.1476672,23 14.9090909,23 L37.9090909,23 C40.6705147,23 42.9090909,25.2385763 42.9090909,28 L42.9090909,39.9230769 L42.9090909,39.9230769" id="路径" stroke="#2B37FF" stroke-width="2"></path>
<line x1="26.138708" y1="22.9841852" x2="26.1412431" y2="18.479088" id="路径" stroke="#2B37FF" stroke-width="2"></line>
<circle id="椭圆形" fill="#2B37FF" cx="26.5" cy="9.5" r="9.5"></circle>
<rect id="矩形" fill="#2B37FF" x="17" y="0" width="19" height="19" rx="4"></rect>
<g id="矩形备份-59">
<use fill="#D6F4FF" fill-rule="evenodd" xlink:href="#path-1"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
</g>
<rect id="矩形备份-90" fill="#2B37FF" filter="url(#filter-3)" x="40" y="28" width="7" height="7" rx="3.5"></rect>
<g id="矩形备份-60">
<use fill="#D6F4FF" fill-rule="evenodd" xlink:href="#path-4"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-5)" xlink:href="#path-4"></use>
</g>
<rect id="矩形备份-92" fill="#2B37FF" filter="url(#filter-6)" x="6" y="28" width="7" height="7" rx="3.5"></rect>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="53px" height="53px" viewBox="0 0 53 53" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>首页备份 10</title>
<defs>
<path d="M29.45,15 L24.8,15 L24.8,9 C24.8,4.0125 20.65375,0 15.5,0 C10.34625,0 6.2,4.0125 6.2,9 L6.2,15 L1.55,15 C0.6975,15 0,15.675 0,16.5 L0,34.5 C0,35.325 0.6975,36 1.55,36 L29.45,36 C30.3025,36 31,35.325 31,34.5 L31,16.5 C31,15.675 30.3025,15 29.45,15 Z M15.5,28.5 C13.795,28.5 12.4,27.15 12.4,25.5 C12.4,23.85 13.795,22.5 15.5,22.5 C17.205,22.5 18.6,23.85 18.6,25.5 C18.6,27.15 17.205,28.5 15.5,28.5 Z M21.7,15 L9.3,15 L9.3,9 C9.3,5.7 12.09,3 15.5,3 C18.91,3 21.7,5.7 21.7,9 L21.7,15 Z" id="path-1"></path>
<filter x="-6.5%" y="-5.6%" width="112.9%" height="111.1%" filterUnits="objectBoundingBox" id="filter-2">
<feGaussianBlur stdDeviation="1.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<filter x="-90.0%" y="-56.3%" width="280.0%" height="212.5%" filterUnits="objectBoundingBox" id="filter-3">
<feGaussianBlur stdDeviation="3" in="SourceGraphic"></feGaussianBlur>
</filter>
</defs>
<g id="企业溯源" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g transform="translate(-673.000000, -948.000000)">
<rect fill="#FFFFFF" x="0" y="0" width="1440" height="6487"></rect>
<rect id="矩形备份-43" x="671" y="948" width="55" height="55"></rect>
<path d="M704.517857,962.178571 L704.517857,989.934109 C703.104751,991.974731 701.540024,993.427141 699.812629,994.277701 C696.056996,996.126956 691.546016,996.192005 689.074441,996.195004 L689.074441,996.195004 L688.511691,996.195813 C688.435307,996.196018 688.365247,996.19624 688.297942,996.196454 L688.297942,996.196454 L687.542779,996.197132 C684.920118,996.18908 680.95148,996.041881 677.605324,994.283653 C675.971864,993.425357 674.272835,991.961883 672.5,989.904367 L672.5,989.904367 L672.5,962.178571 L704.517857,962.178571 Z" id="矩形" stroke="#FFFFFF" fill="#2B37FF"></path>
<path d="M672.465631,981.461193 C674.221431,984.824294 680.7382,987.321429 688.508929,987.321429 C696.377475,987.321429 702.960294,984.761031 704.616262,981.33378" id="路径" stroke="#FFFFFF" stroke-width="1.5"></path>
<path d="M672.445645,971.672471 C672.518968,971.816184 672.600974,971.958332 672.691393,972.098791 C674.729205,975.26438 681.039814,977.571429 688.508929,977.571429 C696.213608,977.571429 702.685554,975.116564 704.506425,971.79676" id="路径" stroke="#FFFFFF" stroke-width="1.5"></path>
<ellipse id="椭圆形" stroke="#FFFFFF" stroke-width="1.5" fill="#2B37FF" cx="688.508929" cy="961.678571" rx="15.7589286" ry="6.92857143"></ellipse>
<g id="编组-21" transform="translate(695.000000, 957.000000)">
<g id="编组-20" transform="translate(0.000000, 0.000000)" fill-rule="nonzero">
<g id="形状">
<use fill="#D6F4FF" xlink:href="#path-1"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
</g>
</g>
<path d="M0.0048555009,19.5400565 C0.0048555009,19.2684057 0.069035901,18.6414196 0.374820695,18.3469247 C0.738345941,17.9968212 1.55258799,18 2.42765283,18 C3.50174546,18 5.91352497,18 9.66299135,18 L10,31.7659917 C7.57649179,33.2553306 5.25881748,34 3.04697706,34 C2.52521547,34 0.920348364,33.2730093 0.537109733,32.7514587 C-0.00730844602,32.0105583 -0.0134493584,29.9224314 0.0048555009,26.4605109 C0.0112027513,25.2600823 0.0112027513,23.0869481 0.0048555009,19.9411081 C0.0048555009,20.0701381 0.0048555009,19.9364542 0.0048555009,19.5400565 Z" id="路径-27" fill="#2B37FF" opacity="0.575675601" filter="url(#filter-3)"></path>
</g>
</g>
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<svg width="53px" height="53px" viewBox="0 0 53 53" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>首页备份 11</title>
<defs>
<ellipse id="path-1" cx="20.3344482" cy="15.2727273" rx="14.9832776" ry="15.2727273"></ellipse>
<filter x="-6.7%" y="-6.5%" width="113.3%" height="113.1%" filterUnits="objectBoundingBox" id="filter-2">
<feGaussianBlur stdDeviation="1.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<filter x="-31.1%" y="-105.8%" width="162.3%" height="311.5%" filterUnits="objectBoundingBox" id="filter-3">
<feGaussianBlur stdDeviation="3" in="SourceGraphic"></feGaussianBlur>
</filter>
</defs>
<g id="企业溯源" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g transform="translate(-1117.000000, -948.000000)">
<rect fill="#FFFFFF" x="0" y="0" width="1440" height="6487"></rect>
<rect id="矩形备份-44" x="1115" y="948" width="55" height="55"></rect>
<g id="编组-24" transform="translate(1123.000000, 950.000000)">
<g id="编组-22">
<path d="M5.21236427,16.8368207 L34.9514947,12.8988088 C38.2365274,12.4638096 41.2522091,14.7742182 41.6872083,18.0592509 C41.7217855,18.3203718 41.7391304,18.5834863 41.7391304,18.8468866 L41.7391304,34.3636364 C41.7391304,37.6773449 39.0528389,40.3636364 35.7391304,40.3636364 L6,40.3636364 C2.6862915,40.3636364 9.8921602e-16,37.6773449 0,34.3636364 L0,22.7848986 C5.19649403e-16,19.7756308 2.22913776,17.2318552 5.21236427,16.8368207 Z" id="矩形备份-58" fill="#2B37FF"></path>
<g id="椭圆形">
<use fill="#D6F4FF" fill-rule="evenodd" xlink:href="#path-1"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
</g>
<rect id="矩形" fill="#2B37FF" x="0" y="20.7272727" width="41.7391304" height="27.2727273" rx="6"></rect>
<path d="M6.8990535,17.2976173 L33.679958,13.8909091 C34.7718032,16.7272727 35.3177258,18.7661765 35.3177258,20.0076205 C35.3177258,21.2490645 34.9181255,21.8477722 34.118925,21.8037437 L6.48805504,22.4 C6.3991879,21.0309694 6.3991879,20.0241186 6.48805504,19.3794475 C6.57692218,18.7347765 6.71392166,18.0408331 6.8990535,17.2976173 Z" id="路径-32" fill="#2B37FF" opacity="0.600237165" filter="url(#filter-3)"></path>
<ellipse id="椭圆形" fill="#D9F4FF" cx="34.7826087" cy="33.2727273" rx="2.67558528" ry="2.72727273"></ellipse>
</g>
<g id="renminbi" transform="translate(16.695652, 8.347826)" fill="#FFFFFF" fill-rule="nonzero">
<path d="M3.04877127,9.00178678 L0.713799622,9.00178678 C0.496030246,8.98431606 0.328670447,8.88604328 0.211720227,8.70696843 C0.0947700063,8.52789359 0.0241965974,8.32916419 0,8.11078023 C0.0241965974,7.89239627 0.0947700063,7.71332142 0.211720227,7.57355569 C0.328670447,7.43378995 0.496030246,7.35517173 0.713799622,7.33770101 L3.04877127,7.33770101 L3.04877127,6.51220965 L0.713799622,6.49910661 C0.496030246,6.48163589 0.328670447,6.39864999 0.211720227,6.2501489 C0.0947700063,6.10164781 0.0241965974,5.9138376 0,5.68671828 C0.0241965974,5.46833433 0.0947700063,5.28925948 0.211720227,5.14949375 C0.328670447,5.00972801 0.496030246,4.93110979 0.713799622,4.91363907 L2.45595463,4.91363907 L0.834782609,1.82132222 C0.754127284,1.71649792 0.677504726,1.5832837 0.604914934,1.42167957 C0.532325142,1.26007544 0.500063012,1.08318444 0.508128544,0.891006552 C0.548456207,0.646416518 0.629111531,0.447687115 0.750094518,0.294818344 C0.871077505,0.141949573 1.09691241,0.0436767917 1.42759924,0 C1.62117202,0.0174707167 1.79458097,0.0895374231 1.94782609,0.216200119 C2.1010712,0.342862815 2.22608696,0.480444709 2.32287335,0.628945801 L4.16181474,4.27159023 L6.18223062,0.602739726 C6.27901701,0.454238634 6.40403277,0.323208259 6.55727788,0.2096486 C6.710523,0.0960889418 6.88393195,0.026206075 7.07750473,0 C7.19848771,0.00873535835 7.30938878,0.026206075 7.41020794,0.0524121501 C7.5110271,0.0786182251 7.59974795,0.122295017 7.67637051,0.183442525 C7.75299307,0.244590034 7.81751733,0.331943617 7.86994329,0.445503276 C7.92236925,0.559062934 7.96068053,0.707564026 7.98487713,0.891006552 C7.98487713,1.14433194 7.9042218,1.3845543 7.74291115,1.61167362 L5.86767486,4.91363907 L7.64612476,4.91363907 C7.85582861,4.93110979 8.02117202,5.00972801 8.14215501,5.14949375 C8.263138,5.28925948 8.33169502,5.46833433 8.34782609,5.68671828 C8.33169502,5.9138376 8.26112161,6.10601549 8.13610586,6.26325194 C8.01109011,6.42048839 7.84373031,6.50784197 7.63402647,6.52531269 L5.32325142,6.53841572 L5.32325142,7.33770101 L7.64612476,7.33770101 C7.85582861,7.35517173 8.02117202,7.44252531 8.14215501,7.59976176 C8.263138,7.75699821 8.33169502,7.94480842 8.34782609,8.16319238 C8.33169502,8.39031169 8.263138,8.58030574 8.14215501,8.73317451 C8.02117202,8.88604328 7.85582861,8.97121302 7.64612476,8.98868374 L5.32325142,8.9755807 L5.32325142,10.3645027 C5.29098929,11.1070081 4.91594203,11.4782609 4.19810964,11.4782609 C3.84322621,11.4782609 3.56698173,11.3865396 3.36937618,11.2030971 C3.17177064,11.0196546 3.06490233,10.7401231 3.04877127,10.3645027 L3.04877127,9.00178678 L3.04877127,9.00178678 Z" id="路径"></path>
</g>
</g>
</g>
</g>
</svg>
\ No newline at end of file
...@@ -295,8 +295,8 @@ ...@@ -295,8 +295,8 @@
</filter> </filter>
</defs> </defs>
<g id="企业溯源" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"> <g id="企业溯源" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g transform="translate(-795.000000, -112.000000)" id="编组-3"> <g transform="translate(-795.000000, -112.000000)" id="编组-35">
<g id="编组-35" transform="translate(795.000000, 112.000000)"> <g transform="translate(795.000000, 112.000000)">
<polygon id="Path" fill="#EAF0FE" points="131 268.569414 130.922671 297 125 293.430586 125.077329 265"></polygon> <polygon id="Path" fill="#EAF0FE" points="131 268.569414 130.922671 297 125 293.430586 125.077329 265"></polygon>
<polygon id="Path" fill="url(#linearGradient-1)" opacity="0.822095598" points="465 317 415 286.639139 450.17262 266.224704 444.032988 262.684019 453.823606 257 509.966881 290.901547"></polygon> <polygon id="Path" fill="url(#linearGradient-1)" opacity="0.822095598" points="465 317 415 286.639139 450.17262 266.224704 444.032988 262.684019 453.823606 257 509.966881 290.901547"></polygon>
<polygon id="Path备份-4" fill="url(#linearGradient-2)" opacity="0.502314976" points="141 331 91 300.639139 126.17262 280.224704 120.032988 276.684019 129.823606 271 185.966881 304.901547"></polygon> <polygon id="Path备份-4" fill="url(#linearGradient-2)" opacity="0.502314976" points="141 331 91 300.639139 126.17262 280.224704 120.032988 276.684019 129.823606 271 185.966881 304.901547"></polygon>
......
...@@ -2,16 +2,21 @@ ...@@ -2,16 +2,21 @@
<svg width="53px" height="53px" viewBox="0 0 53 53" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <svg width="53px" height="53px" viewBox="0 0 53 53" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>首页备份 22</title> <title>首页备份 22</title>
<defs> <defs>
<filter x="-39.1%" y="-34.6%" width="178.3%" height="169.2%" filterUnits="objectBoundingBox" id="filter-1"> <filter x="-124.2%" y="-76.4%" width="348.4%" height="252.9%" filterUnits="objectBoundingBox" id="filter-1">
<feGaussianBlur stdDeviation="3" in="SourceGraphic"></feGaussianBlur> <feGaussianBlur stdDeviation="6" in="SourceGraphic"></feGaussianBlur>
</filter> </filter>
</defs> </defs>
<g id="首页-菜单" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"> <g id="企业溯源" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="数字资产备份" transform="translate(-73.000000, -315.000000)"> <g id="个人版上链查" transform="translate(-273.000000, -719.000000)">
<g id="编组-5" transform="translate(75.000000, 326.000000)"> <rect fill="#FFFFFF" x="0" y="0" width="1440" height="2448"></rect>
<circle id="椭圆形" fill="#2B37FF" cx="16" cy="16" r="16"></circle> <g id="编组-19" transform="translate(275.500000, 726.000000)">
<circle id="椭圆形备份-10" fill="#D6F4FF" cx="34" cy="16" r="16"></circle> <rect id="矩形" fill="#2B37FF" x="0" y="0" width="38.9433962" height="28.9811321" rx="6"></rect>
<path d="M30.6210852,3 C31.9669093,5.09872777 32.8870771,6.74311315 33.3815885,7.93315615 C33.8761,9.12319914 34.4155705,10.9914367 35,13.5378688 C34.5052304,17.6355703 33.9657599,20.4826548 33.3815885,22.079122 C32.7974172,23.6755893 30.8100881,25.9825486 27.4196013,29 L19.6287523,26.3552374 L12,20.2930629 C13.7009829,18.2167087 14.9879095,16.7856877 15.8607798,16 C16.7336501,15.2143123 17.2851901,11.5474677 17.5153997,4.99946633 L30.6210852,3 Z" id="路径-31" fill="#2B37FF" opacity="0.486077445" filter="url(#filter-1)"></path> <rect id="矩形" fill="#2B37FF" x="3.62264151" y="31.6981132" width="31.6981132" height="3.62264151" rx="1.81132075"></rect>
<circle id="椭圆形备份-10" fill="#D6F4FF" cx="34.4150943" cy="13.5849057" r="13.5849057"></circle>
<polygon id="路径-11" fill="#2B37FF" filter="url(#filter-1)" points="31.6644131 3.62264151 34.4150943 20.2437495 33.3542864 27.1698113 32.9705791 27.1698113 25.9498712 27.1698113 22.0892519 23.142271 20.4769617 18.7349317 19.9245283 13.3091823 20.4769617 9.66668078 24.0704437 5.62684861 29.5045836 3.62264151"></polygon>
<rect id="矩形" fill="#FFFFFF" x="32.6037736" y="7.24528302" width="2.71698113" height="11.7735849"></rect>
<polygon id="矩形" fill="#FFFFFF" transform="translate(31.908182, 17.232136) rotate(-49.000000) translate(-31.908182, -17.232136) " points="30.680411 12.9945236 33.2648565 12.9945236 33.2648565 19.8863782 30.5515085 21.4697482"></polygon>
<polygon id="矩形" fill="#FFFFFF" transform="translate(36.699352, 17.258690) scale(-1, 1) rotate(-49.000000) translate(-36.699352, -17.258690) " points="35.4071289 12.90646 37.9915744 12.90646 37.9703267 19.1624306 35.7071021 21.411327 35.4774972 21.6109195"></polygon>
</g> </g>
</g> </g>
</g> </g>
......
This diff is collapsed.
This diff is collapsed.
...@@ -2,45 +2,28 @@ ...@@ -2,45 +2,28 @@
<svg width="53px" height="53px" viewBox="0 0 53 53" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <svg width="53px" height="53px" viewBox="0 0 53 53" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>首页备份 9</title> <title>首页备份 9</title>
<defs> <defs>
<rect id="path-1" x="34" y="28" width="19" height="19" rx="4"></rect> <rect id="path-1" x="14.6875" y="14.6875" width="32.3125" height="32.3125" rx="8"></rect>
<filter x="-10.5%" y="-10.5%" width="121.1%" height="121.1%" filterUnits="objectBoundingBox" id="filter-2"> <filter x="-6.2%" y="-6.2%" width="112.4%" height="112.4%" filterUnits="objectBoundingBox" id="filter-2">
<feGaussianBlur stdDeviation="1.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur> <feGaussianBlur stdDeviation="1.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset> <feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite> <feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix> <feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter> </filter>
<filter x="-85.7%" y="-85.7%" width="271.4%" height="271.4%" filterUnits="objectBoundingBox" id="filter-3"> <filter x="-68.1%" y="-68.1%" width="236.2%" height="236.2%" filterUnits="objectBoundingBox" id="filter-3">
<feGaussianBlur stdDeviation="2" in="SourceGraphic"></feGaussianBlur> <feGaussianBlur stdDeviation="4" in="SourceGraphic"></feGaussianBlur>
</filter>
<rect id="path-4" x="0" y="28" width="19" height="19" rx="4"></rect>
<filter x="-10.5%" y="-10.5%" width="121.1%" height="121.1%" filterUnits="objectBoundingBox" id="filter-5">
<feGaussianBlur stdDeviation="1.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter>
<filter x="-85.7%" y="-85.7%" width="271.4%" height="271.4%" filterUnits="objectBoundingBox" id="filter-6">
<feGaussianBlur stdDeviation="2" in="SourceGraphic"></feGaussianBlur>
</filter> </filter>
</defs> </defs>
<g id="首页-菜单" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"> <g id="企业溯源" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="数字资产备份" transform="translate(-355.000000, -313.000000)"> <g id="个人版上链查" transform="translate(-274.000000, -948.000000)">
<rect id="矩形备份-42" x="355" y="313" width="55" height="55"></rect> <rect fill="#FFFFFF" x="0" y="0" width="1440" height="2448"></rect>
<g id="编组-34" transform="translate(355.000000, 316.000000)"> <rect id="矩形备份-42" x="274" y="948" width="55" height="55"></rect>
<path d="M9.90909091,39.9230769 L9.90909091,28 C9.90909091,25.2385763 12.1476672,23 14.9090909,23 L37.9090909,23 C40.6705147,23 42.9090909,25.2385763 42.9090909,28 L42.9090909,39.9230769 L42.9090909,39.9230769" id="路径" stroke="#2B37FF" stroke-width="2"></path> <g id="编组-15" transform="translate(277.500000, 951.500000)">
<line x1="26.138708" y1="22.9841852" x2="26.1412431" y2="18.479088" id="路径" stroke="#2B37FF" stroke-width="2"></line> <rect id="矩形" fill="#2E30FF" x="0" y="0" width="32.3125" height="32.3125" rx="8"></rect>
<circle id="椭圆形" fill="#2B37FF" cx="26.5" cy="9.5" r="9.5"></circle> <g id="矩形备份-12">
<rect id="矩形" fill="#2B37FF" x="17" y="0" width="19" height="19" rx="4"></rect>
<g id="矩形备份-59">
<use fill="#D6F4FF" fill-rule="evenodd" xlink:href="#path-1"></use> <use fill="#D6F4FF" fill-rule="evenodd" xlink:href="#path-1"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use> <use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
</g> </g>
<rect id="矩形备份-90" fill="#2B37FF" filter="url(#filter-3)" x="40" y="28" width="7" height="7" rx="3.5"></rect> <path d="M32.2493678,15.2043187 L32.2493678,23.994978 C32.6168169,28.8254472 31.3802655,31.4788637 28.5397138,31.9552273 C25.699162,32.4315909 21.0817574,32.4315909 14.6875,31.9552273 L14.6875,22.3420712 C16.0128454,17.796531 18.3946896,15.3255041 21.8330327,14.9289904 C25.2713759,14.5324768 28.7434875,14.6242529 32.2493678,15.2043187 Z" id="路径-19" fill="#2E30FF" opacity="0.768429711" filter="url(#filter-3)"></path>
<g id="矩形备份-60">
<use fill="#D6F4FF" fill-rule="evenodd" xlink:href="#path-4"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-5)" xlink:href="#path-4"></use>
</g>
<rect id="矩形备份-92" fill="#2B37FF" filter="url(#filter-6)" x="6" y="28" width="7" height="7" rx="3.5"></rect>
</g> </g>
</g> </g>
</g> </g>
......
...@@ -2,32 +2,28 @@ ...@@ -2,32 +2,28 @@
<svg width="53px" height="53px" viewBox="0 0 53 53" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <svg width="53px" height="53px" viewBox="0 0 53 53" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>首页备份 10</title> <title>首页备份 10</title>
<defs> <defs>
<path d="M29.45,15 L24.8,15 L24.8,9 C24.8,4.0125 20.65375,0 15.5,0 C10.34625,0 6.2,4.0125 6.2,9 L6.2,15 L1.55,15 C0.6975,15 0,15.675 0,16.5 L0,34.5 C0,35.325 0.6975,36 1.55,36 L29.45,36 C30.3025,36 31,35.325 31,34.5 L31,16.5 C31,15.675 30.3025,15 29.45,15 Z M15.5,28.5 C13.795,28.5 12.4,27.15 12.4,25.5 C12.4,23.85 13.795,22.5 15.5,22.5 C17.205,22.5 18.6,23.85 18.6,25.5 C18.6,27.15 17.205,28.5 15.5,28.5 Z M21.7,15 L9.3,15 L9.3,9 C9.3,5.7 12.09,3 15.5,3 C18.91,3 21.7,5.7 21.7,9 L21.7,15 Z" id="path-1"></path> <path d="M20.9999978,-7.80209231e-14 C35.4595633,0.590755151 47,12.4530514 47,27.0000001 L20.9999978,27 L20.9999978,-7.80209231e-14 Z" id="path-1"></path>
<filter x="-6.5%" y="-5.6%" width="112.9%" height="111.1%" filterUnits="objectBoundingBox" id="filter-2"> <filter x="-7.7%" y="-7.4%" width="115.4%" height="114.8%" filterUnits="objectBoundingBox" id="filter-2">
<feGaussianBlur stdDeviation="1.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur> <feGaussianBlur stdDeviation="1.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset> <feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite> <feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix> <feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter> </filter>
<filter x="-90.0%" y="-56.3%" width="280.0%" height="212.5%" filterUnits="objectBoundingBox" id="filter-3"> <filter x="-83.3%" y="-75.0%" width="266.7%" height="250.0%" filterUnits="objectBoundingBox" id="filter-3">
<feGaussianBlur stdDeviation="3" in="SourceGraphic"></feGaussianBlur> <feGaussianBlur stdDeviation="5" in="SourceGraphic"></feGaussianBlur>
</filter> </filter>
</defs> </defs>
<g id="首页-菜单" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"> <g id="企业溯源" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="数字资产备份" transform="translate(-454.000000, -313.000000)"> <g id="个人版上链查" transform="translate(-673.000000, -948.000000)">
<rect id="矩形备份-43" x="452" y="313" width="55" height="55"></rect> <rect fill="#FFFFFF" x="0" y="0" width="1440" height="2448"></rect>
<path d="M485.517857,327.178571 L485.517857,354.934109 C484.104751,356.974731 482.540024,358.427141 480.812629,359.277701 C477.056996,361.126956 472.546016,361.192005 470.074441,361.195004 L470.074441,361.195004 L469.511691,361.195813 C469.435307,361.196018 469.365247,361.19624 469.297942,361.196454 L469.297942,361.196454 L468.542779,361.197132 C465.920118,361.18908 461.95148,361.041881 458.605324,359.283653 C456.971864,358.425357 455.272835,356.961883 453.5,354.904367 L453.5,354.904367 L453.5,327.178571 L485.517857,327.178571 Z" id="矩形" stroke="#FFFFFF" fill="#2B37FF"></path> <rect id="矩形备份-43" x="671" y="948" width="55" height="55"></rect>
<path d="M453.465631,346.461193 C455.221431,349.824294 461.7382,352.321429 469.508929,352.321429 C477.377475,352.321429 483.960294,349.761031 485.616262,346.33378" id="路径" stroke="#FFFFFF" stroke-width="1.5"></path> <g id="编组-18" transform="translate(676.000000, 952.000000)">
<path d="M453.445645,336.672471 C453.518968,336.816184 453.600974,336.958332 453.691393,337.098791 C455.729205,340.26438 462.039814,342.571429 469.508929,342.571429 C477.213608,342.571429 483.685554,340.116564 485.506425,336.79676" id="路径" stroke="#FFFFFF" stroke-width="1.5"></path> <circle id="椭圆形" fill="#2B37FF" cx="21" cy="24.0000001" r="21"></circle>
<ellipse id="椭圆形" stroke="#FFFFFF" stroke-width="1.5" fill="#2B37FF" cx="469.508929" cy="326.678571" rx="15.7589286" ry="6.92857143"></ellipse> <g id="形状结合">
<g id="编组-21" transform="translate(476.000000, 322.000000)"> <use fill="#D6F4FF" fill-rule="evenodd" xlink:href="#path-1"></use>
<g id="编组-20" transform="translate(0.000000, 0.000000)" fill-rule="nonzero"> <use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
<g id="形状">
<use fill="#D6F4FF" xlink:href="#path-1"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
</g>
</g> </g>
<path d="M0.0048555009,19.5400565 C0.0048555009,19.2684057 0.069035901,18.6414196 0.374820695,18.3469247 C0.738345941,17.9968212 1.55258799,18 2.42765283,18 C3.50174546,18 5.91352497,18 9.66299135,18 L10,31.7659917 C7.57649179,33.2553306 5.25881748,34 3.04697706,34 C2.52521547,34 0.920348364,33.2730093 0.537109733,32.7514587 C-0.00730844602,32.0105583 -0.0134493584,29.9224314 0.0048555009,26.4605109 C0.0112027513,25.2600823 0.0112027513,23.0869481 0.0048555009,19.9411081 C0.0048555009,20.0701381 0.0048555009,19.9364542 0.0048555009,19.5400565 Z" id="路径-27" fill="#2B37FF" opacity="0.575675601" filter="url(#filter-3)"></path> <path d="M20.5009116,7.00000009 C32.1669705,9.66347879 38,16.1557081 38,26.4766881 C38,26.9001349 32,27.0666023 20,26.9760903 L20.5009116,7.00000009 Z" id="路径-18" fill="#2B37FF" opacity="0.79867699" filter="url(#filter-3)"></path>
</g> </g>
</g> </g>
</g> </g>
......
...@@ -2,34 +2,28 @@ ...@@ -2,34 +2,28 @@
<svg width="53px" height="53px" viewBox="0 0 53 53" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <svg width="53px" height="53px" viewBox="0 0 53 53" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<title>首页备份 11</title> <title>首页备份 11</title>
<defs> <defs>
<ellipse id="path-1" cx="20.3344482" cy="15.2727273" rx="14.9832776" ry="15.2727273"></ellipse> <path d="M10.3698191,26.0799424 L35.7788285,28.0237099 C36.8801801,28.1079624 37.7047018,29.0690844 37.6204494,30.1704359 C37.5840112,30.6467567 37.3782833,31.0943032 37.0404895,31.4320969 L12.5018846,55.9707018 C11.720836,56.7517504 10.4545061,56.7517504 9.67345748,55.9707018 C9.33566372,55.6329081 9.12993574,55.1853616 9.0934976,54.7090408 L7.14973004,29.3000314 C7.02335136,27.648004 8.26013398,26.2063211 9.91216135,26.0799424 C10.0644914,26.0682893 10.217489,26.0682893 10.3698191,26.0799424 Z" id="path-1"></path>
<filter x="-6.7%" y="-6.5%" width="113.3%" height="113.1%" filterUnits="objectBoundingBox" id="filter-2"> <filter x="-5.2%" y="-5.2%" width="103.8%" height="103.8%" filterUnits="objectBoundingBox" id="filter-2">
<feGaussianBlur stdDeviation="1.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur> <feGaussianBlur stdDeviation="1.5" in="SourceAlpha" result="shadowBlurInner1"></feGaussianBlur>
<feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset> <feOffset dx="0" dy="1" in="shadowBlurInner1" result="shadowOffsetInner1"></feOffset>
<feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite> <feComposite in="shadowOffsetInner1" in2="SourceAlpha" operator="arithmetic" k2="-1" k3="1" result="shadowInnerInner1"></feComposite>
<feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix> <feColorMatrix values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0" type="matrix" in="shadowInnerInner1"></feColorMatrix>
</filter> </filter>
<filter x="-31.1%" y="-105.8%" width="162.3%" height="311.5%" filterUnits="objectBoundingBox" id="filter-3"> <filter x="-41.9%" y="-70.9%" width="183.8%" height="241.8%" filterUnits="objectBoundingBox" id="filter-3">
<feGaussianBlur stdDeviation="3" in="SourceGraphic"></feGaussianBlur> <feGaussianBlur stdDeviation="3" in="SourceGraphic"></feGaussianBlur>
</filter> </filter>
</defs> </defs>
<g id="首页-菜单" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"> <g id="企业溯源" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
<g id="数字资产备份" transform="translate(-547.000000, -313.000000)"> <g id="个人版上链查" transform="translate(-1117.000000, -948.000000)">
<rect id="矩形备份-44" x="545" y="313" width="55" height="55"></rect> <rect fill="#FFFFFF" x="0" y="0" width="1440" height="2448"></rect>
<g id="编组-24" transform="translate(553.000000, 315.000000)"> <rect id="矩形备份-44" x="1115" y="948" width="55" height="55"></rect>
<g id="编组-22"> <g id="编组-16" transform="translate(1120.092238, 952.000000)">
<path d="M5.21236427,16.8368207 L34.9514947,12.8988088 C38.2365274,12.4638096 41.2522091,14.7742182 41.6872083,18.0592509 C41.7217855,18.3203718 41.7391304,18.5834863 41.7391304,18.8468866 L41.7391304,34.3636364 C41.7391304,37.6773449 39.0528389,40.3636364 35.7391304,40.3636364 L6,40.3636364 C2.6862915,40.3636364 9.8921602e-16,37.6773449 0,34.3636364 L0,22.7848986 C5.19649403e-16,19.7756308 2.22913776,17.2318552 5.21236427,16.8368207 Z" id="矩形备份-58" fill="#2B37FF"></path> <circle id="椭圆形" fill="#2B37FF" cx="22.8633885" cy="19.0465058" r="19.0465058"></circle>
<g id="椭圆形"> <g id="矩形" transform="translate(23.500000, 42.430212) rotate(-315.000000) translate(-23.500000, -42.430212) ">
<use fill="#D6F4FF" fill-rule="evenodd" xlink:href="#path-1"></use> <use fill="#D6F4FF" fill-rule="evenodd" xlink:href="#path-1"></use>
<use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use> <use fill="black" fill-opacity="1" filter="url(#filter-2)" xlink:href="#path-1"></use>
</g>
<rect id="矩形" fill="#2B37FF" x="0" y="20.7272727" width="41.7391304" height="27.2727273" rx="6"></rect>
<path d="M6.8990535,17.2976173 L33.679958,13.8909091 C34.7718032,16.7272727 35.3177258,18.7661765 35.3177258,20.0076205 C35.3177258,21.2490645 34.9181255,21.8477722 34.118925,21.8037437 L6.48805504,22.4 C6.3991879,21.0309694 6.3991879,20.0241186 6.48805504,19.3794475 C6.57692218,18.7347765 6.71392166,18.0408331 6.8990535,17.2976173 Z" id="路径-32" fill="#2B37FF" opacity="0.600237165" filter="url(#filter-3)"></path>
<ellipse id="椭圆形" fill="#D9F4FF" cx="34.7826087" cy="33.2727273" rx="2.67558528" ry="2.72727273"></ellipse>
</g>
<g id="renminbi" transform="translate(16.695652, 8.347826)" fill="#FFFFFF" fill-rule="nonzero">
<path d="M3.04877127,9.00178678 L0.713799622,9.00178678 C0.496030246,8.98431606 0.328670447,8.88604328 0.211720227,8.70696843 C0.0947700063,8.52789359 0.0241965974,8.32916419 0,8.11078023 C0.0241965974,7.89239627 0.0947700063,7.71332142 0.211720227,7.57355569 C0.328670447,7.43378995 0.496030246,7.35517173 0.713799622,7.33770101 L3.04877127,7.33770101 L3.04877127,6.51220965 L0.713799622,6.49910661 C0.496030246,6.48163589 0.328670447,6.39864999 0.211720227,6.2501489 C0.0947700063,6.10164781 0.0241965974,5.9138376 0,5.68671828 C0.0241965974,5.46833433 0.0947700063,5.28925948 0.211720227,5.14949375 C0.328670447,5.00972801 0.496030246,4.93110979 0.713799622,4.91363907 L2.45595463,4.91363907 L0.834782609,1.82132222 C0.754127284,1.71649792 0.677504726,1.5832837 0.604914934,1.42167957 C0.532325142,1.26007544 0.500063012,1.08318444 0.508128544,0.891006552 C0.548456207,0.646416518 0.629111531,0.447687115 0.750094518,0.294818344 C0.871077505,0.141949573 1.09691241,0.0436767917 1.42759924,0 C1.62117202,0.0174707167 1.79458097,0.0895374231 1.94782609,0.216200119 C2.1010712,0.342862815 2.22608696,0.480444709 2.32287335,0.628945801 L4.16181474,4.27159023 L6.18223062,0.602739726 C6.27901701,0.454238634 6.40403277,0.323208259 6.55727788,0.2096486 C6.710523,0.0960889418 6.88393195,0.026206075 7.07750473,0 C7.19848771,0.00873535835 7.30938878,0.026206075 7.41020794,0.0524121501 C7.5110271,0.0786182251 7.59974795,0.122295017 7.67637051,0.183442525 C7.75299307,0.244590034 7.81751733,0.331943617 7.86994329,0.445503276 C7.92236925,0.559062934 7.96068053,0.707564026 7.98487713,0.891006552 C7.98487713,1.14433194 7.9042218,1.3845543 7.74291115,1.61167362 L5.86767486,4.91363907 L7.64612476,4.91363907 C7.85582861,4.93110979 8.02117202,5.00972801 8.14215501,5.14949375 C8.263138,5.28925948 8.33169502,5.46833433 8.34782609,5.68671828 C8.33169502,5.9138376 8.26112161,6.10601549 8.13610586,6.26325194 C8.01109011,6.42048839 7.84373031,6.50784197 7.63402647,6.52531269 L5.32325142,6.53841572 L5.32325142,7.33770101 L7.64612476,7.33770101 C7.85582861,7.35517173 8.02117202,7.44252531 8.14215501,7.59976176 C8.263138,7.75699821 8.33169502,7.94480842 8.34782609,8.16319238 C8.33169502,8.39031169 8.263138,8.58030574 8.14215501,8.73317451 C8.02117202,8.88604328 7.85582861,8.97121302 7.64612476,8.98868374 L5.32325142,8.9755807 L5.32325142,10.3645027 C5.29098929,11.1070081 4.91594203,11.4782609 4.19810964,11.4782609 C3.84322621,11.4782609 3.56698173,11.3865396 3.36937618,11.2030971 C3.17177064,11.0196546 3.06490233,10.7401231 3.04877127,10.3645027 L3.04877127,9.00178678 L3.04877127,9.00178678 Z" id="路径"></path>
</g> </g>
<polygon id="路径-17" fill="#2B37FF" opacity="0.757605416" filter="url(#filter-3)" points="13.5843216 29.7711674 16.5846556 31.4214178 22.5801698 32.2325482 26.4938566 32.2325482 30.5622608 32.2325482 35.0726871 30.5040631 23.618714 19.5348777"></polygon>
</g> </g>
</g> </g>
</g> </g>
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<div class="bg-white md:min-w-bodySet mx-auto"> <div class="bg-white md:min-w-bodySet mx-auto">
<div class="banner bg-gradient-to-r from-bannerBgStartColor to-bannerBgEndColor"> <div class="banner bg-gradient-to-r from-bannerBgStartColor to-bannerBgEndColor">
<div class="w-bodySet mx-auto"> <div class="w-bodySet mx-auto">
<div class="pl-48 mx-auto pt-16 flex justify-between items-center"> <div class="pl-48 mx-auto pt-14 h-480px box-content flex justify-between items-center">
<div class> <div class>
<div class="text-4xl font-semibold text-headerMain">存证服务</div> <div class="text-4xl font-semibold text-headerMain">存证服务</div>
<div class="text-base text-contentMain mt-5 pr-3"> <div class="text-base text-contentMain mt-5 pr-3">
......
<template> <template>
<div class="bg-white md:min-w-bodySet mx-auto"> <div class="bg-white md:min-w-bodySet mx-auto">
<div class="banner bg-gradient-to-r from-bannerBgStartColor to-bannerBgEndColor pb-14"> <div class="banner bg-gradient-to-r from-bannerBgStartColor to-bannerBgEndColor">
<div class="w-bodySet mx-auto"> <div class="w-bodySet mx-auto">
<div class="pl-48 pr-32 mx-auto pt-28 flex justify-between"> <div
class="pl-48 pr-32 mx-auto pt-14 h-480px box-content overflow-hidden flex justify-between items-center"
>
<div class="pr-24"> <div class="pr-24">
<div class="text-4xl font-semibold text-headerMain pt-12">企业级溯源系统</div> <div class="text-4xl font-semibold text-headerMain pt-12">企业级溯源系统</div>
<div <div
...@@ -12,7 +14,9 @@ ...@@ -12,7 +14,9 @@
<MainButton size="large" text="立即体验" @click="handleClick('https://slc.8n.cn/')" /> <MainButton size="large" text="立即体验" @click="handleClick('https://slc.8n.cn/')" />
</div> </div>
</div> </div>
<svg-icon iconClass="companyBanner" width="980px" height="367px" /> <div class="pt-14">
<svg-icon iconClass="companyBanner" width="510px" height="367px" />
</div>
</div> </div>
</div> </div>
</div> </div>
...@@ -35,14 +39,16 @@ ...@@ -35,14 +39,16 @@
:class="item.id % 2 == 0 ? ' bg-white' : ' bg-gray-50 '" :class="item.id % 2 == 0 ? ' bg-white' : ' bg-gray-50 '"
> >
<div <div
class="flex items-center w-bodySet mx-auto justify-center pl-40 pr-32" class="flex items-center w-bodySet mx-auto justify-between pl-40 pr-32"
data-aos="fade-up" data-aos-duration="600" data-aos-easing="ease-in-out-cubic" data-aos="fade-up"
data-aos-duration="600"
data-aos-easing="ease-in-out-cubic"
:class="item.id % 2 == 0 ? ' flex-row-reverse' : ' flex-row'" :class="item.id % 2 == 0 ? ' flex-row-reverse' : ' flex-row'"
> >
<div :class="item.id % 2 == 0 ? ' pl-28' : ' pr-28'"> <div :class="item.id % 2 == 0 ? 'pr-5 pl-14' : 'pl-5 pr-14'">
<svg-icon :iconClass="item.icon" width="606" height="485" /> <svg-icon :iconClass="item.icon" width="606" height="485" />
</div> </div>
<div class="w-1/3"> <div :class="item.id % 2 == 0 ? ' pl-20' : 'pr-20'">
<div class="pt-2 text-headerMain text-2xl font-semibold">{{ item.title }}</div> <div class="pt-2 text-headerMain text-2xl font-semibold">{{ item.title }}</div>
<div class="text-sm text-contentMain pt-4 text-justify">{{ item.detail }}</div> <div class="text-sm text-contentMain pt-4 text-justify">{{ item.detail }}</div>
</div> </div>
......
...@@ -2,14 +2,18 @@ ...@@ -2,14 +2,18 @@
<div class="bg-white md:min-w-bodySet mx-auto"> <div class="bg-white md:min-w-bodySet mx-auto">
<div class="banner bg-gradient-to-r from-bannerBgStartColor to-bannerBgEndColor"> <div class="banner bg-gradient-to-r from-bannerBgStartColor to-bannerBgEndColor">
<div class="w-bodySet mx-auto"> <div class="w-bodySet mx-auto">
<div class="pl-48 pr-11 mx-auto pt-12 flex justify-between items-center"> <div
class="pl-48 pr-11 mx-auto pt-14 h-480px box-content overflow-hidden flex justify-between items-center"
>
<div class="w-1/2"> <div class="w-1/2">
<div class="text-4xl font-semibold text-headerMain">数字资产</div> <div class="text-4xl font-semibold text-headerMain">数字资产</div>
<div <div
class="text-base text-contentMain mt-5 pr-7" class="text-base text-contentMain mt-5 pr-7"
>通过发行通证的方式将资产与通证锚定,实现资产数字化,让线下有价值属性的实物资产,在区块链上进行数字化呈现,促进资产流通,提升资产价值,实现共享经济。</div> >通过发行通证的方式将资产与通证锚定,实现资产数字化,让线下有价值属性的实物资产,在区块链上进行数字化呈现,促进资产流通,提升资产价值,实现共享经济。</div>
</div> </div>
<svg-icon iconClass="digitalAssetsBanner" width="649px" height="490px" /> <div class="pt-12">
<svg-icon iconClass="digitalAssetsBanner" width="649px" height="490px" />
</div>
</div> </div>
</div> </div>
</div> </div>
...@@ -24,13 +28,15 @@ ...@@ -24,13 +28,15 @@
> >
<div <div
class="flex w-bodySet mx-auto justify-between px-40" class="flex w-bodySet mx-auto justify-between px-40"
data-aos="fade-up" data-aos-duration="600" data-aos-easing="ease-in-out-cubic" data-aos="fade-up"
data-aos-duration="600"
data-aos-easing="ease-in-out-cubic"
:class="item.id % 2 == 0 ? ' flex-row-reverse' : ' flex-row'" :class="item.id % 2 == 0 ? ' flex-row-reverse' : ' flex-row'"
> >
<svg-icon :iconClass="item.icon" width="552px" height="436px" /> <svg-icon :iconClass="item.icon" width="552px" height="436px" />
<div class="w-1/2 px-20 pt-28"> <div class="w-1/2 px-20 pt-28">
<div class="text-3xl text-headerMain font-semibold">{{ item.title }}</div> <div class="text-3xl text-headerMain font-semibold">{{ item.title }}</div>
<div class="text-sm text-contentMain pt-8 text-justify">{{ item.detail }}</div> <div class="text-sm text-contentMain pt-8 text-justify">{{ item.detail }}</div>
</div> </div>
</div> </div>
</div> </div>
......
...@@ -90,24 +90,24 @@ ...@@ -90,24 +90,24 @@
<TabCard :data="nav[currentNav]"> <TabCard :data="nav[currentNav]">
<template #dataProve v-if="currentNav == 0"> <template #dataProve v-if="currentNav == 0">
<div class="flex flex-row w-1/2 mb-6"> <div class="flex flex-row w-1/2 mb-6">
<div class="w-1/2"> <div class="w-2/3">
<div class="flex flex-row items-center"> <div class="flex flex-row items-center">
<div class="w-2 h-2 rounded-full bg-indigo-400 mr-2"></div> <div class="w-2 h-2 rounded-full bg-indigo-400 mr-2"></div>
<div class="text-contentMain text-xs">自动上链</div> <div class="text-contentMain text-xs">支持各类型电子数据</div>
</div> </div>
<div class="flex flex-row items-center mt-6"> <div class="flex flex-row items-center mt-6">
<div class="w-2 h-2 rounded-full bg-indigo-400 mr-2"></div> <div class="w-2 h-2 rounded-full bg-indigo-400 mr-2"></div>
<div class="text-contentMain text-xs">自动增量存证</div> <div class="text-contentMain text-xs">灵活可控满足各类需求</div>
</div> </div>
</div> </div>
<div class="w-1/2"> <div class="w-1/2">
<div class="flex flex-row items-center"> <div class="flex flex-row items-center">
<div class="w-2 h-2 rounded-full bg-indigo-400 mr-2"></div> <div class="w-2 h-2 rounded-full bg-indigo-400 mr-2"></div>
<div class="text-contentMain text-xs">数据统计</div> <div class="text-contentMain text-xs">透明安全稳定可靠</div>
</div> </div>
<div class="flex flex-row items-center mt-6"> <div class="flex flex-row items-center mt-6">
<div class="w-2 h-2 rounded-full bg-indigo-400 mr-2"></div> <div class="w-2 h-2 rounded-full bg-indigo-400 mr-2"></div>
<div class="text-contentMain text-xs">定制查询条件</div> <div class="text-contentMain text-xs">扫码查验链上数据</div>
</div> </div>
</div> </div>
</div> </div>
......
<template> <template>
<div class="bg-white md:min-w-bodySet mx-auto"> <div class="bg-white md:min-w-bodySet mx-auto">
<div class="banner bg-gradient-to-r from-bannerBgStartColor to-bannerBgEndColor pb-14"> <div class="banner bg-gradient-to-r from-bannerBgStartColor to-bannerBgEndColor">
<div class="w-bodySet mx-auto"> <div class="w-bodySet mx-auto">
<div class="pl-48 pr-32 mx-auto pt-28 flex justify-between items-center"> <div class="pl-48 pr-32 mx-auto pt-14 h-480px box-content flex justify-between items-center">
<div class="pr-24"> <div class="pr-24">
<div class="text-4xl font-semibold text-headerMain">通证版商城-上链购</div> <div class="text-4xl font-semibold text-headerMain">通证版商城-上链购</div>
<div <div
class="text-base text-contentMain mt-5 pr-3" class="text-base text-contentMain mt-5 pr-3"
>结合区块链技术,打破传统电商模式,集成商品数字化+商品溯源+区块链提货券+区块链商家积分+数字资产交易模块,构建数字商务全新业态。</div> >结合区块链技术,打破传统电商模式,集成商品数字化+商品溯源+区块链提货券+区块链商家积分+数字资产交易模块,构建数字商务全新业态。</div>
<div class="flex flex-row mt-7"> <div class="flex flex-row mt-7">
<MainButton size="large" text="立即体验" @click="handleClick('https://slc.8n.cn/')" /> <MainButton size="large" text="立即体验" @click="handleClick('https://slg.8n.cn/#/')" />
</div> </div>
</div> </div>
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
</div> </div>
<div class="introduction pb-24 w-bodySet mx-auto"> <div class="introduction pb-24 w-bodySet mx-auto">
<div class="text-3xl text-headerMain font-semibold text-center pt-20 pb-16">产品介绍</div> <div class="text-3xl text-headerMain font-semibold text-center pt-20 pb-16">产品介绍</div>
<div class="sticky top-16"> <div class="sticky top-15">
<svg-icon iconClass="mailBg" width="740" height="752" /> <svg-icon iconClass="mailBg" width="740" height="752" />
</div> </div>
......
...@@ -2,17 +2,21 @@ ...@@ -2,17 +2,21 @@
<div class="bg-white md:min-w-bodySet mx-auto"> <div class="bg-white md:min-w-bodySet mx-auto">
<div class="banner bg-gradient-to-r from-bannerBgStartColor to-bannerBgEndColor"> <div class="banner bg-gradient-to-r from-bannerBgStartColor to-bannerBgEndColor">
<div class="w-bodySet mx-auto"> <div class="w-bodySet mx-auto">
<div class="px-48 mx-auto pt-28 flex justify-between items-center"> <div
class="px-48 mx-auto pt-14 h-480px box-content overflow-hidden flex justify-between items-center"
>
<div class="w-1/2"> <div class="w-1/2">
<div class="text-4xl font-semibold text-headerMain">个人版存证溯源</div> <div class="text-4xl font-semibold text-headerMain">个人版存证溯源</div>
<div <div
class="text-base text-contentMain mt-5 pr-7" class="text-base text-contentMain mt-5 pr-7"
>基于区块链技术的存证溯源服务系统,面向个人和小微企业提供秒级上链、增量更新、线上校验的简单易用存证溯源服务。</div> >基于区块链技术的存证溯源服务系统,面向个人和小微企业提供秒级上链、增量更新、线上校验的简单易用存证溯源服务。</div>
<div class="flex flex-row mt-7"> <div class="flex flex-row mt-7">
<MainButton size="large" text="立即体验" @click="handleClick('https://cx.8n.cn/')" /> <MainButton size="large" text="立即体验" @click="handleClick('https://sy.8n.cn/')" />
</div> </div>
</div> </div>
<svg-icon iconClass="personalBanner" width="413px" height="447px" /> <div class=" pt-16">
<svg-icon iconClass="personalBanner" width="413px" height="447px" />
</div>
</div> </div>
</div> </div>
</div> </div>
...@@ -31,7 +35,7 @@ ...@@ -31,7 +35,7 @@
<div class="grid grid-cols-2 grid-rows-3 gap-y-6 gap-x-5 w-bodySet mx-auto px-28"> <div class="grid grid-cols-2 grid-rows-3 gap-y-6 gap-x-5 w-bodySet mx-auto px-28">
<div class v-for="i in interfaceList" :key="i.id"> <div class v-for="i in interfaceList" :key="i.id">
<div class="bg-white border-l-4 border-blue-600 px-12 h-44 hover:shadow-homeCardShadow"> <div class="bg-white border-l-4 border-blue-600 px-12 h-44 hover:shadow-homeCardShadow">
<div class="pt-12 text-headerMain text-lg font-semibold">{{ i.title }}</div> <div class="pt-12 text-headerMain text-lg font-semibold">{{ i.title }}</div>
<div class="text-sm text-contentMain text-justify pt-2">{{ i.detail }}</div> <div class="text-sm text-contentMain text-justify pt-2">{{ i.detail }}</div>
</div> </div>
</div> </div>
......
...@@ -24,7 +24,7 @@ module.exports = { ...@@ -24,7 +24,7 @@ module.exports = {
current: 'currentColor', current: 'currentColor',
mainBlue: '#2E2DFF', mainBlue: '#2E2DFF',
footerBg: '#1E2454', footerBg: '#1E2454',
footerSecondFont:'#8A92CF', footerSecondFont:'#868DC3',
footerBorder: '#313A7E', footerBorder: '#313A7E',
bannerBgStartColor:'#F2F6FF', bannerBgStartColor:'#F2F6FF',
bannerBgEndColor:'#E1E9FE', bannerBgEndColor:'#E1E9FE',
...@@ -67,6 +67,7 @@ module.exports = { ...@@ -67,6 +67,7 @@ module.exports = {
11: '2.75rem', 11: '2.75rem',
12: '3rem', 12: '3rem',
14: '3.5rem', 14: '3.5rem',
15:'3.75rem',
16: '4rem', 16: '4rem',
20: '5rem', 20: '5rem',
24: '6rem', 24: '6rem',
...@@ -83,6 +84,7 @@ module.exports = { ...@@ -83,6 +84,7 @@ module.exports = {
72: '18rem', 72: '18rem',
80: '20rem', 80: '20rem',
96: '24rem', 96: '24rem',
'480px':'30rem',
'7/10-screen':'70vh' '7/10-screen':'70vh'
}, },
animation: { animation: {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment