提交 34d983c9 编写于 作者: donghuawangliang0612's avatar donghuawangliang0612

Merge branch 'master' of http://zyys.donghuajinyun.com/gitlib/jiangzaicheng/mcep-h5

 Conflicts:
	src/views/DepositInterestTrial/DepositInterestTrial.vue
......@@ -21,7 +21,13 @@ VUE_APP_MS_APPLICATION_API = http://15.1.48.21:9140/ms-application
VUE_APP_QL_FORM_API = http://152.136.68.93:9018/ms-qing-long/api/v1/des-cache-info/permit_endpoint/query-cacheversion-by-appid-cachetype
// 启动网关 (on | off)
VUE_APP_ENABLE_GATEWAY = off
VUE_APP_BASE_API = http://10.2.3.118:9165/online-financial-service/api/v1/cust-info/permit_endpoint
VUE_APP_AUTH_API = http://10.0.3.144:9165/online-financial-service/api/v1/cust-info/permit_endpoint
VUE_APP_SYS_API = http://10.2.3.118:9165/online-financial-service/api/v1/cust-info/permit_endpoint
VUE_APP_ONLINE_API = http://10.2.3.118:9165/online-financial-service/api/v1/cust-info/permit_endpoint
//http://10.0.3.144:9165/online-financial-service/api/v1/cust-info/permit_endpointy
//服务器http://10.2.3.118:9165/online-financial-service/api/v1/cust-info/permit_endpoint
<template>
<div id="app">
<transition :name="animateName">
<keep-alive>
<router-view class="router-container" v-if="$route.meta.keepAlive"> </router-view>
</keep-alive>
</transition>
<!-- <transition :name="animateName">-->
<router-view class="router-container" v-if="!$route.meta.keepAlive"> </router-view>
<!-- </transition>-->
</div>
</template>
<script lang="ts">
import { Component, Watch, Vue } from "vue-property-decorator";
import routerService from "@/services/router.service";
import { Dialog } from "vant";
Vue.use(Dialog);
@Component({
name: "App",
})
export default class App extends Vue {
animateName = ""; // 路由动画名称
pathMap: any = {}; // 存储路由对象
@Watch("$route")
onRouterChanged(to: any, from: any) {
if (from.path === "/") {
return;
}
const anim = routerService.animateName(to, from, this);
// this.animateName = `slide-${anim}`;
}
}
</script>
<style lang="scss" scoped>
#app {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
.main-view {
width: 100%;
height: 100%;
}
}
</style>
因为 它太大了无法显示 源差异 。您可以改为 查看blob
html, body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
}
/* ------ START 滚动条美化 ------ */
/* 滚动条整体部分,其中的属性有width,height,background,border等(就和一个块级元素一样)(位置1) */
::-webkit-scrollbar {
width: 0px;
height: 0px;
}
/* 滚动条两端的按钮,可以用display:none让其不显示,也可以添加背景图片,颜色改变显示效果(位置2) */
/* ::-webkit-scrollbar-button{
background:#74D334;
}*/
::-webkit-scrollbar-track,
::-webkit-scrollbar-thumb {
border-radius: 999px;
border: 5px solid transparent;
}
/* 外层轨道,可以用display:none让其不显示,也可以添加背景图片,颜色改变显示效果(位置3) */
::-webkit-scrollbar-track {
box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2) inset;
display: none;
}
/* 内层轨道,滚动条中间部分(位置4) */
/*::-webkit-scrollbar-track-piece{
background:#FF66D5;
}*/
/*滚动条里面可以拖动的那部分(位置5)*/
::-webkit-scrollbar-thumb {
min-height: 20px;
background-clip: content-box;
/*box-shadow: 0 0 0 5px rgba(0,0,0,.2) inset;*/
box-shadow: 0 0 0 5px #e1e1e1 inset;
}
/*边角(位置6)*/
::-webkit-scrollbar-corner {
background: transparent;
}
/**全局的路由样式*/
.router-container {
width: 100%;
transition: all 0.3s ease;
overflow: hidden;
}
/**页面进入动画*/
.switch-left-enter,
.switch-right-leave-active {
position: absolute;
top: 0;
-webkit-transform: translate(100%, 0);
transform: translate(100%, 0);
}
/**页面离开动画*/
.switch-left-leave-active,
.switch-right-enter {
position: absolute;
top: 0;
-webkit-transform: translate(-100%, 0) !important;
transform: translate(-100%, 0) !important;
}
/**页面另外一种入场方式*/
.slide-left-enter,.slide-right-leave-active {
position: absolute;
top:0;
-webkit-transform: translate(100%, 0);
transform: translate(100%, 0);
z-index: 9999999;
}
.slide-right-enter,.slide-left-leave-active {
position: absolute;
top:0;
-webkit-transform: translate(0%, 0);
transform: translate(0%, 0);
}
.d-page {
position: relative;
width: 100%;
height: 100%;
background-color: white;
}
.wh-100 {
width: 100%;
height: 100%;
}
/**盒布局中让子组件的比重为1*/
.flex-1-dhc{
flex: 1;
-webkit-box-flex: 1;
-webkit-flex: 1;
}
/**鼠标的形状为手型*/
.cursor-pointer-dhc{
cursor: pointer;
user-select: none;
}
/**文字不折行*/
.no-warp-dhc {
white-space: nowrap !important;
}
a, button, li {
user-select: none;
}
a:active, button:active {
opacity: 0.6;
}
/** 自定义表单 **/
.d-form-field {
display: flex;
align-items: center;
padding: 0 1rem 1.5rem 1rem;
.van-field {
padding: 0;
width: auto;
flex: 1;
}
.van-field__label {
font-size: 16px;
padding: 6px 0;
span {
width: 100%;
}
}
.van-field__body {
padding: 6px 0;
}
.van-field__control {
font-size: 14px;
padding: 0 5px;
}
.field-border {
.van-field__body {
border: 1px solid #dddddd;
border-radius: 2px;
}
}
.van-field.field-large {
.van-field__body, .van-field__label {
padding: 8px 0;
}
.van-field__label, .van-field__control {
font-size: 18px;
}
}
.van-field.field-small {
.van-field__body, .van-field__label {
padding: 4px 0;
}
.van-field__label, .van-field__control {
font-size: 14px;
}
}
.van-field--disabled {
.van-field__body {
background: #f5f5f5;
}
}
.van-cell--required:before {
display: none;
}
.van-cell--required {
.van-field__label {
padding-right: 6px;
}
.van-field__body:before {
position: absolute;
height: 16px;
content: "*";
font-size: 20px;
color: red;
left: -16px;
top: 4px;
}
}
}
.v-scroller {
overflow-y: auto;
}
.h-scroller {
overflow-x: auto;
}
.information-container{
padding-left: 32px;
padding-right: 240px;
.van-index-anchor {
color: #333333;
padding: 0;
}
.van-index-bar__sidebar {
position: absolute;
top: 350px;
right: 32px;
padding: 16px 0;
border-left: 1px solid #adb5bd;
}
.van-index-bar__sidebar > * {
width: 180px;
line-height: 25px;
font-size: 16px;
text-align: left;
color: #999999;
padding: 10px 0 10px 32px;
}
.van-index-bar__index {
position: relative;
}
.van-index-bar__index--active {
font-size: 18px;
}
.van-index-bar__index:first-child:after,
.van-index-bar__index:last-child:after,
.van-index-bar__index:before,
.van-index-bar__index--active:before {
position: absolute;
width: 28px;
height: 100%;
content: " ";
left: -15px;
background-position: center;
background-repeat: no-repeat;
}
.van-index-bar__index:before {
top: 0;
background-image: url("../svg/cursor-index.svg");
}
.van-index-bar__index--active:before {
background-image: url("../svg/cursor-active.svg");
}
.van-index-bar__index:first-child:after {
height: 28px;
top: -44px;
background-image: url("../svg/cursor-tag.svg");
}
.van-index-bar__index:last-child:after {
height: 28px;
bottom: -44px;
background-image: url("../svg/cursor-tag.svg");
}
}
.customer-management-information-form {
width: 100%;
margin-top: 2%;
margin-bottom: 3%;
}
.customer-management-information-form > tr:nth-child(odd) {
background-color: #f7fafc;
}
.customer-management-information-form tr td {
text-align: center;
font-family: "Arial Normal", "Arial";
color: #333333;
font-size: 16px;
line-height: 20px;
padding: 1% 5px;
}
.customer-management-information-form > tr:nth-child(1) td {
font-size: 14px;
padding: 1% 10px;
color: #999999;
}
.customer-management-information-form > tr:nth-child(1) {
background-color: #f2f2f2;
font-weight: bold;
}
.customer-management-information-form tr {
height: 46px;
line-height: 46px;
}
.customer-management-information-form-title {
display: flex;
justify-content: flex-start;
align-items: center;
}
.customer-management-information-form-title > div:nth-child(2) {
font-size: 18px;
color: #00000099;
font-weight: bold;
font-family: "Arial Normal", "Arial";
}
.customer-management-information-form-title > div:nth-child(1) {
width: 8px;
height: 8px;
margin-right: 1.5%;
border-radius: 4px;
background-color: rgba(247, 148, 0, 0.4);
}
.customer-management-information-content{
width: 97%;
margin: 0 auto;
}
.customer-information-master-label {
display: flex;
justify-content: flex-start;
align-items: center;
margin-bottom: 2%;
}
.customer-information-master-label > div:nth-child(1) {
width: 0.595%;
padding-top: 1.99%;
border-radius: 3px;
margin-right: 1%;
background-color: rgba(247, 148, 0, 0.4);
}
.customer-information-master-label > div:nth-child(2) {
font-size: 129%;
font-weight: bold;
padding-top: 0.25%;
}
.header-information,
.header-information-left,
.header-information-right {
display: flex;
justify-content: space-between;
align-items: center;
}
.header-information-left div,
.header-information-right div {
margin: 0 5%;
font-size: 16px;
color: #00000099;
font-family: "Arial Normal", "Arial";
}
.header-information-left {
width: 40%;
}
.header-information-right {
width: 34%;
}
.customer-data-list {
border: 1px solid #e1e2e3;
padding: 10px 20px;
margin-bottom: 10px;
}
.data-title {
font-weight: bold;
margin-bottom: 10px;
font-size: 16px;
}
.flow-y-dhc {
overflow-x: hidden !important;
overflow-y: auto !important;
}
@import "common.scss";
@import "bootstrap.min.css";
@import "vant-cover.scss";
@import "text.css";
@import "../icon/general/iconfont.css";
@import '../iconfont/iconfont.css';
/**~~~~~~~~~~~~~~~~~~~~公用的字体样式~~~~~~~~~~~~~~~~~~~~*/
/**1级标题样式*/
.text-h1-dhc{
font-size: 18px;
color: #333333;
}
/**2级标题样式*/
.text-h2-dhc{
font-size: 16px;
color: #333333;
}
/**字体加粗*/
.text-bold-dhc{
font-weight: 700;
}
/**小标题前面的小方块标识*/
.text-icon-dhc{
position: relative;
margin-left: 12px;
}
.text-icon-dhc:before{
content: "";
width: 6px;
height: 75%;
position: absolute;
left: -14px;
top: 15%;
background: #009DE5;
}
/**808080的14px字体*/
.text-80-dhc{
font-size: 14px;
color: #808080;
}
/**333333的14px字体*/
.text-33-dhc{
font-size: 14px;
color: #333333;
}
/**999999的14px字体*/
.text-99-dhc{
font-size: 14px;
color: #999999;
}
/**666666的14px字体*/
.text-66-dhc{
font-size: 14px;
color: #666666;
}
/**主题色的14px字体*/
.text-theme-dhc{
font-size: 14px;
color: #009DE5;
}
/**808080的12px字体*/
.text-sm-80-dhc{
font-size: 12px;
color: #808080;
}
/**333333的12px字体*/
.text-sm-33-dhc{
font-size: 12px;
color: #333333;
}
/**999999的12px字体*/
.text-sm-99-dhc{
font-size: 12px;
color: #999999;
}
/**999999的12px字体*/
.text-sm-6c-dhc{
font-size: 12px;
color: #6ca6e0;
}
/**校验错误的提示字 new*/
.text-err-dhc{
color: red;
font-size: 12px;
}
/*字体大小尺寸*/
.font-size-10-dhc {
font-size: 10px;
}
.font-size-12-dhc {
font-size: 12px;
}
.font-size-14-dhc {
font-size: 14px;
}
.font-size-16-dhc {
font-size: 16px;
}
.font-size-18-dhc {
font-size: 18px;
}
/** vant样式覆写 */
.van-nav-bar__content {
height: 60px;
//TODO 更换图片
background: linear-gradient(0deg, rgba(172, 215, 255, 1) 0%, rgba(11, 84, 224, 1) 100%);
background-size: 100%;
//background: linear-gradient(270deg, rgba(229, 0, 18, 1) 1%, rgba(255, 87, 108, 1) 98%);
}
.van-nav-bar__title {
line-height: 30px;
font-weight: 700;
font-size: 22px;
color: #FFFFFF;
}
.van-nav-bar {
z-index: 99999999;
}
.van-field__label {
color: #999999;
}
/* eslint-disable */
@font-face {
font-family: "iconfont"; /* Project id */
src: url('iconfont.ttf?t=1631586812301') format('truetype');
}
.iconfont {
font-family: "iconfont" !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-zuhuguanli:before {
content: "\e98f";
}
.icon-jixiaokaohe:before {
content: "\e991";
}
.icon-xiangmuzhongxin:before {
content: "\e993";
}
.icon-kehuzhongxin:before {
content: "\e996";
}
.icon-yingyongguanli:before {
content: "\e998";
}
.icon-yonghuguanli:before {
content: "\e9a1";
}
此差异已折叠。
{
"id": "",
"name": "",
"font_family": "iconfont",
"css_prefix_text": "icon-",
"description": "",
"glyphs": [
{
"icon_id": "63469694",
"name": "租户管理",
"font_class": "zuhuguanli",
"unicode": "e98f",
"unicode_decimal": 59791
},
{
"icon_id": "63469696",
"name": "绩效考核",
"font_class": "jixiaokaohe",
"unicode": "e991",
"unicode_decimal": 59793
},
{
"icon_id": "63469698",
"name": "项目中心",
"font_class": "xiangmuzhongxin",
"unicode": "e993",
"unicode_decimal": 59795
},
{
"icon_id": "63469701",
"name": "客户中心",
"font_class": "kehuzhongxin",
"unicode": "e996",
"unicode_decimal": 59798
},
{
"icon_id": "63469703",
"name": "应用管理",
"font_class": "yingyongguanli",
"unicode": "e998",
"unicode_decimal": 59800
},
{
"icon_id": "63469712",
"name": "用户管理",
"font_class": "yonghuguanli",
"unicode": "e9a1",
"unicode_decimal": 59809
}
]
}
/* Logo 字体 */
@font-face {
font-family: "iconfont logo";
src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834');
src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834#iefix') format('embedded-opentype'),
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.woff?t=1545807318834') format('woff'),
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.ttf?t=1545807318834') format('truetype'),
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.svg?t=1545807318834#iconfont') format('svg');
}
.logo {
font-family: "iconfont logo";
font-size: 160px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* tabs */
.nav-tabs {
position: relative;
}
.nav-tabs .nav-more {
position: absolute;
right: 0;
bottom: 0;
height: 42px;
line-height: 42px;
color: #666;
}
#tabs {
border-bottom: 1px solid #eee;
}
#tabs li {
cursor: pointer;
width: 100px;
height: 40px;
line-height: 40px;
text-align: center;
font-size: 16px;
border-bottom: 2px solid transparent;
position: relative;
z-index: 1;
margin-bottom: -1px;
color: #666;
}
#tabs .active {
border-bottom-color: #f00;
color: #222;
}
.tab-container .content {
display: none;
}
/* 页面布局 */
.main {
padding: 30px 100px;
width: 960px;
margin: 0 auto;
}
.main .logo {
color: #333;
text-align: left;
margin-bottom: 30px;
line-height: 1;
height: 110px;
margin-top: -50px;
overflow: hidden;
*zoom: 1;
}
.main .logo a {
font-size: 160px;
color: #333;
}
.helps {
margin-top: 40px;
}
.helps pre {
padding: 20px;
margin: 10px 0;
border: solid 1px #e7e1cd;
background-color: #fffdef;
overflow: auto;
}
.icon_lists {
width: 100% !important;
overflow: hidden;
*zoom: 1;
}
.icon_lists li {
width: 100px;
margin-bottom: 10px;
margin-right: 20px;
text-align: center;
list-style: none !important;
cursor: default;
}
.icon_lists li .code-name {
line-height: 1.2;
}
.icon_lists .icon {
display: block;
height: 100px;
line-height: 100px;
font-size: 42px;
margin: 10px auto;
color: #333;
-webkit-transition: font-size 0.25s linear, width 0.25s linear;
-moz-transition: font-size 0.25s linear, width 0.25s linear;
transition: font-size 0.25s linear, width 0.25s linear;
}
.icon_lists .icon:hover {
font-size: 100px;
}
.icon_lists .svg-icon {
/* 通过设置 font-size 来改变图标大小 */
width: 1em;
/* 图标和文字相邻时,垂直对齐 */
vertical-align: -0.15em;
/* 通过设置 color 来改变 SVG 的颜色/fill */
fill: currentColor;
/* path 和 stroke 溢出 viewBox 部分在 IE 下会显示
normalize.css 中也包含这行 */
overflow: hidden;
}
.icon_lists li .name,
.icon_lists li .code-name {
color: #666;
}
/* markdown 样式 */
.markdown {
color: #666;
font-size: 14px;
line-height: 1.8;
}
.highlight {
line-height: 1.5;
}
.markdown img {
vertical-align: middle;
max-width: 100%;
}
.markdown h1 {
color: #404040;
font-weight: 500;
line-height: 40px;
margin-bottom: 24px;
}
.markdown h2,
.markdown h3,
.markdown h4,
.markdown h5,
.markdown h6 {
color: #404040;
margin: 1.6em 0 0.6em 0;
font-weight: 500;
clear: both;
}
.markdown h1 {
font-size: 28px;
}
.markdown h2 {
font-size: 22px;
}
.markdown h3 {
font-size: 16px;
}
.markdown h4 {
font-size: 14px;
}
.markdown h5 {
font-size: 12px;
}
.markdown h6 {
font-size: 12px;
}
.markdown hr {
height: 1px;
border: 0;
background: #e9e9e9;
margin: 16px 0;
clear: both;
}
.markdown p {
margin: 1em 0;
}
.markdown>p,
.markdown>blockquote,
.markdown>.highlight,
.markdown>ol,
.markdown>ul {
width: 80%;
}
.markdown ul>li {
list-style: circle;
}
.markdown>ul li,
.markdown blockquote ul>li {
margin-left: 20px;
padding-left: 4px;
}
.markdown>ul li p,
.markdown>ol li p {
margin: 0.6em 0;
}
.markdown ol>li {
list-style: decimal;
}
.markdown>ol li,
.markdown blockquote ol>li {
margin-left: 20px;
padding-left: 4px;
}
.markdown code {
margin: 0 3px;
padding: 0 5px;
background: #eee;
border-radius: 3px;
}
.markdown strong,
.markdown b {
font-weight: 600;
}
.markdown>table {
border-collapse: collapse;
border-spacing: 0px;
empty-cells: show;
border: 1px solid #e9e9e9;
width: 95%;
margin-bottom: 24px;
}
.markdown>table th {
white-space: nowrap;
color: #333;
font-weight: 600;
}
.markdown>table th,
.markdown>table td {
border: 1px solid #e9e9e9;
padding: 8px 16px;
text-align: left;
}
.markdown>table th {
background: #F7F7F7;
}
.markdown blockquote {
font-size: 90%;
color: #999;
border-left: 4px solid #e9e9e9;
padding-left: 0.8em;
margin: 1em 0;
}
.markdown blockquote p {
margin: 0;
}
.markdown .anchor {
opacity: 0;
transition: opacity 0.3s ease;
margin-left: 8px;
}
.markdown .waiting {
color: #ccc;
}
.markdown h1:hover .anchor,
.markdown h2:hover .anchor,
.markdown h3:hover .anchor,
.markdown h4:hover .anchor,
.markdown h5:hover .anchor,
.markdown h6:hover .anchor {
opacity: 1;
display: inline-block;
}
.markdown>br,
.markdown>p>br {
clear: both;
}
.hljs {
display: block;
background: white;
padding: 0.5em;
color: #333333;
overflow-x: auto;
}
.hljs-comment,
.hljs-meta {
color: #969896;
}
.hljs-string,
.hljs-variable,
.hljs-template-variable,
.hljs-strong,
.hljs-emphasis,
.hljs-quote {
color: #df5000;
}
.hljs-keyword,
.hljs-selector-tag,
.hljs-type {
color: #a71d5d;
}
.hljs-literal,
.hljs-symbol,
.hljs-bullet,
.hljs-attribute {
color: #0086b3;
}
.hljs-section,
.hljs-name {
color: #63a35c;
}
.hljs-tag {
color: #333333;
}
.hljs-title,
.hljs-attr,
.hljs-selector-id,
.hljs-selector-class,
.hljs-selector-attr,
.hljs-selector-pseudo {
color: #795da3;
}
.hljs-addition {
color: #55a532;
background-color: #eaffea;
}
.hljs-deletion {
color: #bd2c00;
background-color: #ffecec;
}
.hljs-link {
text-decoration: underline;
}
/* 代码高亮 */
/* PrismJS 1.15.0
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript */
/**
* prism.js default theme for JavaScript, CSS and HTML
* Based on dabblet (http://dabblet.com)
* @author Lea Verou
*/
code[class*="language-"],
pre[class*="language-"] {
color: black;
background: none;
text-shadow: 0 1px white;
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
text-align: left;
white-space: pre;
word-spacing: normal;
word-break: normal;
word-wrap: normal;
line-height: 1.5;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
-webkit-hyphens: none;
-moz-hyphens: none;
-ms-hyphens: none;
hyphens: none;
}
pre[class*="language-"]::-moz-selection,
pre[class*="language-"] ::-moz-selection,
code[class*="language-"]::-moz-selection,
code[class*="language-"] ::-moz-selection {
text-shadow: none;
background: #b3d4fc;
}
pre[class*="language-"]::selection,
pre[class*="language-"] ::selection,
code[class*="language-"]::selection,
code[class*="language-"] ::selection {
text-shadow: none;
background: #b3d4fc;
}
@media print {
code[class*="language-"],
pre[class*="language-"] {
text-shadow: none;
}
}
/* Code blocks */
pre[class*="language-"] {
padding: 1em;
margin: .5em 0;
overflow: auto;
}
:not(pre)>code[class*="language-"],
pre[class*="language-"] {
background: #f5f2f0;
}
/* Inline code */
:not(pre)>code[class*="language-"] {
padding: .1em;
border-radius: .3em;
white-space: normal;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
color: slategray;
}
.token.punctuation {
color: #999;
}
.namespace {
opacity: .7;
}
.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
color: #905;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
color: #690;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
color: #9a6e3a;
background: hsla(0, 0%, 100%, .5);
}
.token.atrule,
.token.attr-value,
.token.keyword {
color: #07a;
}
.token.function,
.token.class-name {
color: #DD4A68;
}
.token.regex,
.token.important,
.token.variable {
color: #e90;
}
.token.important,
.token.bold {
font-weight: bold;
}
.token.italic {
font-style: italic;
}
.token.entity {
cursor: help;
}
因为 它太大了无法显示 源差异 。您可以改为 查看blob
@font-face {
font-family: "iconfont"; /* Project id 3289090 */
src: url('iconfont.woff2?t=1660790093357') format('woff2'),
url('iconfont.woff?t=1660790093357') format('woff'),
url('iconfont.ttf?t=1660790093357') format('truetype');
}
.iconfont {
font-family: "iconfont" !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-weiqianding:before {
content: "\ed8d";
}
.icon-yiqianding:before {
content: "\ed8e";
}
.icon-yijieqing:before {
content: "\ed8a";
}
.icon-yifafang:before {
content: "\ed8b";
}
.icon-shenqingzhong:before {
content: "\ed8c";
}
.icon-a-jifenshangcheng32x32px:before {
content: "\ed76";
}
.icon-a-licaichanpin32x32px:before {
content: "\ed77";
}
.icon-a-zizhudaikuan32x32px:before {
content: "\ed78";
}
.icon-a-cunkuanlixishisuan32x32px:before {
content: "\ed79";
}
.icon-a-qianshuwenjian200x200px:before {
content: "\ed74";
}
.icon-a-qianshuwenjianjia200x200px-01:before {
content: "\ed75";
}
.icon-a-chanpin24x24px-kehujinglixiaochengxu:before {
content: "\ed68";
}
.icon-a-chanpin-xuanzhong24x24px-kehujinglixiaochengxu:before {
content: "\ed69";
}
.icon-a-shouye-xuanzhong24x24px-kehujinglixiaochengxu:before {
content: "\ed6a";
}
.icon-a-renwuxinzeng50x50px-kehujinglixiaochengxu:before {
content: "\ed6b";
}
.icon-a-erweima18x18px-kehujinglixiaochengxu:before {
content: "\ed6c";
}
.icon-a-gerenxinxi18x18px-kehujinglixiaochengxu:before {
content: "\ed6d";
}
.icon-a-wode24x24px-kehujinglixiaochengxu:before {
content: "\ed6e";
}
.icon-a-lianxixinxi18x18px-kehujinglixiaochengxu:before {
content: "\ed6f";
}
.icon-a-dengji32x32px-kehujinglixiaochengxu:before {
content: "\ed70";
}
.icon-a-wode-xuanzhong24x24px-kehujinglixiaochengxu:before {
content: "\ed71";
}
.icon-a-zhuye24x24px-kehujinglixiaochengxu:before {
content: "\ed72";
}
.icon-a-yaoqingguanxichaxun18x18px-kehujinglixiaochengxu:before {
content: "\ed73";
}
.icon-a-yifafang60x60px:before {
content: "\ed67";
}
.icon-a-duihuanjilu16x16px:before {
content: "\ed55";
}
.icon-a-gerenxinxi16x16px:before {
content: "\ed56";
}
.icon-a-cunkuanlishuai24x24px:before {
content: "\ed57";
}
.icon-a-kejian20x20px:before {
content: "\ed58";
}
.icon-a-chenggong64x64px:before {
content: "\ed59";
}
.icon-a-mianfeizhuanzhang24x24px:before {
content: "\ed5a";
}
.icon-a-hezuoqiye16x16px:before {
content: "\ed5b";
}
.icon-a-daikuanlishuai24x24px:before {
content: "\ed5c";
}
.icon-a-shouye-xuanzhong20x20px:before {
content: "\ed5d";
}
.icon-a-xiayiye24x24px:before {
content: "\ed5e";
}
.icon-a-wode20x20px:before {
content: "\ed5f";
}
.icon-a-zhuanshukefu24x24px:before {
content: "\ed60";
}
.icon-a-shouye20x20px:before {
content: "\ed61";
}
.icon-a-wodedaikuan16x16px:before {
content: "\ed62";
}
.icon-a-wode-xuanzhong20x20px:before {
content: "\ed63";
}
.icon-a-weiqianshu60x60px:before {
content: "\ed64";
}
.icon-a-yiqianshu60x60px:before {
content: "\ed65";
}
.icon-a-yijieqing60x60px:before {
content: "\ed66";
}
.icon-pxsousuo:before {
content: "\e701";
}
.icon-shenfenzhengrenxiangmian140x90px:before {
content: "\e92a";
}
.icon-px-quxiaoshangchuan:before {
content: "\e7e7";
}
.icon-pxxiayiji:before {
content: "\e804";
}
.icon-chuli20x20px:before {
content: "\ed46";
}
.icon-shenpiliucheng20x20px:before {
content: "\ed47";
}
.icon-fanhui24x24px:before {
content: "\ed44";
}
.icon-rili16x16px:before {
content: "\ed45";
}
.icon-xiala20x20px:before {
content: "\ed43";
}
.icon-jinru24x24px:before {
content: "\ed41";
}
.icon-yidongshenpi72x72px:before {
content: "\ed42";
}
.icon-xinzeng-lanse30X30px:before {
content: "\ed40";
}
.icon-qiyetouxiang26x26px:before {
content: "\ed3c";
}
.icon-renxiang100x100px:before {
content: "\ed3d";
}
.icon-lianwanghecha24x24px:before {
content: "\ed3e";
}
.icon-renlianshibie24x24px:before {
content: "\ed3f";
}
.icon-jisuanqi-weixuanzhong30x30px:before {
content: "\ed3a";
}
.icon-jisuanqi-xuanzhong30x30px:before {
content: "\ed3b";
}
.icon-daihuankuancesuan-weixuanzhong30x30px:before {
content: "\ed38";
}
.icon-daihuankuancesuan-xuanzhong30x30px:before {
content: "\ed39";
}
.icon-tongxunlu-weixuanzhong30x30px:before {
content: "\ed36";
}
.icon-tongxunlu-xuanzhong30x30px:before {
content: "\ed37";
}
.icon-quanjingshitu14x14px:before {
content: "\ed34";
}
.icon-kehuyijiao14x14px:before {
content: "\ed35";
}
.icon-shaixuan22x22px:before {
content: "\ed30";
}
.icon-yewushenqingqingkuang40x40px:before {
content: "\ed2a";
}
.icon-heimingdankehuxinxi40x40px:before {
content: "\ed2b";
}
.icon-weijieqingshouxinyewu40x40px:before {
content: "\ed2c";
}
.icon-yijieqingshouxinyewu40x40px:before {
content: "\ed2d";
}
.icon-weibenhangkehudanbao40x40px:before {
content: "\ed2e";
}
.icon-beibenhangkehudanbao40x40px:before {
content: "\ed2f";
}
.icon-yingxiangziliao40x40px:before {
content: "\ed24";
}
.icon-shengchanjingying40x40px:before {
content: "\ed25";
}
.icon-gerenzichan40x40px:before {
content: "\ed26";
}
.icon-zhengxinxinxi40x40px:before {
content: "\ed27";
}
.icon-jiatingchengyuan40x40px:before {
content: "\ed28";
}
.icon-jibenxinxi40x40px:before {
content: "\ed29";
}
.icon-dianjijinru:before {
content: "\ed0b";
}
.icon-a-100pxweitiaocha:before {
content: "\ecfe";
}
.icon-a-100pxyitiaocha5:before {
content: "\ecff";
}
.icon-a-100pxyicaiji2:before {
content: "\ed00";
}
.icon-a-100pxyicaiji5:before {
content: "\ed01";
}
.icon-a-100pxyicaiji3:before {
content: "\ed02";
}
.icon-a-100pxyicaiji1:before {
content: "\ed03";
}
.icon-a-100pxyitiaocha3:before {
content: "\ed04";
}
.icon-a-100pxyitiaocha1:before {
content: "\ed05";
}
.icon-a-100pxyicaiji4:before {
content: "\ed06";
}
.icon-a-100pxyitiaocha2:before {
content: "\ed07";
}
.icon-a-100pxyitiaocha4:before {
content: "\ed08";
}
.icon-a-100pxweicaiji:before {
content: "\ed09";
}
.icon-yushouxinedu60X60px-01:before {
content: "\ecfd";
}
.icon-paishe50x50px:before {
content: "\ecfc";
}
.icon-paizhao22x22px:before {
content: "\ecf3";
}
.icon-yingxiangmuluwenjianjia:before {
content: "\ecfb";
}
.icon-tiaocha16X16px:before {
content: "\eced";
}
.icon-chenggong120X120px:before {
content: "\ecee";
}
.icon-zhongzhi16X16px:before {
content: "\ecef";
}
.icon-jiancha16X16px:before {
content: "\ecf0";
}
.icon-daikaishi100X100px:before {
content: "\ecf1";
}
.icon-daohang16X16px:before {
content: "\ecf2";
}
.icon-shouli16X16px:before {
content: "\ecf4";
}
.icon-dianhua16X16px:before {
content: "\ecf5";
}
.icon-yiwancheng100X100px:before {
content: "\ecf6";
}
.icon-dingwei16X16px:before {
content: "\ecf7";
}
.icon-zhixiang20X20px:before {
content: "\ecf8";
}
.icon-chakan16X16px:before {
content: "\ecf9";
}
.icon-jujue16X16px:before {
content: "\ecfa";
}
.icon-pxdanbaotiaocha1:before {
content: "\e686";
}
.icon-pxshouxinshenqing:before {
content: "\e695";
}
.icon-jiekuanrentiaocha:before {
content: "\e6a1";
}
.icon-feinonghuxinxicaiji100X100px:before {
content: "\ecea";
}
.icon-nonghuxinxicaiji100X100px:before {
content: "\eceb";
}
.icon-duigongkehuxinxicaiji100X100px:before {
content: "\ecec";
}
.icon-touxiang:before {
content: "\ece8";
}
.icon-dianjifenxi16x16px:before {
content: "\ece7";
}
.icon-tuichu16x16px:before {
content: "\ece6";
}
.icon-a-caijishouquan30X30pxxuanzhong:before {
content: "\ecd2";
}
.icon-paizhao20X20px:before {
content: "\ecd3";
}
.icon-saomiao24X24px:before {
content: "\ecd4";
}
.icon-shanchu16X16px:before {
content: "\ecd5";
}
.icon-caijishouquan30X30px:before {
content: "\ecd6";
}
.icon-piliangshangchuan16X16px:before {
content: "\ecd7";
}
.icon-xiangqing16X16px:before {
content: "\ecd8";
}
.icon-a-jibenxinxi30X30pxxuanzhong:before {
content: "\ecd9";
}
.icon-a-yushouxin30X30pxxuanzhong:before {
content: "\ecda";
}
.icon-jibenxinxi30X30px:before {
content: "\ecdb";
}
.icon-shenfenhecha30X30px:before {
content: "\ece0";
}
.icon-a-yingxiangcaiji30X30pxyixuan:before {
content: "\ece1";
}
.icon-yushouxin30X30px:before {
content: "\ece2";
}
.icon-yingxiangcaiji30X30px:before {
content: "\ece3";
}
.icon-xiugai16X16px:before {
content: "\ece4";
}
.icon-a-shenfenhecha30X30pxxuanzhong:before {
content: "\ece5";
}
.icon-dingwei40X40px:before {
content: "\ecdc";
}
.icon-guanbi20X20px:before {
content: "\ecdd";
}
.icon-renxiang24X24px:before {
content: "\ecde";
}
.icon-xinzeng30X30px:before {
content: "\ecdf";
}
.icon-jiaoseqiehuan32x32px:before {
content: "\ecc7";
}
.icon-shezhi32x32px:before {
content: "\ecc8";
}
.icon-wangdianchaxun32x32px:before {
content: "\ecbf";
}
.icon-chanpinzhongxin32x32px:before {
content: "\ecc0";
}
.icon-xuexipeixun32x32px:before {
content: "\ecc1";
}
.icon-xinxicaiji32x32px:before {
content: "\ecc2";
}
.icon-fuzhugongju32x32px:before {
content: "\ecc3";
}
.icon-mianduimianyingxiao32x32px:before {
content: "\ecc4";
}
.icon-shouxinguanli32x32px:before {
content: "\ecc5";
}
.icon-pingjiguanli32x32px:before {
content: "\ecc6";
}
因为 它太大了无法显示 源差异 。您可以改为 查看blob
此差异已折叠。
此差异已折叠。
<svg t="1589338640789" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4481" width="200" height="200"><path d="M199.143 336.285h137.143v-137.143h-137.143v137.143zM893.428 542h68.572v214.286h-68.572v-68.572h-68.572v-77.142h-68.572v-68.572h68.572v68.572h68.572v-68.572zM687.715 687.715h137.143v137.143h68.572v68.572h68.572v68.572h-137.143v-68.572h-68.572v-137.143h-68.572v68.572h-77.142v68.572h77.142v68.572h-145.714v-420h145.714v68.572h-77.142v145.714h77.142v-68.572zM62 962h411.428v-420h-411.428v420zM130.572 610.571h274.285v282.858h-274.285v-282.858zM199.143 824.857h137.143v-137.143h-137.143v137.143zM542 62v411.428h420v-411.428h-420zM893.428 404.857h-282.858v-274.285h282.858v274.285zM62 473.428h411.428v-411.428h-411.428v411.428zM130.572 130.572h274.285v274.285h-274.285v-274.285zM824.857 199.143h-137.143v137.143h137.143v-137.143z" p-id="4482"></path></svg>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="66px" height="64px" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1 0 0 1 -425 -385 )">
<path d="M 47.8314606741573 34.5706371345029 C 47.8314606741573 43.2379194444444 40.8060319566362 50.3293320906433 32.2193968333041 50.3293320906433 C 23.6327617099719 50.3293320906433 16.6073329924508 43.237919371345 16.6073329200316 34.5706371345029 C 16.6073328476124 25.9033548976608 23.6327616375527 18.8119421783626 32.2193968333041 18.8119421052632 C 40.8060320290555 18.8119420321637 47.8314606741573 25.9033548245614 47.8314606741573 34.5706371345029 Z M 43.9284446958392 34.5706371345029 C 43.9284446234199 27.8731918128655 38.46422231171 22.7516158625731 32.2193968333041 22.7516158625731 C 25.5842696629213 22.7516158625731 20.5103488983497 27.8731917397661 20.5103488983497 34.5706371345029 C 20.5103488983497 41.2680825292398 25.5842696629213 46.3896584064328 32.2193968333041 46.3896583333333 C 38.8545240036868 46.3896582602339 43.9284447682584 41.2680824561403 43.9284446958392 34.5706371345029 Z M 15.8267297533357 19.5998769005848 C 15.8267297533357 23.9335180555555 12.3140153945751 27.4792244152047 8.02069779669944 27.4792243421053 C 3.72738019882373 27.4792243421053 0.214665840063201 23.9335179824561 0.214665912482443 19.5998769005848 C 0.214665984901684 15.2662358187135 3.72738027124298 11.7205293859649 8.02069779669944 11.7205293859649 C 12.3140153221559 11.7205293859649 15.8267297533357 15.266235745614 15.8267297533357 19.5998769005848 Z M 11.9237137750176 19.5998769005848 C 11.9237137750176 17.2360726608187 9.97220582206811 15.6602031432749 8.02069779669944 15.6602031432749 C 5.67888822419242 15.6602031432749 4.11768181838132 17.2360726608187 4.11768181838132 19.5998769005848 C 4.11768181838132 21.9636811403509 5.67888822419242 23.5395506578947 8.02069779669944 23.5395506578947 C 10.3625073692065 23.5395506578947 11.9237137750176 21.9636811403509 11.9237137750176 19.5998769005848 Z M 22.0715553041608 55.8448753654971 C 22.0715553041608 60.1785165204678 18.5588409454003 63.724222880117 14.2655233475246 63.7242228070175 C 9.97220574964888 63.7242228070175 6.45949139088834 60.1785164473684 6.45949139088834 55.8448753654971 C 6.45949139088834 51.5112342836257 9.97220574964888 47.9655278508772 14.2655233475246 47.9655278508772 C 18.5588409454003 47.9655278508772 22.0715553041608 51.5112342105263 22.0715553041608 55.8448753654971 Z M 18.1685393258427 55.8448753654971 C 18.1685393258427 53.481071125731 16.6073329200316 51.9052016081871 14.2655233475246 51.9052016081871 C 11.9237137750176 51.9052016081871 10.3625073692065 53.481071125731 10.3625073692065 55.8448753654971 C 10.3625073692065 58.2086796052632 11.9237137750176 59.784549122807 14.2655233475246 59.784549122807 C 16.6073329200316 59.784549122807 18.1685393258427 58.2086796052632 18.1685393258427 55.8448753654971 Z M 65.7853340875176 28.6611265350877 C 65.7853340150983 32.9947676900585 62.272619728757 36.5404740497076 57.9793022033006 36.5404739766082 C 53.6859846054249 36.5404739766082 50.1732702466643 32.9947676169591 50.1732702466643 28.6611265350877 C 50.1732702466643 24.3274854532164 53.6859846054249 20.7817790204678 57.9793022033006 20.7817790204678 C 62.2726198011763 20.7817790204678 65.7853341599368 24.327485380117 65.7853340875176 28.6611265350877 Z M 61.8823181816187 28.6611265350877 C 61.8823181816187 26.2973223684211 60.3211117758076 24.7214527777778 57.9793022033006 24.7214527777778 C 55.6374926307935 24.7214527777778 54.0762862249824 26.2973222953216 54.0762862249824 28.6611265350877 C 54.0762862249824 31.0249307748538 55.6374926307935 32.6008002923977 57.9793022033006 32.6008002192983 C 60.3211117758076 32.6008001461988 61.8823181816187 31.0249307017544 61.8823181816187 28.6611265350877 Z M 53.6859846054249 10.1446598684211 C 53.6859846054249 15.6602030701754 49.3926670075492 19.9938442251462 43.9284446958392 19.9938442251462 C 38.8545239312676 19.9938442251462 34.1709047862535 15.6602031432749 34.1709047862535 10.1446598684211 C 34.1709047862535 4.62911659356725 38.4642223841292 0.295475511695907 43.9284446958392 0.295475511695907 C 49.3926670075492 0.295475511695907 53.6859846054249 4.62911666666667 53.6859846054249 10.1446598684211 Z M 49.7829686271067 10.1446598684211 C 49.7829686271067 6.99292083333334 47.4411590545997 4.23514926900585 43.9284446958392 4.23514926900585 C 40.8060319566362 4.23514926900585 38.0739207645716 6.99292090643275 38.0739207645716 10.1446598684211 C 38.0739207645716 13.2963988304094 40.8060319566362 16.0541704678363 43.9284446958392 16.0541705409357 C 47.0508574350421 16.0541706140351 49.7829686271067 13.2963989035088 49.7829686271067 10.1446598684211 Z M 56.0277941779319 55.8448753654971 C 56.0277941779319 58.9966144005848 53.2956829858673 61.7543859649123 50.1732702466643 61.7543859649123 C 47.0508575074614 61.7543859649123 44.3187463153968 58.9966143274854 44.3187463153968 55.8448753654971 C 44.3187463153968 52.6931364035088 47.0508575074614 49.9353647660819 50.1732702466643 49.9353646929825 C 53.2956829858673 49.935364619883 56.0277941779319 52.6931363304093 56.0277941779319 55.8448753654971 Z M 52.124778272033 55.8448753654971 C 52.1247783444522 54.662973245614 51.3441751053371 53.8750385233918 50.1732702466643 53.8750384502924 C 49.0023654604108 53.8750384502924 48.2217622937149 54.6629731725146 48.2217622937149 55.8448753654971 C 48.2217622937149 57.0267775584795 49.0023654604108 57.8147122076023 50.1732702466643 57.8147122076023 C 51.3441750329178 57.8147122076023 52.1247781996138 57.0267774853801 52.124778272033 55.8448753654971 Z " fill-rule="nonzero" fill="#4193e1" stroke="none" transform="matrix(1 0 0 1 425 385 )" />
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="44px" height="44px" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1 0 0 1 -47 598 )">
<path d="M 69 -598 C 81.32 -598 91 -588.32 91 -576 C 91 -563.68 81.32 -554 69 -554 C 56.68 -554 47 -563.68 47 -576 C 47 -588.32 56.68 -598 69 -598 Z " fill-rule="nonzero" fill="#02a7f0" stroke="none" />
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="10px" height="10px" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1 0 0 1 -995 -569 )">
<path d="M 1000 570 C 1002.24 570 1004 571.76 1004 574 C 1004 576.24 1002.24 578 1000 578 C 997.76 578 996 576.24 996 574 C 996 571.76 997.76 570 1000 570 Z " fill-rule="nonzero" fill="#ffffff" stroke="none" />
<path d="M 1000 570 C 1002.24 570 1004 571.76 1004 574 C 1004 576.24 1002.24 578 1000 578 C 997.76 578 996 576.24 996 574 C 996 571.76 997.76 570 1000 570 Z " stroke-width="2" stroke="#1890ff" fill="none" />
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="20px" height="20px" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1 0 0 1 -111 -875 )">
<path d="M 12.8372295673077 18.6831129807692 C 12.6792668269231 19.0892728365385 12.2800480769231 19.3625 11.8440204326923 19.3625 L 11.7834435096154 19.3606069711538 C 11.3299579326923 19.337890625 10.9387319711538 19.0236478365385 10.8165264423077 18.5792067307692 L 8.79876802884615 11.2435096153846 L 1.42184495192307 9.18683894230769 C 0.979445312914028 9.06419104348641 0.6656608166963 8.67153639011125 0.643599759615382 8.21298076923077 C 0.620492113479911 7.75464041715941 0.893706002666617 7.33307893067928 1.32151442307692 7.16697716346154 L 17.9097055288462 0.715114182692308 C 18.3028245192308 0.562409855769231 18.7506310096154 0.656219951923077 19.0493088942308 0.954477163461538 C 19.3486177884615 1.25357572115385 19.4428485576923 1.701171875 19.2895132211538 2.094921875 L 12.8372295673077 18.6831129807692 Z M 17.8707932692308 2.13383413461538 L 2.47394831730769 8.12253605769231 L 9.86349158653846 10.1825721153846 L 11.8835637019231 17.5266826923077 L 17.8707932692308 2.13383413461538 Z " fill-rule="nonzero" fill="#02a7f0" stroke="none" transform="matrix(1 0 0 1 111 875 )" />
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="32px" height="32px" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1 0 0 1 -1107 -127 )">
<path d="M 1123 127 C 1131.96 127 1139 134.04 1139 143 C 1139 151.96 1131.96 159 1123 159 C 1114.04 159 1107 151.96 1107 143 C 1107 134.04 1114.04 127 1123 127 Z " fill-rule="nonzero" fill="#02a7f0" stroke="none" />
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="32px" height="16px" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1 0 0 1 -1218 -139 )">
<path d="M 32 13.4958241796875 L 32 12.2417582301683 L 32 3.33868130709134 C 32 2.36549448617788 31.5245714375001 1.52879120492788 30.5737142812499 0.97296702524038 C 30.1108080211917 0.690956376031566 29.5556826500305 0.544688326082451 28.98971428125 0.555604384014434 C 28.98971428125 0.555604384014434 3.16799999999995 0.553626385216341 3.01028571875003 0.553626385216341 C 1.58399999999997 0.553626385216341 0.633142874999935 1.24989012920673 0.157714281249921 2.36351648737981 C 0.157714281249921 2.50197802584134 0 2.77890110276443 0 2.91736264122596 L 0 13.7727472566106 C 0 13.9112087950721 0.159999999999935 14.1901098978365 0.159999999999935 14.3305494621394 C 0.633142843750021 15.3037362830529 1.42628571875005 15.8615384615385 2.53485715624993 16 L 29.3074285625 16 C 29.622857125 16 29.7828571249999 15.8615384615385 30.09828571875 15.8615384615385 C 31.20685715625 15.4441758203125 32 14.6074725390625 32 13.4958241796875 Z M 21.8605714375 8.0681318719952 C 22.0205714375001 8.76637364182693 21.70285715625 9.18373625600961 21.0697142812499 9.18373625600961 L 11.40571428125 9.18373625600961 C 10.9302857187501 9.18373625600961 10.614857125 8.90681317908654 10.45485715625 8.62593407752404 C 10.297142875 8.07010989783654 10.6148571562501 7.65274725661058 11.2480000000001 7.51428571814904 L 20.912 7.51428571814904 C 21.3851428437499 7.51428571814904 21.70285715625 7.79120879507211 21.8605714375 8.0681318719952 Z " fill-rule="nonzero" fill="#02a7f0" stroke="none" transform="matrix(1 0 0 1 1218 139 )" />
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="95px" height="95px" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter x="1136px" y="709px" width="95px" height="95px" filterUnits="userSpaceOnUse" id="filter277">
<feOffset dx="5" dy="5" in="SourceAlpha" result="shadowOffsetInner" />
<feGaussianBlur stdDeviation="2.5" in="shadowOffsetInner" result="shadowGaussian" />
<feComposite in2="shadowGaussian" operator="atop" in="SourceAlpha" result="shadowComposite" />
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.349019607843137 0 " in="shadowComposite" />
</filter>
<g id="widget278">
<path d="M 1178.5 709 C 1202.3 709 1221 727.7 1221 751.5 C 1221 775.3 1202.3 794 1178.5 794 C 1154.7 794 1136 775.3 1136 751.5 C 1136 727.7 1154.7 709 1178.5 709 Z " fill-rule="nonzero" fill="#02a7f0" stroke="none" />
</g>
</defs>
<g transform="matrix(1 0 0 1 -1136 -709 )">
<use xlink:href="#widget278" filter="url(#filter277)" />
<use xlink:href="#widget278" />
</g>
</svg>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="98px" height="98px" xmlns="http://www.w3.org/2000/svg">
<defs>
<filter x="1155px" y="578px" width="98px" height="98px" filterUnits="userSpaceOnUse" id="filter115">
<feOffset dx="0" dy="0" in="SourceAlpha" result="shadowOffsetInner" />
<feGaussianBlur stdDeviation="2.5" in="shadowOffsetInner" result="shadowGaussian" />
<feComposite in2="shadowGaussian" operator="atop" in="SourceAlpha" result="shadowComposite" />
<feColorMatrix type="matrix" values="0 0 0 0 0.498039215686275 0 0 0 0 0.498039215686275 0 0 0 0 0.498039215686275 0 0 0 0.349019607843137 0 " in="shadowComposite" />
</filter>
<g id="widget116">
<path d="M 1204 583 C 1228.64 583 1248 602.36 1248 627 C 1248 651.64 1228.64 671 1204 671 C 1179.36 671 1160 651.64 1160 627 C 1160 602.36 1179.36 583 1204 583 Z " fill-rule="nonzero" fill="#02a7f0" stroke="none" />
</g>
</defs>
<g transform="matrix(1 0 0 1 -1155 -578 )">
<use xlink:href="#widget116" filter="url(#filter115)" />
<use xlink:href="#widget116" />
</g>
</svg>
\ No newline at end of file
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册