产品中心 产品详情
@@ -681,6 +681,38 @@ img {
|
||||
position: relative;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.page-title-cargo-platform {
|
||||
background: url("../images/project/agNetCargoPlatform/top.jpg") center center/cover no-repeat local;
|
||||
width: 100%;
|
||||
height: 330px;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
/* background-color: #ffffff00 !important; */
|
||||
margin-top: 80px !important; /* Adjusted for new 80px header height */
|
||||
}
|
||||
|
||||
.page-title-cargo-platform::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
/* background-color: rgba(0, 0, 0, 0.5); */
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.page-title-cargo-platform .container {
|
||||
position: relative;
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.page-title-cargo-platform h2,
|
||||
.page-title-cargo-platform p {
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.page-title {
|
||||
height: 300px;
|
||||
@@ -2168,6 +2200,7 @@ img {
|
||||
}
|
||||
.header-style-1 .navigation, .header-style-2 .navigation, .header-style-3 .navigation {
|
||||
/*background-color: transparent;*/
|
||||
margin-bottom: 0; /* Remove default navbar margin-bottom */
|
||||
}
|
||||
.header-style-1 #navbar, .header-style-2 #navbar, .header-style-3 #navbar {
|
||||
margin-right: 200px;
|
||||
@@ -2176,7 +2209,7 @@ img {
|
||||
font-size: 15px;
|
||||
font-size: 1.1rem;
|
||||
color: #333;
|
||||
padding: 40px 12px;
|
||||
padding: 20px 12px; /* Reduced from 40px to 20px to make header height 80px */
|
||||
}
|
||||
.header-style-1 .navigation .container, .header-style-2 .navigation .container, .header-style-3 .navigation .container {
|
||||
position: relative;
|
||||
@@ -2222,6 +2255,7 @@ img {
|
||||
|
||||
.header-style-1 .navbar-brand img, .header-style-2 .navbar-brand img, .header-style-3 .navbar-brand img {
|
||||
max-width: 190px;
|
||||
max-height: 40px; /* Add max-height to control header height */
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
@@ -2537,6 +2571,54 @@ img {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* Product cards swiper navigation buttons - hero-style */
|
||||
.product-cards-swiper .swiper-button-prev,
|
||||
.product-cards-swiper .swiper-button-next {
|
||||
background: rgba(255, 255, 255, 0.2);
|
||||
width: 60px;
|
||||
height: 60px;
|
||||
line-height: 60px;
|
||||
margin-top: -30px;
|
||||
text-align: center;
|
||||
border-radius: 60px;
|
||||
}
|
||||
|
||||
.product-cards-swiper .swiper-button-prev {
|
||||
left: 25px;
|
||||
}
|
||||
|
||||
.product-cards-swiper .swiper-button-next {
|
||||
right: 25px;
|
||||
}
|
||||
|
||||
.product-cards-swiper .swiper-button-prev:before {
|
||||
font-family: "Flaticon";
|
||||
content: "\f103";
|
||||
font-size: 20px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.product-cards-swiper .swiper-button-next:before {
|
||||
font-family: "Flaticon";
|
||||
content: "\f104";
|
||||
font-size: 20px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
.product-cards-swiper .swiper-button-prev,
|
||||
.product-cards-swiper .swiper-button-next {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
.product-cards-swiper .swiper-button-prev,
|
||||
.product-cards-swiper .swiper-button-next {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.hero-slider .swiper-pagination-bullet {
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
@@ -3006,6 +3088,8 @@ img {
|
||||
-o-transition: all 0.7s;
|
||||
-ms-transition: all 0.7s;
|
||||
transition: all 0.7s;
|
||||
/* Ensure sticky header doesn't affect layout when hidden */
|
||||
display: none;
|
||||
}
|
||||
|
||||
.sticky-header .sub-menu {
|
||||
@@ -3016,6 +3100,7 @@ img {
|
||||
opacity: 1;
|
||||
top: 0;
|
||||
pointer-events: auto;
|
||||
display: block; /* Show when sticky is active */
|
||||
}
|
||||
|
||||
.sticky-on .sub-menu {
|
||||
@@ -6866,23 +6951,42 @@ img {
|
||||
color: #102541;
|
||||
}
|
||||
|
||||
/* Product Cards */
|
||||
/* Product Cards - 经典案例页面网格布局 */
|
||||
.product-cards {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 20px;
|
||||
justify-content: flex-start;
|
||||
}
|
||||
.product-cards .product-card {
|
||||
width: calc(24.8% - 14px);
|
||||
min-height: 220px;
|
||||
}
|
||||
@media (max-width: 991px) {
|
||||
.product-cards .product-card {
|
||||
/* width: calc(50% - 10px); */
|
||||
min-height: 220px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 550px) {
|
||||
.product-cards .product-card {
|
||||
width: 100%;
|
||||
min-height: auto;
|
||||
}
|
||||
}
|
||||
|
||||
/* Product Card 基础样式 */
|
||||
.product-card {
|
||||
width: calc(33.333% - 14px);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
border: 1px solid #ebf4fd;
|
||||
border-radius: 4px;
|
||||
border-radius: 8px;
|
||||
overflow: hidden;
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
|
||||
transition: box-shadow 0.3s, transform 0.3s, background 0.3s;
|
||||
background: #fff;
|
||||
}
|
||||
.product-card:hover {
|
||||
box-shadow: 0 10px 30px rgba(20,129,255,0.25);
|
||||
@@ -6890,31 +6994,40 @@ img {
|
||||
background: #f8fbff;
|
||||
}
|
||||
.product-card .card-img {
|
||||
height: 0;
|
||||
padding-bottom: 44%;
|
||||
height: 120px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.product-card .card-img img {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
}
|
||||
.product-card .card-content {
|
||||
padding: 15px;
|
||||
padding: 20px;
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
position: relative;
|
||||
}
|
||||
.product-card .card-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 8px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
.product-card .card-header h4 {
|
||||
margin: 0;
|
||||
font-size: 16px;
|
||||
font-size: 18px;
|
||||
color: #102541;
|
||||
font-weight: 600;
|
||||
white-space: normal;
|
||||
overflow: visible;
|
||||
text-align: left;
|
||||
}
|
||||
.product-card .card-tag {
|
||||
background: #1481ff;
|
||||
@@ -6922,16 +7035,213 @@ img {
|
||||
padding: 2px 8px;
|
||||
border-radius: 3px;
|
||||
font-size: 12px;
|
||||
white-space: nowrap;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.product-card .card-content p {
|
||||
margin: 0;
|
||||
font-size: 14px;
|
||||
color: #666;
|
||||
line-height: 1.6;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 4;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
/* Owl Carousel 功能卡片轮播样式 */
|
||||
.feature-cards-slider {
|
||||
padding: 20px 0;
|
||||
}
|
||||
|
||||
/* 功能卡片样式 - 产品功能亮点(整体统一颜色 #eff5ff) */
|
||||
.feature-card {
|
||||
background: #eff5ff;
|
||||
border-radius: 12px;
|
||||
box-shadow: 0 2px 8px rgba(20,129,255,0.25);
|
||||
border: 0px solid #d4e8f8;
|
||||
overflow: hidden;
|
||||
transition: all 0.3s ease;
|
||||
height: 95%;
|
||||
min-height: 320px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin: 15px;
|
||||
}
|
||||
.feature-card:hover {
|
||||
box-shadow: 0 4px 12px rgba(20,129,255,0.35);
|
||||
transform: translateY(-3px);
|
||||
}
|
||||
.feature-card-icon {
|
||||
height: 120px;
|
||||
background: #eff5ff;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
padding: 20px;
|
||||
}
|
||||
.feature-card-icon img {
|
||||
width: 70px;
|
||||
height: 70px;
|
||||
object-fit: contain;
|
||||
}
|
||||
.feature-card-body {
|
||||
padding: 25px 20px;
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
background: #eff5ff;
|
||||
text-align: center;
|
||||
}
|
||||
.feature-card-body h4 {
|
||||
font-size: 16px;
|
||||
font-weight: bold;
|
||||
color: #000000;
|
||||
line-height: 1.5;
|
||||
margin: 0 0 15px 0;
|
||||
min-height: 48px; /* 两行高度: 16px * 1.5 * 2 */
|
||||
}
|
||||
.feature-card-body p {
|
||||
font-size: 14px;
|
||||
color: #4a6a8a;
|
||||
line-height: 1.7;
|
||||
margin: 0;
|
||||
display: -webkit-box;
|
||||
-webkit-line-clamp: 5;
|
||||
-webkit-box-orient: vertical;
|
||||
overflow: hidden;
|
||||
min-height: 119px; /* 五行高度: 14px * 1.7 * 5 */
|
||||
}
|
||||
|
||||
/* 产品优势卡片样式 - 上部渐变蓝色,下部白色 */
|
||||
.feature-card-advantage .feature-card-icon {
|
||||
background: linear-gradient(90deg, #0037ff 0%, #007bff 88%);
|
||||
justify-content: flex-start;
|
||||
}
|
||||
.feature-card-advantage .feature-card-icon h4 {
|
||||
color: #ffffff;
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
margin: 0;
|
||||
text-align: left;
|
||||
}
|
||||
.feature-card-advantage .feature-card-body {
|
||||
background: #ffffff;
|
||||
text-align: left;
|
||||
}
|
||||
.feature-card-advantage .feature-card-body p {
|
||||
color: #000000;
|
||||
}
|
||||
|
||||
/* Owl Carousel 卡片等高 */
|
||||
.feature-cards-slider .owl-stage {
|
||||
display: flex;
|
||||
}
|
||||
.feature-cards-slider .owl-item {
|
||||
display: flex;
|
||||
}
|
||||
.feature-cards-slider .owl-item .feature-card {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* ==========================================
|
||||
经典案例页面样式 - Classic Case Page Styles
|
||||
========================================== */
|
||||
|
||||
/* TAB 选项卡样式调整 */
|
||||
.service-tab-nav-fullwidth .service-tab-nav .service-list-widget ul {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.service-tab-nav-fullwidth .service-tab-nav .service-list-widget ul li {
|
||||
flex: none;
|
||||
min-width: 160px;
|
||||
}
|
||||
|
||||
.service-tab-nav-fullwidth .service-tab-nav .service-list-widget a {
|
||||
padding: 18px 20px;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
/* 公司 Logo 样式 - 绝对定位在卡片右上角 */
|
||||
.company-logo {
|
||||
position: absolute;
|
||||
top: -20px;
|
||||
right: 20px;
|
||||
width: 60px;
|
||||
height: 40px;
|
||||
border-radius: 4px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
color: #fff;
|
||||
font-size: 12px;
|
||||
font-weight: bold;
|
||||
text-align: center;
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
/* Logo 颜色变体 */
|
||||
.company-logo.logo-blue {
|
||||
background: linear-gradient(135deg, #1481ff, #0066cc);
|
||||
}
|
||||
|
||||
.company-logo.logo-orange {
|
||||
background: linear-gradient(135deg, #ff6b35, #ff5722);
|
||||
}
|
||||
|
||||
.company-logo.logo-green {
|
||||
background: linear-gradient(135deg, #4caf50, #2e7d32);
|
||||
}
|
||||
|
||||
.company-logo.logo-purple {
|
||||
background: linear-gradient(135deg, #9c27b0, #6a1b9a);
|
||||
}
|
||||
|
||||
.company-logo.logo-red {
|
||||
background: linear-gradient(135deg, #f44336, #d32f2f);
|
||||
}
|
||||
|
||||
.company-logo.logo-cyan {
|
||||
background: linear-gradient(135deg, #00bcd4, #0097a7);
|
||||
}
|
||||
|
||||
/* 响应式调整 */
|
||||
@media (max-width: 991px) {
|
||||
.product-card { width: calc(50% - 10px); }
|
||||
.service-tab-nav-fullwidth .service-tab-nav .service-list-widget ul {
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.service-tab-nav-fullwidth .service-tab-nav .service-list-widget ul li {
|
||||
min-width: 120px;
|
||||
}
|
||||
|
||||
.service-tab-nav-fullwidth .service-tab-nav .service-list-widget a {
|
||||
padding: 15px 10px;
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 550px) {
|
||||
.product-card { width: 100%; }
|
||||
|
||||
@media (max-width: 767px) {
|
||||
.service-tab-nav-fullwidth .service-tab-nav .service-list-widget ul li {
|
||||
min-width: 100px;
|
||||
}
|
||||
|
||||
.service-tab-nav-fullwidth .service-tab-nav .service-list-widget a {
|
||||
font-size: 13px;
|
||||
padding: 12px 8px;
|
||||
}
|
||||
|
||||
.company-logo {
|
||||
width: 50px;
|
||||
height: 35px;
|
||||
font-size: 11px;
|
||||
}
|
||||
}
|
||||
|
||||
/* 隐藏未筛选的卡片 */
|
||||
.product-card.hidden {
|
||||
display: none;
|
||||
}
|
||||
|
After Width: | Height: | Size: 386 KiB |
BIN
assets/images/project/agNetCargoPlatform/top.jpg
Normal file
|
After Width: | Height: | Size: 447 KiB |
103
assets/images/project/common/Group-10-Copy-4.svg
Normal file
@@ -0,0 +1,103 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="_图层_2" data-name="图层 2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 268.24 324.32">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: url(#_未命名的渐变_15);
|
||||
stroke: url(#_未命名的渐变_16);
|
||||
stroke-width: 3.46px;
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
fill: url(#_未命名的渐变_8);
|
||||
}
|
||||
|
||||
.cls-3 {
|
||||
fill: url(#_未命名的渐变_9);
|
||||
}
|
||||
|
||||
.cls-4 {
|
||||
fill: url(#_未命名的渐变_12);
|
||||
}
|
||||
|
||||
.cls-5 {
|
||||
fill: url(#_未命名的渐变_12-2);
|
||||
}
|
||||
|
||||
.cls-6 {
|
||||
fill: url(#_未命名的渐变_14);
|
||||
}
|
||||
|
||||
.cls-7 {
|
||||
fill: url(#_未命名的渐变_14-2);
|
||||
}
|
||||
|
||||
.cls-8 {
|
||||
fill: url(#_未命名的渐变_10);
|
||||
}
|
||||
</style>
|
||||
<linearGradient id="_未命名的渐变_8" data-name="未命名的渐变 8" x1="-550.65" y1="835.6" x2="-550.45" y2="835.37" gradientTransform="translate(147815.24 135883.11) scale(268.24 -162.54)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#19dcff"/>
|
||||
<stop offset=".34" stop-color="#00a7ff"/>
|
||||
<stop offset="1" stop-color="#e2d8ff"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="_未命名的渐变_9" data-name="未命名的渐变 9" x1="-551.59" y1="834.17" x2="-551.59" y2="833.17" gradientTransform="translate(74106.6 202986.64) scale(133.98 -243.24)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#aae2ff"/>
|
||||
<stop offset=".3" stop-color="#ddc7ff"/>
|
||||
<stop offset="1" stop-color="#005bff"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="_未命名的渐变_10" data-name="未命名的渐变 10" cx="-555.77" cy="827.7" fx="-555.77" fy="827.7" r="1.44" gradientTransform="translate(-115662.1 67787.81) rotate(93.59) scale(134.48 -134.48)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#00e3ff"/>
|
||||
<stop offset=".54" stop-color="#3c65f6"/>
|
||||
<stop offset="1" stop-color="#0037fa"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="_未命名的渐变_12" data-name="未命名的渐变 12" x1="-552.84" y1="841.27" x2="-552.13" y2="841.71" gradientTransform="translate(54431.03 64968.77) scale(98.19 -77.14)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#005bff"/>
|
||||
<stop offset=".6" stop-color="#00a7ff"/>
|
||||
<stop offset="1" stop-color="#19dcff"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="_未命名的渐变_12-2" data-name="未命名的渐变 12" x1="-552.81" y1="841.22" x2="-552.11" y2="841.66" gradientTransform="translate(54192.39 64968.77) scale(97.97 -77.14)" xlink:href="#_未命名的渐变_12"/>
|
||||
<radialGradient id="_未命名的渐变_14" data-name="未命名的渐变 14" cx="-558.29" cy="844.26" fx="-558.29" fy="844.26" r="1.32" gradientTransform="translate(19584.46 55440.94) rotate(14.16) scale(58 -58)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#96aeff"/>
|
||||
<stop offset="1" stop-color="#1243ee"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_14-2" data-name="未命名的渐变 14" cx="-558.3" cy="844.25" fx="-558.3" fy="844.25" r="1.31" gradientTransform="translate(19422.6 55452.32) rotate(14.19) scale(58 -58)" xlink:href="#_未命名的渐变_14"/>
|
||||
<linearGradient id="_未命名的渐变_15" data-name="未命名的渐变 15" x1="-556.36" y1="856.45" x2="-556.81" y2="855.93" gradientTransform="translate(21804.89 29341.66) scale(38.92 -34.18)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fdffff"/>
|
||||
<stop offset=".55" stop-color="#f6c5ab"/>
|
||||
<stop offset="1" stop-color="#ee8ea0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="_未命名的渐变_16" data-name="未命名的渐变 16" x1="-557.07" y1="856.29" x2="-556.68" y2="856.19" gradientTransform="translate(21804.89 29341.66) scale(38.92 -34.18)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff" stop-opacity=".63"/>
|
||||
<stop offset="1" stop-color="#fff" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="_图层_1-2" data-name="图层 1">
|
||||
<g id="Group-10-Copy-4">
|
||||
<g id="_编组-34" data-name="编组-34">
|
||||
<g id="_路径" data-name="路径">
|
||||
<polygon id="path-25" points="268.24 81.27 134.48 162.54 0 81.27 133.61 0 268.24 81.27"/>
|
||||
<polygon class="cls-2" points="268.24 81.27 134.48 162.54 0 81.27 133.61 0 268.24 81.27"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon id="path-28" points="268.24 81.08 268.24 243.75 134.25 324.32 134.25 162.41 268.24 81.08"/>
|
||||
<polygon class="cls-3" points="268.24 81.08 268.24 243.75 134.25 324.32 134.25 162.41 268.24 81.08"/>
|
||||
</g>
|
||||
<polygon class="cls-8" points="134.48 162.41 134.48 324.32 0 243.29 0 81.08 134.48 162.41"/>
|
||||
</g>
|
||||
<g id="_编组-35" data-name="编组-35">
|
||||
<g>
|
||||
<path id="path-32" d="M247.17,48.06c-6.84-11.37-15.17-21.73-24.75-30.79,0,0-14.31-14.44-32.29,1.07-1.89,1.66-3.64,3.49-5.22,5.47-4.49,5.41-15.22,18.75-18.85,26.79-4.66,10.26-17.07,16.53-17.07,16.53l2.3,20.26,50.91.91,44.97-40.24Z"/>
|
||||
<path class="cls-4" d="M247.17,48.06c-6.84-11.37-15.17-21.73-24.75-30.79,0,0-14.31-14.44-32.29,1.07-1.89,1.66-3.64,3.49-5.22,5.47-4.49,5.41-15.22,18.75-18.85,26.79-4.66,10.26-17.07,16.53-17.07,16.53l2.3,20.26,50.91.91,44.97-40.24Z"/>
|
||||
</g>
|
||||
<g>
|
||||
<path id="path-35" d="M29.61,48.06c6.84-11.37,15.15-21.73,24.71-30.79,0,0,14.28-14.44,32.22,1.07,1.88,1.67,3.62,3.5,5.21,5.47,4.48,5.41,15.18,18.75,18.81,26.79,4.65,10.26,17.02,16.53,17.02,16.53l-2.3,20.26-50.8.91L29.61,48.06Z"/>
|
||||
<path class="cls-5" d="M29.61,48.06c6.84-11.37,15.15-21.73,24.71-30.79,0,0,14.28-14.44,32.22,1.07,1.88,1.67,3.62,3.5,5.21,5.47,4.48,5.41,15.18,18.75,18.81,26.79,4.65,10.26,17.02,16.53,17.02,16.53l-2.3,20.26-50.8.91L29.61,48.06Z"/>
|
||||
</g>
|
||||
<path class="cls-6" d="M153.07,93.3s17.13,11.08,57.57,6.09c10.21-1.18,19.87-5.31,27.89-11.9,8.64-7.22,16.44-18.28,12.2-33.43-1.3-4.97-4.92-8.95-9.67-10.61-4.12-1.33-9.88-1.29-17.41,3.01-3.34,2.05-6.39,4.56-9.05,7.47-7.56,7.77-32.47,30.77-59.54,26.91l-1.99,12.45Z"/>
|
||||
<path class="cls-7" d="M122.25,93.3s-17.09,11.08-57.43,6.09c-10.18-1.19-19.82-5.31-27.82-11.9-8.62-7.22-16.38-18.28-12.17-33.43,1.29-4.97,4.91-8.95,9.65-10.61,4.11-1.33,9.86-1.29,17.36,3.01,3.33,2.05,6.37,4.56,9.03,7.47,7.54,7.77,32.39,30.77,59.4,26.91l1.99,12.45Z"/>
|
||||
<path class="cls-1" d="M157.31,85.63c0,12.18-8.71,12.12-19.45,12.12s-19.47,0-19.47-12.12,8.71-22.05,19.47-22.05,19.45,9.91,19.45,22.05Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.5 KiB |
138
assets/images/project/common/Group-121-Copy.svg
Normal file
@@ -0,0 +1,138 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="_图层_2" data-name="图层 2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 276.88 326.64">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: url(#_未命名的渐变_75);
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
fill: url(#_未命名的渐变_75-5);
|
||||
}
|
||||
|
||||
.cls-3 {
|
||||
fill: url(#_未命名的渐变_66);
|
||||
}
|
||||
|
||||
.cls-4 {
|
||||
fill: url(#_未命名的渐变_69-2);
|
||||
fill-rule: evenodd;
|
||||
stroke: url(#_未命名的渐变_70-2);
|
||||
}
|
||||
|
||||
.cls-4, .cls-5 {
|
||||
stroke-width: 3.24px;
|
||||
}
|
||||
|
||||
.cls-6 {
|
||||
fill: url(#_未命名的渐变_71);
|
||||
}
|
||||
|
||||
.cls-7 {
|
||||
fill: url(#_未命名的渐变_72);
|
||||
}
|
||||
|
||||
.cls-8 {
|
||||
fill: url(#_未命名的渐变_75-2);
|
||||
}
|
||||
|
||||
.cls-9 {
|
||||
fill: url(#_未命名的渐变_66-3);
|
||||
}
|
||||
|
||||
.cls-5 {
|
||||
fill: url(#_未命名的渐变_69);
|
||||
stroke: url(#_未命名的渐变_70);
|
||||
}
|
||||
|
||||
.cls-10 {
|
||||
fill: url(#_未命名的渐变_75-4);
|
||||
}
|
||||
|
||||
.cls-11 {
|
||||
fill: url(#_未命名的渐变_75-3);
|
||||
}
|
||||
|
||||
.cls-12 {
|
||||
fill: url(#_未命名的渐变_66-2);
|
||||
}
|
||||
</style>
|
||||
<radialGradient id="_未命名的渐变_66" data-name="未命名的渐变 66" cx="13.2" cy="-276.32" fx="13.2" fy="-276.32" r="2.27" gradientTransform="translate(-4774.45 -7894.13) rotate(145.96) scale(33.66)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#07c0ff"/>
|
||||
<stop offset=".45" stop-color="#3574ff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_66-2" data-name="未命名的渐变 66" cx="10" cy="-304.41" fx="10" fy="-304.41" r="2.88" gradientTransform="translate(24609.08 -5023.26) rotate(80.01) scale(82.43 -82.43)" xlink:href="#_未命名的渐变_66"/>
|
||||
<radialGradient id="_未命名的渐变_66-3" data-name="未命名的渐变 66" cx="1.54" cy="-295.04" fx="1.54" fy="-295.04" r="6.03" gradientTransform="translate(-12844.61 -1019.44) rotate(94.75) scale(44.06)" xlink:href="#_未命名的渐变_66"/>
|
||||
<linearGradient id="_未命名的渐变_75" data-name="未命名的渐变 75" x1="17.13" y1="-286.94" x2="15.33" y2="-285.86" gradientTransform="translate(-950.67 -15451.83) scale(59.62 -54.38)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#b4cdff"/>
|
||||
<stop offset=".36" stop-color="#fff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="_未命名的渐变_75-2" data-name="未命名的渐变 75" x1="12.33" y1="-278.36" x2="11.07" y2="-277.06" gradientTransform="translate(-331.12 -9755.28) scale(29.81 -35.68)" xlink:href="#_未命名的渐变_75"/>
|
||||
<linearGradient id="_未命名的渐变_69" data-name="未命名的渐变 69" x1="126.49" y1="66.76" x2="274.27" y2="66.76" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#19dcff"/>
|
||||
<stop offset=".34" stop-color="#00a7ff"/>
|
||||
<stop offset="1" stop-color="#e2d8ff"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="_未命名的渐变_70" data-name="未命名的渐变 70" x1="123.97" y1="66.79" x2="276.88" y2="66.79" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff" stop-opacity="0"/>
|
||||
<stop offset="1" stop-color="#fff"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="_未命名的渐变_69-2" data-name="未命名的渐变 69" x1="23.11" y1="-295.64" x2="23.32" y2="-296.12" gradientTransform="translate(3513.62 -37037.66) rotate(-180) scale(142.66 125.36)" xlink:href="#_未命名的渐变_69"/>
|
||||
<linearGradient id="_未命名的渐变_70-2" data-name="未命名的渐变 70" x1="23.2" y1="-295.97" x2="23.2" y2="-296.47" gradientTransform="translate(3513.62 -37037.66) rotate(-180) scale(142.66 125.36)" xlink:href="#_未命名的渐变_70"/>
|
||||
<radialGradient id="_未命名的渐变_71" data-name="未命名的渐变 71" cx="10.86" cy="-308.19" fx="10.86" fy="-308.19" r="2.75" gradientTransform="translate(18924.66 112.88) rotate(92.7) scale(82.43 -60.72)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#00e3ff"/>
|
||||
<stop offset=".54" stop-color="#3c65f6"/>
|
||||
<stop offset="1" stop-color="#0037fa"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="_未命名的渐变_72" data-name="未命名的渐变 72" x1="25.52" y1="-298.79" x2="25.52" y2="-299.79" gradientTransform="translate(1909.58 -69669.65) rotate(-180) scale(65.35 233.49)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#aae2ff"/>
|
||||
<stop offset=".3" stop-color="#ddc7ff"/>
|
||||
<stop offset="1" stop-color="#005bff"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="_未命名的渐变_75-3" data-name="未命名的渐变 75" x1="17.13" y1="-286.94" x2="15.33" y2="-285.86" gradientTransform="translate(-824.18 -15425.89) scale(59.62 -54.38)" xlink:href="#_未命名的渐变_75"/>
|
||||
<linearGradient id="_未命名的渐变_75-4" data-name="未命名的渐变 75" x1="17.13" x2="15.33" y2="-285.86" gradientTransform="translate(-824.18 -15386.97) scale(59.62 -54.38)" xlink:href="#_未命名的渐变_75"/>
|
||||
<linearGradient id="_未命名的渐变_75-5" data-name="未命名的渐变 75" x1="17.13" y1="-286.94" x2="15.33" y2="-285.86" gradientTransform="translate(-824.18 -15351.3) scale(59.62 -54.38)" xlink:href="#_未命名的渐变_75"/>
|
||||
</defs>
|
||||
<g id="_图层_1-2" data-name="图层 1">
|
||||
<g id="Group-121-Copy">
|
||||
<g id="Group-118">
|
||||
<polygon id="Path-44" class="cls-3" points="59.31 52.71 126.49 49.89 82.43 74.17 0 83.55 59.31 52.71"/>
|
||||
<polygon class="cls-12" points="0 83.55 0 211.74 82.43 258.53 82.43 74.17 0 83.55"/>
|
||||
<polygon class="cls-9" points="126.49 49.75 126.49 232.61 82.43 258.53 82.43 74.17 126.49 49.75"/>
|
||||
<g>
|
||||
<polygon id="path-84" points="11.44 109.34 71.06 144.26 71.06 163.72 11.44 128.8 11.44 109.34"/>
|
||||
<polygon class="cls-1" points="11.44 109.34 71.06 144.26 71.06 163.72 11.44 128.8 11.44 109.34"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon id="path-87" points="11.44 145.01 41.25 161.23 41.25 180.69 11.44 164.47 11.44 145.01"/>
|
||||
<polygon class="cls-8" points="11.44 145.01 41.25 161.23 41.25 180.69 11.44 164.47 11.44 145.01"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group-120">
|
||||
<g>
|
||||
<polygon id="path-91" class="cls-5" points="184.95 2.03 274.27 93.15 208.91 131.5 126.49 35.12 184.95 2.03"/>
|
||||
<path class="cls-4" d="M181.89,3.66l-55.67,31.51,80.26,93.85,62.39-36.61L181.89,3.66Z"/>
|
||||
</g>
|
||||
<polygon class="cls-6" points="126.49 34.8 126.49 279.85 208.91 326.64 208.91 128.98 126.49 34.8"/>
|
||||
<g>
|
||||
<polygon id="path-95" points="274.27 93.15 274.27 288.98 208.91 326.64 208.91 129.3 274.27 93.15"/>
|
||||
<polygon class="cls-7" points="274.27 93.15 274.27 288.98 208.91 326.64 208.91 129.3 274.27 93.15"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon id="path-97" points="137.93 135.28 197.55 170.21 197.55 189.67 137.93 154.74 137.93 135.28"/>
|
||||
<polygon class="cls-11" points="137.93 135.28 197.55 170.21 197.55 189.67 137.93 154.74 137.93 135.28"/>
|
||||
</g>
|
||||
<g id="Rectangle-Copy-16">
|
||||
<polygon id="path-99" points="137.93 174.2 197.55 209.12 197.55 228.58 137.93 193.66 137.93 174.2"/>
|
||||
<polygon class="cls-10" points="137.93 174.2 197.55 209.12 197.55 228.58 137.93 193.66 137.93 174.2"/>
|
||||
</g>
|
||||
<g id="Rectangle-Copy-17">
|
||||
<polygon id="path-101" points="137.93 209.88 197.55 244.8 197.55 264.26 137.93 229.34 137.93 209.88"/>
|
||||
<polygon class="cls-2" points="137.93 209.88 197.55 244.8 197.55 264.26 137.93 229.34 137.93 209.88"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 7.6 KiB |
176
assets/images/project/common/Group-124-Copy-1.svg
Normal file
@@ -0,0 +1,176 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="_图层_2" data-name="图层 2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 283.11 324.32">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: url(#_未命名的渐变_45-4);
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
fill: url(#_未命名的渐变_47-2);
|
||||
}
|
||||
|
||||
.cls-3 {
|
||||
fill: url(#_未命名的渐变_45-3);
|
||||
}
|
||||
|
||||
.cls-4 {
|
||||
fill: url(#_未命名的渐变_43-5);
|
||||
}
|
||||
|
||||
.cls-5 {
|
||||
fill: url(#_未命名的渐变_48-2);
|
||||
}
|
||||
|
||||
.cls-6 {
|
||||
fill: url(#_未命名的渐变_43);
|
||||
}
|
||||
|
||||
.cls-7 {
|
||||
fill: url(#_未命名的渐变_45-8);
|
||||
}
|
||||
|
||||
.cls-8 {
|
||||
fill: url(#_未命名的渐变_43-2);
|
||||
}
|
||||
|
||||
.cls-9 {
|
||||
fill: url(#_未命名的渐变_45-2);
|
||||
}
|
||||
|
||||
.cls-10 {
|
||||
fill: #d8d8d8;
|
||||
}
|
||||
|
||||
.cls-11 {
|
||||
fill: url(#_未命名的渐变_48);
|
||||
}
|
||||
|
||||
.cls-12 {
|
||||
fill: url(#_未命名的渐变_45-7);
|
||||
}
|
||||
|
||||
.cls-13 {
|
||||
fill: url(#_未命名的渐变_43-3);
|
||||
}
|
||||
|
||||
.cls-14 {
|
||||
fill: url(#_未命名的渐变_43-4);
|
||||
}
|
||||
|
||||
.cls-15 {
|
||||
fill: url(#_未命名的渐变_45);
|
||||
}
|
||||
|
||||
.cls-16 {
|
||||
fill: url(#_未命名的渐变_46);
|
||||
}
|
||||
|
||||
.cls-17 {
|
||||
fill: url(#_未命名的渐变_45-5);
|
||||
}
|
||||
|
||||
.cls-18 {
|
||||
fill: url(#_未命名的渐变_47);
|
||||
}
|
||||
|
||||
.cls-19 {
|
||||
fill: url(#_未命名的渐变_45-6);
|
||||
}
|
||||
</style>
|
||||
<radialGradient id="_未命名的渐变_43" data-name="未命名的渐变 43" cx="-1118.67" cy="257.26" fx="-1118.67" fy="257.26" r="2.06" gradientTransform="translate(-38649.33 85643.49) rotate(101.39) scale(81.85 -81.85)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff"/>
|
||||
<stop offset=".2" stop-color="#b4cdff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_45" data-name="未命名的渐变 45" cx="-1120.43" cy="257.15" fx="-1120.43" fy="257.15" r="1.6" gradientTransform="translate(-29168.59 76207.43) rotate(98.07) scale(70.93 -70.93)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff"/>
|
||||
<stop offset=".28" stop-color="#b4cdff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_45-2" data-name="未命名的渐变 45" cx="-1121.39" cy="265.16" fx="-1121.39" fy="265.16" r="1.92" gradientTransform="translate(28102.07 76868.34) rotate(83.26) scale(70.93)" xlink:href="#_未命名的渐变_45"/>
|
||||
<radialGradient id="_未命名的渐变_43-2" data-name="未命名的渐变 43" cx="-1118.67" cy="257.26" fx="-1118.67" fy="257.26" r="2.06" gradientTransform="translate(-38508.08 85643.49) rotate(101.39) scale(81.85 -81.85)" xlink:href="#_未命名的渐变_43"/>
|
||||
<radialGradient id="_未命名的渐变_45-3" data-name="未命名的渐变 45" cy="257.15" fy="257.15" r="1.6" gradientTransform="translate(-29027.34 76207.43) rotate(98.07) scale(70.93 -70.93)" xlink:href="#_未命名的渐变_45"/>
|
||||
<radialGradient id="_未命名的渐变_45-4" data-name="未命名的渐变 45" cx="-1121.39" cy="265.16" fx="-1121.39" fy="265.16" r="1.92" gradientTransform="translate(28243.32 76868.34) rotate(83.26) scale(70.93)" xlink:href="#_未命名的渐变_45"/>
|
||||
<radialGradient id="_未命名的渐变_43-3" data-name="未命名的渐变 43" cx="-1118.67" cy="257.26" fx="-1118.67" fy="257.26" gradientTransform="translate(-38578.7 85780.6) rotate(101.39) scale(81.85 -81.85)" xlink:href="#_未命名的渐变_43"/>
|
||||
<linearGradient id="_未命名的渐变_47" data-name="未命名的渐变 47" x1="-1112.81" y1="270.1" x2="-1112.35" y2="269.5" gradientTransform="translate(79018.2 33378.05) scale(70.93 -122.78)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#559cff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="_未命名的渐变_48" data-name="未命名的渐变 48" x1="-1104.64" y1="270.01" x2="-1104.92" y2="268.64" gradientTransform="translate(-78181.09 33377.7) rotate(-180) scale(70.93 122.78)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#2db3fa"/>
|
||||
<stop offset=".12" stop-color="#009fff"/>
|
||||
<stop offset=".41" stop-color="#0e5fff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="_未命名的渐变_43-4" data-name="未命名的渐变 43" cx="-1118.67" cy="257.26" fx="-1118.67" fy="257.26" r="2.06" gradientTransform="translate(-38649.33 85741.43) rotate(101.39) scale(81.85 -81.85)" xlink:href="#_未命名的渐变_43"/>
|
||||
<radialGradient id="_未命名的渐变_45-5" data-name="未命名的渐变 45" cx="-1120.43" fx="-1120.43" gradientTransform="translate(-29168.59 76305.37) rotate(98.07) scale(70.93 -70.93)" xlink:href="#_未命名的渐变_45"/>
|
||||
<radialGradient id="_未命名的渐变_45-6" data-name="未命名的渐变 45" cx="-1121.39" cy="265.16" fx="-1121.39" fy="265.16" r="1.92" gradientTransform="translate(28102.07 76966.28) rotate(83.26) scale(70.93)" xlink:href="#_未命名的渐变_45"/>
|
||||
<radialGradient id="_未命名的渐变_43-5" data-name="未命名的渐变 43" cx="-1118.67" cy="257.26" fx="-1118.67" fy="257.26" r="2.06" gradientTransform="translate(-38508.08 85741.43) rotate(101.39) scale(81.85 -81.85)" xlink:href="#_未命名的渐变_43"/>
|
||||
<radialGradient id="_未命名的渐变_45-7" data-name="未命名的渐变 45" cx="-1120.43" cy="257.15" fx="-1120.43" fy="257.15" r="1.6" gradientTransform="translate(-29027.34 76305.37) rotate(98.07) scale(70.93 -70.93)" xlink:href="#_未命名的渐变_45"/>
|
||||
<radialGradient id="_未命名的渐变_45-8" data-name="未命名的渐变 45" cx="-1121.39" cy="265.16" fx="-1121.39" fy="265.16" r="1.92" gradientTransform="translate(28243.32 76966.28) rotate(83.26) scale(70.93)" xlink:href="#_未命名的渐变_45"/>
|
||||
<radialGradient id="_未命名的渐变_46" data-name="未命名的渐变 46" cx="-1119.56" cy="265.94" fx="-1119.56" fy="265.94" r="1.54" gradientTransform="translate(33840.58 87982) rotate(55.67) scale(81.85 -81.85)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#07c0ff"/>
|
||||
<stop offset=".45" stop-color="#3574ff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="_未命名的渐变_47-2" data-name="未命名的渐变 47" x1="-1112.81" y1="270.1" x2="-1112.35" y2="269.5" gradientTransform="translate(79018.2 33217.43) scale(70.93 -122.78)" xlink:href="#_未命名的渐变_47"/>
|
||||
<linearGradient id="_未命名的渐变_48-2" data-name="未命名的渐变 48" x1="-1104.64" y1="270.01" x2="-1104.92" y2="268.64" gradientTransform="translate(-78181.09 33217.08) rotate(-180) scale(70.93 122.78)" xlink:href="#_未命名的渐变_48"/>
|
||||
</defs>
|
||||
<g id="_图层_1-2" data-name="图层 1">
|
||||
<g id="Group-124-Copy-1">
|
||||
<g id="Group-123-Copy">
|
||||
<g id="Group-23-Copy-4">
|
||||
<path id="Polygon" class="cls-10" d="M70.93,23.51l70.93,40.93v81.85l-70.93,40.93L0,146.28v-81.85S70.93,23.51,70.93,23.51Z"/>
|
||||
<path class="cls-6" d="M70.93,23.51l70.93,40.93-70.93,40.93L0,64.43,70.93,23.51Z"/>
|
||||
<g id="Group-22">
|
||||
<polygon class="cls-15" points="70.93 105.36 70.93 187.21 0 146.28 0 64.43 70.93 105.36"/>
|
||||
<polygon class="cls-9" points="70.93 105.01 70.93 186.86 141.86 145.93 141.86 64.08 70.93 105.01"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group-23-Copy-5">
|
||||
<path class="cls-10" d="M212.18,23.51l70.93,40.93v81.85l-70.93,40.93-70.93-40.93v-81.85s70.93-40.93,70.93-40.93Z"/>
|
||||
<path class="cls-8" d="M212.18,23.51l70.93,40.93-70.93,40.93-70.93-40.93,70.93-40.93Z"/>
|
||||
<g>
|
||||
<polygon class="cls-3" points="212.18 105.36 212.18 187.21 141.25 146.28 141.25 64.43 212.18 105.36"/>
|
||||
<polygon class="cls-1" points="212.18 105.01 212.18 186.86 283.11 145.93 283.11 64.08 212.18 105.01"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group-23-Copy-3">
|
||||
<path class="cls-10" d="M141.56,160.62l70.93,40.93v81.85l-70.93,40.93-70.93-40.93v-81.85s70.93-40.93,70.93-40.93Z"/>
|
||||
<path class="cls-13" d="M141.56,160.62l70.93,40.93-70.93,40.93-70.93-40.93,70.93-40.93Z"/>
|
||||
<g>
|
||||
<polygon class="cls-18" points="141.56 242.47 141.56 324.32 70.62 283.4 70.62 201.55 141.56 242.47"/>
|
||||
<polygon class="cls-11" points="141.56 242.12 141.56 323.97 212.49 283.05 212.49 201.2 141.56 242.12"/>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group-123">
|
||||
<g>
|
||||
<path class="cls-10" d="M70.93,121.45l70.93,40.93v81.85l-70.93,40.93L0,244.22v-81.85s70.93-40.93,70.93-40.93Z"/>
|
||||
<path class="cls-14" d="M70.93,121.45l70.93,40.93-70.93,40.93L0,162.37l70.93-40.93Z"/>
|
||||
<g>
|
||||
<polygon class="cls-17" points="70.93 203.3 70.93 285.15 0 244.22 0 162.37 70.93 203.3"/>
|
||||
<polygon class="cls-19" points="70.93 202.95 70.93 284.8 141.86 243.87 141.86 162.02 70.93 202.95"/>
|
||||
</g>
|
||||
</g>
|
||||
<g>
|
||||
<path class="cls-10" d="M212.18,121.45l70.93,40.93v81.85l-70.93,40.93-70.93-40.93v-81.85s70.93-40.93,70.93-40.93Z"/>
|
||||
<path class="cls-4" d="M212.18,121.45l70.93,40.93-70.93,40.93-70.93-40.93,70.93-40.93Z"/>
|
||||
<g>
|
||||
<polygon class="cls-12" points="212.18 203.3 212.18 285.15 141.25 244.22 141.25 162.37 212.18 203.3"/>
|
||||
<polygon class="cls-7" points="212.18 202.95 212.18 284.8 283.11 243.87 283.11 162.02 212.18 202.95"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
<g id="Group-23-Copy-6">
|
||||
<path class="cls-10" d="M141.56,0l70.93,40.93v81.85l-70.93,40.93-70.93-40.93V40.93S141.56,0,141.56,0Z"/>
|
||||
<path class="cls-16" d="M141.56,0l70.93,40.93-70.93,40.93-70.93-40.93L141.56,0Z"/>
|
||||
<g>
|
||||
<polygon class="cls-2" points="141.56 81.85 141.56 163.7 70.62 122.78 70.62 40.93 141.56 81.85"/>
|
||||
<polygon class="cls-5" points="141.56 81.5 141.56 163.35 212.49 122.43 212.49 40.58 141.56 81.5"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 9.9 KiB |
86
assets/images/project/common/Group-15-Copy-3.svg
Normal file
@@ -0,0 +1,86 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="_图层_2" data-name="图层 2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 270.93 324.32">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: url(#_未命名的渐变_53);
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
fill: url(#_未命名的渐变_55-2);
|
||||
}
|
||||
|
||||
.cls-3 {
|
||||
fill: url(#_未命名的渐变_57);
|
||||
}
|
||||
|
||||
.cls-4 {
|
||||
fill: url(#_未命名的渐变_52);
|
||||
stroke: #1a48eb;
|
||||
stroke-width: 3.29px;
|
||||
}
|
||||
|
||||
.cls-5 {
|
||||
fill: url(#_未命名的渐变_57-2);
|
||||
}
|
||||
|
||||
.cls-6 {
|
||||
fill: url(#_未命名的渐变_56);
|
||||
}
|
||||
|
||||
.cls-7 {
|
||||
fill: url(#_未命名的渐变_58);
|
||||
}
|
||||
|
||||
.cls-8 {
|
||||
fill: url(#_未命名的渐变_55);
|
||||
}
|
||||
</style>
|
||||
<linearGradient id="_未命名的渐变_55" data-name="未命名的渐变 55" x1="-549.03" y1="-286.74" x2="-548.82" y2="-286.9" gradientTransform="translate(58015.54 -13945.3) scale(105.56 -48.77)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#d6bdff"/>
|
||||
<stop offset=".55" stop-color="#898cf8"/>
|
||||
<stop offset="1" stop-color="#3660f6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="_未命名的渐变_52" data-name="未命名的渐变 52" x1="-550.17" y1="-288.19" x2="-550.17" y2="-289.19" gradientTransform="translate(39471.68 -15439.75) scale(71.32 -54.44)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#2473f9"/>
|
||||
<stop offset="1" stop-color="#0026b0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="_未命名的渐变_53" data-name="未命名的渐变 53" x1="-549.14" y1="-286.05" x2="-548.74" y2="-286.25" gradientTransform="translate(55317.44 -13434.98) scale(100.51 -47.04)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#ebd4fe"/>
|
||||
<stop offset="1" stop-color="#3660f6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="_未命名的渐变_57" data-name="未命名的渐变 57" x1="-549.8" y1="-297.17" x2="-549.7" y2="-297.9" gradientTransform="translate(44221.52 -34885.05) scale(80.02 -117.96)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#009cff"/>
|
||||
<stop offset="1" stop-color="#3660f6"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="_未命名的渐变_55-2" data-name="未命名的渐变 55" x1="-548.69" y1="-296.35" x2="-548.48" y2="-296.88" gradientTransform="translate(67212.11 -31055.67) scale(122.18 -104.95)" xlink:href="#_未命名的渐变_55"/>
|
||||
<radialGradient id="_未命名的渐变_56" data-name="未命名的渐变 56" cx="-550.09" cy="-306.97" fx="-550.09" fy="-306.97" r="1.94" gradientTransform="translate(36994.82 128765.47) rotate(103.17) scale(212.55 -212.55)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff"/>
|
||||
<stop offset=".15" stop-color="#ffd0d2"/>
|
||||
<stop offset=".29" stop-color="#50a9ee"/>
|
||||
<stop offset=".45" stop-color="#436cf9"/>
|
||||
<stop offset="1" stop-color="#0037fa"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="_未命名的渐变_57-2" data-name="未命名的渐变 57" x1="-549.88" y1="-293.95" x2="-549.69" y2="-294.67" gradientTransform="translate(43778.07 -24224.01) scale(79.21 -82.78)" xlink:href="#_未命名的渐变_57"/>
|
||||
<linearGradient id="_未命名的渐变_58" data-name="未命名的渐变 58" x1="-549.64" y1="-296.75" x2="-549.51" y2="-297.71" gradientTransform="translate(46408.76 -33523.01) scale(84.25 -113.37)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#003a87"/>
|
||||
<stop offset="1" stop-color="#00a4ff"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="_图层_1-2" data-name="图层 1">
|
||||
<g id="Group-15-Copy-3">
|
||||
<g id="Group-14">
|
||||
<path id="Clip-489" class="cls-8" d="M80.03,15.55l.99,1.2,1.01,1.17.45.52.45.51.87.96.88.93.32.34.33.34,1.2,1.2,1.22,1.17.25.23.26.23,1.01.9,1.01.87.67.56,1.24.99,1.24.95.04.03.04.03,1.24.88,1.24.84.27.18.28.18,1.25.78,1.25.74.21.11.21.12.88.48c.59.31,1.17.61,1.75.89l1.2.54,1.2.5.28.11.28.11,1.11.41,1.11.37.08.03.09.02,1.17.34,1.17.3.31.07.31.07.97.2.97.17.23.04.23.04,1.17.14,1.17.09.33.02h.33s.85.03.85.03h.84s.5-.02.5-.02l.5-.03.68-.05.68-.07.66-.09.66-.11.88-.15.88-.18.74-.19c.49-.13.97-.28,1.44-.45l.71-.25c.47-.18.93-.37,1.38-.58l-58.39,26.8-.68.3c-.46.19-.93.37-1.4.53l-.72.24c-.48.15-.96.28-1.45.4l-.52.12-.52.11-.36.06-.36.05-.65.1-.66.09-.27.04-.27.04-.41.02-.41.02-.49.03-.5.02h-.23s-.23.02-.23.02h-.61s-.62-.04-.62-.04h-.33s-.33-.03-.33-.03h-.1s-.1,0-.1,0l-.98-.08-.98-.12h-.09s-.09-.03-.09-.03l-.23-.04-.23-.04-.62-.1-.62-.11-.35-.08-.36-.08-.31-.07-.31-.08-.5-.11-.89-.24-.89-.26-.05-.02-.09-.03-.08-.03-.76-.25-.76-.27-.34-.13-.34-.14-.28-.11-.28-.11-.25-.1-.25-.1-.86-.37-.86-.4-.18-.08-.78-.38-.78-.4-.54-.29-.54-.3-.41-.23-.13-.07-.13-.07-.89-.52-.88-.54-.24-.16-.24-.16-.28-.18-.28-.18-.38-.24-.38-.25-.86-.6-.86-.62-.09-.06-.03-.03-.94-.71-.94-.73-.28-.24-.28-.24-.34-.28-.33-.28-.35-.29-.35-.29-.66-.59-.66-.6-.25-.23-.26-.23-.09-.07-.09-.08-1.04-1-1.03-1.03-.09-.09-.09-.09-.33-.34-.32-.35-.65-.68-.65-.7-.23-.25-.23-.26-.45-.51-.45-.52-.41-.46-.41-.47-.59-.72-.59-.72,58.38-26.8Z"/>
|
||||
<path class="cls-4" d="M198.72,302.52h0s.03-.04.1-.13h0c.77-.98,1.56-2.06,2.55-3.49h0c.35-.5.64-.94,1.2-1.78h0c.59-.89,1.09-1.68,1.56-2.44h0c.37-.6.74-1.23,1.13-1.91h0c.6-1.05,1.13-1.99,1.62-2.92h0q.06-.1.12-.21h0q.05-.1.1-.19h0c.19-.35.27-.51.38-.72h0c.76-1.47,1.45-2.92,2.1-4.35h0c.83-1.86,1.64-3.82,2.42-5.88h0c.57-1.5,1.06-2.89,1.51-4.23h0l54.22-24.89c-.1.26-.19.51-.28.76h0l1.55.59-1.55-.57s-.01.03-.05.1h0v.02h0q-.04.09-.09.24h0c-.77,2.01-1.54,3.9-2.35,5.68h0q-.04.11-.06.16h0s0,.03,0,.01h0c-.57,1.26-1.21,2.57-1.95,4.03h0c-.09.18-.17.32-.36.66h0q-.11.21-.22.42h0q-.15.28-.29.56h0c-.28.53-.4.76-.56,1.04h0c-.1.18-.19.33-.38.65h0v.02c-.17.27-.25.39-.34.54h0c-.44.77-.76,1.3-1.08,1.83h0c-.45.73-.93,1.49-1.5,2.35h0q-.05.08-.11.16h0c-.51.79-.74,1.14-1.03,1.54h0q-.13.2-.24.36h0s-.01.02-.02.03h0c-.12.19-.17.25-.23.34h0c-.63.88-1.29,1.77-1.99,2.66h0s-.01,0-.02.02h0c-.85,1.08-1.72,2.11-2.76,3.3h0c-.28.32-.51.57-.72.8h0c-.99,1.09-1.88,2.02-2.75,2.87h0l-50.67,23.26c.37-.44.72-.88,1.06-1.31h0Z"/>
|
||||
<path id="Clip-517" class="cls-1" d="M144.19,0l.75.18.75.19,1.03.29,1.04.3,1.03.28,1.04.3.29.09.29.09,1.28.42,1.28.44.88.29.88.3.17.05.17.06,1.94.74,1.94.78.35.13.34.13.03.02,1.56.67c1.03.45,2.05.91,3.08,1.39l.23.11.23.11,2.07,1.01,2.07,1.06.68.38.93.5.93.51,1.04.57,1.04.57,1.12.68,1,.6,1,.6.77.46.77.47.77.51.78.51,1.03.67,1.03.68.55.36.55.37,1.69,1.17,1.69,1.2-58.39,26.8-1.49-1.06c-1-.69-1.99-1.37-2.99-2.04l-1.03-.68-1.03-.67-1.54-.98-1.54-.96-1.01-.61-1.01-.6-1.6-.93-1.61-.89-.92-.51-.92-.5-1.61-.84c-1.07-.55-2.15-1.09-3.22-1.6l-1.71-.8c-1.14-.52-2.28-1.02-3.42-1.49l-.34-.14-.34-.13-1.41-.57c-.94-.37-1.88-.73-2.81-1.07l-.89-.31-.88-.3-1.57-.53-1.57-.5-1.04-.3-1.03-.29-1.78-.5-1.78-.46L144.19,0Z"/>
|
||||
<path id="Clip-531" class="cls-3" d="M265.9,155.11l-.88.43-.85.47-.24.14-.24.15-.63.39-.62.41-.22.15-.22.16-.78.58-.76.61-.1.09-.1.09-.64.58-.63.6-.21.21-.22.22-.52.57-.52.59-.16.19-.16.2-.62.78-.6.81-.57.84c-.37.57-.73,1.16-1.07,1.76l-.22.41-.22.41-.4.76-.38.78-.23.51-.23.51-.25.6-.24.61-.24.61-.23.62-.18.5-.17.51-.23.72-.22.74-.12.44-.12.44-.24.93-.22.95-.13.54-.24,1.23-.21,1.26-.04.31-.04.31-.14,1.01-.12,1.03-.04.36-.04.36-.12,1.32-.09,1.34v.07s0,.07,0,.07l-.06,1.48-.02,1.5.02,1.83.07,1.83v.19s.02.19.02.19l.1,1.58.13,1.59.02.26.03.26.19,1.66.23,1.66.05.37.06.37.26,1.62.3,1.62v.1s.03.1.03.1l.36,1.68.39,1.68.11.43.11.43.4,1.51.42,1.51.05.2.05.19.51,1.67.54,1.65.17.51.17.51.42,1.16.43,1.15.26.69.27.68.36.88.37.88.5,1.17.51,1.16.32.7.32.7.76,1.59c.52,1.06,1.05,2.11,1.6,3.15l.09.17.09.17.81,1.45c.55.96,1.11,1.9,1.68,2.84l.35.58.35.57,1.02,1.57,1.04,1.54.26.38.26.38.66.91.67.9.49.67.49.66.4.51.41.5.82,1.03.84,1.02-58.39,26.8-.17-.21-.17-.2-.66-.81-.64-.82-.41-.51-.41-.51-.09-.12-.44-.59-.43-.59-.68-.92-.66-.93-.06-.08-.06-.08-.19-.29-.19-.29-1.05-1.55-1.02-1.57-.18-.27-.18-.27-.17-.31-.17-.3-.85-1.41c-.56-.95-1.11-1.91-1.63-2.88l-.09-.17-.1-.16-.82-1.56c-.53-1.05-1.05-2.11-1.55-3.18l-.14-.28-.14-.28-.18-.42-.18-.42-.51-1.17-.5-1.17-.2-.47-.2-.47-.16-.4-.16-.41-.27-.69-.26-.69-.19-.5-.19-.49-.23-.66-.23-.66-.17-.5-.17-.5-.09-.26-.09-.26-.43-1.34-.41-1.34v-.06s-.03-.06-.03-.06l-.05-.2-.06-.2-.3-1.04-.29-1.05-.11-.46-.11-.46-.11-.43-.1-.43-.1-.39-.1-.39-.28-1.26-.26-1.26v-.05s-.03-.1-.03-.1l-.02-.09-.21-1.11-.2-1.12-.08-.51-.08-.51-.06-.37-.05-.37-.05-.32-.05-.32-.15-1.18-.14-1.18v-.15s-.03-.16-.03-.16l-.03-.26-.02-.26-.07-.74-.06-.74-.06-.84-.05-.84v-.19s-.03-.19-.03-.19v-.09s0-.09,0-.09l-.04-1.12-.02-1.11v-.63s0-.62,0-.62v-.53s.01-.52.01-.52l.02-.97.04-.96v-.07s0-.08,0-.08v-.04l.06-1.05.08-1.04.03-.26.03-.26.08-.72.04-.42.05-.41.08-.6.09-.6.04-.31.04-.31.02-.13.02-.13.18-1.05.2-1.04.02-.07.02-.07.06-.27.06-.27.16-.72.17-.71.06-.22.07-.22.12-.44.13-.44.11-.42.12-.41.11-.32.11-.31.17-.51.17-.5.1-.3.1-.29.13-.33.14-.33.24-.6.25-.6.11-.26.11-.26.13-.25.13-.25.38-.78.4-.76.14-.28.14-.28.08-.13.08-.13.52-.89c.36-.59.72-1.16,1.12-1.71l.02-.04.03-.04.57-.77.59-.74.16-.2.17-.19.51-.59.53-.57.2-.21.21-.21.63-.61.64-.58.1-.09.1-.09.76-.61.78-.58.22-.16.22-.15.61-.41.63-.39.24-.15.25-.15.85-.46.87-.43,58.38-26.8Z"/>
|
||||
<path id="Clip-545" class="cls-2" d="M186.32,20.24v1.09c-.02.73,0,1.46.02,2.19v.32s.02.32.02.32l.08,1.6.11,1.61.02.31.03.31.15,1.47.17,1.48.07.54.24,1.63.28,1.64.07.4.08.4.27,1.42.3,1.42.07.31.07.3.4,1.65.43,1.65.12.42.11.42.38,1.32.4,1.32.14.45.14.45.56,1.69.59,1.68.07.17.07.17.58,1.53.61,1.52.56,1.34c.38.89.77,1.78,1.18,2.66l.03.07.03.07.73,1.52c.49,1.01,1.01,2.01,1.53,3l.32.6.32.59.8,1.43c.54.95,1.09,1.89,1.66,2.81l.08.13.08.14.81,1.28c.55.85,1.11,1.68,1.69,2.51l.55.77.56.77.58.8.58.79,1.07,1.37,1.09,1.35.98,1.16.99,1.14.3.34.3.34,1.17,1.26,1.18,1.22.56.54.92.89.93.87.36.34.37.32.93.81.94.79.27.23.27.23,1.18.93,1.19.89.25.18.26.18,1.02.72,1.03.69.24.16.24.16,1.19.74,1.2.69.25.14.25.14,1.22.65,1.22.61,1.27.57,1.27.53.27.1.27.11,1.23.45,1.23.41.14.04.14.04,1.11.31,1.11.27.3.07.29.07,1.23.24,1.22.2h.17s.17.03.17.03l1.04.11,1.04.07h.41s.41.02.41.02h.81s.8-.02.8-.02l.49-.02.49-.03.68-.07.68-.08.65-.08.65-.1.72-.14c.48-.1.95-.2,1.42-.33l-58.38,26.8-.86.22-.86.19-.21.03-.21.03-.65.1-.65.09-.43.06-.44.06h-.24s-.24.03-.24.03l-.49.03-.49.02-.42.02-.42.02h-.38s-.39-.02-.39-.02h-.41s-.41-.03-.41-.03h-.26s-.27-.02-.27-.02l-.78-.07-.79-.09h-.17s-.17-.03-.17-.03h-.05s-.05,0-.05,0l-.95-.15-.95-.17-.22-.05-.22-.05-.3-.07-.29-.07-.4-.09-.4-.09-.71-.2-.71-.21-.14-.04-.14-.04-.05-.02h-.05s-.88-.3-.88-.3l-.89-.31-.29-.12-.29-.11-.28-.1-.27-.11-.31-.12-.31-.12-.87-.38-.87-.4-.09-.04-.09-.05-.78-.38-.78-.4-.44-.24-.45-.24-.25-.13-.25-.14-.18-.1-.17-.1-.88-.52-.88-.54-.14-.09-.14-.09-.24-.16-.24-.16-.51-.33-.51-.34-.52-.37-.52-.38-.26-.18-.25-.18-.14-.09-.14-.1-.93-.7-.93-.72-.12-.1-.12-.1-.27-.23-.27-.23-.56-.46-.56-.47-.37-.33-.37-.33-.36-.33-.37-.33-.25-.23-.26-.23-.67-.64-.67-.66-.27-.27-.28-.27-.08-.07-.07-.08-1.06-1.09-1.05-1.13-.05-.05-.05-.06-.3-.34-.29-.34-.74-.83-.73-.85-.26-.31-.26-.31-.95-1.17-.93-1.19-.26-.36-.59-.79-.58-.8-.45-.61-.45-.61-.11-.16-.11-.16-.85-1.25c-.56-.84-1.11-1.68-1.65-2.54l-.03-.05-.07-.11-.06-.11-.85-1.39c-.55-.94-1.09-1.89-1.61-2.84l-.64-1.18-.78-1.49c-.51-1-1.01-2.01-1.48-3.02l-.03-.06-.03-.05-.9-2.02-.84-2.01-.06-.14-.06-.13-.54-1.39-.52-1.39-.07-.17-.07-.17v-.04s-.52-1.42-.52-1.42l-.47-1.42-.08-.25-.08-.25-.14-.45-.14-.45-.2-.65-.2-.65-.19-.67-.18-.67-.12-.42-.12-.42-.06-.23-.06-.23-.33-1.3-.31-1.3-.03-.13-.03-.13-.07-.3-.06-.3-.19-.85-.18-.85-.11-.57-.1-.58-.08-.4-.07-.4-.05-.28-.05-.28-.2-1.23-.18-1.23v-.13s-.03-.12-.03-.12l-.07-.54-.1-.8-.09-.8-.06-.67-.06-.66-.03-.31-.03-.31-.03-.37-.08-1.14-.06-1.14v-.28s-.02-.28-.02-.28v-.32s-.02-.33-.02-.33l-.02-.52v-.52s-.02-1.11-.02-1.11l.02-1.1,58.39-26.83Z"/>
|
||||
<path id="Clip-559" class="cls-6" d="M85.81,26.8l2.04.51c6.12,1.6,12.32,3.9,18.56,6.86l2.15,1.05c6.46,3.23,12.95,7.17,19.38,11.82v1.49c.04,18.92,7.94,40.08,20.86,55.66l1.16,1.38c6.24,7.25,13.13,12.67,20.04,15.95l1.12.52c7.12,3.15,14.22,4.01,20.6,2.26l1.51,2.99c8.45,17.02,14.99,34.96,19.32,52.98l-.79.18c-13.04,3.15-21.18,16.78-21.24,35.71v1.5c.34,19.56,8.99,40.52,21.63,55.42l-.6,1.81c-4.73,13.76-11.73,25.23-20.65,33.88l-1.11-1.36c-6.37-7.61-13.61-13.48-20.95-16.96l-1.12-.51c-6.71-2.97-13.48-3.93-19.72-2.41l-.78.2c-12.88,3.57-20.73,17.55-20.48,36.62l-2.03-.51c-6.11-1.62-12.31-3.91-18.54-6.87l-2.16-1.05c-6.47-3.23-12.96-7.18-19.39-11.83v-1.49c-.04-18.92-7.94-40.08-20.86-55.66l-1.16-1.38c-6.23-7.24-13.13-12.66-20.03-15.94l-1.13-.52c-7.13-3.15-14.23-4.01-20.61-2.26l-1.51-2.99c-8.45-17.02-14.99-34.95-19.32-52.99l.79-.18c13.04-3.15,21.18-16.78,21.25-35.68v-1.5c-.35-19.58-8.99-40.55-21.66-55.44l.72-2.13c2.21-6.34,4.94-12.29,8.22-17.78l1.09-1.78c3.31-5.27,7.07-9.95,11.25-13.99l1.12,1.36c6.37,7.61,13.62,13.49,20.97,16.98l1.12.51c6.71,2.96,13.48,3.92,19.71,2.4,13.35-3.21,21.52-17.36,21.26-36.81Z"/>
|
||||
<g id="Clip-573">
|
||||
<path class="cls-5" d="M250.1,97.5l1.52,3.01,1.47,3.03.41.86.41.86.48,1,.47,1,.56,1.25.55,1.24.46,1.03.46,1.03,1.17,2.72,1.13,2.73.19.45.19.45.04.08.03.08.19.51.19.51.87,2.2c.57,1.47,1.13,2.94,1.67,4.42l.29.74.41,1.18.4,1.18.74,2.08.72,2.09.17.51.18.51.38,1.21.37,1.22.58,1.82.56,1.82.17.56.17.55.36,1.25.35,1.26.48,1.71.47,1.71.15.54.15.54.65,2.51.62,2.52-58.38,26.81-.76-3.06-.8-3.05-.47-1.7-.48-1.7-.52-1.82-.54-1.81-.56-1.82-.58-1.82-.55-1.73-.56-1.73-.71-2.09-.73-2.08-.54-1.55-.56-1.54-1.25-3.32-1.3-3.31-.23-.58-.23-.58-.19-.45-.19-.45-1.14-2.73-1.16-2.72-.46-1.03-.46-1.03-1.02-2.25-1.04-2.24-.41-.87-.41-.86-1.47-3.03-1.51-3.01,58.38-26.8Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path class="cls-7" d="M105.44,122.13c-14.17-6.36-27.85-3.5-35.52,9.38l-.53.92c-11,19.89-4.14,54.85,15.63,78.81l1.12,1.33c6.37,7.4,13.27,12.77,20.09,16,5.11,2.44,10.18,3.67,14.94,3.67l.93-.02c8.33-.29,15.66-4.43,20.54-12.63l.53-.92c11-19.88,4.15-54.85-15.63-78.8l-1.12-1.33c-6.37-7.4-13.27-12.76-20.09-16l-.89-.41Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 14 KiB |
119
assets/images/project/common/Group-21.svg
Normal file
@@ -0,0 +1,119 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="_图层_2" data-name="图层 2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 324.33 300.74">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: url(#_未命名的渐变_7-2);
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
mask: url(#mask-1);
|
||||
}
|
||||
|
||||
.cls-3 {
|
||||
fill: url(#_未命名的渐变_5);
|
||||
}
|
||||
|
||||
.cls-4 {
|
||||
mask: url(#mask);
|
||||
}
|
||||
|
||||
.cls-5 {
|
||||
fill: #fff;
|
||||
fill-rule: evenodd;
|
||||
}
|
||||
|
||||
.cls-6 {
|
||||
fill: url(#_未命名的渐变_6);
|
||||
}
|
||||
|
||||
.cls-7 {
|
||||
fill: #4281ff;
|
||||
}
|
||||
|
||||
.cls-8 {
|
||||
fill: url(#_未命名的渐变_6-2);
|
||||
}
|
||||
|
||||
.cls-9 {
|
||||
fill: url(#_未命名的渐变_7);
|
||||
}
|
||||
|
||||
.cls-10 {
|
||||
fill: #1269ff;
|
||||
}
|
||||
|
||||
.cls-11 {
|
||||
fill: url(#_未命名的渐变_4);
|
||||
}
|
||||
|
||||
.cls-12 {
|
||||
fill: rgba(216, 216, 216, 0);
|
||||
}
|
||||
|
||||
.cls-13 {
|
||||
fill: url(#_未命名的渐变_7-3);
|
||||
}
|
||||
</style>
|
||||
<mask id="mask" x="99" y="0" width="126" height="88.08" maskUnits="userSpaceOnUse">
|
||||
<g id="mask-14">
|
||||
<polygon id="path-13" class="cls-5" points="99 0 225 0 225 88.08 99 88.08 99 0"/>
|
||||
</g>
|
||||
</mask>
|
||||
<radialGradient id="_未命名的渐变_7" data-name="未命名的渐变 7" cx="-530.51" cy="1381.15" fx="-530.51" fy="1381.15" r="1.19" gradientTransform="translate(-121485.56 46794.91) rotate(90) scale(88.08 -88.08)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff"/>
|
||||
<stop offset=".39" stop-color="#b4cdff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<mask id="mask-1" x="0" y="93.64" width="152.43" height="149.78" maskUnits="userSpaceOnUse">
|
||||
<g id="mask-17">
|
||||
<polygon id="path-16" class="cls-5" points="0 93.64 152.43 93.64 152.43 243.42 0 243.42 0 93.64"/>
|
||||
</g>
|
||||
</mask>
|
||||
<radialGradient id="_未命名的渐变_6" data-name="未命名的渐变 6" cx="-526.33" cy="1382.39" fx="-526.33" fy="1382.39" r="2.03" gradientTransform="translate(-214845.7 54091.5) rotate(96.74) scale(149.78 -149.78)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff"/>
|
||||
<stop offset=".2" stop-color="#b4cdff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_7-2" data-name="未命名的渐变 7" cx="-529.19" cy="1375.59" fx="-529.19" fy="1375.59" r="1.82" gradientTransform="translate(-106786.57 -11457.92) rotate(117.21) scale(72.96 -72.96)" xlink:href="#_未命名的渐变_7"/>
|
||||
<radialGradient id="_未命名的渐变_4" data-name="未命名的渐变 4" cx="-526.1" cy="1382.48" fx="-526.1" fy="1382.48" r="1.01" gradientTransform="translate(-213729.74 56560.07) rotate(96.06) scale(149.61 -149.61)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#00e3ff"/>
|
||||
<stop offset=".45" stop-color="#1677ff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_5" data-name="未命名的渐变 5" cx="-527.17" cy="1395.74" fx="-527.17" fy="1395.74" r="2.29" gradientTransform="translate(15450.4 107871.53) rotate(12.63) scale(72.96 -72.96)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#00e3ff"/>
|
||||
<stop offset=".45" stop-color="#1677ff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_6-2" data-name="未命名的渐变 6" cx="-527.46" cy="1382.05" fx="-527.46" fy="1382.05" r="2.41" gradientTransform="translate(-180128.41 49459.7) rotate(95.6) scale(126.33 -126.33)" xlink:href="#_未命名的渐变_6"/>
|
||||
<radialGradient id="_未命名的渐变_7-3" data-name="未命名的渐变 7" cx="-530.51" cy="1381.94" fx="-530.51" fy="1381.94" r="1.48" gradientTransform="translate(-121550.61 46823.79) rotate(90) scale(88.07 -88.07)" xlink:href="#_未命名的渐变_7"/>
|
||||
</defs>
|
||||
<g id="_图层_1-2" data-name="图层 1">
|
||||
<g id="Group-21">
|
||||
<g id="Group-3">
|
||||
<g id="Clip-2">
|
||||
<polygon class="cls-12" points="99 0 225 0 225 88.08 99 88.08 99 0"/>
|
||||
</g>
|
||||
<g class="cls-4">
|
||||
<path id="Fill-1" class="cls-9" d="M206.4,10.68c24.69,14.25,24.82,37.36.32,51.6l-29.62,17.21-14.8,8.6-14.89-8.6-29.81-17.21c-24.67-14.24-24.8-37.34-.27-51.59,24.51-14.24,64.41-14.24,89.08,0h0Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Fill-4" class="cls-7" d="M224.85,38.51c-.06.66-.1,1.33-.23,1.99-.1.54-.27,1.07-.41,1.61-.16.63-.32,1.26-.54,1.88-.18.52-.42,1.02-.65,1.54-.28.66-.57,1.31-.92,1.96-.25.47-.56.93-.84,1.4-.46.74-.94,1.47-1.48,2.2-.52.69-1.06,1.38-1.66,2.07-.14.16-.27.33-.42.49-.81.88-1.7,1.75-2.65,2.6-.6.54-1.27,1.07-1.93,1.59-.58.47-1.14.94-1.77,1.4-.71.52-1.49,1.01-2.26,1.51-.79.51-1.54,1.04-2.39,1.54l-29.62,17.21-14.8,8.59-.32,113.16,14.8-8.6,29.62-17.21c.26-.15.51-.3.76-.45.58-.35,1.08-.73,1.62-1.08.77-.5,1.55-.99,2.26-1.51.62-.45,1.18-.92,1.76-1.39.66-.53,1.33-1.05,1.93-1.59.12-.11.27-.21.39-.32.81-.75,1.56-1.51,2.27-2.28.15-.16.27-.33.42-.49.41-.47.84-.94,1.22-1.42.17-.21.27-.43.43-.64.54-.73,1.02-1.46,1.48-2.2.19-.31.44-.61.62-.92.09-.16.14-.32.22-.48.35-.65.64-1.3.92-1.96.17-.38.39-.76.53-1.14.05-.13.07-.26.11-.39.22-.63.38-1.26.54-1.89.11-.42.28-.84.36-1.27.02-.11.02-.23.04-.34.12-.66.17-1.33.23-1.99.04-.43.14-.86.15-1.28,0-.18,0-.37,0-.56l.32-113.16c0,.61-.1,1.23-.16,1.84h0Z"/>
|
||||
<path id="Fill-6" class="cls-10" d="M147.4,79.48l-29.81-17.21c-12.41-7.16-18.61-16.57-18.58-25.97l-.32,113.16c-.03,9.4,6.17,18.8,18.58,25.97l29.81,17.21,14.9,8.6.32-113.16-14.89-8.6Z"/>
|
||||
<g id="Group-10">
|
||||
<g id="Clip-9">
|
||||
<polygon class="cls-12" points="0 93.64 152.43 93.64 152.43 243.42 0 243.42 0 93.64"/>
|
||||
</g>
|
||||
<g class="cls-2">
|
||||
<path id="Fill-8" class="cls-6" d="M137.63,102.41l-29.6,17.19c-1.89,1.1-3.89,2.08-5.95,3.01-.59.27-1.19.52-1.8.77-1.61.67-3.26,1.3-4.95,1.88-.6.21-1.19.43-1.81.62-1.07.33-2.15.62-3.24.92-.83.23-1.65.47-2.49.67-1.14.28-2.31.5-3.46.74-.8.16-1.59.34-2.4.48-2.36.42-4.75.75-7.16,1-.74.08-1.49.12-2.24.19-1.41.11-2.83.22-4.26.28-.91.04-1.82.06-2.73.08-1.15.02-2.3.03-3.45.01-.96-.01-1.92-.04-2.88-.08-1.07-.05-2.13-.1-3.19-.17-.98-.07-1.95-.15-2.92-.24-1.05-.1-2.09-.22-3.14-.35-.94-.12-1.89-.25-2.83-.4-1.12-.17-2.23-.37-3.33-.58-.87-.17-1.75-.34-2.62-.53-1.32-.29-2.62-.62-3.91-.96-.72-.19-1.45-.37-2.16-.58-2.31-.67-4.58-1.43-6.76-2.28-1.09-.42-2.14-.89-3.19-1.36-.54-.24-1.1-.45-1.62-.71-1.59-.75-3.14-1.55-4.62-2.41C6.5,112.44.3,103.03.32,93.64L0,206.79c-.02,9.39,6.18,18.8,18.59,25.97,1.49.86,3.03,1.66,4.62,2.41.53.25,1.09.47,1.63.71.94.42,1.87.85,2.84,1.23.11.05.23.08.34.12,2.19.85,4.45,1.61,6.77,2.28.18.05.35.13.54.18.53.15,1.08.25,1.61.4,1.29.34,2.59.67,3.92.96.35.08.69.18,1.04.26.52.11,1.05.17,1.57.27,1.11.21,2.22.41,3.34.58.45.07.89.17,1.34.23.49.07.99.1,1.48.17,1.04.13,2.09.25,3.15.35.5.05,1,.12,1.5.17.47.04.94.05,1.41.08,1.06.07,2.12.13,3.19.17.54.02,1.07.07,1.6.09.43.01.85-.01,1.28,0,1.15.02,2.31,0,3.46-.01.57-.01,1.14.01,1.71-.01.34-.01.67-.05,1.01-.07,1.42-.06,2.84-.17,4.25-.28.57-.05,1.15-.06,1.72-.11.18-.02.35-.05.53-.07,2.41-.25,4.8-.58,7.16-1,.11-.02.24-.03.35-.05.68-.12,1.34-.3,2.03-.43,1.17-.24,2.34-.47,3.49-.75.83-.2,1.65-.44,2.47-.66,1.09-.3,2.18-.59,3.25-.93.23-.07.47-.12.69-.2.39-.12.74-.29,1.12-.42,1.69-.58,3.34-1.2,4.95-1.88.6-.25,1.2-.5,1.8-.76,2.06-.93,4.06-1.91,5.94-3.01l29.6-17.2,14.8-8.6.32-113.16-14.8,8.6Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<path id="Fill-11" class="cls-1" d="M107.72,68.01l29.81,17.21,14.89,8.6-14.8,8.6-29.6,17.19c-24.53,14.25-64.43,14.25-89.12,0-24.67-14.24-24.8-37.34-.27-51.59,24.51-14.24,64.41-14.24,89.08,0h0Z"/>
|
||||
<path id="Fill-13" class="cls-11" d="M324.17,95.83c-.06.66-.1,1.33-.23,1.99-.1.54-.26,1.07-.41,1.61-.16.63-.32,1.26-.54,1.89-.18.51-.43,1.02-.65,1.53-.28.66-.57,1.32-.92,1.96-.25.47-.56.93-.84,1.4-.46.74-.94,1.47-1.48,2.2-.52.69-1.06,1.39-1.66,2.07-.15.16-.27.33-.42.49-.81.88-1.7,1.75-2.65,2.6-.6.54-1.28,1.07-1.94,1.6-.58.47-1.14.94-1.76,1.39-.71.52-1.5,1.01-2.27,1.51-.79.52-1.54,1.04-2.39,1.54-1.89,1.09-3.89,2.08-5.94,3.01-.59.26-1.19.51-1.8.77-1.61.67-3.26,1.3-4.95,1.87-.61.2-1.2.43-1.81.62-1.07.34-2.16.63-3.25.93-.82.22-1.64.47-2.48.67-1.15.28-2.32.51-3.49.74-.79.16-1.58.34-2.37.49-2.36.41-4.75.75-7.17,1-.75.08-1.49.12-2.24.19-1.41.12-2.83.22-4.26.28-.91.04-1.82.06-2.74.07-1.15.02-2.3.03-3.45.02-.96-.01-1.93-.04-2.89-.08-1.07-.04-2.12-.1-3.19-.17-.97-.07-1.94-.15-2.91-.25-1.06-.1-2.1-.22-3.15-.35-.94-.12-1.88-.25-2.82-.4-1.12-.17-2.23-.37-3.34-.58-.87-.17-1.75-.34-2.61-.53-1.32-.29-2.62-.61-3.91-.96-.72-.19-1.45-.37-2.16-.58-2.31-.68-4.58-1.43-6.76-2.28-1.09-.42-2.14-.88-3.19-1.35-.54-.24-1.1-.46-1.63-.71-1.59-.76-3.14-1.55-4.62-2.41l-29.79-17.19-14.9-8.6-.32,113.16,14.89,8.6,29.79,17.19c1.48.86,3.03,1.66,4.62,2.41.53.25,1.09.47,1.64.71.94.42,1.86.85,2.83,1.24.11.05.23.07.34.11,2.19.85,4.45,1.61,6.77,2.28.18.06.35.13.54.18.53.15,1.08.25,1.61.4,1.29.34,2.6.67,3.92.96.35.08.69.18,1.04.25.51.11,1.04.18,1.57.27,1.11.21,2.22.41,3.35.58.44.07.88.17,1.33.23.49.07.99.1,1.48.17,1.05.13,2.1.25,3.16.35.5.05.99.13,1.5.17.47.03.94.04,1.41.07,1.07.08,2.13.13,3.2.17.53.02,1.07.07,1.6.08.43.01.86-.01,1.28,0,1.15.02,2.3,0,3.45-.01.57-.01,1.15.01,1.71,0,.34-.01.67-.06,1.01-.07,1.43-.06,2.85-.17,4.27-.28.57-.05,1.15-.06,1.71-.11.18-.02.35-.06.53-.08,2.41-.25,4.8-.58,7.17-1,.11-.02.23-.03.35-.05.69-.12,1.35-.29,2.03-.43,1.17-.24,2.34-.47,3.49-.75.84-.2,1.65-.44,2.47-.67,1.09-.3,2.18-.59,3.25-.92.23-.07.47-.12.69-.2.38-.12.73-.29,1.11-.42,1.69-.58,3.35-1.2,4.96-1.88.6-.25,1.21-.5,1.8-.77,2.06-.93,4.06-1.91,5.94-3.01.26-.15.51-.3.77-.45.58-.35,1.08-.73,1.62-1.08.77-.5,1.55-.99,2.26-1.51.62-.45,1.18-.92,1.76-1.39.66-.53,1.33-1.06,1.94-1.6.12-.11.27-.21.39-.32.81-.75,1.56-1.51,2.27-2.28.15-.16.27-.33.42-.49.42-.48.84-.94,1.22-1.43.17-.21.27-.43.43-.65.54-.72,1.02-1.45,1.48-2.19.19-.31.44-.61.62-.92.09-.16.14-.32.22-.48.35-.65.64-1.3.92-1.96.17-.38.39-.76.53-1.14.05-.13.07-.26.11-.39.22-.62.38-1.26.54-1.88.11-.43.28-.85.36-1.27.02-.11.02-.23.04-.34.12-.66.17-1.32.23-1.99.04-.43.14-.86.15-1.29,0-.18,0-.37,0-.55l.32-113.16c0,.61-.1,1.22-.16,1.84h0Z"/>
|
||||
<path id="Fill-15" class="cls-3" d="M216.91,119.6l-29.79-17.19-14.9-8.6,14.8-8.59,29.62-17.21c24.51-14.24,64.41-14.24,89.08,0,24.69,14.25,24.82,37.35.31,51.59-24.53,14.25-64.43,14.25-89.12,0h0Z"/>
|
||||
<path id="Fill-17" class="cls-8" d="M225.49,153.16c-.06.66-.1,1.33-.23,1.98-.1.54-.26,1.08-.41,1.61-.16.63-.32,1.26-.54,1.88-.18.52-.43,1.03-.65,1.54-.28.66-.57,1.31-.92,1.96-.25.47-.56.93-.85,1.4-.45.74-.94,1.47-1.48,2.19-.52.7-1.06,1.39-1.66,2.08-.14.16-.27.32-.42.48-.81.89-1.7,1.75-2.65,2.61-.6.54-1.27,1.07-1.93,1.59-.58.47-1.14.94-1.76,1.4-.71.51-1.49,1.01-2.26,1.51-.79.52-1.54,1.04-2.4,1.54-1.89,1.1-3.89,2.08-5.94,3.01-.59.27-1.19.51-1.8.77-1.61.67-3.26,1.3-4.95,1.87-.6.2-1.2.43-1.81.62-1.07.34-2.16.63-3.25.93-.82.22-1.64.46-2.48.66-1.15.28-2.32.51-3.49.75-.79.16-1.58.34-2.37.48-2.36.42-4.75.75-7.17,1-.74.08-1.49.12-2.23.19-1.42.11-2.84.22-4.27.28-.91.04-1.82.06-2.74.08-1.15.02-2.3.03-3.44.01-.97-.01-1.93-.04-2.9-.08-1.07-.05-2.12-.1-3.19-.17-.98-.07-1.95-.15-2.92-.25-1.06-.1-2.1-.22-3.15-.35-.95-.12-1.88-.25-2.82-.4-1.12-.18-2.23-.37-3.34-.58-.87-.17-1.75-.34-2.61-.53-1.32-.29-2.62-.61-3.92-.96-.72-.19-1.45-.37-2.16-.58-2.32-.67-4.58-1.43-6.77-2.28-1.08-.42-2.13-.88-3.18-1.35-.54-.24-1.1-.46-1.64-.71-1.59-.75-3.14-1.55-4.62-2.41-12.41-7.16-18.61-16.57-18.59-25.97l-.32,113.16c-.02,9.39,6.18,18.8,18.59,25.97,1.49.86,3.03,1.66,4.62,2.41.53.26,1.09.47,1.63.71.94.42,1.87.85,2.84,1.23.11.05.23.07.34.12,2.19.85,4.45,1.61,6.77,2.28.18.06.35.13.54.19.53.15,1.08.25,1.61.39,1.29.35,2.6.67,3.92.96.35.07.69.18,1.04.25.51.1,1.04.17,1.57.27,1.11.21,2.22.41,3.35.58.44.07.88.17,1.33.23.49.07.99.11,1.48.17,1.05.13,2.1.25,3.15.35.5.05.99.12,1.5.17.47.04.94.04,1.41.08,1.07.07,2.14.13,3.2.17.53.02,1.07.07,1.6.08.43.01.85,0,1.28,0,1.16.01,2.31,0,3.46-.01.57-.01,1.14.01,1.71-.01.34-.01.67-.05,1.01-.07,1.43-.06,2.85-.17,4.27-.28.57-.05,1.14-.06,1.71-.11.18-.02.35-.06.52-.07,2.41-.25,4.8-.58,7.17-1,.11-.02.23-.03.35-.05.69-.13,1.35-.29,2.03-.43,1.17-.24,2.34-.47,3.49-.75.84-.2,1.65-.44,2.47-.67,1.09-.3,2.18-.59,3.25-.93.23-.07.47-.12.69-.2.38-.12.73-.29,1.11-.42,1.7-.58,3.35-1.2,4.96-1.88.6-.25,1.21-.5,1.8-.77,2.06-.92,4.06-1.91,5.94-3.01.26-.15.51-.3.77-.45.58-.35,1.07-.73,1.62-1.08.77-.5,1.55-.99,2.26-1.51.62-.45,1.18-.92,1.76-1.39.66-.53,1.33-1.06,1.94-1.6.12-.11.27-.21.39-.32.81-.75,1.56-1.51,2.27-2.28.15-.16.27-.33.42-.49.42-.48.84-.94,1.22-1.43.17-.21.27-.43.43-.64.54-.72,1.02-1.45,1.48-2.2.19-.31.44-.61.62-.92.09-.16.14-.32.22-.48.35-.65.64-1.3.92-1.96.17-.38.39-.76.53-1.14.05-.13.07-.26.11-.39.23-.62.38-1.26.55-1.88.11-.42.28-.85.36-1.27.02-.11.02-.23.04-.34.12-.67.17-1.33.23-2,.04-.43.13-.85.15-1.28,0-.18,0-.36.01-.55l.32-113.16c0,.61-.1,1.23-.16,1.84h0Z"/>
|
||||
<path id="Fill-19" class="cls-13" d="M207.04,125.33c24.69,14.25,24.82,37.36.31,51.59-24.53,14.25-64.43,14.25-89.12,0-24.67-14.24-24.8-37.35-.27-51.6l29.6-17.19,14.8-8.6,14.9,8.6,29.79,17.19Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 13 KiB |
57
assets/images/project/common/Group-4-Copy-4.svg
Normal file
@@ -0,0 +1,57 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="_图层_2" data-name="图层 2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 280 324.32">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: url(#_未命名的渐变_26-3);
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
fill: url(#_未命名的渐变_27);
|
||||
fill-opacity: .4;
|
||||
}
|
||||
|
||||
.cls-3 {
|
||||
fill: url(#_未命名的渐变_27-2);
|
||||
fill-opacity: .2;
|
||||
}
|
||||
|
||||
.cls-4 {
|
||||
fill: url(#_未命名的渐变_27-3);
|
||||
fill-opacity: 0;
|
||||
}
|
||||
|
||||
.cls-5 {
|
||||
fill: url(#_未命名的渐变_26);
|
||||
}
|
||||
|
||||
.cls-6 {
|
||||
fill: url(#_未命名的渐变_26-2);
|
||||
}
|
||||
</style>
|
||||
<radialGradient id="_未命名的渐变_26" data-name="未命名的渐变 26" cx="-1117.09" cy="828.02" fx="-1117.09" fy="828.02" r="2.63" gradientTransform="translate(-116254.81 157359.14) rotate(90) scale(140.68 -140.64)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#00e3ff"/>
|
||||
<stop offset=".32" stop-color="#1677ff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_27" data-name="未命名的渐变 27" cx="-1116.84" cy="827.92" fx="-1116.84" fy="827.92" r="3.5" gradientTransform="translate(-126307.89 148873.62) rotate(93.84) scale(140.48 -140.43)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff"/>
|
||||
<stop offset=".2" stop-color="#b4cdff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_26-2" data-name="未命名的渐变 26" cx="-1117.02" cy="827.6" fx="-1117.02" fy="827.6" r="2.64" gradientTransform="translate(-115568.73 156431.21) rotate(90) scale(139.77 -139.73)" xlink:href="#_未命名的渐变_26"/>
|
||||
<radialGradient id="_未命名的渐变_27-2" data-name="未命名的渐变 27" cx="-1116.87" cy="827.91" fx="-1116.87" fy="827.91" r="3.52" gradientTransform="translate(-125762.25 148174.09) rotate(93.82) scale(139.77 -139.73)" xlink:href="#_未命名的渐变_27"/>
|
||||
<radialGradient id="_未命名的渐变_26-3" data-name="未命名的渐变 26" cx="-1116.12" cy="827.88" fx="-1116.12" fy="827.88" r="1.52" gradientTransform="translate(-134393 181580.83) rotate(90) scale(162.56 -162.5)" xlink:href="#_未命名的渐变_26"/>
|
||||
<radialGradient id="_未命名的渐变_27-3" data-name="未命名的渐变 27" cx="-1117.24" cy="826.1" fx="-1117.24" fy="826.1" r="2.09" gradientTransform="translate(-130019.88 102853.97) rotate(105.22) scale(119.4 -119.36)" xlink:href="#_未命名的渐变_27"/>
|
||||
</defs>
|
||||
<g id="_图层_1-2" data-name="图层 1">
|
||||
<g id="Group-4-Copy-4">
|
||||
<polygon class="cls-5" points="279.54 81.28 280 243.05 139.77 324.32 139.32 159.97 279.54 81.28"/>
|
||||
<polygon class="cls-2" points="279.54 81.28 280 243.05 139.77 324.32 139.52 233.6 216.1 116.88 279.54 81.28"/>
|
||||
<polygon class="cls-6" points="139.77 324.32 .46 243.04 0 81.28 139.32 162.56 139.77 324.32"/>
|
||||
<polygon class="cls-3" points="139.77 324.32 .46 243.04 0 81.28 65.13 119.27 139.52 233.41 139.77 324.32"/>
|
||||
<polygon id="Fill-7" class="cls-1" points="139.32 162.56 0 81.28 140.23 0 279.55 81.28 139.32 162.56"/>
|
||||
<polygon class="cls-4" points="65.34 119.4 0 81.28 140.23 0 279.55 81.28 214.81 118.8 65.34 119.4"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.3 KiB |
66
assets/images/project/common/Group-5-Copy-3.svg
Normal file
@@ -0,0 +1,66 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="_图层_2" data-name="图层 2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 295.85 274.03">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #1f4ff8;
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
fill: #fdede4;
|
||||
}
|
||||
|
||||
.cls-3 {
|
||||
fill: url(#_未命名的渐变_32);
|
||||
}
|
||||
|
||||
.cls-4 {
|
||||
fill: url(#_未命名的渐变_96);
|
||||
}
|
||||
|
||||
.cls-5 {
|
||||
fill: #a3b8ff;
|
||||
}
|
||||
|
||||
.cls-6 {
|
||||
fill: url(#_未命名的渐变_97);
|
||||
}
|
||||
</style>
|
||||
<radialGradient id="_未命名的渐变_32" data-name="未命名的渐变 32" cx="-2560.57" cy="-389.26" fx="-2560.57" fy="-389.26" r="2.22" gradientTransform="translate(-218551.26 229972.03) rotate(124.94) scale(122.53)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff"/>
|
||||
<stop offset=".28" stop-color="#b4cdff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_96" data-name="未命名的渐变 96" cx="-2588.54" cy="-429.23" fx="-2588.54" fy="-429.23" r="8.2" gradientTransform="translate(-8785.83 65290.74) rotate(88.49) scale(25.1)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#00e3ff"/>
|
||||
<stop offset=".38" stop-color="#1677ff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_97" data-name="未命名的渐变 97" cx="-2576.71" cy="-365.32" fx="-2576.71" fy="-365.32" r="5.67" gradientTransform="translate(-108186.09 -76.46) rotate(171.97) scale(41.66)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#09b7ff"/>
|
||||
<stop offset="1" stop-color="#1677ff"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
<g id="_图层_1-2" data-name="图层 1">
|
||||
<g id="Group-5-Copy-3">
|
||||
<path id="Fill-934" class="cls-3" d="M19.21,20.36C8.08,17.39-.52,25.64.02,38.78l6.14,149.05c.54,13.16,10.01,26.24,21.15,29.22l27.84,7.45-1.66,19.65c-.34,4.1,2.65,8.33,5.95,9.21.7.19,1.4.22,2.1.08l57.38-11.89,119.18,31.88c11.14,2.98,19.73-5.27,19.19-18.43l-6.14-149.05c-.54-13.15-10.02-26.23-21.15-29.21L19.21,20.36Z"/>
|
||||
<path class="cls-4" d="M285.08,71.03l-38.53,19.7c.4.68.77,1.38,1.12,2.09.35.72.68,1.45.99,2.19.32.77.61,1.56.87,2.36.29.87.54,1.75.76,2.64.27,1.1.47,2.2.62,3.32.12.91.2,1.82.24,2.73l6.14,148.96c.35,8.39-3.03,14.79-8.42,17.54l38.53-19.7c5.38-2.75,8.76-9.15,8.42-17.54l-6.14-148.96c-.04-.91-.12-1.82-.24-2.73-.15-1.11-.36-2.22-.62-3.32-.22-.89-.47-1.77-.76-2.64-.26-.8-.56-1.58-.87-2.36-.31-.74-.64-1.47-.99-2.19-.35-.71-.72-1.41-1.12-2.09ZM282.3,66.91l-38.53,19.7c.52.67,1.02,1.36,1.5,2.06.45.67.88,1.36,1.28,2.06l38.53-19.7c-.41-.7-.83-1.39-1.28-2.06-.48-.71-.98-1.4-1.5-2.06Z"/>
|
||||
<path id="Fill-940" class="cls-6" d="M46.97,1.48c.18-.09.35-.18.53-.26.16-.08.33-.14.5-.21.07-.03.13-.06.2-.08.3-.12.61-.23.92-.32.05-.02.1-.03.16-.04.09-.03.19-.05.28-.07.3-.08.61-.15.92-.21.1-.02.19-.04.29-.06.06,0,.11-.02.16-.03.35-.06.7-.1,1.05-.13.04,0,.07,0,.11,0,.31-.02.62-.04.93-.05.06,0,.12,0,.18,0,.21,0,.43,0,.64.02.25,0,.5.02.75.04.22.02.44.05.66.07.17.02.34.03.52.06.1.02.21.04.32.06.11.02.22.04.33.06.44.08.88.18,1.33.3l210.78,56.39c3.38.9,6.61,2.74,9.49,5.23.85.74,1.68,1.54,2.46,2.38.63.68,1.24,1.4,1.82,2.14l-38.53,19.71c-.58-.74-1.19-1.46-1.82-2.14-.79-.85-1.61-1.64-2.46-2.38-2.87-2.49-6.1-4.33-9.49-5.23L19.21,20.32c-.45-.12-.89-.22-1.33-.3-.11-.02-.22-.04-.32-.06-.28-.05-.56-.08-.84-.12-.22-.03-.44-.06-.66-.07-.25-.02-.5-.03-.75-.04-.22,0-.43-.02-.64-.02-.37,0-.74.02-1.11.04-.04,0-.07,0-.11,0-.41.04-.82.09-1.21.16-.1.02-.19.04-.29.06-.31.06-.61.13-.91.21-.09.02-.19.05-.28.08-.36.11-.72.23-1.07.36-.07.03-.13.06-.2.08-.35.14-.7.29-1.03.47L46.97,1.48Z"/>
|
||||
<g id="Group-3">
|
||||
<polygon id="Fill-942" class="cls-2" points="41.16 147.99 41.7 161.05 207 205.14 206.46 192.08 41.16 147.99"/>
|
||||
<polygon id="Fill-944" class="cls-1" points="207 205.14 216.64 200.28 216.1 187.38 206.46 192.23 207 205.14"/>
|
||||
<polygon id="Fill-946" class="cls-5" points="206.46 192.07 216.1 187.16 50.79 143.05 41.16 147.96 206.46 192.07"/>
|
||||
</g>
|
||||
<g id="Group">
|
||||
<polygon id="Fill-948" class="cls-2" points="79.22 121.37 79.76 134.45 205.47 168 204.93 154.93 79.22 121.37"/>
|
||||
<polygon id="Fill-950" class="cls-1" points="205.47 168 215.1 163.12 214.57 150.14 204.93 155.02 205.47 168"/>
|
||||
<polygon id="Fill-952" class="cls-5" points="204.93 154.92 214.57 150 88.85 116.43 79.22 121.35 204.93 154.92"/>
|
||||
</g>
|
||||
<g id="Group-4">
|
||||
<polygon id="Fill-954" class="cls-2" points="55.87 78.29 56.41 91.37 203.94 130.79 203.4 117.71 55.87 78.29"/>
|
||||
<polygon id="Fill-956" class="cls-1" points="203.94 130.79 213.57 125.9 213.03 112.91 203.4 117.8 203.94 130.79"/>
|
||||
<polygon id="Fill-958" class="cls-5" points="203.4 117.7 213.03 112.78 65.51 73.35 55.87 78.27 203.4 117.7"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.8 KiB |
65
assets/images/project/common/Group-60.svg
Normal file
@@ -0,0 +1,65 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="_图层_2" data-name="图层 2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 323.98 324.32">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: url(#_未命名的渐变_61);
|
||||
stroke: url(#_未命名的渐变_62);
|
||||
stroke-width: 2.03px;
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
fill: none;
|
||||
stroke: url(#_未命名的渐变_63);
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
stroke-width: 11.79px;
|
||||
}
|
||||
|
||||
.cls-3 {
|
||||
fill: url(#_未命名的渐变_60);
|
||||
}
|
||||
|
||||
.cls-4 {
|
||||
fill: url(#_未命名的渐变_59);
|
||||
}
|
||||
</style>
|
||||
<radialGradient id="_未命名的渐变_59" data-name="未命名的渐变 59" cx="53.25" cy="262.56" fx="53.25" fy="262.56" r="2.22" gradientTransform="translate(-35292.41 20886.95) rotate(-108.86) scale(153.32)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#b4cdff"/>
|
||||
<stop offset=".32" stop-color="#1677ff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_60" data-name="未命名的渐变 60" cx="41.11" cy="263.33" fx="41.11" fy="263.33" r="2.3" gradientTransform="translate(-38728.88 12664.03) rotate(63.26) scale(153.32 -153.32)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#00e3ff"/>
|
||||
<stop offset=".26" stop-color="#1677ff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="_未命名的渐变_61" data-name="未命名的渐变 61" x1="45.72" y1="268.87" x2="45.72" y2="270.24" gradientTransform="translate(-13621.07 34769) scale(301.46 -128.83)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#e8eef9"/>
|
||||
<stop offset=".48" stop-color="#1677ff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="_未命名的渐变_62" data-name="未命名的渐变 62" x1="45.72" y1="268.87" x2="45.72" y2="269.37" gradientTransform="translate(-13621.07 34769) scale(301.46 -128.83)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff" stop-opacity=".63"/>
|
||||
<stop offset="1" stop-color="#fff" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="_未命名的渐变_63" data-name="未命名的渐变 63" x1="45.75" y1="276.5" x2="45.75" y2="275.57" gradientTransform="translate(-14121.55 18278.74) scale(312.19 -65.62)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#9cbcfa" stop-opacity="0"/>
|
||||
<stop offset=".33" stop-color="#96b3fd" stop-opacity=".56"/>
|
||||
<stop offset=".84" stop-color="#6588f7" stop-opacity=".87"/>
|
||||
<stop offset="1" stop-color="#dee4f7"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="_图层_1-2" data-name="图层 1">
|
||||
<g id="Group-60">
|
||||
<g id="Group-108">
|
||||
<g id="Group-53">
|
||||
<polygon id="Path-27" class="cls-4" points="8.85 64.51 162.16 0 162.16 324.32 8.85 64.51"/>
|
||||
<polygon class="cls-3" points="315.48 64.51 162.16 0 162.16 324.32 315.48 64.51"/>
|
||||
</g>
|
||||
<path class="cls-1" d="M162.16,1.11l150.73,65.5-150.73,63.33L11.43,66.6,162.16,1.11Z"/>
|
||||
</g>
|
||||
<path class="cls-2" d="M92.33,130.91c-51.24,5.58-86.43,17.11-86.43,30.44,0,18.78,69.89,34,156.09,34s156.09-15.22,156.09-34c0-14.35-40.83-26.63-98.58-31.62"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.3 KiB |
41
assets/images/project/common/Group.svg
Normal file
@@ -0,0 +1,41 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="_图层_2" data-name="图层 2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 324.32 254.09">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: url(#_未命名的渐变_29-2);
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
fill: url(#_未命名的渐变_29);
|
||||
}
|
||||
|
||||
.cls-3 {
|
||||
fill: url(#_未命名的渐变_30);
|
||||
}
|
||||
</style>
|
||||
<radialGradient id="_未命名的渐变_29" data-name="未命名的渐变 29" cx="-525.61" cy="225.07" fx="-525.61" fy="225.07" r="1.17" gradientTransform="translate(-39614.35 84373.13) rotate(92.06) scale(162.95 -162.95)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#00e3ff"/>
|
||||
<stop offset=".54" stop-color="#436cf9"/>
|
||||
<stop offset="1" stop-color="#0037fa"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_29-2" data-name="未命名的渐变 29" cx="-525.64" cy="225.06" fx="-525.64" fy="225.06" r="1.17" gradientTransform="translate(-39167.67 83819.09) rotate(92.05) scale(161.85 -161.85)" xlink:href="#_未命名的渐变_29"/>
|
||||
<radialGradient id="_未命名的渐变_30" data-name="未命名的渐变 30" cx="-521.24" cy="220.88" fx="-521.24" fy="220.88" r="1.8" gradientTransform="translate(-82134.66 8830.83) rotate(150.93) scale(146.45 -146.45)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff"/>
|
||||
<stop offset=".11" stop-color="#ffd0d2"/>
|
||||
<stop offset=".43" stop-color="#50a9ee"/>
|
||||
<stop offset=".77" stop-color="#436cf9"/>
|
||||
<stop offset="1" stop-color="#0037fa"/>
|
||||
<stop offset="1" stop-color="#0037fa"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
<g id="_图层_1-2" data-name="图层 1">
|
||||
<g id="Group">
|
||||
<path class="cls-2" d="M67.71,92.54l-47.62-27.05C6.88,58,.27,48.15.27,38.31L0,145.83c-.07,9.84,6.54,19.68,19.76,27.18l47.62,27.05,95.23,54.03.34-107.52-95.23-54.03Z"/>
|
||||
<path class="cls-1" d="M324.26,39.85c0,.33-.07.67-.07,1-.02.29-.06.59-.14.87-.01.32-.06.63-.14.94l-.2.87-.2,1c-.07.27-.2.54-.27.87-.08.32-.2.64-.34.94-.08.3-.2.59-.34.87l-.41,1-.41.8-.48,1-.48.8c-.21.4-.46.78-.75,1.14l-.48.74-.95,1.27-.41.6c-.07.07-.14.2-.27.27-.14.07-.68.87-1.09,1.27l-.27.33-1.43,1.41-.27.27-1.16,1.07-.95.8-.89.74-1.09.87-.95.74-1.16.74-1.09.74-1.23.74-1.57.94-47.31,27.05-94.63,54.03-.34,107.52,94.7-54.03,47.31-27.05.82-.47.75-.47,1.23-.74,1.02-.74,1.16-.74,1.02-.74,1.02-.8.95-.8.95-.8.41-.33c.23-.26.48-.51.75-.74l.27-.27,1.36-1.41.34-.33,1.09-1.27.2-.27.14-.13.34-.47.95-1.27.48-.74.75-1.14c0-.13.14-.2.14-.33.12-.14.21-.3.27-.47l.55-1,.41-.8.41-1,.2-.47c.01-.14.06-.28.14-.4.07-.33.2-.6.27-.94.12-.28.21-.57.27-.87.12-.33.21-.66.27-1,.01-.16.06-.32.14-.47v-.4l.2-.94c0-.33.07-.6.07-.87.06-.33.08-.67.07-1,.06-.2.08-.4.07-.6v-.54l.34-107.59c0,.4-.07.8-.07,1.21h0Z"/>
|
||||
<g id="Mask">
|
||||
<path class="cls-3" d="M304.5,11.21c26.29,14.94,26.43,39.14.27,54.08l-47.28,27.07-94.55,54.08-95.23-54.08-47.62-27.07c-26.29-14.94-26.43-39.14-.34-54.08,26.09-14.94,68.67-14.94,94.96,0l47.55,27.07,47.34-27.07c26.09-14.94,68.6-14.94,94.89,0h0Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.1 KiB |
99
assets/images/project/common/智慧物业-copy-2.svg
Normal file
|
After Width: | Height: | Size: 96 KiB |
125
assets/images/project/common/编组-14.svg
Normal file
@@ -0,0 +1,125 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="_图层_2" data-name="图层 2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 291.09 333.55">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: url(#_未命名的渐变_84);
|
||||
stroke: url(#_未命名的渐变_85);
|
||||
stroke-width: 3.79px;
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
fill: #6ff;
|
||||
}
|
||||
|
||||
.cls-3 {
|
||||
mask: url(#mask-1);
|
||||
}
|
||||
|
||||
.cls-4 {
|
||||
mask: url(#mask);
|
||||
}
|
||||
|
||||
.cls-5 {
|
||||
fill: none;
|
||||
stroke: #fff;
|
||||
stroke-linecap: round;
|
||||
stroke-width: 3.94px;
|
||||
}
|
||||
|
||||
.cls-6 {
|
||||
fill: #fff;
|
||||
fill-rule: evenodd;
|
||||
}
|
||||
|
||||
.cls-7 {
|
||||
mask: url(#mask-2);
|
||||
}
|
||||
|
||||
.cls-8 {
|
||||
fill: #1677ff;
|
||||
}
|
||||
|
||||
.cls-9 {
|
||||
fill: url(#_未命名的渐变_83);
|
||||
}
|
||||
|
||||
.cls-10 {
|
||||
fill: url(#_未命名的渐变_86);
|
||||
}
|
||||
|
||||
.cls-11 {
|
||||
mask: url(#mask-3);
|
||||
}
|
||||
</style>
|
||||
<radialGradient id="_未命名的渐变_83" data-name="未命名的渐变 83" cx="-1106.27" cy="1399.01" fx="-1106.27" fy="1399.01" r="2.5" gradientTransform="translate(-470724.31 242953.71) rotate(102.13) scale(321.86 -292.6) skewX(2.49)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#00e3ff"/>
|
||||
<stop offset=".19" stop-color="#1677ff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<mask id="mask" x="0" y="2.42" width="291.09" height="327.79" maskUnits="userSpaceOnUse">
|
||||
<g id="mask-113">
|
||||
<path id="path-112" class="cls-6" d="M165.85,7.92l105.32,61.61c12.33,7.21,19.91,20.43,19.91,34.72v124.13c0,14.29-7.58,27.5-19.91,34.72l-105.32,61.61c-12.54,7.34-28.07,7.34-40.62,0l-105.32-61.61C7.58,255.88,0,242.67,0,228.38v-124.13c0-14.29,7.58-27.5,19.91-34.72L125.24,7.92c12.54-7.34,28.07-7.34,40.62,0Z"/>
|
||||
</g>
|
||||
</mask>
|
||||
<radialGradient id="_未命名的渐变_84" data-name="未命名的渐变 84" cx="-1100.46" cy="1400.9" fx="-1100.46" fy="1400.9" r=".97" gradientTransform="translate(327500.24 -283518.14) rotate(-90) scale(257.87 -233.67)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff"/>
|
||||
<stop offset=".22" stop-color="#b4cdff"/>
|
||||
<stop offset=".66" stop-color="#1677ff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="_未命名的渐变_85" data-name="未命名的渐变 85" x1="-1105.05" y1="1403.96" x2="-1105.12" y2="1403.51" gradientTransform="translate(258383.48 366857.12) scale(233.67 -261.27)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff" stop-opacity=".63"/>
|
||||
<stop offset="1" stop-color="#fff" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<mask id="mask-1" x="0" y="2.42" width="291.09" height="327.79" maskUnits="userSpaceOnUse">
|
||||
<g id="mask-113-2" data-name="mask-113">
|
||||
<path id="path-112-2" data-name="path-112" class="cls-6" d="M165.85,7.92l105.32,61.61c12.33,7.21,19.91,20.43,19.91,34.72v124.13c0,14.29-7.58,27.5-19.91,34.72l-105.32,61.61c-12.54,7.34-28.07,7.34-40.62,0l-105.32-61.61C7.58,255.88,0,242.67,0,228.38v-124.13c0-14.29,7.58-27.5,19.91-34.72L125.24,7.92c12.54-7.34,28.07-7.34,40.62,0Z"/>
|
||||
</g>
|
||||
</mask>
|
||||
<mask id="mask-2" x="0" y="2.42" width="291.09" height="327.79" maskUnits="userSpaceOnUse">
|
||||
<g id="mask-113-3" data-name="mask-113">
|
||||
<path id="path-112-3" data-name="path-112" class="cls-6" d="M165.85,7.92l105.32,61.61c12.33,7.21,19.91,20.43,19.91,34.72v124.13c0,14.29-7.58,27.5-19.91,34.72l-105.32,61.61c-12.54,7.34-28.07,7.34-40.62,0l-105.32-61.61C7.58,255.88,0,242.67,0,228.38v-124.13c0-14.29,7.58-27.5,19.91-34.72L125.24,7.92c12.54-7.34,28.07-7.34,40.62,0Z"/>
|
||||
</g>
|
||||
</mask>
|
||||
<mask id="mask-3" x="0" y="0" width="291.09" height="333.55" maskUnits="userSpaceOnUse">
|
||||
<g id="mask-113-4" data-name="mask-113">
|
||||
<path id="path-112-4" data-name="path-112" class="cls-6" d="M165.85,7.92l105.32,61.61c12.33,7.21,19.91,20.43,19.91,34.72v124.13c0,14.29-7.58,27.5-19.91,34.72l-105.32,61.61c-12.54,7.34-28.07,7.34-40.62,0l-105.32-61.61C7.58,255.88,0,242.67,0,228.38v-124.13c0-14.29,7.58-27.5,19.91-34.72L125.24,7.92c12.54-7.34,28.07-7.34,40.62,0Z"/>
|
||||
</g>
|
||||
</mask>
|
||||
<linearGradient id="_未命名的渐变_86" data-name="未命名的渐变 86" x1="-1105.35" y1="1404.66" x2="-1106.68" y2="1405.96" gradientTransform="translate(172733.37 255694.09) scale(156.09 -181.86)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#b4cdff"/>
|
||||
<stop offset=".36" stop-color="#fff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="_图层_1-2" data-name="图层 1">
|
||||
<g id="_编组-14" data-name="编组-14">
|
||||
<g id="_编组-8" data-name="编组-8">
|
||||
<g>
|
||||
<path class="cls-9" d="M165.85,7.92l105.32,61.61c12.33,7.21,19.91,20.43,19.91,34.72v124.13c0,14.29-7.58,27.5-19.91,34.72l-105.32,61.61c-12.54,7.34-28.07,7.34-40.62,0l-105.32-61.61C7.58,255.88,0,242.67,0,228.38v-124.13c0-14.29,7.58-27.5,19.91-34.72L125.24,7.92c12.54-7.34,28.07-7.34,40.62,0Z"/>
|
||||
<g class="cls-4">
|
||||
<path id="_多边形" data-name="多边形" class="cls-1" d="M145.54,35.68c6.69,0,13.37,1.75,19.35,5.24l78.51,45.93c11.75,6.87,18.97,19.47,18.97,33.08v92.77c0,13.61-7.22,26.21-18.97,33.08l-78.51,45.93c-5.98,3.5-12.66,5.24-19.35,5.24s-13.37-1.75-19.35-5.24l-78.51-45.93c-11.75-6.87-18.97-19.47-18.97-33.08v-92.77c0-13.61,7.22-26.21,18.97-33.08l78.51-45.93c5.98-3.5,12.66-5.24,19.35-5.24Z"/>
|
||||
</g>
|
||||
<g class="cls-3">
|
||||
<line id="_路径-34" data-name="路径-34" class="cls-5" x1="4.02" y1="246.97" x2="286.63" y2="85.66"/>
|
||||
</g>
|
||||
<g class="cls-7">
|
||||
<line class="cls-5" x1="286.63" y1="246.97" x2="2.33" y2="81.04"/>
|
||||
</g>
|
||||
<g class="cls-11">
|
||||
<line id="_路径-33" data-name="路径-33" class="cls-5" x1="146.71" y1="1.97" x2="145.54" y2="331.57"/>
|
||||
</g>
|
||||
</g>
|
||||
<ellipse class="cls-2" cx="145.54" cy="166.31" rx="4.42" ry="4.48"/>
|
||||
</g>
|
||||
<ellipse class="cls-8" cx="144.76" cy="173.95" rx="62.44" ry="63.26"/>
|
||||
<g id="_应用" data-name="应用">
|
||||
<g>
|
||||
<path id="path-117" d="M144.62,83.02l78.02,45.34.16,90.93-77.9,45.59-78.04-45.34-.14-90.93,77.9-45.59ZM181.48,139.13l-36.82,22.34-36.54-20.76-10.94,19.36,36.54,20.76v38.03h22.07v-38.13l36.9-22.38-11.22-19.22Z"/>
|
||||
<path class="cls-10" d="M144.62,83.02l78.02,45.34.16,90.93-77.9,45.59-78.04-45.34-.14-90.93,77.9-45.59ZM181.48,139.13l-36.82,22.34-36.54-20.76-10.94,19.36,36.54,20.76v38.03h22.07v-38.13l36.9-22.38-11.22-19.22Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.6 KiB |
32
assets/images/project/common/编组-2-copy-5.svg
Normal file
@@ -0,0 +1,32 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="_图层_2" data-name="图层 2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 324.32 291.89">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: url(#_未命名的渐变_49);
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
fill: url(#_未命名的渐变_50);
|
||||
}
|
||||
</style>
|
||||
<radialGradient id="_未命名的渐变_49" data-name="未命名的渐变 49" cx="43.63" cy="1380.79" fx="43.63" fy="1380.79" r=".76" gradientTransform="translate(-359714.79 -25597.2) rotate(92.25) scale(261.1 -261.1)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff"/>
|
||||
<stop offset=".41" stop-color="#b4cdff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_50" data-name="未命名的渐变 50" cx="44.8" cy="1379.88" fx="44.8" fy="1379.88" r=".94" gradientTransform="translate(-381117.53 -130200.19) rotate(107) scale(291.89 -291.89)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff"/>
|
||||
<stop offset=".28" stop-color="#b4cdff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
<g id="_图层_1-2" data-name="图层 1">
|
||||
<g id="_编组-2-copy-5" data-name="编组-2-copy-5">
|
||||
<g id="xinaixin">
|
||||
<path class="cls-1" d="M271.32,32.86l-.9-.9C236.82-1.39,183.19-2.6,148.09,29.25,113.14-2.6,59.67-1.39,25.92,31.95c-34.2,34.1-34.65,89.53-.75,124.08l.75.75,102.31,102c10.75,11.12,28.38,11.27,39.28.45l.45-.45,102.31-102c34.35-33.8,34.8-89.53,1.05-123.93Z"/>
|
||||
<path class="cls-2" d="M296.94,35.38l-.98-.99C259.18-2.1,186.58-14.05,148.17,20.8c-34.94,45.08-16.12,93.56-53.07,130.05-37.43,37.32-98.95-23.88-61.84,13.93l.82.82,106.26,117.03c11.77,12.17,31.06,12.33,42.99.49l.49-.49,111.97-111.63c37.6-36.99,38.09-97.98,1.14-135.63Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
68
assets/images/project/common/菱形宝石-copy.svg
Normal file
@@ -0,0 +1,68 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="_图层_2" data-name="图层 2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 324.32 357.12">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: url(#_未命名的渐变_17);
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
fill: url(#_未命名的渐变_20);
|
||||
isolation: isolate;
|
||||
opacity: .67;
|
||||
}
|
||||
|
||||
.cls-3 {
|
||||
fill: url(#_未命名的渐变_19);
|
||||
}
|
||||
|
||||
.cls-4 {
|
||||
fill: url(#_未命名的渐变_21);
|
||||
}
|
||||
|
||||
.cls-5 {
|
||||
fill: #1e4eff;
|
||||
}
|
||||
|
||||
.cls-6 {
|
||||
fill: url(#_未命名的渐变_18);
|
||||
}
|
||||
</style>
|
||||
<linearGradient id="_未命名的渐变_17" data-name="未命名的渐变 17" x1="48.06" y1="843.69" x2="48.32" y2="844.05" gradientTransform="translate(14468.87 -275797.14) rotate(-180) scale(297.06 -327.05)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#6184fd"/>
|
||||
<stop offset="1" stop-color="#2451f2"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="_未命名的渐变_18" data-name="未命名的渐变 18" cx="53.3" cy="846.55" fx="53.3" fy="846.55" r="1.74" gradientTransform="translate(118617.47 -42988.16) rotate(-113.66) scale(148.53 -148.53)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff"/>
|
||||
<stop offset=".15" stop-color="#ffd0d2"/>
|
||||
<stop offset=".25" stop-color="#ef9aa2"/>
|
||||
<stop offset=".51" stop-color="#436cf9"/>
|
||||
<stop offset="1" stop-color="#0037fa"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="_未命名的渐变_19" data-name="未命名的渐变 19" x1="49.09" y1="841.59" x2="48.82" y2="840.81" gradientTransform="translate(7379.51 -137443.04) rotate(-180) scale(148.53 -163.53)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#436cf9"/>
|
||||
<stop offset="1" stop-color="#2554f8"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="_未命名的渐变_20" data-name="未命名的渐变 20" x1="49.58" y1="841.59" x2="49.59" y2="840.59" gradientTransform="translate(5989.07 -137279.53) rotate(-180) scale(117.51 -163.53)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#436cf9"/>
|
||||
<stop offset=".45" stop-color="#537aff"/>
|
||||
<stop offset="1" stop-color="#a2b8ff"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="_未命名的渐变_21" data-name="未命名的渐变 21" cx="54.85" cy="849.43" fx="54.85" fy="849.43" r="1.76" gradientTransform="translate(99977.39 6625.18) rotate(-90) scale(117.51 -117.51)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#00e3ff"/>
|
||||
<stop offset=".54" stop-color="#436cf9"/>
|
||||
<stop offset="1" stop-color="#436cf9"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
<g id="_图层_1-2" data-name="图层 1">
|
||||
<g id="_菱形宝石-copy" data-name="菱形宝石-copy">
|
||||
<rect id="Rectangle" width="324.32" height="357.12"/>
|
||||
<polygon id="Path" class="cls-1" points="161.69 342.09 13.16 178.56 161.69 15.04 310.22 178.56 161.69 342.09"/>
|
||||
<polygon class="cls-6" points="162.63 178.56 162.63 15.04 311.16 178.56 162.63 178.56"/>
|
||||
<polygon class="cls-3" points="13.16 178.56 161.69 15.04 161.69 178.56 13.16 178.56"/>
|
||||
<polygon class="cls-5" points="161.69 342.09 13.16 178.56 161.69 178.56 161.69 342.09"/>
|
||||
<polygon class="cls-2" points="220.92 178.56 162.16 342.09 103.41 178.56 220.92 178.56"/>
|
||||
<polygon class="cls-4" points="220.92 178.56 162.16 15.04 103.41 178.56 220.92 178.56"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.4 KiB |
36
assets/images/project/common/资源_10.svg
Normal file
@@ -0,0 +1,36 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="_图层_2" data-name="图层 2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 315.57 314.8">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: url(#_未命名的渐变_92);
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
fill: url(#_未命名的渐变_92-2);
|
||||
}
|
||||
|
||||
.cls-3 {
|
||||
fill: url(#_未命名的渐变_93);
|
||||
}
|
||||
</style>
|
||||
<radialGradient id="_未命名的渐变_93" data-name="未命名的渐变 93" cx="-1721.53" cy="725.02" fx="-1721.53" fy="725.02" r="5.11" gradientTransform="translate(101670.5 20136.09) rotate(-11.7) scale(55.39 -55.39)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff"/>
|
||||
<stop offset=".38" stop-color="#b4cdff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_92" data-name="未命名的渐变 92" cx="-1805.33" cy="722.25" fx="-1805.33" fy="722.25" r="2.86" gradientTransform="translate(-50397.54 82506.79) rotate(99.78) scale(49.67 -49.67)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#0e5fff"/>
|
||||
<stop offset=".72" stop-color="#b4cdff"/>
|
||||
<stop offset="1" stop-color="#fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_92-2" data-name="未命名的渐变 92" cx="-1800.46" cy="724.69" fx="-1800.46" fy="724.69" r="4.31" gradientTransform="translate(-44298.35 94803.14) rotate(93.22) scale(53.94 -53.94)" xlink:href="#_未命名的渐变_92"/>
|
||||
</defs>
|
||||
<g id="_图层_1-2" data-name="图层 1">
|
||||
<g>
|
||||
<path class="cls-3" d="M0,157.56c0,31.74,70.64,57.47,157.79,57.47s157.79-25.73,157.79-57.47-70.64-57.47-157.79-57.47S0,125.82,0,157.56Z"/>
|
||||
<path class="cls-1" d="M104.75,212.57c8.42,58.27,28.63,102.24,53.04,102.24s46.14-42.95,54.19-103.08l-4.89.84h-102.33Z"/>
|
||||
<path class="cls-2" d="M109.92,205.05l102.13-100.84C204.11,43.45,182.78,0,157.79,0c-31.84,0-57.68,70.48-57.68,157.38,0,18.63,1.18,36.49,3.35,53.1l6.47-5.43Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
81
assets/images/project/common/资源_2.svg
Normal file
@@ -0,0 +1,81 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="_图层_2" data-name="图层 2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 298.8 283.56">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: url(#_未命名的渐变_149);
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
fill: url(#_未命名的渐变_148);
|
||||
}
|
||||
|
||||
.cls-3 {
|
||||
fill: url(#_未命名的渐变_153);
|
||||
}
|
||||
|
||||
.cls-4 {
|
||||
fill: url(#_未命名的渐变_152);
|
||||
}
|
||||
|
||||
.cls-5 {
|
||||
fill: url(#_未命名的渐变_32-2);
|
||||
stroke: url(#_未命名的渐变_16-2);
|
||||
}
|
||||
|
||||
.cls-5, .cls-6 {
|
||||
stroke-width: 1.49px;
|
||||
}
|
||||
|
||||
.cls-6 {
|
||||
fill: url(#_未命名的渐变_32);
|
||||
stroke: url(#_未命名的渐变_16);
|
||||
}
|
||||
</style>
|
||||
<radialGradient id="_未命名的渐变_148" data-name="未命名的渐变 148" cx="-2522.37" cy="755.68" fx="-2522.37" fy="755.68" r="4.87" gradientTransform="translate(-27503.52 189982.82) rotate(81.61) scale(72.89 -72.89)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#00e3ff"/>
|
||||
<stop offset=".22" stop-color="#1677ff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_149" data-name="未命名的渐变 149" cx="-2525.82" cy="764.39" fx="-2525.82" fy="764.39" r="3.89" gradientTransform="translate(-14409.64 156825) rotate(78.46) scale(59.66 -59.66)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff"/>
|
||||
<stop offset=".19" stop-color="#b4cdff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_32" data-name="未命名的渐变 32" cx="-2529.89" cy="744.81" fx="-2529.89" fy="744.81" r="2.58" gradientTransform="translate(-89679.4 178793.84) rotate(100.34) scale(75.91 -75.51) skewX(.11)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff"/>
|
||||
<stop offset=".28" stop-color="#b4cdff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="_未命名的渐变_16" data-name="未命名的渐变 16" x1="-2470.49" y1="744.21" x2="-2470.36" y2="743.17" gradientTransform="translate(186590.35 75681.67) scale(75.5 -101.53)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff" stop-opacity=".63"/>
|
||||
<stop offset="1" stop-color="#fff" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="_未命名的渐变_152" data-name="未命名的渐变 152" cx="-2537.56" cy="773.07" fx="-2537.56" fy="773.07" r="7.07" gradientTransform="translate(-23899.17 122638.94) rotate(84.22) scale(47.09 -47.09)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#00e3ff"/>
|
||||
<stop offset=".36" stop-color="#1677ff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_153" data-name="未命名的渐变 153" cx="-2561.53" cy="807.41" fx="-2561.53" fy="807.41" r="10.31" gradientTransform="translate(-12620.59 75149.8) rotate(82.23) scale(28.35 -28.35)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff"/>
|
||||
<stop offset=".16" stop-color="#b4cdff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_32-2" data-name="未命名的渐变 32" cx="-2600.24" cy="817.62" fx="-2600.24" fy="817.62" r="8.07" gradientTransform="translate(-20025.14 55901.47) rotate(93.17) scale(21.89 -20.95) skewX(.28)" xlink:href="#_未命名的渐变_32"/>
|
||||
<linearGradient id="_未命名的渐变_16-2" data-name="未命名的渐变 16" x1="-2397.36" y1="746.28" x2="-2397.34" y2="745.06" gradientTransform="translate(50425.49 69397.02) scale(20.95 -92.81)" xlink:href="#_未命名的渐变_16"/>
|
||||
</defs>
|
||||
<g id="_图层_1-2" data-name="图层 1">
|
||||
<g>
|
||||
<g>
|
||||
<polygon class="cls-2" points="114.55 0 64.5 29.44 111.96 48.26 171.62 244.18 215.76 210.03 165.22 21.68 114.55 0"/>
|
||||
<polygon class="cls-1" points="64.48 29.52 50.15 37.66 98.5 57.08 160.01 252.98 173.97 242.31 114.06 46.17 64.48 29.52"/>
|
||||
<path class="cls-6" d="M51.11,39.63l47.38,15.91,59.11,194.79-49.29-19.97-7.51-32.1-50.83-20.35-6.61,25.8L.92,182.47,51.11,39.63ZM74.04,83.9l-16.06,62.7,33.78,13.05-17.72-75.75Z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="cls-4" points="252.25 53.51 201.08 77.92 235.36 108.12 235.36 283.56 298.8 244.46 298.8 75.59 252.25 53.51"/>
|
||||
<polygon class="cls-3" points="201.08 77.99 188.81 86.12 235.36 110.79 235.36 283.56 247.64 275.95 247.64 100.06 201.08 77.99"/>
|
||||
<path class="cls-5" d="M190.35,88.59l43.47,20.6v172.01l-43.47-18.92V88.59Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.6 KiB |
116
assets/images/project/common/资源_3.svg
Normal file
@@ -0,0 +1,116 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="_图层_2" data-name="图层 2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 370.25 319.02">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: url(#_未命名的渐变_141);
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
mask: url(#mask-1);
|
||||
}
|
||||
|
||||
.cls-3 {
|
||||
fill: none;
|
||||
stroke: url(#_未命名的渐变_63);
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
stroke-width: 4.15px;
|
||||
}
|
||||
|
||||
.cls-4 {
|
||||
fill: url(#_未命名的渐变_139);
|
||||
}
|
||||
|
||||
.cls-5 {
|
||||
fill: url(#_未命名的渐变_142);
|
||||
}
|
||||
|
||||
.cls-6, .cls-7, .cls-8 {
|
||||
fill: #fff;
|
||||
}
|
||||
|
||||
.cls-9 {
|
||||
mask: url(#mask);
|
||||
}
|
||||
|
||||
.cls-7 {
|
||||
fill-rule: evenodd;
|
||||
}
|
||||
|
||||
.cls-10 {
|
||||
mask: url(#mask-2);
|
||||
}
|
||||
|
||||
.cls-8 {
|
||||
opacity: .02;
|
||||
}
|
||||
|
||||
.cls-11 {
|
||||
fill: url(#_未命名的渐变_140);
|
||||
}
|
||||
</style>
|
||||
<radialGradient id="_未命名的渐变_139" data-name="未命名的渐变 139" cx="-3238.67" cy="1461.37" fx="-3238.67" fy="1461.37" r="2.14" gradientTransform="translate(36062.74 470958.87) rotate(61.37) scale(132.91 -132.91)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#00e3ff"/>
|
||||
<stop offset=".38" stop-color="#5b9fff"/>
|
||||
<stop offset=".65" stop-color="#1677ff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<mask id="mask" x="47.02" y="43.21" width="276.6" height="275.82" maskUnits="userSpaceOnUse">
|
||||
<g id="mask-143">
|
||||
<ellipse id="path-142" class="cls-6" cx="185.32" cy="181.12" rx="138.3" ry="137.91"/>
|
||||
</g>
|
||||
</mask>
|
||||
<radialGradient id="_未命名的渐变_140" data-name="未命名的渐变 140" cx="-3127.76" cy="1399" fx="-3127.76" fy="1399" r="1.75" gradientTransform="translate(82523.59 -70317.21) rotate(-64.64) scale(31.64 -31.64)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#00e3ff"/>
|
||||
<stop offset=".24" stop-color="#05daff"/>
|
||||
<stop offset="1" stop-color="#1677ff"/>
|
||||
</radialGradient>
|
||||
<mask id="mask-1" x="47.02" y="43.21" width="276.6" height="275.82" maskUnits="userSpaceOnUse">
|
||||
<g id="mask-143-2" data-name="mask-143">
|
||||
<ellipse id="path-142-2" data-name="path-142" class="cls-6" cx="185.32" cy="181.12" rx="138.3" ry="137.91"/>
|
||||
</g>
|
||||
</mask>
|
||||
<radialGradient id="_未命名的渐变_141" data-name="未命名的渐变 141" cx="-3383.24" cy="1535.08" fx="-3383.24" fy="1535.08" r="2.33" gradientTransform="translate(-42302.9 58673.86) rotate(101.59) scale(19.49 -19.49)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#1677ff"/>
|
||||
<stop offset=".72" stop-color="#b4cdff"/>
|
||||
<stop offset="1" stop-color="#fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_142" data-name="未命名的渐变 142" cx="-3237.92" cy="1468.76" fx="-3237.92" fy="1468.76" r="1.56" gradientTransform="translate(66827.05 355560.6) rotate(54.97) scale(101.7 -101.69)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#00e3ff"/>
|
||||
<stop offset=".43" stop-color="#1677ff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<mask id="mask-2" x="47.02" y="0" width="277.08" height="319.02" maskUnits="userSpaceOnUse">
|
||||
<g id="mask-148">
|
||||
<path id="path-147" class="cls-7" d="M91.25,110.68c41.39,22.49,0,146.46,51.46,161.19,51.46,14.73,100.07-31.65,108.12-62.22,7.73-29.34,48.45-22.55,66.94,11.29-17.12,56.75-69.95,98.09-132.45,98.09-76.38,0-138.3-61.72-138.3-137.86,0-22.22,5.28-43.22,14.65-61.81,9.61-11.28,19.47-14.17,29.59-8.68Z"/>
|
||||
</g>
|
||||
</mask>
|
||||
<linearGradient id="_未命名的渐变_63" data-name="未命名的渐变 63" x1="-3217.4" y1="1502.87" x2="-3217.4" y2="1501.75" gradientTransform="translate(567781.8 55691.45) scale(176.41 -36.96)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#9cbcfa" stop-opacity="0"/>
|
||||
<stop offset=".33" stop-color="#96b3fd" stop-opacity=".56"/>
|
||||
<stop offset=".84" stop-color="#6588f7" stop-opacity=".87"/>
|
||||
<stop offset="1" stop-color="#dee4f7"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="_图层_1-2" data-name="图层 1">
|
||||
<g>
|
||||
<g>
|
||||
<g>
|
||||
<ellipse class="cls-4" cx="185.32" cy="181.12" rx="138.3" ry="137.91"/>
|
||||
<g class="cls-9">
|
||||
<ellipse class="cls-11" cx="152.2" cy="102.68" rx="32.93" ry="32.83"/>
|
||||
</g>
|
||||
<g class="cls-2">
|
||||
<ellipse class="cls-1" cx="246.51" cy="107.95" rx="20.28" ry="20.22"/>
|
||||
</g>
|
||||
</g>
|
||||
<path class="cls-5" d="M91.25,110.68c41.39,22.49,0,146.46,51.46,161.19,51.46,14.73,100.07-31.65,108.12-62.22,7.73-29.34,48.45-22.55,66.94,11.29-17.12,56.75-69.95,98.09-132.45,98.09-76.38,0-138.3-61.72-138.3-137.86,0-22.22,5.28-43.22,14.65-61.81,9.61-11.28,19.47-14.17,29.59-8.68Z"/>
|
||||
<g class="cls-10">
|
||||
<ellipse class="cls-8" cx="246.34" cy="77.55" rx="77.76" ry="77.55"/>
|
||||
</g>
|
||||
</g>
|
||||
<path class="cls-3" d="M103.43,130.86c-60.09,6.52-101.35,20-101.35,35.57,0,21.95,81.95,39.74,183.05,39.74s183.05-17.79,183.05-39.74c0-16.78-47.88-31.12-115.6-36.96"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.1 KiB |
83
assets/images/project/common/资源_4.svg
Normal file
@@ -0,0 +1,83 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="_图层_2" data-name="图层 2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 256.11 314.83">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: url(#_未命名的渐变_133-2);
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
fill: url(#_未命名的渐变_134);
|
||||
}
|
||||
|
||||
.cls-3 {
|
||||
fill: url(#_未命名的渐变_133);
|
||||
}
|
||||
|
||||
.cls-4 {
|
||||
fill: url(#_未命名的渐变_50-2);
|
||||
}
|
||||
|
||||
.cls-5 {
|
||||
fill: #002aaa;
|
||||
}
|
||||
|
||||
.cls-6 {
|
||||
fill: url(#_未命名的渐变_50);
|
||||
}
|
||||
|
||||
.cls-7 {
|
||||
fill: url(#_未命名的渐变_134-2);
|
||||
}
|
||||
|
||||
.cls-8 {
|
||||
fill: url(#_未命名的渐变_135);
|
||||
stroke: url(#_未命名的渐变_16);
|
||||
stroke-width: 1.1px;
|
||||
}
|
||||
</style>
|
||||
<radialGradient id="_未命名的渐变_134" data-name="未命名的渐变 134" cx="-1798.37" cy="-284.6" fx="-1798.37" fy="-284.6" r="3.15" gradientTransform="translate(10518.51 65919.39) rotate(90) scale(36.51 -36.51)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#00e3ff"/>
|
||||
<stop offset=".54" stop-color="#1677ff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_133" data-name="未命名的渐变 133" cx="-1801.26" cy="-291.94" fx="-1801.26" fy="-291.94" r="2.9" gradientTransform="translate(-4462.95 66911.67) rotate(103.11) scale(36.63 -36.63)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff"/>
|
||||
<stop offset=".33" stop-color="#b4cdff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_133-2" data-name="未命名的渐变 133" cx="-1801.66" cy="-290.18" fx="-1801.66" fy="-290.18" r="2.9" gradientTransform="translate(-4401.51 66911.67) rotate(103.11) scale(36.63 -36.63)" xlink:href="#_未命名的渐变_133"/>
|
||||
<radialGradient id="_未命名的渐变_134-2" data-name="未命名的渐变 134" cx="-1799.35" cy="-284.68" fx="-1799.35" fy="-284.68" r="3.15" gradientTransform="translate(10572.94 66202.69) rotate(90) scale(36.69 -36.69)" xlink:href="#_未命名的渐变_134"/>
|
||||
<linearGradient id="_未命名的渐变_135" data-name="未命名的渐变 135" x1="-1766.25" y1="-271.98" x2="-1766.25" y2="-269.91" gradientTransform="translate(217169.52 -9787.27) scale(122.88 -36.72)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#a2b8ff"/>
|
||||
<stop offset=".55" stop-color="#537aff"/>
|
||||
<stop offset="1" stop-color="#436cf9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="_未命名的渐变_16" data-name="未命名的渐变 16" x1="-1766.25" y1="-271.7" x2="-1766.25" y2="-270.94" gradientTransform="translate(217169.52 -9787.27) scale(122.88 -36.72)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff" stop-opacity=".63"/>
|
||||
<stop offset="1" stop-color="#fff" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="_未命名的渐变_50" data-name="未命名的渐变 50" cx="-1800.49" cy="-304.93" fx="-1800.49" fy="-304.93" r="3.47" gradientTransform="translate(-34142.02 67846.35) rotate(126.43) scale(41.62 -41.62)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff"/>
|
||||
<stop offset=".28" stop-color="#b4cdff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_50-2" data-name="未命名的渐变 50" cx="-1800.6" cy="-316.07" fx="-1800.6" fy="-316.07" r="4.92" gradientTransform="translate(-47088.99 45028.44) rotate(146.41) scale(35.66 -35.66)" xlink:href="#_未命名的渐变_50"/>
|
||||
</defs>
|
||||
<g id="_图层_1-2" data-name="图层 1">
|
||||
<g>
|
||||
<g>
|
||||
<path class="cls-2" d="M128.05,314.83c70.42,0,127.5-16.96,127.5-37.88v-35.89c-52.44-1.33-94.94-1.99-127.5-1.99s-74.77.66-127.5,1.99v35.89c0,20.92,57.09,37.88,127.5,37.88Z"/>
|
||||
<path class="cls-3" d="M128.05,273.65v-76.02c-32.27,0-74.77.67-127.5,2v36.01c0,20.99,57.09,38.01,127.5,38.01Z"/>
|
||||
<path class="cls-1" d="M128.05,273.65c70.42,0,127.5-17.02,127.5-38.01v-36.01c-52.44-1.33-94.94-2-127.5-2v76.02Z"/>
|
||||
<path class="cls-7" d="M128.05,235.52c70.42,0,127.5-17.04,127.5-38.07v-36.07c-52.44-1.34-94.94-2-127.5-2s-74.77.67-127.5,2v36.07c0,21.03,57.09,38.07,127.5,38.07Z"/>
|
||||
<path class="cls-8" d="M128.05,200.52c70.42,0,127.5-17.06,127.5-38.1s-57.09-38.1-127.5-38.1S.55,141.37.55,162.42s57.09,38.1,127.5,38.1Z"/>
|
||||
<ellipse class="cls-5" cx="128.05" cy="162.5" rx="51" ry="15.87"/>
|
||||
</g>
|
||||
<g>
|
||||
<path class="cls-6" d="M127.03,0c23.85,0,43.19,19.85,43.19,44.34s-19.33,44.34-43.19,44.34-43.19-19.85-43.19-44.34S103.18,0,127.03,0h0Z"/>
|
||||
<path class="cls-4" d="M110.63,103.36h35.87c30.7,0,55.59,25.67,55.59,57.35v3.69c0,12.48-24.89,12.96-55.59,12.96h-35.87c-30.7,0-55.59-.02-55.59-12.96v-3.69c0-31.68,24.88-57.35,55.59-57.35h0Z"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 4.9 KiB |
109
assets/images/project/common/资源_5.svg
Normal file
@@ -0,0 +1,109 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="_图层_2" data-name="图层 2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 372.83 334.91">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: #2562b9;
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
isolation: isolate;
|
||||
opacity: .3;
|
||||
}
|
||||
|
||||
.cls-3, .cls-4 {
|
||||
fill: none;
|
||||
}
|
||||
|
||||
.cls-5 {
|
||||
fill: url(#_未命名的渐变_50-3);
|
||||
}
|
||||
|
||||
.cls-6 {
|
||||
fill: url(#_未命名的渐变_50-2);
|
||||
}
|
||||
|
||||
.cls-7 {
|
||||
fill: url(#_未命名的渐变_78);
|
||||
}
|
||||
|
||||
.cls-8 {
|
||||
fill: url(#_未命名的渐变_50);
|
||||
}
|
||||
|
||||
.cls-9 {
|
||||
fill: url(#_未命名的渐变_32);
|
||||
stroke: url(#_未命名的渐变_16);
|
||||
stroke-width: 1.49px;
|
||||
}
|
||||
|
||||
.cls-10 {
|
||||
fill: url(#_未命名的渐变_76);
|
||||
}
|
||||
|
||||
.cls-4 {
|
||||
stroke: url(#_未命名的渐变_79);
|
||||
stroke-linecap: round;
|
||||
stroke-linejoin: round;
|
||||
stroke-width: 4.71px;
|
||||
}
|
||||
</style>
|
||||
<radialGradient id="_未命名的渐变_76" data-name="未命名的渐变 76" cx="-1816.31" cy="1456.5" fx="-1816.31" fy="1456.5" r="10.18" gradientTransform="translate(-34766.29 52819.35) rotate(84.94) scale(27.2 -27.2)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#4892fa"/>
|
||||
<stop offset=".41" stop-color="#1677ff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_32" data-name="未命名的渐变 32" cx="-1755.51" cy="1391.98" fx="-1755.51" fy="1391.98" r="1.96" gradientTransform="translate(-210253.97 164115.3) rotate(103.75) scale(119.28 -118.84)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff"/>
|
||||
<stop offset=".28" stop-color="#b4cdff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="_未命名的渐变_16" data-name="未命名的渐变 16" x1="-1717.52" y1="1403.69" x2="-1717.23" y2="1402.44" gradientTransform="translate(205031.74 167931.77) scale(119.28 -119.58)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff" stop-opacity=".63"/>
|
||||
<stop offset="1" stop-color="#fff" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="_未命名的渐变_78" data-name="未命名的渐变 78" cx="-1736.09" cy="1434.84" fx="-1736.09" fy="1434.84" r="3.87" gradientTransform="translate(26938.96 130570.96) rotate(38.86) scale(59.17 -59.17)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#00e3ff"/>
|
||||
<stop offset=".45" stop-color="#1677ff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="_未命名的渐变_79" data-name="未命名的渐变 79" x1="-1721.44" y1="1422.45" x2="-1721.44" y2="1421.27" gradientTransform="translate(287563.87 89333.36) scale(166.93 -62.73)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#9cbcfa" stop-opacity="0"/>
|
||||
<stop offset=".41" stop-color="#96b3fd" stop-opacity=".56"/>
|
||||
<stop offset=".84" stop-color="#6588f7" stop-opacity=".87"/>
|
||||
<stop offset="1" stop-color="#dee4f7"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="_未命名的渐变_50" data-name="未命名的渐变 50" cx="-1901.2" cy="1373.86" fx="-1901.2" fy="1373.86" r="3.42" gradientTransform="translate(-38905.3 12199.98) rotate(127) scale(17.39 -17.39)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff"/>
|
||||
<stop offset=".28" stop-color="#b4cdff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_50-2" data-name="未命名的渐变 50" cx="-1905.15" cy="1379.93" fx="-1905.15" fy="1379.93" r="3.41" gradientTransform="translate(-39005.12 12152.34) rotate(127.15) scale(17.49 -17.49)" xlink:href="#_未命名的渐变_50"/>
|
||||
<radialGradient id="_未命名的渐变_50-3" data-name="未命名的渐变 50" cx="-1854.16" cy="1379.11" fx="-1854.16" fy="1379.11" r="3.43" gradientTransform="translate(-53787.91 16076.16) rotate(126.97) scale(24.36 -24.36)" xlink:href="#_未命名的渐变_50"/>
|
||||
</defs>
|
||||
<g id="_图层_1-2" data-name="图层 1">
|
||||
<g>
|
||||
<rect class="cls-3" width="334.13" height="334.91"/>
|
||||
<g>
|
||||
<g>
|
||||
<g class="cls-2">
|
||||
<ellipse class="cls-1" cx="201.79" cy="217.72" rx="113.24" ry="85.54"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="cls-10" points="284.01 133.76 302.32 133.76 306.07 125.07 336.94 103.18 336.94 114.92 336.94 122 336.94 241.79 280.5 266.34 284.01 261.93 284.01 133.76"/>
|
||||
<path class="cls-9" d="M180.75,16.65c1.23,0,2.46.43,3.42,1.28l118.75,106.57c.79.7,1.27,1.54,1.48,2.4.22.94.13,1.91-.23,2.79-.36.89-.99,1.68-1.82,2.23-.78.51-1.74.82-2.83.82h-16.45v127.24c0,1.32-.57,2.51-1.47,3.38-.91.87-2.15,1.42-3.52,1.44l-195.58-16.88c-1.42.02-2.71-.54-3.64-1.44-.9-.87-1.47-2.06-1.47-3.38v-127.24h-15.41c-1.09,0-2.05-.3-2.82-.81-.83-.55-1.46-1.34-1.82-2.22-.36-.88-.45-1.85-.23-2.8.2-.85.67-1.67,1.42-2.37L177.28,17.98c.97-.89,2.22-1.33,3.47-1.33Z"/>
|
||||
</g>
|
||||
</g>
|
||||
<polygon class="cls-7" points="181.36 14.84 216.38 2.21 336.94 103.1 306.07 125.01 181.36 14.84"/>
|
||||
</g>
|
||||
<g>
|
||||
<ellipse class="cls-4" cx="197.27" cy="147.16" rx="173.21" ry="65.08"/>
|
||||
<g>
|
||||
<ellipse class="cls-8" cx="63.74" cy="186.77" rx="18.04" ry="18.14"/>
|
||||
<circle class="cls-6" cx="337.9" cy="186.77" r="18.14"/>
|
||||
<ellipse class="cls-5" cx="200.79" cy="208.5" rx="25.27" ry="25.45"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 5.5 KiB |
185
assets/images/project/common/资源_6.svg
Normal file
@@ -0,0 +1,185 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="_图层_2" data-name="图层 2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 302.17 314.76">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: url(#_未命名的渐变_32-3);
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
fill: url(#_未命名的渐变_39-3);
|
||||
}
|
||||
|
||||
.cls-3 {
|
||||
fill: url(#_未命名的渐变_38-3);
|
||||
}
|
||||
|
||||
.cls-4 {
|
||||
fill: url(#_未命名的渐变_38);
|
||||
}
|
||||
|
||||
.cls-5 {
|
||||
fill: url(#_未命名的渐变_112-4);
|
||||
stroke: url(#_未命名的渐变_16-4);
|
||||
}
|
||||
|
||||
.cls-5, .cls-6, .cls-7, .cls-8 {
|
||||
stroke-width: .78px;
|
||||
}
|
||||
|
||||
.cls-6 {
|
||||
fill: url(#_未命名的渐变_112-3);
|
||||
stroke: url(#_未命名的渐变_16-3);
|
||||
}
|
||||
|
||||
.cls-9 {
|
||||
fill: url(#_未命名的渐变_32-6);
|
||||
}
|
||||
|
||||
.cls-10 {
|
||||
fill: url(#_未命名的渐变_32);
|
||||
}
|
||||
|
||||
.cls-11 {
|
||||
fill: url(#_未命名的渐变_39-2);
|
||||
}
|
||||
|
||||
.cls-12 {
|
||||
fill: url(#_未命名的渐变_39);
|
||||
}
|
||||
|
||||
.cls-13 {
|
||||
fill: url(#_未命名的渐变_38-2);
|
||||
}
|
||||
|
||||
.cls-14 {
|
||||
fill: url(#_未命名的渐变_39-4);
|
||||
}
|
||||
|
||||
.cls-15 {
|
||||
fill: url(#_未命名的渐变_2-3);
|
||||
}
|
||||
|
||||
.cls-16 {
|
||||
fill: url(#_未命名的渐变_2-2);
|
||||
}
|
||||
|
||||
.cls-17 {
|
||||
fill: url(#_未命名的渐变_38-4);
|
||||
}
|
||||
|
||||
.cls-7 {
|
||||
fill: url(#_未命名的渐变_112-2);
|
||||
stroke: url(#_未命名的渐变_16-2);
|
||||
}
|
||||
|
||||
.cls-18 {
|
||||
fill: url(#_未命名的渐变_32-4);
|
||||
}
|
||||
|
||||
.cls-19 {
|
||||
fill: url(#_未命名的渐变_32-2);
|
||||
}
|
||||
|
||||
.cls-20 {
|
||||
fill: url(#_未命名的渐变_32-5);
|
||||
}
|
||||
|
||||
.cls-8 {
|
||||
fill: url(#_未命名的渐变_112);
|
||||
stroke: url(#_未命名的渐变_16);
|
||||
}
|
||||
|
||||
.cls-21 {
|
||||
fill: url(#_未命名的渐变_2);
|
||||
}
|
||||
</style>
|
||||
<linearGradient id="_未命名的渐变_39" data-name="未命名的渐变 39" x1="-2428.35" y1="1439.78" x2="-2429.03" y2="1436.93" gradientTransform="translate(74612.34 69455.6) scale(30.65 -48.21)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#2db3fa"/>
|
||||
<stop offset=".12" stop-color="#009fff"/>
|
||||
<stop offset=".41" stop-color="#0e5fff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="_未命名的渐变_38" data-name="未命名的渐变 38" x1="-2563.68" y1="1440.05" x2="-2562.51" y2="1438.81" gradientTransform="translate(-78427.8 69455.6) rotate(-180) scale(30.65 48.21)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#559cff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="_未命名的渐变_112" data-name="未命名的渐变 112" x1="-2460.51" y1="1475.52" x2="-2461.25" y2="1475.8" gradientTransform="translate(143948.68 42175.73) scale(58.43 -28.56)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#0088fe"/>
|
||||
<stop offset=".48" stop-color="#0073fc"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="_未命名的渐变_16" data-name="未命名的渐变 16" x1="-2460.82" y1="1475.42" x2="-2460.93" y2="1475.73" gradientTransform="translate(143948.68 42175.73) scale(58.43 -28.56)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff" stop-opacity=".63"/>
|
||||
<stop offset="1" stop-color="#fff" stop-opacity="0"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="_未命名的渐变_39-2" data-name="未命名的渐变 39" x1="-2429.81" y1="1438.24" x2="-2430.49" y2="1435.38" gradientTransform="translate(74570.72 69641.99) scale(30.65 -48.29)" xlink:href="#_未命名的渐变_39"/>
|
||||
<linearGradient id="_未命名的渐变_38-2" data-name="未命名的渐变 38" x1="-2562.18" y1="1438.5" x2="-2561.01" y2="1437.26" gradientTransform="translate(-78470.5 69641.99) rotate(-180) scale(30.65 48.29)" xlink:href="#_未命名的渐变_38"/>
|
||||
<linearGradient id="_未命名的渐变_112-2" data-name="未命名的渐变 112" x1="-2461.9" y1="1472.93" x2="-2462.64" y2="1473.2" gradientTransform="translate(146539.64 42302.78) scale(59.49 -28.6)" xlink:href="#_未命名的渐变_112"/>
|
||||
<linearGradient id="_未命名的渐变_16-2" data-name="未命名的渐变 16" x1="-2462.2" y1="1472.85" x2="-2462.32" y2="1473.15" gradientTransform="translate(146539.64 42302.78) scale(59.49 -28.6)" xlink:href="#_未命名的渐变_16"/>
|
||||
<linearGradient id="_未命名的渐变_39-3" data-name="未命名的渐变 39" x1="-2426.85" y1="1438.24" x2="-2427.53" y2="1435.38" gradientTransform="translate(74655.04 69641.99) scale(30.65 -48.29)" xlink:href="#_未命名的渐变_39"/>
|
||||
<linearGradient id="_未命名的渐变_38-3" data-name="未命名的渐变 38" x1="-2565.17" y1="1438.5" x2="-2564.01" y2="1437.26" gradientTransform="translate(-78385.1 69641.99) rotate(-180) scale(30.65 48.29)" xlink:href="#_未命名的渐变_38"/>
|
||||
<linearGradient id="_未命名的渐变_112-3" data-name="未命名的渐变 112" x1="-2459.73" y1="1472.94" x2="-2460.47" y2="1473.21" gradientTransform="translate(143996.47 42298.64) scale(58.43 -28.6)" xlink:href="#_未命名的渐变_112"/>
|
||||
<linearGradient id="_未命名的渐变_16-3" data-name="未命名的渐变 16" x1="-2460.03" y1="1472.84" x2="-2460.15" y2="1473.15" gradientTransform="translate(143996.47 42298.64) scale(58.43 -28.6)" xlink:href="#_未命名的渐变_16"/>
|
||||
<linearGradient id="_未命名的渐变_39-4" data-name="未命名的渐变 39" x1="-2428.35" y1="1437.66" x2="-2429.03" y2="1434.81" gradientTransform="translate(74612.34 69685.98) scale(30.65 -48.31)" xlink:href="#_未命名的渐变_39"/>
|
||||
<linearGradient id="_未命名的渐变_38-4" data-name="未命名的渐变 38" x1="-2563.67" y1="1437.93" x2="-2562.51" y2="1436.69" gradientTransform="translate(-78427.8 69685.98) rotate(-180) scale(30.65 48.31)" xlink:href="#_未命名的渐变_38"/>
|
||||
<linearGradient id="_未命名的渐变_112-4" data-name="未命名的渐变 112" x1="-2460.51" y1="1471.98" x2="-2461.25" y2="1472.25" gradientTransform="translate(143954.57 42332.74) scale(58.43 -28.61)" xlink:href="#_未命名的渐变_112"/>
|
||||
<linearGradient id="_未命名的渐变_16-4" data-name="未命名的渐变 16" x1="-2460.82" y1="1471.87" x2="-2460.94" y2="1472.19" gradientTransform="translate(143954.57 42332.74) scale(58.43 -28.61)" xlink:href="#_未命名的渐变_16"/>
|
||||
<radialGradient id="_未命名的渐变_32" data-name="未命名的渐变 32" cx="-2585.18" cy="1443.07" fx="-2585.18" fy="1443.07" r="3.62" gradientTransform="translate(-53959.42 72964.45) rotate(97.4) scale(30.65 -30.65)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff"/>
|
||||
<stop offset=".28" stop-color="#b4cdff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_32-2" data-name="未命名的渐变 32" cx="-2566.45" cy="1310.92" fx="-2566.45" fy="1310.92" r="3.03" gradientTransform="translate(51834.9 71620.26) rotate(81.14) scale(30.65)" xlink:href="#_未命名的渐变_32"/>
|
||||
<radialGradient id="_未命名的渐变_2" data-name="未命名的渐变 2" cx="-2594.88" cy="1434.44" fx="-2594.88" fy="1434.44" r="4.31" gradientTransform="translate(-58711.2 64656.04) rotate(103.36) scale(29.46 -29.46)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff"/>
|
||||
<stop offset=".2" stop-color="#b4cdff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_32-3" data-name="未命名的渐变 32" cx="-2585.56" cy="1446.04" fx="-2585.56" fy="1446.04" r="3.62" gradientTransform="translate(-53874.03 72964.45) rotate(97.4) scale(30.65 -30.65)" xlink:href="#_未命名的渐变_32"/>
|
||||
<radialGradient id="_未命名的渐变_32-4" data-name="未命名的渐变 32" cx="-2565.99" cy="1307.96" fx="-2565.99" fy="1307.96" r="3.03" gradientTransform="translate(51920.29 71620.26) rotate(81.14) scale(30.65)" xlink:href="#_未命名的渐变_32"/>
|
||||
<radialGradient id="_未命名的渐变_2-2" data-name="未命名的渐变 2" cx="-2595.6" cy="1437.47" fx="-2595.6" fy="1437.47" r="4.31" gradientTransform="translate(-58625.81 64656.04) rotate(103.36) scale(29.46 -29.46)" xlink:href="#_未命名的渐变_2"/>
|
||||
<radialGradient id="_未命名的渐变_32-5" data-name="未命名的渐变 32" cx="-2584.76" cy="1444.64" fx="-2584.76" fy="1444.64" r="3.62" gradientTransform="translate(-53912.72 72984.98) rotate(97.4) scale(30.65 -30.65)" xlink:href="#_未命名的渐变_32"/>
|
||||
<radialGradient id="_未命名的渐变_32-6" data-name="未命名的渐变 32" cx="-2565.61" cy="1309.54" fx="-2565.61" fy="1309.54" r="3.03" gradientTransform="translate(51872.93 71641.47) rotate(81.15) scale(30.65)" xlink:href="#_未命名的渐变_32"/>
|
||||
<radialGradient id="_未命名的渐变_2-3" data-name="未命名的渐变 2" cx="-2594.57" cy="1436.09" fx="-2594.57" fy="1436.09" r="4.31" gradientTransform="translate(-58683.49 64699.69) rotate(103.36) scale(29.47 -29.47)" xlink:href="#_未命名的渐变_2"/>
|
||||
</defs>
|
||||
<g id="_图层_1-2" data-name="图层 1">
|
||||
<g>
|
||||
<g>
|
||||
<polygon class="cls-12" points="149.97 60.67 213.57 27.04 213.57 93.46 149.97 127.08 149.97 60.67"/>
|
||||
<polygon class="cls-4" points="152.2 60.67 88.6 27.04 88.6 93.46 152.2 127.08 152.2 60.67"/>
|
||||
<path class="cls-8" d="M152.2.43l59.55,27.02-59.55,32.25-61.71-32.25L152.2.43Z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="cls-11" points="63.6 196.09 127.21 162.4 127.21 228.94 63.6 262.62 63.6 196.09"/>
|
||||
<polygon class="cls-13" points="63.6 196.09 0 162.4 0 228.94 63.6 262.62 63.6 196.09"/>
|
||||
<path class="cls-7" d="M63.6,135.79l61.73,27.06-61.73,32.3L1.88,162.85l61.72-27.06Z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="cls-2" points="238.57 196.09 302.17 162.4 302.17 228.94 238.57 262.62 238.57 196.09"/>
|
||||
<polygon class="cls-3" points="240.81 196.09 177.2 162.4 177.2 228.94 240.81 262.62 240.81 196.09"/>
|
||||
<path class="cls-6" d="M240.8,135.79l59.55,27.06-59.55,32.29-61.71-32.29,61.71-27.06Z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="cls-14" points="149.97 248.2 213.57 214.51 213.57 281.06 149.97 314.76 149.97 248.2"/>
|
||||
<polygon class="cls-17" points="152.2 248.2 88.6 214.51 88.6 281.06 152.2 314.76 152.2 248.2"/>
|
||||
<path class="cls-5" d="M152.2,187.89l59.55,27.07-59.55,32.3-61.71-32.3,61.71-27.07Z"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="cls-10" points="61.36 107.53 124.97 73.87 124.97 140.34 61.36 174 61.36 107.53"/>
|
||||
<polygon class="cls-19" points="63.6 107.53 0 73.87 0 140.34 63.6 174 63.6 107.53"/>
|
||||
<polygon class="cls-21" points="63.6 46.36 124.97 74.23 63.6 107.49 0 74.23 63.6 46.36"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="cls-1" points="238.57 107.53 302.17 73.87 302.17 140.34 238.57 174 238.57 107.53"/>
|
||||
<polygon class="cls-18" points="240.81 107.53 177.2 73.87 177.2 140.34 240.81 174 240.81 107.53"/>
|
||||
<polygon class="cls-16" points="240.8 46.36 302.17 74.23 240.8 107.49 177.2 74.23 240.8 46.36"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="cls-20" points="149.97 143.99 213.57 110.31 213.57 176.82 149.97 210.49 149.97 143.99"/>
|
||||
<polygon class="cls-9" points="152.2 143.99 88.6 110.31 88.6 176.82 152.2 210.49 152.2 143.99"/>
|
||||
<polygon class="cls-15" points="152.2 82.81 213.57 110.69 152.2 143.96 88.6 110.69 152.2 82.81"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 11 KiB |
107
assets/images/project/common/资源_8.svg
Normal file
@@ -0,0 +1,107 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="_图层_2" data-name="图层 2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 228.61 295.52">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: url(#_未命名的渐变_13-2);
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
fill: url(#_未命名的渐变_89);
|
||||
}
|
||||
|
||||
.cls-3 {
|
||||
fill: url(#_未命名的渐变_88-2);
|
||||
}
|
||||
|
||||
.cls-4 {
|
||||
fill: url(#_未命名的渐变_50-3);
|
||||
}
|
||||
|
||||
.cls-5 {
|
||||
fill: url(#_未命名的渐变_13-4);
|
||||
}
|
||||
|
||||
.cls-6 {
|
||||
fill: url(#_未命名的渐变_50-2);
|
||||
}
|
||||
|
||||
.cls-7 {
|
||||
fill: url(#_未命名的渐变_88);
|
||||
}
|
||||
|
||||
.cls-8 {
|
||||
fill: url(#_未命名的渐变_13);
|
||||
}
|
||||
|
||||
.cls-9 {
|
||||
fill: url(#_未命名的渐变_50);
|
||||
}
|
||||
|
||||
.cls-10 {
|
||||
fill: url(#_未命名的渐变_4);
|
||||
}
|
||||
|
||||
.cls-11 {
|
||||
fill: url(#_未命名的渐变_13-3);
|
||||
}
|
||||
|
||||
.cls-12 {
|
||||
fill: #0e5fff;
|
||||
}
|
||||
</style>
|
||||
<radialGradient id="_未命名的渐变_89" data-name="未命名的渐变 89" cx="-2599.79" cy="227.67" fx="-2599.79" fy="227.67" r="4.45" gradientTransform="translate(-94699.62 205749.18) rotate(119.77) scale(86.79)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#b4cdff"/>
|
||||
<stop offset=".32" stop-color="#3574ff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<linearGradient id="_未命名的渐变_88" data-name="未命名的渐变 88" x1="-2594.46" y1="269.13" x2="-2596.53" y2="268.67" gradientTransform="translate(-161294.53 9197.92) rotate(-180) scale(62.18 33.76)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#95a7fb"/>
|
||||
<stop offset="1" stop-color="#fff"/>
|
||||
</linearGradient>
|
||||
<radialGradient id="_未命名的渐变_13" data-name="未命名的渐变 13" cx="-2709.24" cy="14.92" fx="-2709.24" fy="14.92" r="4.57" gradientTransform="translate(227.9 27884.77) rotate(90) scale(10.25 4.6)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#96aeff"/>
|
||||
<stop offset="1" stop-color="#1243ee"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_13-2" data-name="未命名的渐变 13" cx="-2633.13" cy="284.19" fx="-2633.13" fy="284.19" r="4.75" gradientTransform="translate(-56431.88 14442.75) rotate(171.92) scale(22.04)" xlink:href="#_未命名的渐变_13"/>
|
||||
<linearGradient id="_未命名的渐变_88-2" data-name="未命名的渐变 88" x1="-2594.46" y1="268.04" x2="-2596.53" y2="267.58" gradientTransform="translate(-161294.52 9226.75) rotate(-180) scale(62.18 33.74)" xlink:href="#_未命名的渐变_88"/>
|
||||
<radialGradient id="_未命名的渐变_13-3" data-name="未命名的渐变 13" cx="-2705.54" cy="14.92" fx="-2705.54" fy="14.92" r="4.56" gradientTransform="translate(227.9 27920.08) rotate(90) scale(10.25 4.6)" xlink:href="#_未命名的渐变_13"/>
|
||||
<radialGradient id="_未命名的渐变_13-4" data-name="未命名的渐变 13" cx="-2632.93" cy="282.53" fx="-2632.93" fy="282.53" r="4.75" gradientTransform="translate(-56389.2 14461.59) rotate(171.92) scale(22.02)" xlink:href="#_未命名的渐变_13"/>
|
||||
<radialGradient id="_未命名的渐变_4" data-name="未命名的渐变 4" cx="-2636.02" cy="185.56" fx="-2636.02" fy="185.56" r="9.48" gradientTransform="translate(5952.61 61677.51) rotate(88.69) scale(23.4)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#00e3ff"/>
|
||||
<stop offset=".45" stop-color="#1677ff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_50" data-name="未命名的渐变 50" cx="-2589.48" cy="274.44" fx="-2589.48" fy="274.44" r="6.57" gradientTransform="translate(-90368.95 -28922) rotate(-156.19) scale(36.48)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff"/>
|
||||
<stop offset=".28" stop-color="#b4cdff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_50-2" data-name="未命名的渐变 50" cx="-2610.93" cy="149.96" fx="-2610.93" fy="149.96" r="3.82" gradientTransform="translate(30252.41 41521.73) rotate(57.33) scale(19.59)" xlink:href="#_未命名的渐变_50"/>
|
||||
<radialGradient id="_未命名的渐变_50-3" data-name="未命名的渐变 50" cx="-2567.79" cy="166.68" fx="-2567.79" fy="166.68" r="6.78" gradientTransform="translate(62775.87 22749.47) rotate(23.65) scale(25.92)" xlink:href="#_未命名的渐变_50"/>
|
||||
</defs>
|
||||
<g id="_图层_1-2" data-name="图层 1">
|
||||
<g>
|
||||
<g>
|
||||
<polygon class="cls-2" points=".08 32.1 0 235.99 180.04 295.52 180.04 292.43 180.1 87.84 169.82 84.44 157.87 94.3 30.89 52.41 23.23 39.76 .08 32.1"/>
|
||||
<g>
|
||||
<polygon class="cls-7" points="22.21 83.97 22.18 111.32 151.16 154.04 151.21 126.69 22.21 83.97"/>
|
||||
<polygon class="cls-8" points="151.16 154.03 160.66 151.02 160.7 123.73 151.21 126.74 151.16 154.03"/>
|
||||
<polygon class="cls-1" points="151.72 126.19 161.21 123.17 32.22 80.45 22.73 83.47 151.72 126.19"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="cls-3" points="22.21 157.25 22.18 184.57 151.16 227.25 151.21 199.93 22.21 157.25"/>
|
||||
<polygon class="cls-11" points="151.17 227.24 160.66 224.24 160.71 197 151.21 200 151.17 227.24"/>
|
||||
<polygon class="cls-5" points="151.72 199.43 161.21 196.41 32.23 153.73 22.73 156.74 151.72 199.43"/>
|
||||
</g>
|
||||
<polygon class="cls-10" points="180.04 295.51 228.53 280.85 228.61 73.81 180.11 88.45 180.04 295.51"/>
|
||||
<polygon class="cls-12" points="180.11 87.82 228.61 73.75 206.52 67.83 186.46 70.84 137.27 49.27 69.19 39.05 58.37 28.13 48.57 25.5 .09 32.33 22.5 39.74 29.22 51.85 157.88 94.29 170.42 84.62 180.11 87.82"/>
|
||||
</g>
|
||||
<g>
|
||||
<polygon class="cls-9" points="36.02 13.94 35.96 49.8 157.45 89.65 157.45 87.08 157.5 53.79 36.02 13.94"/>
|
||||
<polygon class="cls-6" points="157.45 89.65 198.04 77.44 198.11 41.61 157.51 53.81 157.45 89.65"/>
|
||||
<polygon class="cls-4" points="157.51 53.79 198.11 41.57 76.62 0 36.03 13.93 157.51 53.79"/>
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 6.0 KiB |
56
assets/images/project/common/资源_9.svg
Normal file
@@ -0,0 +1,56 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg id="_图层_2" data-name="图层 2" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 355.02 267.42">
|
||||
<defs>
|
||||
<style>
|
||||
.cls-1 {
|
||||
fill: url(#_未命名的渐变_90);
|
||||
}
|
||||
|
||||
.cls-2 {
|
||||
fill: none;
|
||||
stroke: #b6d5ff;
|
||||
stroke-width: 4.64px;
|
||||
}
|
||||
|
||||
.cls-3 {
|
||||
fill: url(#_未命名的渐变_50-2);
|
||||
}
|
||||
|
||||
.cls-4 {
|
||||
fill: url(#_未命名的渐变_50);
|
||||
}
|
||||
|
||||
.cls-5 {
|
||||
fill: url(#_未命名的渐变_91);
|
||||
}
|
||||
</style>
|
||||
<radialGradient id="_未命名的渐变_91" data-name="未命名的渐变 91" cx="-3308.21" cy="752.68" fx="-3308.21" fy="752.68" r="2.13" gradientTransform="translate(-57716.82 120136.08) rotate(102.93) scale(39.31 -39.31)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#03dfff"/>
|
||||
<stop offset="1" stop-color="#1677ff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_50" data-name="未命名的渐变 50" cx="-3319.72" cy="719.99" fx="-3319.72" fy="719.99" r="3.42" gradientTransform="translate(-101025.13 86225.9) rotate(127.36) scale(39.08 -39.08)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#fff"/>
|
||||
<stop offset=".28" stop-color="#b4cdff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
<radialGradient id="_未命名的渐变_50-2" data-name="未命名的渐变 50" cx="-3321.92" cy="722.87" fx="-3321.92" fy="722.87" r="3.42" gradientTransform="translate(-100893.43 86225.9) rotate(127.36) scale(39.08 -39.08)" xlink:href="#_未命名的渐变_50"/>
|
||||
<radialGradient id="_未命名的渐变_90" data-name="未命名的渐变 90" cx="-3331.72" cy="751.62" fx="-3331.72" fy="751.62" r="2.24" gradientTransform="translate(-60427.96 88447.81) rotate(111.76) scale(31.36 -31.36)" gradientUnits="userSpaceOnUse">
|
||||
<stop offset="0" stop-color="#a0b6ff"/>
|
||||
<stop offset=".38" stop-color="#1677ff"/>
|
||||
<stop offset="1" stop-color="#0e5fff"/>
|
||||
</radialGradient>
|
||||
</defs>
|
||||
<g id="_图层_1-2" data-name="图层 1">
|
||||
<g>
|
||||
<g>
|
||||
<polyline class="cls-2" points="317.43 220.35 176.5 40.9 35.81 226.81"/>
|
||||
<polygon class="cls-2" points="35.81 226.81 176.5 173.4 317.43 220.4 35.81 226.81"/>
|
||||
<line class="cls-2" x1="176.98" y1="172.99" x2="176.98" y2="40.9"/>
|
||||
</g>
|
||||
<ellipse class="cls-5" cx="176.84" cy="40.79" rx="40.86" ry="40.79"/>
|
||||
<ellipse class="cls-4" cx="40.86" cy="226.88" rx="40.86" ry="40.54"/>
|
||||
<ellipse class="cls-3" cx="314.16" cy="226.88" rx="40.86" ry="40.54"/>
|
||||
<ellipse class="cls-1" cx="176.5" cy="173.22" rx="32.69" ry="32.54"/>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
364
classiccase.html
@@ -66,259 +66,27 @@
|
||||
</section>
|
||||
<!-- end page-title -->
|
||||
|
||||
<!-- TAB 选项卡区域 -->
|
||||
<div class="service-tab-nav-fullwidth">
|
||||
<div class="service-tab-nav">
|
||||
<div class="widget service-list-widget">
|
||||
<ul>
|
||||
<li class="current" data-category="all"><a href="#">全部</a></li>
|
||||
<li data-category="port"><a href="#">码头</a></li>
|
||||
<li data-category="shipping"><a href="#">航运</a></li>
|
||||
<li data-category="fleet"><a href="#">车队</a></li>
|
||||
<li data-category="bulky"><a href="#">散杂货</a></li>
|
||||
<li data-category="container"><a href="#">集装箱</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- start services-section -->
|
||||
<section class="services-section services-pg-section section-padding" style="background-color:#fff;">
|
||||
<section class="services-section section-padding" style="background-color:#fff;">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col col-md-8 col-md-offset-2">
|
||||
<div class="section-title-s3">
|
||||
<!--<span>Our services</span>-->
|
||||
<h2>合作伙伴</h2>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col col-xs-12">
|
||||
<div class="service-grids clearfix">
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/logo2.jpg"">
|
||||
</div>
|
||||
<p><a href="#">秦皇岛港股份有限公司</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/tangshangang.jpg"">
|
||||
</div>
|
||||
<p><a href="#">唐山港集团股份有限公司</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/zhongshanganghang.jpg"">
|
||||
</div>
|
||||
<p><a href="#">中山港航集团股份有限公司</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/fangcheng.png"">
|
||||
</div>
|
||||
<p><a href="#">北部湾港防城港码头有限公司</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/jining.png"">
|
||||
</div>
|
||||
<p><a href="#">济宁港航发展集团有限公司</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/logo1.jpg"">
|
||||
</div>
|
||||
<p><a href="#">上海锦江航运(集团)有限公司</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/dongfangguoji.jpg"">
|
||||
</div>
|
||||
<p><a href="#">东方国际物流集团有限公司</a></p>
|
||||
</div>
|
||||
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/tianjinzhongyun.jpg"">
|
||||
</div>
|
||||
<p><a href="#">天津中运海运集团有限公司</a></p>
|
||||
</div>
|
||||
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/logo.jpg"">
|
||||
</div>
|
||||
<p><a href="#">侨益物流股份有限公司</a></p>
|
||||
</div>
|
||||
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/guangzhougangwuju.jpg"">
|
||||
</div>
|
||||
<p><a href="#">广州港务局</a></p>
|
||||
</div>
|
||||
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/logo5.jpg"">
|
||||
</div>
|
||||
<p><a href="#">上海航华国际船务代理有限公司</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/liandai.png"">
|
||||
</div>
|
||||
<p><a href="#">上海上港联合国际船舶代理有限公司</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/shanghaipenghua.jpg"">
|
||||
</div>
|
||||
<p><a href="#">上海鹏华船务有限公司</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/lianyungang.jpg"">
|
||||
</div>
|
||||
<p><a href="#">连云港中韩轮渡有限公司</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/weihaigang.jpg"">
|
||||
</div>
|
||||
<p><a href="#">威海港集团有限公司</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/shanghaihede.jpg"">
|
||||
</div>
|
||||
<p><a href="#">上海合德国际物流有限公司</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/haixia.png"">
|
||||
</div>
|
||||
<p><a href="#">海南海峡航运股份有限公司</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/zhujiang.png"">
|
||||
</div>
|
||||
<p><a href="#">珠江船务企业(股份)有限公司</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/rizhao.png"">
|
||||
</div>
|
||||
<p><a href="#">日照泓源物流有限公司</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/haitong.png"">
|
||||
</div>
|
||||
<p><a href="#">唐山海港海通海运代理有限公司</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/hefei.png"">
|
||||
</div>
|
||||
<p><a href="#">安徽省港口集团合肥有限公司</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/lingao.png"">
|
||||
</div>
|
||||
<p><a href="#">海南临高金牌港</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/sanshui.png"">
|
||||
</div>
|
||||
<p><a href="#">佛山市三水盈港货运码头有限公司</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/wuzhou.png"">
|
||||
</div>
|
||||
<p><a href="#">广西梧州港务有限公司</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/xianglongwuliu.jpg"">
|
||||
</div>
|
||||
<p><a href="#">广西钦州市祥龙物流有限公司</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/hengtong.png"">
|
||||
</div>
|
||||
<p><a href="#">恒通物流股份有限公司</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/hani.png"">
|
||||
</div>
|
||||
<p><a href="#">烟台哈尼泰克集装箱租赁有限公司</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/shanghaigang.png"">
|
||||
</div>
|
||||
<p><a href="#">上海港船务代理有限公司</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/jiaotong.png"">
|
||||
</div>
|
||||
<p><a href="#">广州交通职业技术学院</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/hanghai.png"">
|
||||
</div>
|
||||
<p><a href="#">广州航海学院</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/guangzhougang.jpg"">
|
||||
</div>
|
||||
<p><a href="#">广州港物流有限公司</a></p>
|
||||
</div>
|
||||
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/anzhida.png"">
|
||||
</div>
|
||||
<p><a href="#">广州市安之达物流有限公司</a></p>
|
||||
</div>
|
||||
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/haiying.png"">
|
||||
</div>
|
||||
<p><a href="#">唐山海盈国际物流有限公司</a></p>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/haili.png"">
|
||||
</div>
|
||||
<p><a href="#">广州海力物流集团</a></p>
|
||||
</div>
|
||||
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/chengtong.png"">
|
||||
</div>
|
||||
<p><a href="#">华东诚通物流有限公司</a></p>
|
||||
</div>
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/shiyou.png"">
|
||||
</div>
|
||||
<p><a href="#">广州港发石油化工码头有限公司</a></p>
|
||||
</div>
|
||||
|
||||
<div class="grid1">
|
||||
<div class="icon">
|
||||
<img src="assets/images/jibao.jpg"">
|
||||
</div>
|
||||
<p><a href="#">广州航运交易所</a></p>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="product-cards" id="caseCards">
|
||||
<!-- 卡片将通过JavaScript动态插入 -->
|
||||
</div>
|
||||
</div> <!-- end container -->
|
||||
</section>
|
||||
@@ -345,6 +113,102 @@
|
||||
//如果想要操作header.html中的元素,就得等到header.html加载完成后操作
|
||||
$("#footer").load("footer.html", function(){
|
||||
});
|
||||
|
||||
// 数据定义
|
||||
const caseData = {
|
||||
all: [
|
||||
{id: 1, title: "智慧港口管理系统", desc: "为某大型港口提供全流程数字化管理解决方案,实现船舶调度、货物跟踪、泊位管理的智能化运营", img: "assets/images/blog/pro1.jpg", logo: "港口A", logoClass: "logo-blue"},
|
||||
{id: 2, title: "航运电子商务平台", desc: "打造一站式航运电商服务平台,整合船期查询、在线订舱、支付结算等功能,提升客户体验", img: "assets/images/blog/pro2.jpg", logo: "航运B", logoClass: "logo-orange"},
|
||||
{id: 3, title: "车队调度系统", desc: "优化车队运输调度流程,实现智能路径规划、实时监控、燃油管理,降低运营成本15%", img: "assets/images/blog/pro3.jpg", logo: "物流C", logoClass: "logo-green"},
|
||||
{id: 4, title: "散杂货作业平台", desc: "提供散杂货作业全流程数字化方案,支持装卸作业管理、计费结算、数据分析等功能", img: "assets/images/blog/pro4.jpg", logo: "码头D", logoClass: "logo-purple"},
|
||||
{id: 5, title: "集装箱智能运营", desc: "集装箱全程可视化管理系统,实现箱位跟踪、状态监控、数据分析,提高堆场利用率30%", img: "assets/images/blog/pro5.jpg", logo: "航运E", logoClass: "logo-red"},
|
||||
{id: 6, title: "多式联运平台", desc: "整合海铁公空多种运输方式,提供门到门全程可视化服务,提升物流效率25%", img: "assets/images/blog/pro6.jpg", logo: "联运F", logoClass: "logo-cyan"}
|
||||
],
|
||||
port: [
|
||||
{id: 4, title: "散杂货作业平台", desc: "提供散杂货作业全流程数字化方案,支持装卸作业管理、计费结算、数据分析等功能", img: "assets/images/blog/pro4.jpg", logo: "码头D", logoClass: "logo-purple"},
|
||||
{id: 7, title: "港口生产运营系统", desc: "数字化港口生产运营平台,整合作业计划、资源调度、作业监控等核心功能", img: "assets/images/blog/pro1.jpg", logo: "港口G", logoClass: "logo-blue"},
|
||||
{id: 8, title: "智慧港口安防系统", desc: "基于AI视觉的智能安防解决方案,实现24小时自动化监控与异常预警", img: "assets/images/blog/pro3.jpg", logo: "安防H", logoClass: "logo-orange"},
|
||||
{id: 9, title: "港口设备管理系统", desc: "港口机械设备全生命周期管理平台,支持设备监控、维护计划、故障诊断", img: "assets/images/blog/pro5.jpg", logo: "设备I", logoClass: "logo-green"}
|
||||
],
|
||||
shipping: [
|
||||
{id: 2, title: "航运电子商务平台", desc: "打造一站式航运电商服务平台,整合船期查询、在线订舱、支付结算等功能", img: "assets/images/blog/pro2.jpg", logo: "航运B", logoClass: "logo-orange"},
|
||||
{id: 5, title: "集装箱智能运营", desc: "集装箱全程可视化管理系统,实现箱位跟踪、状态监控、数据分析", img: "assets/images/blog/pro5.jpg", logo: "航运E", logoClass: "logo-red"},
|
||||
{id: 10, title: "船舶管理解决方案", desc: "船舶运营管理信息系统,涵盖船舶档案、船员管理、维修管理等模块", img: "assets/images/blog/pro6.jpg", logo: "航运J", logoClass: "logo-cyan"},
|
||||
{id: 11, title: "航运大数据分析", desc: "航运业大数据平台,深度挖掘运输数据价值,为决策提供支持", img: "assets/images/blog/pro4.jpg", logo: "航运K", logoClass: "logo-purple"}
|
||||
],
|
||||
fleet: [
|
||||
{id: 3, title: "车队调度系统", desc: "优化车队运输调度流程,实现智能路径规划、实时监控、燃油管理", img: "assets/images/blog/pro3.jpg", logo: "物流C", logoClass: "logo-green"},
|
||||
{id: 12, title: "干线运输管理系统", desc: "干线运输标准化管理平台,实现车辆、司机、货物的全流程管控", img: "assets/images/blog/pro2.jpg", logo: "车队L", logoClass: "logo-blue"},
|
||||
{id: 13, title: "冷链物流监控系统", desc: "冷链运输温湿度实时监控解决方案,确保货物质量安全", img: "assets/images/blog/pro5.jpg", logo: "冷链M", logoClass: "logo-orange"},
|
||||
{id: 14, title: "城配智能调度", desc: "城市配送智能调度系统,支持动态路由规划、实时订单分派", img: "assets/images/blog/pro1.jpg", logo: "城配N", logoClass: "logo-purple"}
|
||||
],
|
||||
bulky: [
|
||||
{id: 4, title: "散杂货作业平台", desc: "提供散杂货作业全流程数字化方案,支持装卸作业管理、计费结算等功能", img: "assets/images/blog/pro4.jpg", logo: "码头D", logoClass: "logo-purple"},
|
||||
{id: 15, title: "钢材物流管理系统", desc: "钢材行业专用物流管理系统,支持规格管理、库存跟踪、配送调度", img: "assets/images/blog/pro2.jpg", logo: "钢材O", logoClass: "logo-red"},
|
||||
{id: 16, title: "煤炭运输监管平台", desc: "煤炭公路运输全程监管系统,实现装车、运输、卸货全环节可视化", img: "assets/images/blog/pro6.jpg", logo: "煤炭P", logoClass: "logo-orange"},
|
||||
{id: 17, title: "散货仓储管理系统", desc: "散货仓储数字化管理解决方案,支持入库、出库、库存、盘点等", img: "assets/images/blog/pro3.jpg", logo: "仓储Q", logoClass: "logo-blue"}
|
||||
],
|
||||
container: [
|
||||
{id: 5, title: "集装箱智能运营", desc: "集装箱全程可视化管理系统,实现箱位跟踪、状态监控、数据分析", img: "assets/images/blog/pro5.jpg", logo: "航运E", logoClass: "logo-red"},
|
||||
{id: 18, title: "集装箱码头操作系统", desc: "一体化集装箱码头操作系统,支持船舶配载、堆场管理等功能", img: "assets/images/blog/pro1.jpg", logo: "码头R", logoClass: "logo-blue"},
|
||||
{id: 19, title: "空箱调运优化系统", desc: "基于AI算法的空箱调运优化平台,降低运营成本20%以上", img: "assets/images/blog/pro4.jpg", logo: "调运S", logoClass: "logo-green"},
|
||||
{id: 20, title: "集装箱维修管理", desc: "集装箱维修全生命周期管理系统,实现报修、维修、质检流程数字化", img: "assets/images/blog/pro6.jpg", logo: "维修T", logoClass: "logo-purple"}
|
||||
]
|
||||
};
|
||||
|
||||
// 渲染卡片函数
|
||||
function renderCards(category) {
|
||||
const cardsContainer = document.getElementById('caseCards');
|
||||
const cards = caseData[category] || caseData.all;
|
||||
|
||||
let html = '';
|
||||
cards.forEach(card => {
|
||||
html += `
|
||||
<a href="#" class="product-card">
|
||||
<div class="card-img">
|
||||
<img src="${card.img}" alt="${card.title}">
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<div class="card-header">
|
||||
<h4>${card.title}</h4>
|
||||
</div>
|
||||
<p>${card.desc}</p>
|
||||
<div class="company-logo ${card.logoClass}">${card.logo}</div>
|
||||
</div>
|
||||
</a>
|
||||
`;
|
||||
});
|
||||
|
||||
cardsContainer.innerHTML = html;
|
||||
}
|
||||
|
||||
// Tab点击事件处理
|
||||
$(document).ready(function() {
|
||||
// 初始化: 渲染全部卡片
|
||||
renderCards('all');
|
||||
|
||||
// Tab点击事件
|
||||
$('.service-tab-nav li').on('click', function(e) {
|
||||
e.preventDefault();
|
||||
|
||||
// 移除所有当前激活状态
|
||||
$('.service-tab-nav li').removeClass('current');
|
||||
|
||||
// 添加当前激活状态
|
||||
$(this).addClass('current');
|
||||
|
||||
// 获取分类
|
||||
const category = $(this).data('category');
|
||||
|
||||
// 渲染对应的卡片
|
||||
renderCards(category);
|
||||
|
||||
// 平滑滚动到卡片区域
|
||||
$('html, body').animate({
|
||||
scrollTop: $('.services-section').offset().top - 100
|
||||
}, 500);
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<script src="assets/js/kefu.js"></script>
|
||||
<!-- Plugins for this template -->
|
||||
|
||||
@@ -84,12 +84,12 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col col-md-9 col-md-push-3">
|
||||
<div class="col col-md-12">
|
||||
<div class="product-cards">
|
||||
<a href="chuandai.html" class="product-card">
|
||||
<a href="product_cargo_platform.html" class="product-card">
|
||||
<div class="card-img"><img src="assets/images/blog/pro1.jpg" alt=""></div>
|
||||
<div class="card-content">
|
||||
<div class="card-header"><h4>船舶代理管理系统</h4><span class="card-tag">船代</span></div>
|
||||
<div class="card-header"><h4>岸基网络货运平台</h4><span class="card-tag">船代</span></div>
|
||||
<p>为船舶代理企业提供全流程业务管理解决方案</p>
|
||||
</div>
|
||||
</a>
|
||||
@@ -107,21 +107,13 @@
|
||||
<p>智能化集装箱全生命周期管理平台</p>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col col-md-3 col-md-pull-9">
|
||||
<div class="service-sidebar">
|
||||
<!--<div class="widget download-widget">-->
|
||||
<!--<ul>-->
|
||||
<!--<li><a href="#"><i class="ti-zip"></i>更多公司介绍</a></li>-->
|
||||
<!--</ul>-->
|
||||
<!--</div>-->
|
||||
<div class="widget contact-widget">
|
||||
<div>
|
||||
<h5>携手打造数字化智能航运物流 </h5>
|
||||
<a href="contact.html">联系我们</a>
|
||||
<a href="jining.html" class="product-card">
|
||||
<div class="card-img"><img src="assets/images/blog/pro3.jpg" alt=""></div>
|
||||
<div class="card-content">
|
||||
<div class="card-header"><h4>集装箱管理系统</h4><span class="card-tag">集运</span></div>
|
||||
<p>智能化集装箱全生命周期管理平台</p>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div> <!-- end row -->
|
||||
|
||||
360
product_cargo_platform.html
Normal file
@@ -0,0 +1,360 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="irstheme">
|
||||
|
||||
<title> 产品中心-岸基科技-岸基网络货运平台 </title>
|
||||
<meta name="title" content="烟台岸基网络科技有限公司">
|
||||
<meta name="Description"
|
||||
content="烟台岸基网络科技有限公司是从事于全程物流链科技服务的互联网软件公司,致力于打造港航企业的互联网生态圈,研发出了航运电子商务平台系统、多码头智能操作系统、全程物流链管理系统等软件产品。">
|
||||
<meta name="keywords"
|
||||
content="物流平台开发,O2O物流平台,航运,船代软件,船代系统,船舶代理软件,船舶代理系统,航运大数据,航运电商,互联网+航运,数字化航运,货运代理管理系统,货代系统,货代软件,全程物流链管理系统,全程物流链软件,物流供应链,物流管理系统,协同运输,智慧物流管理系统, 物流平台开发,供应链物流管理">
|
||||
|
||||
<link href="assets/css/themify-icons.css" rel="stylesheet">
|
||||
<link href="assets/css/flaticon.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="https://www.jq22.com/jquery/bootstrap-3.3.4.css">
|
||||
<link href="assets/css/animate.css" rel="stylesheet">
|
||||
<link href="assets/css/owl.carousel.css" rel="stylesheet">
|
||||
<link href="assets/css/owl.theme.css" rel="stylesheet">
|
||||
<link href="assets/css/slick.css" rel="stylesheet">
|
||||
<link href="assets/css/slick-theme.css" rel="stylesheet">
|
||||
<link href="assets/css/swiper.min.css" rel="stylesheet">
|
||||
<link href="assets/css/owl.transitions.css" rel="stylesheet">
|
||||
<link href="assets/css/odometer-theme-default.css" rel="stylesheet">
|
||||
<link href="assets/css/jquery.fancybox.css" rel="stylesheet">
|
||||
<!--<link href="assets/css/style 2.css" rel="stylesheet">-->
|
||||
<link href="assets/css/style.css" rel="stylesheet">
|
||||
<link href="assets/css/pro.css" rel="stylesheet">
|
||||
|
||||
<!-- Custom styles for cargo platform page title -->
|
||||
<style>
|
||||
/* 产品页面双列布局样式 */
|
||||
.cargo-platform-content {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.cargo-info-left {
|
||||
width: 580px;
|
||||
flex: 0 0 580px;
|
||||
padding-right: 30px;
|
||||
box-sizing: border-box;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.cargo-info-left h2,
|
||||
.cargo-info-left p {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.cargo-info-right {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
/* 响应式设计 - 移动端调整为垂直布局 */
|
||||
@media (max-width: 768px) {
|
||||
.cargo-platform-content {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.cargo-info-left {
|
||||
width: 100%;
|
||||
flex: 1;
|
||||
padding-right: 0;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.cargo-info-right {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
/* 面包屑导航样式 */
|
||||
.page-path {
|
||||
padding: 8px 15px;
|
||||
margin-bottom: 20px;
|
||||
list-style: none;
|
||||
background-color: transparent;
|
||||
border-radius: 4px;
|
||||
font-size: 14px;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
.page-path a {
|
||||
color: #337ab7;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.page-path a:hover {
|
||||
color: #23527c;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* Swiper轮播居中父容器 */
|
||||
.main2 {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
width: 100%;
|
||||
}
|
||||
</style>
|
||||
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
|
||||
<!--[if lt IE 9]>
|
||||
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
|
||||
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
|
||||
<![endif]-->
|
||||
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<!-- start page-wrapper -->
|
||||
<div class="page-wrapper">
|
||||
|
||||
<!-- start preloader -->
|
||||
<div class="preloader">
|
||||
<div class="sk-folding-cube">
|
||||
<div class="sk-cube1 sk-cube"></div>
|
||||
<div class="sk-cube2 sk-cube"></div>
|
||||
<div class="sk-cube4 sk-cube"></div>
|
||||
<div class="sk-cube3 sk-cube"></div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- end preloader -->
|
||||
|
||||
<!-- Start header -->
|
||||
<div id="header"></div>
|
||||
<!-- end of header -->
|
||||
|
||||
|
||||
<!-- start page-title -->
|
||||
<section class="page-title page-title-cargo-platform">
|
||||
<div class="container" style="padding-top:0px">
|
||||
<div class="row">
|
||||
<div class="cargo-platform-content col col-xs-12 col-md-12">
|
||||
<div class="cargo-info-left">
|
||||
<h2 id="cargoTitle" style="margin-bottom: 20px;color:black;">岸基网络货运平台</h2>
|
||||
<p style="font-size: 16px; line-height: 1.8;color:black;">
|
||||
供应链平台核心组件,依托大数据与云计算技术直连终端客户。聚焦智能车货匹配、动态路径调度、自动化作业三大功能。集成订单管理、车辆定位、进度可视化、决策分析、电子结算,构建全链路数字化闭环。深度融合智能调度与路径优化,提升港口拖车全流程协同效率与服务品质。
|
||||
</p>
|
||||
</div>
|
||||
<div class="cargo-info-right"></div>
|
||||
</div>
|
||||
</div> <!-- end row -->
|
||||
</div> <!-- end container -->
|
||||
</section>
|
||||
<!-- end page-title -->
|
||||
|
||||
<!-- 面包屑导航 -->
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col col-xs-12">
|
||||
<div class="page-path">
|
||||
<a href="index.html">首页</a> > <a href="product_Logistics.html">产品中心</a> > 岸基网络货运平台
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<section class="section-padding">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div style="text-align: center;">
|
||||
<div>
|
||||
<h1 style="margin-bottom: 10px;">产品功能亮点</h1>
|
||||
<p style="color: #666; font-size: 16px;">聚焦行业痛点,针对性解决企业需求</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col col-xs-12">
|
||||
<div class="service-grids services-slider clearfix">
|
||||
<div class="feature-card">
|
||||
<div class="feature-card-icon">
|
||||
<img src="assets/images/project/common/编组-14.svg" alt="货物全程追溯">
|
||||
</div>
|
||||
<div class="feature-card-body">
|
||||
<h4>货物全程追溯:保障安全,提升可靠性</h4>
|
||||
<p>运用移动端数据采集与车辆定位技术,对货物从装货点启运、途中运输直至抵达目的地的全过程进行实时监控与数据记录。实现货物的端到端可视化追踪,显著提升运输过程的安全性与可靠性,让客户随时掌握货物动态。</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-card-icon">
|
||||
<img src="assets/images/project/common/资源_5.svg" alt="提升港口集疏运能力">
|
||||
</div>
|
||||
<div class="feature-card-body">
|
||||
<h4>提升港口集疏运能力:加速周转,优化计划</h4>
|
||||
<p>通过平台赋能,有效加速港口集装箱/货物的周转速度,整体提升港口集疏运效率。同时,大幅提升陆路集疏运的计划性,并推动实现集疏运作业流程的无纸化操作,简化流程,提高效率。</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-card-icon">
|
||||
<img src="assets/images/project/common/资源_3.svg" alt="提升港口服务竞争力">
|
||||
</div>
|
||||
<div class="feature-card-body">
|
||||
<h4>提升港口服务竞争力:强化联动,优化体验</h4>
|
||||
<p>助力中山港深化与内陆枢纽的协同联动,有效吸引更多制造业货源聚集。结合海关"直提直装"、"离港确认"等便利化措施,优化通关流程,显著缩短货物在港时间,增强客户服务体验与满意度。</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-card-icon">
|
||||
<img src="assets/images/project/common/资源_9.svg" alt="降低集疏运成本">
|
||||
</div>
|
||||
<div class="feature-card-body">
|
||||
<h4>降低集疏运成本:智能调度,提升效率</h4>
|
||||
<p>依托平台智能算法,综合考量车辆实时位置、车龄车况、装卸地点等多维因素,实现运输线路的动态优化。有效提升车辆利用效率与双重运输几率,从源头降低整体集疏运成本。</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="feature-card">
|
||||
<div class="feature-card-icon">
|
||||
<img src="assets/images/project/common/编组-2-copy-5.svg" alt="增强协同大数据分析能力">
|
||||
</div>
|
||||
<div class="feature-card-body">
|
||||
<h4>增强协同大数据分析能力:信息共享,智能预测</h4>
|
||||
<p>打通港区码头作业信息与陆运车辆信息的实时共享通道,通过预约排队机制实现作业有序化,提升计划性,增强协同作业效率,减少无效等待时间,降低运营成本。利用大数据分析算法,精准预测未来货物流量趋势,并据此优化路径规划策略,为运营决策提供有力支撑。</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div> <!-- end container -->
|
||||
</section>
|
||||
|
||||
<!-- 产品架构图区域 - 全宽背景 -->
|
||||
<section style="background-color: #eaf5fd; padding: 60px 0;">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col col-xs-12 text-center">
|
||||
<h1>产品架构</h1>
|
||||
<span style="color:#8f8f8f">聚焦行业痛点,针对性解决企业需求</span>
|
||||
<img src="assets/images/project/agNetCargoPlatform/product_architecture.png"
|
||||
class="img-responsive center-block" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section >
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div style="text-align: center;padding-top: 60px;">
|
||||
<div>
|
||||
<h1 style="margin-bottom: 10px;">产品优势</h1>
|
||||
<p style="color: #666; font-size: 16px;">聚焦行业痛点,针对性解决企业需求</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col col-xs-12">
|
||||
<div class="service-grids services-slider clearfix">
|
||||
<div class="feature-card feature-card-advantage">
|
||||
<div class="feature-card-icon">
|
||||
<h4>解决开票难题:合规化税务支撑</h4>
|
||||
</div>
|
||||
<div class="feature-card-body">
|
||||
<p>"营改增"政策下普通货运发票开具困难,个体运输户无法提供增值税发票。平台通过税控系统对接,基于真实交易数据化解开票壁垒。</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="feature-card feature-card-advantage">
|
||||
<div class="feature-card-icon">
|
||||
<h4>三方资金监管:交易安全闭环</h4>
|
||||
</div>
|
||||
<div class="feature-card-body">
|
||||
<p>货主/车主通过平台、物流企业、银行三方监管体系,实现快捷在线支付,保障各方资金安全与权益。</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="feature-card feature-card-advantage">
|
||||
<div class="feature-card-icon">
|
||||
<h4>增值税发票赋能:降低财务风险</h4>
|
||||
</div>
|
||||
<div class="feature-card-body">
|
||||
<p>依托全程监管的"三流合一"交易数据,开具正规运输发票,有效规避企业税务合规风险。</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="feature-card feature-card-advantage">
|
||||
<div class="feature-card-icon">
|
||||
<h4>小微企业管理提效:全功能工具赋能</h4>
|
||||
</div>
|
||||
<div class="feature-card-body">
|
||||
<p>为小微车队/承运商提供运单、司机、车辆、调度、轨迹、结算、发票管理等全链条工具,显著提升其管理效率与平台黏性。</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="feature-card feature-card-advantage">
|
||||
<div class="feature-card-icon">
|
||||
<h4>物流分包网络覆盖:线上线下服务贯通</h4>
|
||||
</div>
|
||||
<div class="feature-card-body">
|
||||
<p>构建物流分包商网络,支撑平台线上交易与线下服务无缝衔接,实现全场景服务覆盖。</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="feature-card feature-card-advantage">
|
||||
<div class="feature-card-icon">
|
||||
<h4>电子签单认证:无纸化操作升级</h4>
|
||||
</div>
|
||||
<div class="feature-card-body">
|
||||
<p>支持手持终端收货人签字确认及网站/APP在线评价,推动签收流程数字化变革。</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div> <!-- end container -->
|
||||
</section>
|
||||
|
||||
<!-- start site-footer -->
|
||||
<!-- start site-footer -->
|
||||
<div id="footer"></div>
|
||||
<!-- end site-footer -->
|
||||
</div>
|
||||
<!-- end of page-wrapper -->
|
||||
|
||||
|
||||
|
||||
<!-- All JavaScript files
|
||||
================================================== -->
|
||||
<script src="https://www.jq22.com/jquery/jquery-1.10.2.js"></script>
|
||||
<script src="assets/js/bootstrap.min.js"></script>
|
||||
<script src="assets/js/kefu.js"></script>
|
||||
<!-- Plugins for this template -->
|
||||
<script src="assets/js/jquery-plugin-collection.js"></script>
|
||||
|
||||
<!-- Custom script for this template -->
|
||||
<script src="assets/js/script.js"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
$("#footer").load("footer.html");
|
||||
$("#header").load("header.html");
|
||||
|
||||
// 初始化功能卡片轮播 - 使用 Owl Carousel
|
||||
$(document).ready(function() {
|
||||
$(".feature-cards-slider").owlCarousel({
|
||||
loop: true,
|
||||
margin: 25,
|
||||
smartSpeed: 500,
|
||||
autoplay: true,
|
||||
autoplayTimeout: 5000,
|
||||
autoplayHoverPause: true,
|
||||
dots: false,
|
||||
nav: false,
|
||||
responsive: {
|
||||
0: {
|
||||
items: 1
|
||||
},
|
||||
768: {
|
||||
items: 2
|
||||
},
|
||||
992: {
|
||||
items: 3
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
@@ -6,11 +6,10 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="author" content="irstheme">
|
||||
|
||||
<title> 产品中心</title>
|
||||
<title> 产品中心 </title>
|
||||
<meta name="title" content="烟台岸基网络科技有限公司">
|
||||
<meta name="Description" content="烟台岸基网络科技有限公司是从事于全程物流链科技服务的互联网软件公司,致力于打造港航企业的互联网生态圈,研发出了航运电子商务平台系统、多码头智能操作系统、全程物流链管理系统等软件产品。">
|
||||
<meta name="Keywords" content="烟台岸基网络科技有限公司,岸基网络,烟台岸基科技,岸基网络科技,订舱平台,港航电商平台,物流平台开发,报关,拖车系统,云码头,场站,码头管理系统,航运电子商务平台系统,智慧物流,协同运输,物流平台开发,O2O物流平台,航运">
|
||||
|
||||
<meta name="Keywords" content="烟台岸基网络科技有限公司,岸基网络,烟台岸基科技,岸基网络科技,全程物流链管理系统,货运平台,船舶代理管理系统,船代系统,船代软件,货运代理管理系统,货代系统,货代软件,物流平台开发,智慧物流,协同运输,物流平台开发,O2O物流平台,航运">
|
||||
<link href="assets/css/themify-icons.css" rel="stylesheet">
|
||||
<link href="assets/css/flaticon.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="https://www.jq22.com/jquery/bootstrap-3.3.4.css">
|
||||
@@ -76,7 +75,7 @@
|
||||
<div class="service-tab-nav">
|
||||
<div class="widget service-list-widget">
|
||||
<ul>
|
||||
<li ><a href="product_Logistics.html">全程物流链系列产品</a></li>
|
||||
<li><a href="product_Logistics.html">全程物流链系列产品</a></li>
|
||||
<li class="current"><a href="product_eCommerce.html">港航电商平台系列产品</a></li>
|
||||
<li><a href="product_port.html">云码头系列产品</a></li>
|
||||
</ul>
|
||||
@@ -85,50 +84,36 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col col-md-9 col-md-push-3">
|
||||
<div class="col col-md-12">
|
||||
<div class="product-cards">
|
||||
<a href="chuandai.html" class="product-card">
|
||||
<a href="product_cargo_platform.html" class="product-card">
|
||||
<div class="card-img"><img src="assets/images/blog/pro1.jpg" alt=""></div>
|
||||
<div class="card-content">
|
||||
<div class="card-header">
|
||||
<h4>船舶代理管理系统</h4><span class="card-tag">船代</span>
|
||||
</div>
|
||||
<div class="card-header"><h4>岸基网络货运平台</h4><span class="card-tag">船代</span></div>
|
||||
<p>为船舶代理企业提供全流程业务管理解决方案</p>
|
||||
</div>
|
||||
</a>
|
||||
<a href="huodai.html" class="product-card">
|
||||
<div class="card-img"><img src="assets/images/blog/pro2.jpg" alt=""></div>
|
||||
<div class="card-content">
|
||||
<div class="card-header">
|
||||
<h4>货运代理管理系统</h4><span class="card-tag">货代</span>
|
||||
</div>
|
||||
<div class="card-header"><h4>货运代理管理系统</h4><span class="card-tag">货代</span></div>
|
||||
<p>一站式货代业务管理,提升运营效率</p>
|
||||
</div>
|
||||
</a>
|
||||
<a href="jining.html" class="product-card">
|
||||
<div class="card-img"><img src="assets/images/blog/pro3.jpg" alt=""></div>
|
||||
<div class="card-content">
|
||||
<div class="card-header">
|
||||
<h4>集装箱管理系统</h4><span class="card-tag">集运</span>
|
||||
</div>
|
||||
<div class="card-header"><h4>集装箱管理系统</h4><span class="card-tag">集运</span></div>
|
||||
<p>智能化集装箱全生命周期管理平台</p>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col col-md-3 col-md-pull-9">
|
||||
<div class="service-sidebar">
|
||||
<!--<div class="widget download-widget">-->
|
||||
<!--<ul>-->
|
||||
<!--<li><a href="contact.html"><i class="ti-zip"></i>更多公司介绍</a></li>-->
|
||||
<!--</ul>-->
|
||||
<!--</div>-->
|
||||
<div class="widget contact-widget">
|
||||
<div>
|
||||
<h5>携手打造数字化智能航运物流</h5>
|
||||
<a href="contact.html">联系我们</a>
|
||||
<a href="jining.html" class="product-card">
|
||||
<div class="card-img"><img src="assets/images/blog/pro3.jpg" alt=""></div>
|
||||
<div class="card-content">
|
||||
<div class="card-header"><h4>集装箱管理系统</h4><span class="card-tag">集运</span></div>
|
||||
<p>智能化集装箱全生命周期管理平台</p>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div> <!-- end row -->
|
||||
|
||||
@@ -9,8 +9,7 @@
|
||||
<title> 产品中心 </title>
|
||||
<meta name="title" content="烟台岸基网络科技有限公司">
|
||||
<meta name="Description" content="烟台岸基网络科技有限公司是从事于全程物流链科技服务的互联网软件公司,致力于打造港航企业的互联网生态圈,研发出了航运电子商务平台系统、多码头智能操作系统、全程物流链管理系统等软件产品。">
|
||||
<meta name="Keywords" content="烟台岸基网络科技有限公司,岸基网络,烟台岸基科技,岸基网络科技,码头管理系统,散杂货管理系统,物流平台开发,拖车,云码头,数字化场站,码头管理系统,智慧物流,协同运输,物流平台开发,O2O物流平台,航运">
|
||||
|
||||
<meta name="Keywords" content="烟台岸基网络科技有限公司,岸基网络,烟台岸基科技,岸基网络科技,全程物流链管理系统,货运平台,船舶代理管理系统,船代系统,船代软件,货运代理管理系统,货代系统,货代软件,物流平台开发,智慧物流,协同运输,物流平台开发,O2O物流平台,航运">
|
||||
<link href="assets/css/themify-icons.css" rel="stylesheet">
|
||||
<link href="assets/css/flaticon.css" rel="stylesheet">
|
||||
<link rel="stylesheet" href="https://www.jq22.com/jquery/bootstrap-3.3.4.css">
|
||||
@@ -67,30 +66,30 @@
|
||||
</section>
|
||||
<!-- end page-title -->
|
||||
|
||||
<!-- start service-tab-nav -->
|
||||
<div class="service-tab-nav-fullwidth">
|
||||
<div class="service-tab-nav">
|
||||
<div class="widget service-list-widget">
|
||||
<ul>
|
||||
<li ><a href="product_Logistics.html">全程物流链系列产品</a></li>
|
||||
<li ><a href="product_eCommerce.html">港航 电商平台系列产品</a></li>
|
||||
<li class="current"><a href="product_port.html">云码头系列产品</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- end service-tab-nav -->
|
||||
|
||||
<!-- start service-single-section -->
|
||||
<section class="blog-pg-section service-single-section">
|
||||
<section class=" blog-pg-section service-single-section section-padding">
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col col-md-9 col-md-push-3">
|
||||
<div class="col col-md-12">
|
||||
<div class="service-tab-nav">
|
||||
<div class="widget service-list-widget">
|
||||
<ul>
|
||||
<li><a href="product_Logistics.html">全程物流链系列产品</a></li>
|
||||
<li><a href="product_eCommerce.html">港航电商平台系列产品</a></li>
|
||||
<li class="current"><a href="product_port.html">云码头系列产品</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col col-md-12">
|
||||
<div class="product-cards">
|
||||
<a href="chuandai.html" class="product-card">
|
||||
<a href="product_cargo_platform.html" class="product-card">
|
||||
<div class="card-img"><img src="assets/images/blog/pro1.jpg" alt=""></div>
|
||||
<div class="card-content">
|
||||
<div class="card-header"><h4>船舶代理管理系统</h4><span class="card-tag">船代</span></div>
|
||||
<div class="card-header"><h4>岸基网络货运平台</h4><span class="card-tag">船代</span></div>
|
||||
<p>为船舶代理企业提供全流程业务管理解决方案</p>
|
||||
</div>
|
||||
</a>
|
||||
@@ -108,21 +107,13 @@
|
||||
<p>智能化集装箱全生命周期管理平台</p>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col col-md-3 col-md-pull-9">
|
||||
<div class="service-sidebar">
|
||||
<!--<div class="widget download-widget">-->
|
||||
<!--<ul>-->
|
||||
<!--<li><a href="#"><i class="ti-zip"></i>更多公司介绍</a></li>-->
|
||||
<!--</ul>-->
|
||||
<!--</div>-->
|
||||
<div class="widget contact-widget">
|
||||
<div>
|
||||
<h5>携手打造数字化智能航运物流</h5>
|
||||
<a href="contact.html" target="_parent">联系我们</a>
|
||||
<a href="jining.html" class="product-card">
|
||||
<div class="card-img"><img src="assets/images/blog/pro3.jpg" alt=""></div>
|
||||
<div class="card-content">
|
||||
<div class="card-header"><h4>集装箱管理系统</h4><span class="card-tag">集运</span></div>
|
||||
<p>智能化集装箱全生命周期管理平台</p>
|
||||
</div>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div> <!-- end row -->
|
||||
@@ -141,7 +132,7 @@
|
||||
|
||||
<!-- All JavaScript files
|
||||
================================================== -->
|
||||
<script src="https://www.jq22.com/jquery/jquery-1.10.2.js"></script>
|
||||
<script src="assets/js/jquery-1.10.2.js"></script>
|
||||
<script src="assets/js/bootstrap.min.js"></script>
|
||||
<script type="text/javascript">
|
||||
|
||||
|
||||