mirror of
https://github.com/kubesphere/website.git
synced 2025-12-26 00:12:48 +00:00
add live page
Signed-off-by: liuboaibc <kukudehero@gmail.com>
This commit is contained in:
parent
134f7dc66d
commit
d5fb5f64b4
|
|
@ -0,0 +1,100 @@
|
|||
@import 'variables';
|
||||
@import 'mixin';
|
||||
@import 'markdown';
|
||||
|
||||
.md-body {
|
||||
font-size: 16px;
|
||||
line-height: 2.29;
|
||||
color: #36435c;
|
||||
}
|
||||
|
||||
.md-body h2 {
|
||||
font-weight: 500;
|
||||
line-height: 64px;
|
||||
color: #171c34;
|
||||
text-shadow: none;
|
||||
text-align: left;
|
||||
margin-bottom: 20px;
|
||||
border-bottom: 1px solid #ccd3db;
|
||||
}
|
||||
|
||||
.md-body h3 {
|
||||
font-weight: 600;
|
||||
line-height: 1.5;
|
||||
color: #171c34;
|
||||
}
|
||||
|
||||
.md-body img {
|
||||
max-width: 100%;
|
||||
box-sizing: content-box;
|
||||
background-color: #fff;
|
||||
border-radius: 5px;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.md-body blockquote {
|
||||
padding: 4px 20px 4px 12px;
|
||||
border-radius: 4px;
|
||||
background-color: #ecf0f2;
|
||||
}
|
||||
|
||||
header.navigation {
|
||||
box-shadow: 0 4px 8px 0 rgba(36,46,66,.06), 0 8px 16px 0 rgba(36,46,66,.05);
|
||||
background-image: linear-gradient(to bottom,rgba(134,219,162,0.9),rgba(0,170,114,0.9));
|
||||
}
|
||||
|
||||
.section-1 {
|
||||
padding-top: 124px;
|
||||
|
||||
& > div {
|
||||
box-sizing: border-box;
|
||||
width: 880px;
|
||||
margin: 0 auto;
|
||||
padding: 40px 60px 76px;
|
||||
background-color: #ffffff;
|
||||
|
||||
@media only screen and (max-width: $mobile-max-width) {
|
||||
width: 100%;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.video-div {
|
||||
position: relative;
|
||||
margin-bottom: 24px;
|
||||
|
||||
video {
|
||||
width: 100%;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
iframe {
|
||||
width: 100%;
|
||||
height: 400px;
|
||||
|
||||
@media only screen and (max-width: $mobile-max-width) {
|
||||
height: 200px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.time-div {
|
||||
img, span {
|
||||
vertical-align: middle;
|
||||
font-size: 14px;
|
||||
line-height: 1.43;
|
||||
color: #919aa3;
|
||||
}
|
||||
span + img {
|
||||
margin-left: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
h1 {
|
||||
margin-top: 8px;
|
||||
text-shadow: 0 8px 16px rgba(35, 45, 65, 0.1);
|
||||
font-size: 40px;
|
||||
line-height: 1.4;
|
||||
color: #171c34;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,15 +1,147 @@
|
|||
@import 'open-source';
|
||||
|
||||
@import 'variables';
|
||||
@import 'mixin';
|
||||
.btn-a {
|
||||
display: inline-block;
|
||||
padding: 0 53px;
|
||||
height: 56px;
|
||||
border-radius: 28px;
|
||||
line-height: 56px;
|
||||
font-size: 16px;
|
||||
color: #ffffff;
|
||||
box-shadow: 0 10px 50px 0 rgba(34, 43, 62, 0.1), 0 8px 16px 0 rgba(33, 43, 61, 0.2), 0 10px 50px 0 rgba(34, 43, 62, 0.1);
|
||||
background-image: linear-gradient(to bottom, rgba(85, 188, 138, 0), rgba(85, 188, 138, 0.1) 97%), linear-gradient(to bottom, #55bc8a, #55bc8a);
|
||||
&:hover {
|
||||
box-shadow: none;
|
||||
}
|
||||
}
|
||||
.section-1 {
|
||||
position: relative;
|
||||
padding-top: 124px;
|
||||
padding-bottom: 136px;
|
||||
}
|
||||
|
||||
.section-2 {
|
||||
position: relative;
|
||||
margin-top: -94px;
|
||||
|
||||
.common-layout {
|
||||
display: flex;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 4px 8px 0 rgba(36, 46, 66, 0.06), 0 8px 16px 0 rgba(36, 46, 66, 0.05);
|
||||
overflow: hidden;
|
||||
background-color: #ffffff;
|
||||
|
||||
@media only screen and (max-width: $mobile-max-width) {
|
||||
flex-direction: column;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.live-2-left {
|
||||
width: 840px;
|
||||
height: 400px;
|
||||
@media only screen and (max-width: $mobile-max-width) {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
min-height: 200px;
|
||||
object-fit: cover;
|
||||
}
|
||||
}
|
||||
|
||||
.live-2-right {
|
||||
box-sizing: border-box;
|
||||
width: 320px;
|
||||
height: 400px;
|
||||
padding: 10px;
|
||||
@media only screen and (max-width: $mobile-max-width) {
|
||||
max-width: 320px;
|
||||
width: auto;
|
||||
height: auto;
|
||||
margin: 0 auto;
|
||||
}
|
||||
h2 {
|
||||
margin-bottom: 10px;
|
||||
font-size: 18px;
|
||||
line-height: 1.78;
|
||||
letter-spacing: -0.05px;
|
||||
color: #3d3e49;
|
||||
@include block-ellipsis(2);
|
||||
}
|
||||
|
||||
.tag {
|
||||
position: absolute;
|
||||
top: 4px;
|
||||
right: 0;
|
||||
font-size: 12px;
|
||||
padding: 4px 10px;
|
||||
line-height: 12px;
|
||||
border-top-left-radius: 10px;
|
||||
border-bottom-left-radius: 10px;
|
||||
}
|
||||
|
||||
.shadow {
|
||||
position: relative;
|
||||
padding: 20px 24px;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 4px 8px 0 rgba(36, 46, 66, 0.06), 0 8px 16px 0 rgba(36, 46, 66, 0.05);
|
||||
}
|
||||
|
||||
.notice {
|
||||
box-sizing: border-box;
|
||||
height: 250px;
|
||||
|
||||
p {
|
||||
margin-bottom: 6px;
|
||||
height: 28px;
|
||||
font-size: 16px;
|
||||
line-height: 28px;
|
||||
letter-spacing: -0.04px;
|
||||
color: #919aa3;
|
||||
|
||||
img {
|
||||
vertical-align: middle;
|
||||
margin-right: 4px;
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
margin: 34px auto 0;
|
||||
height: 40px;
|
||||
padding: 0 28px;
|
||||
line-height: 40px;
|
||||
}
|
||||
|
||||
.tag {
|
||||
color: #3d3e49;
|
||||
background-color: #f7b500;
|
||||
}
|
||||
}
|
||||
|
||||
.over {
|
||||
box-sizing: border-box;
|
||||
height: 120px;
|
||||
margin-top: 10px;
|
||||
|
||||
a {
|
||||
color: #3d3e49;
|
||||
}
|
||||
|
||||
.tag {
|
||||
color: #ffffff;
|
||||
background-color: #919aa3;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.section-3 {
|
||||
background-color: #fff;
|
||||
padding-top: 60px;
|
||||
padding-bottom: 100px;
|
||||
padding-top: 30px;
|
||||
padding-bottom: 60px;
|
||||
|
||||
@media only screen and (max-width: $mobile-max-width) {
|
||||
padding-top: 20px;
|
||||
|
|
@ -19,7 +151,7 @@
|
|||
& > div {
|
||||
|
||||
& > .video-tab-ul {
|
||||
padding: 30px 34px 22px;
|
||||
padding: 0 34px;
|
||||
border-radius: 5px;
|
||||
box-shadow: 0 4px 16px 0 rgba(7,42,68,.1);
|
||||
background-color: #fff;
|
||||
|
|
@ -28,7 +160,7 @@
|
|||
display: inline-block;
|
||||
min-width: 48px;
|
||||
padding: 8px 16px;
|
||||
margin-bottom: 8px;
|
||||
margin: 10px 0;
|
||||
border-radius: 20px;
|
||||
-webkit-transition: all .2s ease-in-out;
|
||||
transition: all .2s ease-in-out;
|
||||
|
|
@ -220,4 +352,129 @@
|
|||
height: 300px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.section-4 {
|
||||
background-image: linear-gradient(113deg, #4a499a 27%, #8552c3 81%);
|
||||
.common-layout {
|
||||
white-space: nowrap;
|
||||
overflow: auto;
|
||||
& > div {
|
||||
box-sizing: border-box;
|
||||
display: inline-block;
|
||||
vertical-align: top;
|
||||
white-space: normal;
|
||||
width: 140px;
|
||||
height: 225px;
|
||||
margin: 80px 40px;
|
||||
padding-top: 20px;
|
||||
border-top: 1px solid #a1b3c4;
|
||||
|
||||
.time-div {
|
||||
display: flex;
|
||||
|
||||
.right {
|
||||
margin-left: 4px;
|
||||
font-weight: bold;
|
||||
line-height: 1;
|
||||
color: #ffffff;
|
||||
.date {
|
||||
margin-bottom: 4px;
|
||||
font-size: 24px;
|
||||
}
|
||||
.time {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
h3 {
|
||||
height: 60px;
|
||||
margin: 21px 0 47px;
|
||||
font-size: 14px;
|
||||
font-weight: 500;
|
||||
line-height: 1.43;
|
||||
color: #d5dee7;
|
||||
a {
|
||||
color: #d5dee7;
|
||||
|
||||
&:hover {
|
||||
color: #008a5c;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
button {
|
||||
font-size: 12px;
|
||||
font-weight: 600;
|
||||
line-height: 2;
|
||||
border: none;
|
||||
padding: 5px 28px;
|
||||
border-radius: 17px;
|
||||
cursor: pointer;
|
||||
box-shadow: 0 10px 50px 0 rgba(34, 43, 62, 0.1), 0 8px 16px 0 rgba(33, 43, 61, 0.2);
|
||||
&:hover {
|
||||
box-shadow: none;
|
||||
}
|
||||
}
|
||||
|
||||
.over-btn {
|
||||
color: #ffffff;
|
||||
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1) 97%), linear-gradient(to bottom, #242e42, #242e42);
|
||||
}
|
||||
|
||||
.notive-btn {
|
||||
color: #3d3e49;
|
||||
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1) 97%), linear-gradient(to bottom, #ffffff, #ffffff);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.section-5 {
|
||||
.common-layout {
|
||||
position: relative;
|
||||
padding-top: 100px;
|
||||
padding-left: 60px;
|
||||
padding-bottom: 30px;
|
||||
@media only screen and (max-width: $mobile-max-width) {
|
||||
padding-left: 20px;
|
||||
}
|
||||
.left-div {
|
||||
position: relative;
|
||||
width: 600px;
|
||||
@media only screen and (max-width: $mobile-max-width) {
|
||||
width: 100%;
|
||||
z-index: 2;
|
||||
}
|
||||
h2 {
|
||||
font-size: 32px;
|
||||
font-weight: 600;
|
||||
line-height: 1.63;
|
||||
color: #171c34;
|
||||
text-shadow: 0 4px 8px rgba(35, 45, 65, 0.1);
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 13px;
|
||||
font-size: 16px;
|
||||
line-height: 1.5;
|
||||
letter-spacing: -0.04px;
|
||||
color: #31383e;
|
||||
}
|
||||
|
||||
a {
|
||||
margin-top: 18px;
|
||||
}
|
||||
}
|
||||
|
||||
& > img {
|
||||
position: absolute;
|
||||
top: 88px;
|
||||
right: 0;
|
||||
@media only screen and (max-width: $mobile-max-width) {
|
||||
opacity: 0.3;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,2 +1,183 @@
|
|||
|
||||
@import 'variables';
|
||||
|
||||
@mixin clearfix {
|
||||
zoom: 1;
|
||||
|
||||
&:after {
|
||||
content: '.';
|
||||
display: block;
|
||||
clear: both;
|
||||
overflow: hidden;
|
||||
height: 0;
|
||||
visibility: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin ellipsis {
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
word-wrap: normal;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
@mixin block-ellipsis($line: 2) {
|
||||
display: -webkit-box;
|
||||
overflow: hidden;
|
||||
-webkit-line-clamp: $line;
|
||||
-webkit-box-orient: vertical;
|
||||
}
|
||||
|
||||
@mixin nowrap {
|
||||
white-space: nowrap;
|
||||
word-wrap: normal;
|
||||
}
|
||||
|
||||
@mixin break-all {
|
||||
word-break: break-all;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
@mixin break-word {
|
||||
word-wrap: break-word;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
@mixin vertical-center {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
|
||||
@mixin middle {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
@mixin TypographyTitle($fontWeight: $font-bold) {
|
||||
font-family: $font-family-id;
|
||||
font-style: normal;
|
||||
font-stretch: normal;
|
||||
letter-spacing: normal;
|
||||
font-weight: $fontWeight;
|
||||
}
|
||||
|
||||
@mixin TypographyTitleH1($color: $dark-color06) {
|
||||
font-size: 40px;
|
||||
line-height: 1.4;
|
||||
@include TypographyTitle();
|
||||
color: $color;
|
||||
}
|
||||
|
||||
@mixin TypographyTitleH2($color: $dark-color06) {
|
||||
font-size: 32px;
|
||||
line-height: 1.38;
|
||||
@include TypographyTitle();
|
||||
color: $color;
|
||||
}
|
||||
|
||||
@mixin TypographyTitleH3($color: $dark-color06) {
|
||||
font-size: 24px;
|
||||
line-height: 1.33;
|
||||
@include TypographyTitle();
|
||||
color: $color;
|
||||
}
|
||||
|
||||
@mixin TypographyTitleH4($color: $dark-color06) {
|
||||
font-size: 20px;
|
||||
line-height: 1.4;
|
||||
@include TypographyTitle();
|
||||
color: $color;
|
||||
}
|
||||
|
||||
@mixin TypographyTitleH5($color: $dark-color06) {
|
||||
font-size: 14px;
|
||||
line-height: 1.43;
|
||||
@include TypographyTitle(bold);
|
||||
color: $color;
|
||||
}
|
||||
|
||||
@mixin TypographyTitleH6($color: $dark-color06) {
|
||||
font-size: $size-small;
|
||||
line-height: 1.67;
|
||||
@include TypographyTitle(bold);
|
||||
color: $color;
|
||||
}
|
||||
|
||||
@mixin TypographySymbolText($color: $dark-color06) {
|
||||
font-family: $font-family;
|
||||
font-size: $size-small;
|
||||
font-weight: $font-bold;
|
||||
font-style: normal;
|
||||
font-stretch: normal;
|
||||
line-height: 1.67;
|
||||
letter-spacing: normal;
|
||||
color: $color;
|
||||
}
|
||||
|
||||
@mixin TypographyParagraphCode($color: #363e4a) {
|
||||
font-family: Monaco;
|
||||
font-size: $size-small;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-stretch: normal;
|
||||
line-height: 2;
|
||||
letter-spacing: normal;
|
||||
color: $color;
|
||||
}
|
||||
|
||||
@mixin TypographyParagraph($color: $dark-color07) {
|
||||
font-family: $font-family-id;
|
||||
font-size: $size-small;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
font-stretch: normal;
|
||||
line-height: 1.67;
|
||||
letter-spacing: normal;
|
||||
color: $color;
|
||||
}
|
||||
|
||||
@mixin common-flex {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
@mixin absolute-center {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
@mixin product-container {
|
||||
width: 277px;
|
||||
height: 172px;
|
||||
padding: 12px;
|
||||
border-radius: 3px;
|
||||
border: solid 1px $light-color06;
|
||||
cursor: pointer;
|
||||
|
||||
&:hover {
|
||||
box-shadow: 0 4px 8px 0 rgba(36, 46, 66, 0.2);
|
||||
border: solid 1px $dark-color01;
|
||||
}
|
||||
}
|
||||
|
||||
@mixin common-layout {
|
||||
position: relative;
|
||||
width: 1140px;
|
||||
margin: 0 auto;
|
||||
padding-left: 260px;
|
||||
|
||||
@media only screen and (max-width: $width-01) {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: $width-02) {
|
||||
padding: 10px;
|
||||
padding-top: 20px;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,10 +0,0 @@
|
|||
---
|
||||
title: live - KubeSphere | Enterprise container platform, built on Kubernetes
|
||||
description: KubeSphere is an open source container platform based on Kubernetes for enterprise app development and deployment, suppors installing anywhere from on-premise datacenter to any cloud to edge.
|
||||
keywords: KubeSphere,DevOps,Istio,Service Mesh,Jenkins,
|
||||
css: "scss/live.scss"
|
||||
|
||||
section1:
|
||||
title: KubeSphere Cloud Native Live Room
|
||||
image: /images/live/background.jpg
|
||||
---
|
||||
|
|
@ -0,0 +1,68 @@
|
|||
---
|
||||
title: live - KubeSphere | Enterprise container platform, built on Kubernetes
|
||||
description: KubeSphere is an open source container platform based on Kubernetes for enterprise app development and deployment, suppors installing anywhere from on-premise datacenter to any cloud to edge.
|
||||
keywords: KubeSphere,DevOps,Istio,Service Mesh,Jenkins,
|
||||
css: "scss/live.scss"
|
||||
|
||||
section1:
|
||||
title: KubeSphere 云原生直播间
|
||||
image: /images/live/background.jpg
|
||||
|
||||
section2:
|
||||
image: /images/live/friend.jpeg
|
||||
url: ./test
|
||||
|
||||
notice:
|
||||
title: KubeSphere 在直播电商行业的多集群应用实践
|
||||
timeIcon: /images/live/clock.svg
|
||||
time: 2020/10/22 – 10/25
|
||||
baseIcon: /images/live/base.svg
|
||||
base: 线上
|
||||
tag: 预告
|
||||
url: ./test
|
||||
|
||||
over:
|
||||
title: KubeSphere 在直播电商行业的多集群应用实践
|
||||
url: ./test
|
||||
tag: 结束
|
||||
|
||||
section3:
|
||||
videos:
|
||||
- title: 为什么选择 KubeSphere
|
||||
link: //player.bilibili.com/player.html?aid=69124503&bvid=BV1vJ411T7th&cid=119801064&page=1
|
||||
snapshot: https://pek3b.qingstor.com/kubesphere-docs/png/20200206170305.png
|
||||
type: iframe
|
||||
createTime: 2019.12.14
|
||||
group: Meetup
|
||||
|
||||
- title: 为什么选择 KubeSphere
|
||||
link: https://kubesphere-docs.pek3b.qingstor.com/website/meetup/meetup-final-1226.mp4
|
||||
snapshot: https://pek3b.qingstor.com/kubesphere-docs/png/20200206170305.png
|
||||
type: video
|
||||
createTime: 2019.12.14
|
||||
group: Meetup
|
||||
|
||||
section4:
|
||||
overImg: /images/live/over.svg
|
||||
noticeImg: /images/live/notice.svg
|
||||
list:
|
||||
- title: KubeSphere 在直播电商行业的多集群应用实践1
|
||||
date: 10/27
|
||||
time: 13:30 - 14:10
|
||||
lastTime: 2020-10-27T14:10:00Z
|
||||
url: ./test
|
||||
|
||||
- title: KubeSphere 在直播电商行业的多集群应用实践2
|
||||
date: 11/27
|
||||
time: 13:30 - 14:10
|
||||
lastTime: 2020-12-27T14:10:00Z
|
||||
url: ./test
|
||||
|
||||
section5:
|
||||
title: 分享你的主题
|
||||
content: 想在社区分享你的落地经验?说出你和 KubeSphere 的开源故事,即刻加入 KubeSphere 开源社区直播计划,提交你的分享主题,将有定制礼品相送!
|
||||
btn: 提交分享主题
|
||||
url:
|
||||
image: /images/live/30.svg
|
||||
|
||||
---
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
title: KubeSphere 在直播电商行业的多集群应用实践
|
||||
description:
|
||||
css: scss/live-detail.scss
|
||||
|
||||
section1:
|
||||
snapshot: https://pek3b.qingstor.com/kubesphere-docs/png/20200206170305.png
|
||||
videoUrl: //player.bilibili.com/player.html?aid=69124503&bvid=BV1vJ411T7th&cid=119801064&page=1
|
||||
type: iframe
|
||||
time: 2020-10-13 20:00-20:40
|
||||
timeIcon: /images/live/clock.svg
|
||||
base: 线上
|
||||
baseIcon: /images/live/base.svg
|
||||
---
|
||||
|
||||
## 导引
|
||||
|
||||
随着容器的普及和 Kubernetes 的日渐成熟,企业内部运行多个 Kubernetes 集群已变得非常主流,多集群天然适合业务高可用、异地容灾备份、低延迟、开发生产隔离、避免单一厂商绑定等使用场景,并且很多企业通常会选择将 Kubernetes 多集群分别部署在本地环境+公有云这样的模式来构建容器混合云。本次技术分享将介绍杭州遥望网络公司如何将 KubeSphere 3.0 在生产环境进行落地,并基于 KubeSphere 3.0 打造多集群架构的电商支撑体系,使亿级交易的核心订单交易系统在 KubeSphere 之上平稳运行。
|
||||
|
|
@ -82,4 +82,7 @@
|
|||
translation: Search Documentation
|
||||
- id: ALL
|
||||
translation: ALL
|
||||
|
||||
- id: Watch replay
|
||||
translation: Watch replay
|
||||
- id: View details
|
||||
translation: View details
|
||||
|
|
|
|||
|
|
@ -81,4 +81,8 @@
|
|||
- id: Search Documentation
|
||||
translation: 搜索文档
|
||||
- id: ALL
|
||||
translation: 全部
|
||||
translation: 全部
|
||||
- id: Watch replay
|
||||
translation: 观看回放
|
||||
- id: View details
|
||||
translation: 了解详情
|
||||
|
|
@ -1,5 +1,4 @@
|
|||
{{ define "main" }}
|
||||
{{ $data := index .Site.Data .Site.Language.Lang }}
|
||||
|
||||
{{ with .Params.section1 }}
|
||||
<section class='section-1 bg-cover' style='background-image: url("{{ .image }}");'>
|
||||
|
|
@ -9,19 +8,45 @@
|
|||
</section>
|
||||
{{ end }}
|
||||
|
||||
|
||||
{{ with .Params.section2 }}
|
||||
<section class='section-2'>
|
||||
<div class="common-layout">
|
||||
<h1></h1>
|
||||
<div class="live-2-left">
|
||||
<a href="{{ .url }}">
|
||||
<img src="{{ .image }}" alt="">
|
||||
</a>
|
||||
</div>
|
||||
<div class="live-2-right">
|
||||
{{ with .notice }}
|
||||
<div class='notice shadow'>
|
||||
<h2 title="{{ .title }}">{{ .title }}</h2>
|
||||
<p><img src="{{ .timeIcon }}" alt="">{{ .time }}</p>
|
||||
<p><img src="{{ .baseIcon }}" alt="">{{ .base }}</p>
|
||||
<a class="btn-a" href="{{ .url }}">{{ i18n "View details" }}</a>
|
||||
<div class="tag">{{ .tag }}</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
{{ with .over }}
|
||||
<div class='over shadow'>
|
||||
<h2 title="{{ .title }}">
|
||||
<a href="{{ .url }}">{{ .title }}</a>
|
||||
</h2>
|
||||
<div class="tag">{{ .tag }}</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
||||
|
||||
{{ $language := .Site.Language.Lang }}
|
||||
{{ with .Params.section3 }}
|
||||
<section class='section-3'>
|
||||
<div class="common-layout">
|
||||
<ul class='video-tab-ul'>
|
||||
<li class='active'>{{ i18n "ALL" }}</li>
|
||||
{{ $groups := slice }}
|
||||
{{ range $data.video }}
|
||||
{{ range .videos }}
|
||||
{{ $group := split .group ","}}
|
||||
{{ $groups = $groups | append $group }}
|
||||
{{ end }}
|
||||
|
|
@ -29,11 +54,12 @@
|
|||
<li data-group='{{ . }}'>{{ . }}</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
<ul class='video-ul' data-language='{{ .Site.Language.Lang }}' data-origin='{{ $data.video | jsonify }}'>
|
||||
<ul class='video-ul' data-language='{{ $language }}' data-origin='{{ .videos | jsonify }}'>
|
||||
</ul>
|
||||
<div id='pagination'></div>
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
||||
|
||||
<div id="modal-for-video" class="modal">
|
||||
<div class='video-div'>
|
||||
|
|
@ -50,18 +76,49 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
{{ $overImg := .Params.section4.overImg}}
|
||||
{{ $noticeImg := .Params.section4.noticeImg}}
|
||||
{{ with .Params.section4 }}
|
||||
<section class='section-4'>
|
||||
<div class="common-layout">
|
||||
<h1></h1>
|
||||
</div>
|
||||
<div class="common-layout">
|
||||
{{ range .list }}
|
||||
<div>
|
||||
<div class="time-div">
|
||||
{{$over := (time .lastTime).Unix}}
|
||||
{{ if ge now.Unix $over}}
|
||||
<img src="{{ $overImg }}" alt="">
|
||||
{{ else }}
|
||||
<img src="{{ $noticeImg }}" alt="">
|
||||
{{ end }}
|
||||
<div class="right">
|
||||
<p class="date">{{ .date }}</p>
|
||||
<p class="time">{{ .time }}</p>
|
||||
</div>
|
||||
</div>
|
||||
<h3><a href="{{ .url }}">{{ .title }}</a></h3>
|
||||
{{ if ge now.Unix $over}}
|
||||
<button class="over-btn">{{ i18n "Watch replay" }}</button>
|
||||
{{ else }}
|
||||
<button class="notice-btn">{{ i18n "View details" }}</button>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
||||
|
||||
|
||||
{{ with .Params.section5 }}
|
||||
<section class='section-5'>
|
||||
<div class="common-layout">
|
||||
<h1></h1>
|
||||
</div>
|
||||
<div class="common-layout">
|
||||
<div class="left-div">
|
||||
<h2>{{ .title }}</h2>
|
||||
<p>{{ .content }}</p>
|
||||
<a class="btn-a" href="{{ .url }}">{{ .btn }}</a>
|
||||
</div>
|
||||
<img src="{{ .image }}" alt="">
|
||||
</div>
|
||||
</section>
|
||||
{{ end }}
|
||||
|
||||
<script src='{{ "js/pagination.min.js" | relURL }}'></script>
|
||||
|
||||
|
|
@ -85,10 +142,10 @@
|
|||
var bindClickVideoLi = function() {
|
||||
$('.video-ul').on('click', 'li', function(ev) {
|
||||
var link = $(this).data('link')
|
||||
var language = $('.video-ul').data('language')
|
||||
if (language === 'zh') {
|
||||
var type = $(this).data('type')
|
||||
if (type === 'video') {
|
||||
showVideo(link)
|
||||
} else if (language === 'en') {
|
||||
} else if (type === 'iframe') {
|
||||
showIframe(link)
|
||||
}
|
||||
})
|
||||
|
|
@ -132,7 +189,7 @@
|
|||
var group = '<p>' + video.group + '</p>'
|
||||
var time = '<p class="time">' + video.createTime + '</p>'
|
||||
var div = '<div>' + button + '<div>' + title + group + time + '</div></div>'
|
||||
var s = '<li data-link="' + video.link + '">' + img + div + '</li>'
|
||||
var s = '<li data-link="' + video.link + '" data-type="' + video.type + '">' + img + div + '</li>'
|
||||
return s
|
||||
}
|
||||
|
||||
|
|
@ -143,7 +200,7 @@
|
|||
prevText: '<<',
|
||||
nextText: '>>',
|
||||
callback: function(data, pagination) {
|
||||
var videoList =createVideoList(data)
|
||||
var videoList = createVideoList(data)
|
||||
$('.video-ul').empty().append(videoList)
|
||||
}
|
||||
})
|
||||
|
|
|
|||
|
|
@ -0,0 +1,38 @@
|
|||
{{ define "main" }}
|
||||
|
||||
<section class="section-1">
|
||||
<div>
|
||||
{{ with .Params.section1 }}
|
||||
|
||||
{{ if .videoUrl }}
|
||||
<div class="video-div">
|
||||
{{ if eq .type "iframe" }}
|
||||
<iframe
|
||||
src="{{ .videoUrl }}"
|
||||
frameborder="0"
|
||||
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
|
||||
allowfullscreen>
|
||||
</iframe>
|
||||
{{ else }}
|
||||
<video src="{{ .videoUrl }}" controls poster="{{ .snapshot }}"></video>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
<div class="time-div">
|
||||
<img src="{{ .timeIcon }}" alt="">
|
||||
<span>{{ .time }}</span>
|
||||
<img src="{{ .baseIcon }}" alt="">
|
||||
<span>{{ .base }}</span>
|
||||
</div>
|
||||
{{ end }}
|
||||
|
||||
<h1>{{ .Title }}</h1>
|
||||
<div class='content'>
|
||||
<div class='md-body'>
|
||||
{{ .Content }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{{ end }}
|
||||
|
|
@ -0,0 +1,147 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="299" height="265" viewBox="0 0 299 265">
|
||||
<defs>
|
||||
<path id="4mhyzogphb" d="M197 34.175l80.366 46.4c3.403 1.965 5.5 5.596 5.5 9.526v92.798c0 3.93-2.097 7.561-5.5 9.526L197 238.825c-3.403 1.965-7.597 1.965-11 0l-80.366-46.4c-3.403-1.965-5.5-5.596-5.5-9.526V90.101c0-3.93 2.097-7.561 5.5-9.526L186 34.175c3.403-1.965 7.597-1.965 11 0z"/>
|
||||
<path id="gd41243jnd" d="M0 0H245V170H0z"/>
|
||||
<path id="ynod9z0iqf" d="M0.019 0.077L60.621 0.077 60.621 60.678 0.019 60.678z"/>
|
||||
<linearGradient id="zeop4ytb3c" x1="71.36%" x2="-3.167%" y1="24.367%" y2="135.897%">
|
||||
<stop offset="0%" stop-color="#ECAF24"/>
|
||||
<stop offset="100%" stop-color="#FFF8CB"/>
|
||||
</linearGradient>
|
||||
<filter id="o77jrf77ga" width="136.8%" height="148.6%" x="-18.4%" y="-16.7%" filterUnits="objectBoundingBox">
|
||||
<feOffset dy="16" in="SourceAlpha" result="shadowOffsetOuter1"/>
|
||||
<feGaussianBlur in="shadowOffsetOuter1" result="shadowBlurOuter1" stdDeviation="15"/>
|
||||
<feColorMatrix in="shadowBlurOuter1" values="0 0 0 0 0.384313725 0 0 0 0 0.807843137 0 0 0 0 0.552941176 0 0 0 0.1 0"/>
|
||||
</filter>
|
||||
</defs>
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<g>
|
||||
<g>
|
||||
<g opacity=".12" transform="translate(-943 -1987) translate(926 1973.8) rotate(21 191.5 136.5)">
|
||||
<use fill="#000" filter="url(#o77jrf77ga)" xlink:href="#4mhyzogphb"/>
|
||||
<use fill="url(#zeop4ytb3c)" xlink:href="#4mhyzogphb"/>
|
||||
</g>
|
||||
<g transform="translate(-943 -1987) translate(926 1973.8) translate(0 11)">
|
||||
<mask id="1wi28dd6me" fill="#fff">
|
||||
<use xlink:href="#gd41243jnd"/>
|
||||
</mask>
|
||||
<g mask="url(#1wi28dd6me)">
|
||||
<g>
|
||||
<path fill="#F9DBAF" d="M171.238 79.796c-3.067.244-5.608-2.295-5.367-5.362.189-2.412 2.142-4.368 4.554-4.56 3.068-.242 5.61 2.297 5.37 5.364-.19 2.413-2.144 4.367-4.556 4.558zm7.254-4.197V73.69h-1.078c-.036-.216-.084-.427-.141-.635l1.014-.413-.72-1.768-1.064.433c-.124-.2-.26-.395-.404-.58l.824-.824-1.35-1.35-.85.851c-.165-.116-.333-.227-.506-.328h-.001l.471-1.119-1.759-.741-.48 1.136c-.216-.055-.437-.097-.662-.13v-1.237h-1.909v1.238c-.196.026-.391.065-.582.11l-.466-1.143-1.768.72.458 1.124c-.198.115-.393.239-.578.37l-.85-.85-1.35 1.35.824.823c-.128.164-.248.334-.36.51l-1.06-.448-.742 1.76 1.01.426c-.066.232-.122.473-.164.715h-1.077v1.91h1.022c.025.226.063.45.11.67l-.927.378.72 1.768.882-.36c.128.232.269.455.423.668l-.661.662 1.35 1.35.633-.633c.19.149.389.288.595.416l-.342.813 1.759.742.334-.793c.263.072.532.13.807.168v.856h1.91v-.856c.246-.035.486-.084.723-.145l.325.796 1.768-.72-.333-.817c.233-.14.456-.294.67-.46l.633.633 1.35-1.35-.662-.662c.138-.19.266-.39.382-.593l.877.37.741-1.76-.921-.388c.057-.246.101-.498.13-.754h1.022zM106.282 102.874c-3.068.243-5.608-2.296-5.368-5.363.19-2.412 2.143-4.367 4.555-4.559 3.067-.243 5.61 2.296 5.37 5.363-.19 2.413-2.145 4.367-4.557 4.559zm7.253-4.197v-1.91h-1.077c-.037-.215-.084-.427-.142-.635l1.014-.413-.719-1.768-1.065.433c-.123-.2-.259-.394-.404-.579l.825-.824-1.35-1.35-.851.85c-.164-.116-.332-.226-.506-.328l.47-1.119-1.758-.741-.48 1.136c-.217-.055-.437-.097-.662-.129v-1.238h-1.91V91.3c-.196.027-.39.065-.582.11l-.465-1.143-1.769.72.458 1.125c-.198.114-.392.238-.577.37l-.851-.851-1.35 1.35.824.824c-.128.164-.248.333-.36.509l-1.06-.447-.742 1.759 1.01.426c-.066.233-.121.473-.163.716h-1.078v1.909h1.022c.025.227.063.45.111.67l-.928.378.72 1.768.882-.359c.128.231.27.454.424.668l-.662.662 1.35 1.35.633-.634c.191.15.39.288.596.416l-.343.814 1.76.741.334-.793c.263.073.532.13.807.168v.856h1.909v-.856c.246-.034.487-.084.723-.145h.001l.324.796 1.768-.72-.332-.817c.233-.14.456-.294.67-.46l.633.634 1.35-1.35-.662-.662c.137-.191.265-.39.381-.594l.877.37.742-1.76-.922-.388c.058-.246.101-.498.13-.753h1.022zM192.217 104.053c-2.183.612-3.477 2.83-2.884 4.944s2.851 3.336 5.034 2.724c2.183-.612 3.477-2.83 2.885-4.944-.593-2.115-2.852-3.337-5.035-2.724m3.289 11.728c-4.495 1.26-9.145-1.256-10.365-5.609-1.22-4.352 1.443-8.919 5.938-10.18 4.495-1.26 9.144 1.257 10.365 5.61 1.22 4.352-1.444 8.918-5.938 10.179" transform="translate(3 3)"/>
|
||||
<path fill="#F9DBAF" d="M192.378 100.146L190.049 100.799 189.527 98.938 191.856 98.285zM196.931 116.385L194.602 117.037 194.08 115.177 196.409 114.524zM200.969 106.708L200.336 104.452 202.258 103.913 202.89 106.169zM184.2 111.409L183.568 109.154 185.489 108.615 186.122 110.87zM198.1 101.673L196.006 100.54 196.996 98.843 199.09 99.976zM189.462 116.48L187.368 115.347 188.358 113.65 190.452 114.783zM199.304 112.301L200.503 110.245 202.231 111.179 201.031 113.236zM184.227 104.143L185.427 102.086 187.154 103.021 185.955 105.078z" transform="translate(3 3)"/>
|
||||
<path fill="#B2563D" d="M68.013 68.599L62.601 65.057 58.432 47.231 60.939 46.726 66.534 62.244 71.274 63.429zM93.603 81.433l7.805 4.634c.417.247.954.105 1.193-.316l9.443-15.397h-3.734l-6.959 9.241-4.238-3.168-3.51 5.006z" transform="translate(3 3)"/>
|
||||
<path fill="#FFF" d="M221.139 132.294c-1.273 1.013-3.126.801-4.139-.472-1.012-1.273-.8-3.126.473-4.139 1.273-1.012 3.126-.8 4.138.473 1.013 1.273.801 3.126-.472 4.138M230.005 120.78c-1.273 1.011-3.126.8-4.138-.473-1.013-1.274-.801-3.126.472-4.139 1.273-1.012 3.126-.8 4.139.473 1.012 1.273.8 3.126-.473 4.138M217.306 99.663c-.633.504-1.554.399-2.058-.234-.503-.634-.398-1.555.235-2.058.633-.504 1.555-.398 2.058.235.503.633.398 1.554-.235 2.057" transform="translate(3 3)"/>
|
||||
<path fill="#FFF" d="M220.326 135.384c-1.938.364-4.01-.33-5.32-1.977-.857-1.077-1.243-2.385-1.184-3.663.072-1.531.776-3.027 2.067-4.054.653-.519 1.392-.868 2.159-1.044 1.035-.244 2.12-.18 3.115.176.93.332 1.781.919 2.441 1.749 1.885 2.37 1.49 5.834-.878 7.717-.723.575-1.55.939-2.4 1.096m3.583-9.056c-.719-.904-1.655-1.54-2.675-1.893-.87-.3-1.8-.394-2.712-.27-1.02.132-2.014.535-2.875 1.22-1.544 1.228-2.306 3.084-2.212 4.917.06 1.182.474 2.352 1.266 3.348 1.39 1.747 3.58 2.494 5.64 2.127.931-.163 1.836-.555 2.627-1.184 2.536-2.016 2.96-5.726.941-8.265M222.706 106.774c-.455.362-1.118.287-1.48-.17-.363-.455-.287-1.118.168-1.48.456-.362 1.119-.287 1.481.169.363.456.287 1.119-.169 1.481" transform="translate(3 3)"/>
|
||||
<path fill="#FFF" d="M222.765 109.732c-1.358.255-2.812-.232-3.73-1.387-.601-.756-.872-1.672-.83-2.57.05-1.073.543-2.122 1.449-2.842.458-.364.976-.609 1.514-.732.725-.171 1.487-.126 2.184.123.653.233 1.25.645 1.712 1.227 1.322 1.662 1.046 4.091-.616 5.412-.507.404-1.086.658-1.683.769m2.513-6.351c-.504-.635-1.16-1.08-1.876-1.328-.61-.21-1.262-.276-1.902-.19-.715.093-1.412.376-2.016.856-1.083.861-1.617 2.163-1.551 3.449.042.828.333 1.65.888 2.347.974 1.226 2.51 1.75 3.954 1.492.654-.114 1.289-.389 1.843-.83 1.779-1.414 2.076-4.016.66-5.796M209.037 113.519c.71.388.97 1.278.581 1.988-.388.71-1.279.97-1.988.58-.71-.388-.97-1.278-.58-1.988.388-.709 1.278-.969 1.987-.58M183.962 36.155c.11 1.434-.964 2.685-2.398 2.795-1.434.11-2.685-.964-2.794-2.398-.11-1.434.964-2.685 2.398-2.795 1.434-.11 2.685.965 2.794 2.398M162.21 34.977c.055.713-.479 1.335-1.192 1.39-.713.053-1.335-.48-1.39-1.193-.054-.713.48-1.335 1.193-1.39.713-.054 1.335.48 1.39 1.193M170.093 34.551c.039.513-.345.96-.858 1-.514.04-.961-.345-1-.858-.04-.513.345-.961.858-1 .513-.04.96.345 1 .858" transform="translate(3 3)"/>
|
||||
<path fill="#FFF" d="M172.287 35.975c-.487 1.12-1.564 1.943-2.865 2.042-.852.065-1.657-.19-2.292-.666-.761-.57-1.284-1.451-1.362-2.47-.04-.517.039-1.017.215-1.472.235-.616.645-1.15 1.174-1.538.494-.361 1.091-.594 1.747-.644 1.872-.143 3.512 1.264 3.655 3.135.044.571-.057 1.121-.272 1.613m-3.402-4.99c-.714.055-1.366.314-1.902.715-.456.343-.828.787-1.082 1.298-.287.57-.426 1.22-.374 1.9.093 1.22.781 2.257 1.755 2.846.627.38 1.372.574 2.158.514 1.38-.105 2.526-.97 3.053-2.154.241-.535.355-1.136.307-1.76-.153-2.003-1.91-3.511-3.915-3.358" transform="translate(3 3)"/>
|
||||
<g transform="translate(3 3) translate(45.96 .043)">
|
||||
<mask id="vxsyiripeg" fill="#fff">
|
||||
<use xlink:href="#ynod9z0iqf"/>
|
||||
</mask>
|
||||
<path fill="#F9C723" d="M51.58 8.786c11.924 11.742 12.072 30.926.331 42.85-11.741 11.925-30.926 12.074-42.85.333-11.925-11.742-12.073-30.926-.332-42.85 11.74-11.925 30.926-12.074 42.85-.333" mask="url(#vxsyiripeg)"/>
|
||||
</g>
|
||||
<path fill="#F9C723" d="M115.956 48.616L95.087 69.811 76.379 51.389 97.248 30.195z" transform="translate(3 3)"/>
|
||||
<path fill="#2E1D66" d="M118.738 48.874L95.389 72.588 92.306 69.553 115.655 45.839z" transform="translate(3 3)"/>
|
||||
<path fill="#2E1D66" d="M117.997 71.497c-5.762 5.853-15.179 5.926-21.032.163l-1.428-1.406 20.87-21.195 1.427 1.406c5.853 5.763 5.926 15.18.163 21.032" transform="translate(3 3)"/>
|
||||
<path fill="#FFF" d="M92.416 40.224l-1.479 1.502L73.483 24.54c-.414-.408-.42-1.075-.011-1.49l5.605-5.693c.408-.414 1.076-.42 1.49-.011l6.354 6.256c.415.408.42 1.075.011 1.49l-4.203 4.27-1.502-1.48 3.464-3.518-4.851-4.777-4.127 4.191 16.703 16.446zM107.023 54.606L105.544 56.108 93.129 43.884 94.608 42.382zM94.604 51.59l-1.478 1.502-23.497-23.135-4.126 4.19 4.851 4.778 3.465-3.519 1.502 1.48-4.204 4.268c-.409.415-1.076.42-1.49.012l-6.354-6.256c-.415-.408-.42-1.075-.011-1.49l5.605-5.693c.408-.415 1.075-.42 1.49-.011L94.604 51.59zM102.417 59.283L100.939 60.785 95.115 55.051 96.593 53.549zM55.14 40.26c-1.328-1.831-2.288-3.903-3-6.08-.342-1.092-.608-2.216-.788-3.362-.165-1.148-.244-2.315-.232-3.49.025-1.174.098-2.36.277-3.543.188-1.181.588-2.323 1.127-3.386.304-.514.575-1.044.936-1.518.175-.24.347-.48.528-.713.19-.227.388-.447.586-.665.794-.87 1.716-1.616 2.748-2.197l.224.192c-.174.576-.415 1.08-.61 1.606-.192.527-.426 1.013-.606 1.524-.097.251-.197.499-.3.742-.085.253-.18.498-.272.743-.096.243-.192.485-.267.735l-.262.73c-.31.982-.662 1.93-.995 2.905-.333.971-.618 1.978-.76 3.015-.134 1.036-.191 2.09-.167 3.15.01 1.06.1 2.13.269 3.193.328 2.126.924 4.256 1.814 6.263l-.25.156z" transform="translate(3 3)"/>
|
||||
<path fill="#1F1440" d="M81.736 186.334l11.355-.21 11.354-.194 22.709-.302 5.677-.087 5.677-.104c3.785-.065 7.57-.069 11.354-.01l5.677.118c1.893.06 3.785.1 5.678.18 3.784.14 7.57.32 11.354.609v.201c-3.785.289-7.57.468-11.354.608-1.893.08-3.785.12-5.678.18l-5.677.12c-3.784.058-7.57.053-11.354-.011l-5.677-.104-5.677-.087-22.709-.303-11.354-.193-11.355-.21v-.201z" transform="translate(3 3)"/>
|
||||
<path fill="#0981F3" d="M90.181 77.06L87.107 88.674 86 80.807 86.145 75.919z" transform="translate(3 3)"/>
|
||||
<path fill="#93402C" d="M94.611 82.114L99.58 78.271 97.113 76.427 93.899 81.632z" transform="translate(3 3)"/>
|
||||
<path fill="#0981F3" d="M93.702 81.909l4.114-5.791s-10.184-9.284-14.482-6.715c-4.298 2.57 10.368 12.506 10.368 12.506" transform="translate(3 3)"/>
|
||||
<path fill="#0981F3" d="M86.677 69.895s5.004 19.011-.892 34.26l-3.211-4.82s5.352-13.114 4.103-29.44" transform="translate(3 3)"/>
|
||||
<path fill="#93402C" d="M65.626 67.037L70.008 63.112 70.873 63.329 67.715 68.404z" transform="translate(3 3)"/>
|
||||
<path fill="#BDB0FF" d="M29.309 180.917L51.07 180.917 51.07 159.156 29.309 159.156z" transform="translate(3 3)"/>
|
||||
<path fill="#A494FF" d="M52.89 180.677L74.651 180.677 74.651 144.377 52.89 144.377z" transform="translate(3 3)"/>
|
||||
<path fill="#BDB0FF" d="M76.471 180.677L98.232 180.677 98.232 130.107 76.471 130.107z" transform="translate(3 3)"/>
|
||||
<path fill="#A494FF" d="M100.051 180.797L121.812 180.797 121.812 117.178 100.051 117.178z" transform="translate(3 3)"/>
|
||||
<path fill="#BDB0FF" d="M123.632 181.277L145.393 181.277 145.393 105.31 123.632 105.31zM147.213 181.517L168.974 181.517 168.974 92.943 147.213 92.943zM170.793 181.037L192.554 181.037 192.554 75.81 170.793 75.81z" transform="translate(3 3)"/>
|
||||
<path fill="#241F3F" d="M80.725 63.356c-.173.487-.288 1.037-.287 1.562.001.525.14 1.06.529 1.405.385.348.954.461 1.501.466.554 0 1.111-.096 1.658-.225-.534.173-1.084.315-1.653.362-.561.039-1.183-.017-1.68-.39-.246-.185-.435-.443-.556-.723-.122-.28-.184-.579-.21-.875-.047-.597.023-1.173.178-1.758l.52.176z" transform="translate(3 3)"/>
|
||||
<path fill="#241F3F" d="M80.09 58.677c-.765.16-1.42.728-1.67 1.445-.249.717-.083 1.558.423 2.14.363.416.869.69 1.275 1.067.423.393.734.9.887 1.447.11.389.145.807.365 1.15.392.61 1.373.758 1.93.29.426-.356.56-.936.622-1.478.155-1.37 0-2.772-.451-4.082-.231-.67-.56-1.343-1.134-1.78-.575-.437-1.448-.567-2.025-.14l-.223-.06z" transform="translate(3 3)"/>
|
||||
<path fill="#241F3F" d="M80.405 62.713s-.617 3.627 1.846 3.758l-.285-2.212-1.56-1.546z" transform="translate(3 3)"/>
|
||||
<path fill="#FFF" d="M85.77 69.891l-2.374-.436-4.884 25.048 2.691 2.572 2.329-1.369s4.213-15.544 2.238-25.815" transform="translate(3 3)"/>
|
||||
<path fill="#0981F3" d="M85.77 69.891s3.06 13.481-2.238 27.184l-1.45-.727s4.81-11.785 3.688-26.457" transform="translate(3 3)"/>
|
||||
<path fill="#2C2C75" d="M69.63 100.14s-.57 8.789 2.168 16.893c0 0-8.015 4.566-15.794 19.52l2.237 2.334s14.572-14.519 20.623-19.343l4.674-16.168-13.908-3.236z" transform="translate(3 3)"/>
|
||||
<path fill="#B2563D" d="M86.297 66.097l-.774 3.942c-.066.336-.442.51-.74.342l-2.714-1.527 1.442-4.654 2.786 1.897z" transform="translate(3 3)"/>
|
||||
<path fill="#241F3F" d="M81.686 58.591L86.529 56.997 87.269 60.078 83.157 62.104z" transform="translate(3 3)"/>
|
||||
<path fill="#B2563D" d="M90.818 61.054c-.001.046-.008.09-.013.136-.157 1.333-.606 2.632-1.335 3.77-.226.353-.469.702-.78.99-.774.713-2.652.974-3.669.631-.91-.307-1.626-1.04-2.067-1.871-.44-.832-.638-1.764-.775-2.687-.786.068-1.543-.674-1.459-1.432.085-.762.608-1.224 1.733-.965.035 0 .07-.002.107-.007 2.177-.15 3.912-1.484 5.965-2.003.364-.091 1.42-.471 1.706-.195.125.118.204.34.27.492.156.344.25.711.307 1.08.07.45.085.904.069 1.357-.011.237-.03.472-.059.704" transform="translate(3 3)"/>
|
||||
<path fill="#B2563D" d="M90.852 59.37c-1.063.115-2.285-.116-3.719-.545-.413-.125-.802-.2-1.165-.237.833-.367 1.667-.745 2.557-.972.364-.091 1.42-.471 1.706-.195.125.118.204.34.27.492.156.344.25.711.307 1.08.02.125.035.25.044.376" transform="translate(3 3)"/>
|
||||
<path fill="#FFF" d="M82.173 62.127c.26 1.742.872 3.928 2.774 4.565.806.27 1.588.328 2.383.018.682-.265 1.443-.624 1.896-1.203.085-.108-.079-.25-.163-.141-.417.532-1.124.872-1.747 1.121-.808.323-1.61.261-2.422-.036-1.71-.628-2.267-2.755-2.503-4.336-.02-.134-.239-.123-.218.012" transform="translate(3 3)"/>
|
||||
<path fill="#93402C" d="M90.818 61.054c-1.622.091-4.855-.034-6.535-.42-.997-.23-1.487-.646-1.723-1.015 2.177-.15 3.912-1.484 5.965-2.003.364-.091 1.42-.471 1.706-.195.125.118.204.34.27.492.156.344.25.711.307 1.08.07.45.085.904.069 1.357-.011.237-.03.472-.059.704" transform="translate(3 3)"/>
|
||||
<path fill="#5652E5" d="M68.58 95.103s.404 22.076 29.652 3.411c-1.413 4.09.284 8.459 3.32 16.461h3.16l-1.269-21.394c-.033-.561-.461-1.02-1.019-1.089-3.397-.424-15.24-1.587-26.675 1.082l-7.17 1.529z" transform="translate(3 3)"/>
|
||||
<path fill="#241F3F" d="M89.31 56.347c.187-.01.17-.293-.019-.282-.187.01-.169.292.019.282" transform="translate(3 3)"/>
|
||||
<path fill="#FFF" d="M85.4 63.646l2.801-.16c.086-.005.153.07.134.15-.107.454-.525 1.703-1.875 1.629-1.405-.077-1.251-1.197-1.176-1.524.013-.054.06-.092.117-.095" transform="translate(3 3)"/>
|
||||
<path fill="#241F3F" d="M79.436 59.415c.005.03.008.022.011.026.004.004.005 0 .008-.001.006-.002.01-.008.014-.015.007-.011.014-.028.016-.044.009-.034.004-.071-.01-.114-.032-.083-.123-.18-.257-.242-.131-.066-.29-.113-.457-.142-.168-.03-.343-.04-.522-.049.158-.08.32-.162.495-.224.175-.064.362-.113.571-.127.207-.017.448.014.688.143.117.067.232.157.324.274.048.057.088.12.125.189.018.035.035.07.05.11.007.02.015.036.021.061.007.026.013.038.02.09l-1.097.065zM83.292 59.227c-.052.182-.092.404-.12.61-.026.211-.042.425-.036.638.01.423.089.861.375 1.217-.189-.124-.35-.3-.479-.498-.131-.199-.221-.42-.3-.644-.08-.225-.134-.457-.177-.692-.04-.238-.073-.463-.08-.726l.817.095z" transform="translate(3 3)"/>
|
||||
<path fill="#2C2C75" d="M102.51 114.064l-1.457-18.793-1.743 1.846c-.08.085-.202.116-.313.079-.11-.037-.19-.134-.203-.25l-.171-1.445c-5.606 3.126-10.44 5.094-14.373 5.85-3.194.615-5.804.437-7.755-.529-2.9-1.435-3.297-4.063-3.312-4.175l.594-.082-.297.041.297-.042c.014.099.38 2.44 2.998 3.727 5.353 2.634 14.89-1.555 21.946-5.533.087-.05.194-.052.283-.006.09.045.15.132.162.232l.148 1.254 1.767-1.871c.082-.086.207-.117.318-.077.112.04.19.141.2.26l1.51 19.467-.599.047z" transform="translate(3 3)"/>
|
||||
<path fill="#241F3F" d="M94.426 56.243c-.998 2.091-2.192 2.984-3.734 3.148-1.047.11-2.251-.115-3.664-.533-.408-.122-.79-.195-1.148-.232-1.653-.169-2.754.475-3.357.995h-.002c-.036.004-.068.007-.103.006-.496-.114-.874-.086-1.146.046l-1.078-.874c.424-7.244 5.403-4.293 5.403-4.293l1.322-1.952c4.236-5.392 9.178.183 7.507 3.689" transform="translate(3 3)"/>
|
||||
<path fill="#241F3F" d="M80.384 59.706c-.125-.22-.22-.425-.312-.644-.092-.216-.17-.437-.233-.663-.063-.225-.112-.456-.123-.691-.012-.233.01-.472.1-.679-.023.225.028.439.102.638.074.2.18.387.297.565.117.178.246.348.385.51.137.16.288.324.432.455l-.648.51zM82.714 59.14c.336-.169.641-.27.976-.361.33-.085.667-.144 1.012-.16.684-.028 1.402.102 2.004.457l.224.132.186.117c.127.075.26.145.395.21.27.13.555.237.846.324.583.176 1.192.268 1.802.268.305-.005.609-.032.91-.084.298-.061.594-.14.877-.255.567-.227 1.087-.577 1.523-1.016.875-.89 1.397-2.084 1.718-3.3-.256 1.231-.71 2.465-1.567 3.44-.43.482-.958.884-1.55 1.16-.297.14-.609.24-.926.323-.32.074-.644.121-.97.143-.655.037-1.313-.027-1.95-.182-.32-.076-.635-.177-.942-.303-.153-.063-.305-.133-.455-.21l-.221-.124-.191-.098c-.507-.264-1.09-.336-1.661-.282-.287.028-.572.094-.85.182-.272.087-.561.208-.784.336l-.015.009c-.197.114-.449.046-.563-.151-.113-.197-.046-.45.151-.563l.021-.012" transform="translate(3 3)"/>
|
||||
<path fill="#514B66" d="M92.424 51.604c.69.365 1.236.997 1.508 1.737.275.745.242 1.57.04 2.332-.093.385-.267.75-.481 1.087-.126.155-.232.33-.386.46-.074.069-.143.143-.22.207l-.244.177c-.663.467-1.474.65-2.26.718-.793.062-1.589.002-2.368-.124-.387-.072-.777-.139-1.158-.239-.39-.091-.753-.192-1.125-.245l-.279-.037c-.093-.01-.186-.01-.279-.014-.186-.016-.369.007-.552.017-.362.047-.712.146-1.024.317-.63.338-1.06.967-1.289 1.655l-.518-.181c.28-.774.81-1.513 1.581-1.898.38-.194.794-.296 1.206-.338.206-.005.413-.024.616 0 .101.007.204.01.304.023l.3.05c.398.069.785.189 1.152.285.37.11.749.185 1.125.267.756.145 1.525.225 2.29.189.756-.043 1.53-.197 2.165-.616l.234-.16c.074-.058.14-.126.21-.188.15-.119.254-.28.378-.423.211-.314.389-.656.49-1.027.217-.733.275-1.536.027-2.272-.244-.73-.764-1.374-1.443-1.759" transform="translate(3 3)"/>
|
||||
<path fill="#00CFFF" d="M84.969 71.56c0 3.677-4.667 23.645-4.667 23.645-6.044 2.067-10.672 2.281-13.772.502 0 0 .338-2.16 1.103-5.275.458-1.865 1.069-4.072 1.852-6.361 1.475-4.308 3.558-8.91 6.378-12.075 1.512-1.7 3.238-2.987 5.195-3.591.587-.182 1.194-.302 1.823-.354 0 0 2.088-.168 2.088 3.509" transform="translate(3 3)"/>
|
||||
<path fill="#0981F3" d="M73.192 80.598l-3.707 3.473c1.475-4.308 3.558-8.91 6.378-12.075 1.512-1.7 3.238-2.987 5.195-3.591h.74s3.102 7.668-8.606 12.193" transform="translate(3 3)"/>
|
||||
<path fill="#FFF" d="M72.418 97.203c-.102 0-.164-.002-.182-.002l.018-.6c.037.001 3.77.09 7.79-1.611l1.519-6.712.585.132-1.553 6.861c-.022.094-.086.171-.174.21-3.737 1.617-7.179 1.722-8.003 1.722" transform="translate(3 3)"/>
|
||||
<path fill="#1F1440" d="M53.621 137.873l1.927 6.504h5.059s-.964-1.687-2.73-1.927l.24-3.694-2.113-2.204c-.24.16-2.383 1.32-2.383 1.32M101.3 114.04l.138 3.018h2.224s1.337-1.087 1.926 0h5.344s-.322-2.412-6.275-3.018H101.3z" transform="translate(3 3)"/>
|
||||
<path fill="#00CFFF" d="M67.536 68.692l3.752-6.031s10.8 3.587 11.817 8.49c2.01 9.69-15.57-2.459-15.57-2.459" transform="translate(3 3)"/>
|
||||
<path fill="#FFF" d="M68.996 66.913l-.51-.317 2.548-4.094c.074-.12.22-.17.353-.124.197.068 4.847 1.707 7.084 3.293l-.347.49c-1.896-1.345-5.74-2.784-6.709-3.136l-2.42 3.888zM100.004 133.167c4.558.683 8.944 2.599 11.441 6.656 1.083 1.76 1.706 3.823 1.491 5.898-.115 1.115-.46 2.261-1.13 3.171-.699.95-1.76 1.485-2.799 1.982-1.668.8-3.098 1.715-4.17 3.258-.982 1.416-1.558 3.106-1.691 4.821-.133 1.709.195 3.465 1.033 4.967 1.093 1.96 2.888 3.399 3.453 5.65.551 2.197.051 4.973-2.01 6.24-1.986 1.223-5.014.79-6.09-1.425-.102-.208-.412-.026-.311.182.856 1.762 2.869 2.49 4.736 2.212 1.897-.283 3.329-1.612 3.926-3.413.635-1.917.313-4.118-.7-5.846-.627-1.071-1.489-1.978-2.195-2.994-.618-.888-1.065-1.859-1.303-2.915-.445-1.983-.169-4.114.688-5.95.906-1.938 2.397-3.306 4.303-4.23.993-.483 2.033-.926 2.85-1.688.792-.738 1.278-1.74 1.547-2.776.51-1.952.245-4.013-.549-5.852-.952-2.209-2.609-4.095-4.573-5.465-2.312-1.612-5.092-2.417-7.852-2.83-.226-.034-.324.313-.095.347M121.722 152.529c-2.936 1.27-5.332 3.576-6.252 6.692-.895 3.03-.039 6.007 2.063 8.312 1.168 1.282 2.654 2.54 4.189 3.362.204.11.386-.201.181-.311-1.64-.879-3.23-2.237-4.425-3.658-1.24-1.471-2.023-3.253-2.021-5.196.003-4.062 2.86-7.34 6.446-8.89.212-.092.03-.402-.181-.311M111.243 116.967c-.814 1.493-1.541 3.087-1.336 4.83.166 1.412.848 2.75 1.855 3.75 1.121 1.113 2.529 1.652 4.092 1.741 1.095.063 2.204-.018 3.278.25.954.236 1.81.705 2.59 1.295.184.14.364-.173.181-.311-1.335-1.01-2.795-1.487-4.461-1.55-1.79-.066-3.468-.071-4.934-1.241-1.134-.905-1.944-2.227-2.199-3.658-.316-1.776.414-3.399 1.245-4.925.111-.203-.2-.385-.31-.181M52.938 159.257c1.76-.561 3.643-.293 5.07.917 1.13.96 1.534 2.208 1.257 3.65-.423 2.2-1.982 4.777-.708 6.966.8 1.375 2.452 1.95 3.938 2.198 1.86.311 3.783.217 5.643-.046 2.374-.335 4.503-1.054 6.604-2.23.202-.114.02-.425-.182-.312-3.514 1.968-7.841 2.887-11.856 2.26-1.581-.247-3.448-.87-4.055-2.515-.952-2.583 1.326-5.092 1.055-7.689-.145-1.382-1.136-2.476-2.302-3.155-1.38-.802-3.06-.869-4.56-.39-.22.07-.125.417.096.346M69.106 144.286c-1.722 3.062-2.49 6.702-1.365 10.107 1.024 3.104 3.535 5.74 6.91 6.029.231.02.23-.34 0-.36-3.347-.287-5.775-3.039-6.675-6.125-.939-3.22-.171-6.603 1.441-9.47.114-.202-.197-.383-.31-.181" transform="translate(3 3)"/>
|
||||
<path fill="#FFF" d="M52.938 166.69c8.273-1.798 15.885-6.087 21.84-12.087.164-.165-.09-.42-.254-.254-5.915 5.958-13.466 10.209-21.681 11.994-.227.05-.131.396.095.347M29.24 122.346c.577.094 1.122-.298 1.215-.876.094-.578-.299-1.123-.877-1.216-.578-.094-1.122.298-1.216.876-.093.578.3 1.123.877 1.216" transform="translate(3 3)"/>
|
||||
<path fill="#7348FF" d="M28.496 152.177c-.245-.333-.55-.594-.814-.908-.22-.263-.367-.58-.543-.871-.08-.133.127-.253.206-.121.206.34.374.7.66.986.251.252.486.505.698.793.09.124-.117.244-.207.12" transform="translate(3 3)"/>
|
||||
<path fill="#8F6DFF" d="M27.423 151s5.16-1.988-.954-7.168c0 0-1.743-1.19-2.875-.938-.36.08-1.72 9.011 3.829 8.106" transform="translate(3 3)"/>
|
||||
<path fill="#7348FF" d="M31.484 158.238s3.495-4.371 6.67 1.859c.612 1.202.698 2.607.23 3.872l-.02.053c-.017.046-.03.093-.039.142-.03.18-.086.637.039.948.053.133-.035.279-.177.297-1.429.187-6.65.592-8.14-3.19-1.237-3.137 1.437-3.981 1.437-3.981M25.855 155.584s1.898-1.93-.62-3.076c-2.337-1.064-3.232.784-4.506.716-.132-.007-.23.118-.174.238.544 1.167 2.74 5.308 5.3 2.122" transform="translate(3 3)"/>
|
||||
<path fill="#FCCA22" d="M29.931 154.471s-1.664-6.456 9.735-5.551c0 0 .161 9.746-9.735 5.551" transform="translate(3 3)"/>
|
||||
<path fill="#7348FF" d="M28.773 124.562l-.97 42.549c-.01.454.342.827.779.827.433 0 .782-.366.779-.815-.053-5.832-.353-41.032.007-42.56h-.595z" transform="translate(3 3)"/>
|
||||
<path fill="#FBC922" d="M29.399 124.713c.198.038.316.051.316.051s6.514 1.086 4.341-8.954c0 0 0-.655.157-1.278.025-.099.054-.195.086-.29 0 0-7.478.15-8.747 5.034-1.08 4.166 2.706 5.216 3.847 5.437" transform="translate(3 3)"/>
|
||||
<path fill="#6737C1" d="M38.038 119.97s-7.147 1.448-6.514 6.695c0 0 3.076 4.252 6.514-6.695" transform="translate(3 3)"/>
|
||||
<path fill="#7348FF" d="M28.134 157.755c-.293-.68-.617-1.366-1.188-1.86-.504-.437-1.15-.548-1.658-.95-.121-.095.05-.264.169-.17.287.228.65.3.97.467.297.156.586.374.827.609.506.491.812 1.144 1.087 1.784.06.14-.147.262-.207.12M31.903 158.57c-.557-.777-2.398-1.113-3.099-.398-.108.11-.277-.06-.169-.17.823-.84 2.828-.455 3.475.447.09.125-.118.245-.207.12M28.213 162.213c-1.353-1.603-3.585-1.501-4.727.277-.084.13-.291.01-.207-.12 1.215-1.892 3.649-2.05 5.103-.327.099.117-.07.288-.17.17M30.197 144.168c-.262.15-.56.256-.79.456-.19.164-.345.354-.567.479-.134.076-.255-.131-.12-.207.244-.138.404-.366.626-.532.223-.165.49-.265.73-.403.134-.077.255.13.121.207M28.665 142.008c-.617-.721-1.49-1.02-2.36-1.326-.144-.05-.082-.282.064-.231.907.32 1.822.636 2.466 1.388.1.117-.07.287-.17.17M34.781 130.87c-1.827 1.17-5.042 2.102-5.825 4.391-.05.145-.281.083-.231-.064.81-2.366 4.052-3.328 5.935-4.534.13-.084.25.124.121.206M28.664 133.693c-.263-.92-1.153-1.959-1.775-2.65-.584-.648-1.27-1.398-2.03-1.832-.133-.077-.013-.284.122-.207.87.498 1.653 1.358 2.293 2.116.602.713 1.364 1.61 1.621 2.51.043.148-.188.211-.23.063" transform="translate(3 3)"/>
|
||||
<path fill="#6737C1" d="M32.188 126.587c-.499.345-.934.78-1.492 1.032-.474.212-1.035.528-1.552.609-.151.023-.216-.208-.064-.231.469-.073 1.076-.405 1.51-.598.552-.246.983-.678 1.477-1.018.127-.088.247.12.12.206" transform="translate(3 3)"/>
|
||||
<path fill="#8F6DFF" d="M14.095 135.019s2.898-2.253 6.916-1.633c.904.14 1.863.425 2.856.91 0 0-2.533-4.344-6.392-2.775-.236.095-.457.194-.661.29-3.144 1.508-2.719 3.208-2.719 3.208" transform="translate(3 3)"/>
|
||||
<path fill="#00CFFF" d="M34.42 131.099c2.444-.467 4.498-.281 6.172.198 3.747 1.07 5.587 3.6 5.587 3.6s2.173-2.894-3.558-6.031c-3.176-1.738-5.351-.863-6.658.262-1.05.904-1.543 1.97-1.543 1.97" transform="translate(3 3)"/>
|
||||
<path fill="#7348FF" d="M14.516 145.988s.961-1.536 2.894-2.961c2.12-1.562 5.415-2.99 9.893-2.105 0 0-1.802-1.748-4.14-2.575-1.188-.422-2.52-.607-3.82-.198-3.863 1.204-4.706 4.824-4.827 7.84" transform="translate(3 3)"/>
|
||||
<path fill="#8F6DFF" d="M29.715 144.365c12.062-2.05 18.094 4.945 18.094 4.945.076-.734.06-1.418-.023-2.047-.02-.161-.045-.32-.073-.474-.518-2.808-2.678-5-5.447-5.696-6.055-1.518-9.462.175-11.155 1.637-.993.86-1.396 1.635-1.396 1.635" transform="translate(3 3)"/>
|
||||
<path fill="#00CFFF" d="M30.004 135.77s3.398.077 5.77-.556c2.372-.633 3.458 2.08-1.88 7.056 0 0-.372-1.176-5.247-2.466-4.875-1.29-4.614-5.739 1.357-4.034" transform="translate(3 3)"/>
|
||||
<path fill="#FBC922" d="M20.272 166.229s.195.035.518.07c1.542.16 6.008.294 5.906-3.588-.016-.562-.38-1.063-.91-1.249-.387-.134-.91-.265-1.55-.31-.731-.054-1.616 0-2.638.282-3.137.859.572 3.437-1.326 4.795" transform="translate(3 3)"/>
|
||||
<path fill="#8F6DFF" d="M37.209 163.393c.192.229.556.116.58-.183.066-.795-.125-1.508-.526-2.23-.569-1.027-1.325-2.265-2.435-2.797-.633-.303-.906-.212-1.398.224-.468.415-.996.303-1.477.636-.537.371-.429 1.267-.08 1.728.447.59 1.362.514 2.026.667 1.036.24 2.544 1.044 3.31 1.955" transform="translate(3 3)"/>
|
||||
<path fill="#FFF" d="M38.127 150.678c.198-.163.472.064.347.288-.273.49-.61.958-.911 1.38-.644.9-1.469 1.584-2.505 1.987-.669.26-2.833.854-2.788-.44.043-1.209 1.603-1.348 2.456-1.613 1.175-.365 2.416-.79 3.401-1.602" transform="translate(3 3)"/>
|
||||
<path fill="#8F6DFF" d="M21.814 153.706c.061-.178.27-.25.44-.171.886.412 2.41.418 2.53 1.675.086.885-.935.735-1.486.607-.539-.126-1.92-.841-1.484-2.111" transform="translate(3 3)"/>
|
||||
<path fill="#FFF" d="M35.347 136.253c-.957.194-1.906.45-2.896.4-1.057-.053-2.095-.214-3.142-.319-.599-.06-2.627-.332-1.948.908.45.824 2.193 1.109 3.035 1.318.575.143 1.154.231 1.716.42.429.142.819.393 1.242.536.1-.597.806-1.36 1.299-1.687.22-.145 1.762-1.14.694-1.576" transform="translate(3 3)"/>
|
||||
<path fill="#8F6DFF" d="M35.826 122.477c-.476 1.1-.835 2.286-1.478 3.322-.24.387-.927 1.182-1.373.572-.348-.476.033-1.155.335-1.538.506-.641 1.086-1.312 2.516-2.356" transform="translate(3 3)"/>
|
||||
<path fill="#FFA800" d="M29.399 124.713c.23-.965-1.22-1.568-1.78-2.032-.779-.651-1.13-1.54-.868-2.559.53-2.057 2.6-3.21 4.283-4.235 1.035-.422 1.818-.716 2.63-1.118.162-.08.35-.157.549-.237.025-.099.054-.195.086-.29 0 0-7.478.15-8.747 5.034-1.08 4.166 2.706 5.216 3.847 5.437" transform="translate(3 3)"/>
|
||||
<path fill="#0981F3" d="M34.42 131.099c2.444-.467 4.498-.281 6.172.198.08-.055.166-.115.284-.176.256-.134.56-.105.86-.06.674.098 1.338.35 2.012.514.234.057.802.262.738-.147-.035-.201-.594-.604-.754-.729-1.338-1.012-3.028-1.402-4.673-1.574-.75-.077-1.505-.176-2.275-.141-.3.016-.565.07-.82.144-1.052.904-1.544 1.97-1.544 1.97" transform="translate(3 3)"/>
|
||||
<path fill="#7348FF" d="M18.183 126.825c.323.067.677.089.91.147 1.22.297 2.297.696 3.287 1.427.904.14 1.863.425 2.856.91 0 0-2.533-4.344-6.392-2.775-.236.096-.457.195-.661.29M29.715 144.365c12.062-2.05 18.094 4.945 18.094 4.945.076-.734.06-1.418-.023-2.047-.508-.46-1.054-.872-1.629-1.236-1.342-.853-2.68-1.725-4.185-2.31-1.418-.55-2.81-.677-4.319-.677-1.322 0-2.693.016-3.993.21-.811.122-2.3.419-2.549-.52-.993.86-1.396 1.635-1.396 1.635" transform="translate(3 3)"/>
|
||||
<path fill="#6737C1" d="M17.41 143.027c2.12-1.562 5.415-2.99 9.893-2.105 0 0-1.802-1.748-4.14-2.575.147.144.268.303.313.534.1.482-.275.59-.696.738-.866.3-1.786.252-2.645.578-.882.329-1.304 1.028-1.917 1.686-.23.246-.664.716-.808 1.144" transform="translate(3 3)"/>
|
||||
<path fill="#FFA800" d="M20.272 166.229s.195.035.518.07c.383-.17.744-.403 1.06-.655.534-.431.805-.978 1.217-1.498.364-.457.78-.802.591-1.419-.156-.498-.338-1.016.189-1.383.108-.077.243-.14.39-.192-.732-.054-1.617 0-2.64.282-3.136.859.573 3.437-1.325 4.795" transform="translate(3 3)"/>
|
||||
<path fill="#7348FF" d="M30.74 154.21c-.284.145-.535.343-.818.492-.313.166-.634.312-.907.545-.116.1-.287-.07-.169-.17.26-.22.554-.376.856-.53.317-.163.6-.382.917-.544.137-.07.259.137.121.207" transform="translate(3 3)"/>
|
||||
<path fill="#8F6DFF" d="M21.687 167.104L25.844 181.476 31.901 181.476 33.178 177.057 33.245 176.827 36.058 167.104z" transform="translate(3 3)"/>
|
||||
<path fill="#6737C1" d="M21.687 167.104l4.157 14.372H31.9l1.277-4.419c-4.445-1.733-6.589-6.11-7.626-9.953h-3.865z" transform="translate(3 3)"/>
|
||||
<path fill="#1F1440" d="M21.687 167.704L36.058 167.704 36.058 166.504 21.687 166.504zM149.085 181.417l11.183-.21 11.183-.193 22.366-.303 5.591-.087 5.592-.104c3.728-.064 7.455-.069 11.183-.01l5.591.118c1.864.06 3.728.1 5.592.18 3.727.14 7.455.32 11.183.609v.201c-3.728.29-7.456.468-11.183.608-1.864.081-3.728.121-5.592.181l-5.591.118c-3.728.059-7.455.054-11.183-.01l-5.592-.104-5.591-.087-22.366-.303-11.183-.193-11.183-.21v-.201z" transform="translate(3 3)"/>
|
||||
<path fill="#00CFFF" d="M192.284 134.278c-.958 3.38-1.063 7.325-1.063 7.325-.086-.079-.172-.155-.256-.234-5.639-5.185-8.614-9.914-10.157-13.726 7.005 4.64 1.726-.034-.757-2.164-1.211-4.072-.74-6.723-.64-7.177l.014-.072s1.765 2.69 3.09 3.002c1.326.313 2.532.629 3.762 1.663 1.182.99.772 3.804 2.883 4.69-.003 2.986.129 9.145 1.392.621 1.696 1.082 2.532 3.26 1.732 6.072" transform="translate(3 3)"/>
|
||||
<path fill="#7447FD" d="M208.266 128.977s-1.379 9.375-9.61 13.102c0 0-7.172-.529 9.61-13.102" transform="translate(3 3)"/>
|
||||
<path fill="#FDA601" d="M190.08 154.01s-3.335-1.868-3.705-6.286c0 0-1.459-3.07-3.884-2.66-2.426.408-5.55-4.182-8.573-6.684-3.023-2.502-6.21-1.86-6.21-1.86s3.609-1.17 8.34 1.711c4.73 2.882 6.893 4.706 6.893 4.706l4.209 2.898s3.707 6.165 2.93 8.174" transform="translate(3 3)"/>
|
||||
<path fill="#F9C723" d="M190.08 154.01l-1.415-3.095c-1.413-3.093-1.404-5.247-4.55-6.864-3.095-1.588-7.915-5.69-8.065-5.818 1.572.893 4.33 1.208 6.41 1.66.158 1.266.672 3.907 2.04.642.437.234.7.52.71.886.047 1.832 1.817 2.666 1.817 2.666 7.215 4.523 3.052 9.923 3.052 9.923" transform="translate(3 3)"/>
|
||||
<path fill="#8C6DFD" d="M208.262 128.98c-.834 1.386-1.973 2.864-3.516 4.38-7.165 7.046-6.09 8.718-6.09 8.718s-.478 3.224-3.583 5.374c0 0-2.507-8.001 4.3-13.673 1.038-.865 1.998-1.567 2.882-2.171-.35 1.891-.432 3.761 2.083-1.352 3.573-2.253 5.505-3.459 6.021-10.15 0 0 .955 3.823-2.097 8.874" transform="translate(3 3)"/>
|
||||
<path fill="#7447FD" d="M211.462 141.531c-.004-.072-.014-.126-.019-.16.007.036.017.091.02.16" transform="translate(3 3)"/>
|
||||
<path fill="#6737BF" d="M202.148 148.727s-3.055.318-3.213 3.105c-.16 2.785-1.832 6.129-3.105 6.129 0 0-8.918-12.42 3.98-12.339h.245c-1.344 1.488-3.759 4.352 1.78-.028 9.193-.313 9.68-3.222 9.63-4.05.1 1.03-.043 5.442-9.317 7.183" transform="translate(3 3)"/>
|
||||
<path fill="#6737BF" d="M195.495 156.865s.069 4.44-.873 12.8c.187 0 .343-.143.359-.33.162-1.933 1.026-11.776 1.913-12.727 2.616-2.802-1.399.257-1.399.257" transform="translate(3 3)"/>
|
||||
<path fill="#7447FD" d="M191.816 149.66s1.416 5.551.873 19.448c-.012.31.24.567.55.556.291-.01.52-.25.516-.54-.046-2.82-.33-16.233-1.596-19.397l-.343-.068z" transform="translate(3 3)"/>
|
||||
<path fill="#F9C723" d="M189.75 153.795l1.11 15.868c.013.183.172.321.354.308.186-.013.325-.176.308-.361l-1.443-15.6-.328-.215z" transform="translate(3 3)"/>
|
||||
<path fill="#FFF" d="M179.136 118.096c.819 2.032 1.695 3.859 2.99 5.638 1.483 2.041 2.963 4.059 4.28 6.214 1.318 2.16 2.521 4.415 3.329 6.82.804 2.392 1.01 4.913 1.608 7.355.054.224.4.13.345-.095-.58-2.371-.783-4.822-1.54-7.151-.727-2.232-1.793-4.341-2.983-6.36-1.237-2.099-2.612-4.094-4.06-6.052-1.527-2.065-2.663-4.08-3.624-6.464-.085-.211-.432-.119-.345.095" transform="translate(3 3)"/>
|
||||
<path fill="#6737BF" d="M195.62 146.5c.006-2.442.236-4.703 1.508-6.845 1.073-1.807 2.567-3.305 4.012-4.811.16-.166-.093-.42-.253-.253-1.553 1.619-3.163 3.237-4.26 5.215-1.162 2.101-1.36 4.333-1.365 6.694-.001.23.357.23.358 0" transform="translate(3 3)"/>
|
||||
<path fill="#FDA601" d="M190.069 153.949c-.122-2.687-.647-5.628-2.452-7.724-.076-.088-.202.04-.127.126 1.77 2.056 2.28 4.967 2.4 7.598.005.115.184.115.179 0" transform="translate(3 3)"/>
|
||||
<path fill="#FFA800" d="M207.55 158.453s-2.69-3.3-4.874-1.708c-2.184 1.592-5.02 7.484-5.02 7.484s-.985-5.095 3.314-8.12c4.3-3.026 6.926 1.512 6.926 1.512l-.346.832z" transform="translate(3 3)"/>
|
||||
<path fill="#FCCA22" d="M216.495 169.721s.238-8.22-3.344-8.17c-.781.011-1.502-.141-2.159-.402-2.95-4.21-2.759-3.069-2.018-1.24-.533-.45-1.006-.952-1.424-1.456l-.019-.024c-.583-.705-1.055-1.41-1.426-1.963-.996-1.496-3.907-.743-4.841-.454-.16.048-.263.083-.287.09.19-.2 4.469-4.609 9.728-1.774-2.405.54-4.772 1.378 1.455 1.739.671 1.063 1.853 2.536 3.618 3.384 2.986 1.433.717 10.27.717 10.27" transform="translate(3 3)"/>
|
||||
<path fill="#FFA800" d="M197.98 163.58s-1.102 4.507-1.264 7.206c-.007.118-.104.21-.223.21-.137 0-.242-.12-.221-.256.19-1.24 1.036-6.626 1.708-8.243.761-1.83 0 1.083 0 1.083" transform="translate(3 3)"/>
|
||||
<path fill="#FFF" d="M199.368 156.433c1.039-2.085 5.916-1.915 7.722-.85 1.708 1.006 2.768 2.716 4.828 3.09.226.04.322-.305.095-.346-2.562-.464-3.806-3.269-6.385-3.68-1.732-.276-5.73-.08-6.569 1.606-.102.205-.66 1.3-.558 1.094l.867-.914z" transform="translate(3 3)"/>
|
||||
<path fill="#7447FD" d="M191.256 141.498s2.164 3.869.852 9.729c0 0-1.062-8.144-6.758-16.046 0 0 5.352 2.95 5.906 6.317" transform="translate(3 3)"/>
|
||||
<path fill="#FDA601" d="M187.029 160.825c-2.547-1.028-3.087-2.382-3.087-2.382s-.267-.567-4.14-2.255c-.3-.13-.574-.27-.824-.421 3.094.142.043-1.05-1.827-1.705-1.031-1.544-.876-3.108-.876-3.108.918.811 3.859 1.734 3.859 1.734 7.704 2.858 6.895 8.137 6.895 8.137" transform="translate(3 3)"/>
|
||||
<path fill="#FFF" d="M187.044 160.96c-.381-1.553-1.58-2.644-2.752-3.653-1.44-1.24-3.064-2.24-4.622-3.32-.079-.055-.153.073-.075.127 1.454 1.008 2.965 1.944 4.329 3.075 1.24 1.028 2.579 2.188 2.977 3.811.023.093.166.054.143-.04" transform="translate(3 3)"/>
|
||||
<path fill="#6737BF" d="M189.552 164.813l1.174 5.178c.022.097.123.154.217.122.084-.028.132-.116.109-.201-.203-.748-1.091-4.048-1.245-5.184-.174-1.284-.255.085-.255.085" transform="translate(3 3)"/>
|
||||
<path fill="#FDA601" d="M186.745 160.706s1.873 5.695 2.055 8.452c.006.089.086.154.174.14.082-.013.137-.09.124-.171-.147-.927-.988-5.996-2.07-8.3l-.283-.12z" transform="translate(3 3)"/>
|
||||
<path fill="#6737BF" d="M189.912 165.888c-.844-3.765-2.46-2.895-2.46-2.895-5.314.095-7.05-2.043-7.151-2.173.09.085 1.597 1.503 4.739.698.645.548 2.305 1.862.94-.292.176-.065.354-.133.537-.212 4.266-1.8 3.395 4.874 3.395 4.874" transform="translate(3 3)"/>
|
||||
<path fill="#8C6DFD" d="M187.37 168.976L190.76 180.695 195.7 180.695 196.668 177.347 199.088 168.976z" transform="translate(3 3)"/>
|
||||
<path fill="#6737BF" d="M187.37 168.976l3.39 11.719h4.94l.968-3.348c-3.48-1.722-5.468-5.082-6.604-8.371h-2.694z" transform="translate(3 3)"/>
|
||||
<path fill="#1F1440" d="M187.37 169.701L199.088 169.701 199.088 168.501 187.37 168.501zM0 181.406l34.204-.403 34.204-.302 17.102-.192 8.55-.05 4.276.009 4.276.031 8.55.119c2.85.06 5.701.1 8.552.18 5.7.14 11.401.32 17.101.608v.202c-5.7.289-11.4.468-17.101.608-2.85.08-5.701.12-8.551.18l-8.551.119-4.276.032-4.275.01-8.551-.052-17.102-.191-34.204-.303L0 181.608v-.202z" transform="translate(3 3)"/>
|
||||
<path fill="#F9DBAF" d="M142.366 40.39c-2.183.612-3.477 2.83-2.884 4.944s2.851 3.336 5.034 2.724c2.183-.612 3.477-2.83 2.885-4.944-.593-2.114-2.852-3.336-5.035-2.724m3.289 11.728c-4.495 1.26-9.145-1.256-10.365-5.609-1.22-4.352 1.444-8.919 5.938-10.179 4.495-1.26 9.144 1.256 10.365 5.609 1.22 4.352-1.444 8.919-5.938 10.179" transform="translate(3 3)"/>
|
||||
<path fill="#F9DBAF" d="M142.527 36.483L140.198 37.136 139.676 35.275 142.005 34.622zM147.08 52.722L144.751 53.375 144.229 51.514 146.558 50.861zM151.118 43.045L150.485 40.789 152.407 40.251 153.039 42.506zM134.349 47.746L133.717 45.491 135.638 44.952 136.271 47.207zM148.249 38.01L146.155 36.877 147.145 35.18 149.239 36.313zM139.611 52.817L137.517 51.684 138.507 49.987 140.601 51.12zM149.453 48.638L150.652 46.582 152.38 47.517 151.18 49.573zM134.376 40.48L135.576 38.424 137.304 39.358 136.104 41.415z" transform="translate(3 3)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 40 KiB |
|
|
@ -0,0 +1,11 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<g fill-rule="nonzero">
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#919AA3" d="M7.96 4.154c-1.383 0-2.508 1.126-2.508 2.51 0 1.382 1.125 2.508 2.509 2.508 1.383 0 2.508-1.126 2.508-2.509S9.344 4.154 7.961 4.154zm0 3.685c-.647 0-1.175-.528-1.175-1.176 0-.648.527-1.175 1.176-1.175.648 0 1.175.527 1.175 1.175S8.61 7.84 7.961 7.84zM8 1.333c-3.052 0-5.526 2.664-5.526 5.949C2.474 10.568 8 14.667 8 14.667s5.526-4.1 5.526-7.385S11.052 1.333 8 1.333zm1.827 9.923c-.661.69-1.33 1.285-1.827 1.702-.497-.417-1.166-1.012-1.827-1.702C4.115 9.11 3.807 7.845 3.807 7.282c0-2.545 1.881-4.615 4.193-4.615 2.312 0 4.193 2.07 4.193 4.615 0 .563-.308 1.828-2.366 3.974z" transform="translate(-1010 -341) translate(1010 341)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 934 B |
|
|
@ -0,0 +1,11 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<g fill-rule="nonzero">
|
||||
<g>
|
||||
<g>
|
||||
<path fill="#919AA3" d="M8 1.333C4.318 1.333 1.333 4.318 1.333 8S4.318 14.667 8 14.667 14.667 11.682 14.667 8 11.682 1.333 8 1.333zm0 12c-2.94 0-5.333-2.392-5.333-5.333 0-2.94 2.392-5.333 5.333-5.333 2.94 0 5.333 2.392 5.333 5.333 0 2.94-2.392 5.333-5.333 5.333zM8 4H6.667v5.333h4.666V8H8V4z" transform="translate(-1010 -308) translate(1010 308)"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 628 B |
Binary file not shown.
|
After Width: | Height: | Size: 324 KiB |
|
|
@ -0,0 +1,22 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="40" viewBox="0 0 20 40">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g transform="translate(-644 -1607) translate(204 1583) translate(440 22) translate(0 2)">
|
||||
<rect width="20" height="40" fill="#FFF" opacity=".798" rx="4"/>
|
||||
<text fill="#4A499A" font-family="PingFangSC-Medium, PingFang SC" font-size="14" font-weight="400">
|
||||
<tspan x="3" y="19">预</tspan> <tspan x="3" y="36">告</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 955 B |
|
|
@ -0,0 +1,22 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="22" height="42" viewBox="0 0 22 42">
|
||||
<g fill="none" fill-rule="evenodd">
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<g transform="translate(-423 -1606) translate(204 1583) translate(220 22) translate(0 2)">
|
||||
<rect width="20" height="40" stroke="#D5DEE7" rx="4"/>
|
||||
<text fill="#FFF" font-family="PingFangSC-Medium, PingFang SC" font-size="14" font-weight="400">
|
||||
<tspan x="3" y="19">结</tspan> <tspan x="3" y="36">束</tspan>
|
||||
</text>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 942 B |
Loading…
Reference in New Issue