Browse Source

BI-25546

es6
windy 6 years ago
parent
commit
cb03f2ffa5
  1. 2
      dist/base.js
  2. 30
      dist/bundle.css
  3. 46
      dist/bundle.js
  4. 20
      dist/core.js
  5. 30
      dist/fineui.css
  6. 46
      dist/fineui.js
  7. BIN
      dist/font/iconfont.eot
  8. 149
      dist/font/iconfont.svg
  9. BIN
      dist/font/iconfont.ttf
  10. BIN
      dist/font/iconfont.woff
  11. 24
      dist/resource.css
  12. 6
      dist/widget.css
  13. 24
      dist/widget.js
  14. 24
      public/css/font.css
  15. 2
      src/base/single/editor/editor.js
  16. 20
      src/core/controller/controller.bubbles.js
  17. 24
      src/css/resource/font.css
  18. 6
      src/css/widget/numbereditor/number.css
  19. 5
      src/less/resource/font.less
  20. 6
      src/less/widget/numbereditor/number.editor.less
  21. 4
      src/widget/numbereditor/number.editor.js
  22. 20
      src/widget/numberinterval/numberinterval.js
  23. 24
      ui/css/font.css

2
dist/base.js vendored

@ -18568,7 +18568,7 @@ BI.Editor = BI.inherit(BI.Single, {
}
if (!this.disabledError && BI.isKey(errorText)) {
BI.Bubbles[b ? "show" : "hide"](this.getName(), errorText, this, {
adjustTop: 2
adjustYOffset: 2
});
this._checkToolTip();
return BI.Bubbles.get(this.getName());

30
dist/bundle.css vendored

@ -4267,6 +4267,12 @@ ul.ztree.zTreeDragUL {
-moz-border-radius: 2px;
border-radius: 2px;
}
.bi-number-editor .pull-down-font {
font-size: 12px;
}
.bi-number-editor .pull-up-font {
font-size: 12px;
}
.bi-number-interval .number-interval-small-editor {
-moz-border-radius-topleft: 2px;
-webkit-border-top-left-radius: 2px;
@ -5839,6 +5845,30 @@ textarea::-webkit-scrollbar-thumb:hover {
content: "\e6dd";
color: #13cd66;
}
.add-up-font .b-font {
font-size: 12px;
*zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = '');
}
.add-up-font .b-font:before {
content: "\e70a";
color: inherit;
}
.add-up-font.disabled .b-font:before {
content: "\e70a";
color: inherit;
}
.minus-down-font .b-font {
font-size: 12px;
*zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = '');
}
.minus-down-font .b-font:before {
content: "\e70b";
color: inherit;
}
.minus-down-font.disabled .b-font:before {
content: "\e70b";
color: inherit;
}
.tree-collapse-icon-type1 .x-icon {
display: block;
background: url('https://fanruan.coding.me/fineui/dist/images/2x/icon/tree_collapse_1.png') no-repeat center center;

46
dist/bundle.js vendored

@ -26766,10 +26766,8 @@ BI.BubblesController = BI.inherit(BI.Controller, {
var container = opt.container || context;
var offsetStyle = opt.offsetStyle || {};
var level = opt.level || "error";
var adjustTop = opt.adjustTop || 0;
var adjustRight = opt.adjustRight || 0;
var adjustLeft = opt.adjustLeft || 0;
var adjustBottom = opt.adjustBottom || 0;
var adjustYOffset = opt.adjustYOffset || 0;
var adjustXOffset = opt.adjustXOffset || 0;
if (!this.storeBubbles[name]) {
this.storeBubbles[name] = {};
}
@ -26785,9 +26783,9 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["top"]);
var position = this._getTopPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left + adjustLeft, top: position.top - adjustTop});
this.get(name).element.css({left: position.left + adjustXOffset, top: position.top - adjustYOffset});
this.get(name).invisible();
if (!$.isTopSpaceEnough(context, this.get(name), adjustTop)) {
if (!$.isTopSpaceEnough(context, this.get(name), adjustYOffset)) {
if (!this.storeBubbles[name]["left"]) {
this.storeBubbles[name]["left"] = this._createBubble("left", text, level, 30);
}
@ -26800,9 +26798,9 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["left"]);
var position = this._getLeftPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left - adjustLeft, top: position.top - adjustTop});
this.get(name).element.css({left: position.left - adjustXOffset, top: position.top - adjustYOffset});
this.get(name).invisible();
if (!$.isLeftSpaceEnough(context, this.get(name), adjustLeft)) {
if (!$.isLeftSpaceEnough(context, this.get(name), adjustXOffset)) {
if (!this.storeBubbles[name]["right"]) {
this.storeBubbles[name]["right"] = this._createBubble("right", text, level, 30);
}
@ -26815,9 +26813,9 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["right"]);
var position = this._getRightPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left + adjustRight, top: position.top - adjustTop});
this.get(name).element.css({left: position.left + adjustXOffset, top: position.top - adjustYOffset});
this.get(name).invisible();
if (!$.isRightSpaceEnough(context, this.get(name), adjustLeft)) {
if (!$.isRightSpaceEnough(context, this.get(name), adjustXOffset)) {
if (!this.storeBubbles[name]["bottom"]) {
this.storeBubbles[name]["bottom"] = this._createBubble("bottom", text, level);
}
@ -26830,7 +26828,7 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["bottom"]);
var position = this._getBottomPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left + adjustLeft, top: position.top + adjustBottom});
this.get(name).element.css({left: position.left + adjustXOffset, top: position.top + adjustYOffset});
this.get(name).invisible();
}
}
@ -54377,7 +54375,7 @@ BI.Editor = BI.inherit(BI.Single, {
}
if (!this.disabledError && BI.isKey(errorText)) {
BI.Bubbles[b ? "show" : "hide"](this.getName(), errorText, this, {
adjustTop: 2
adjustYOffset: 2
});
this._checkToolTip();
return BI.Bubbles.get(this.getName());
@ -102053,7 +102051,7 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
type: "bi.icon_button",
forceNotSelected: true,
trigger: "lclick,",
cls: "pull-up-font top-button bi-border-left bi-list-item-active3"
cls: "add-up-font top-button bi-border-left bi-list-item-active3"
});
this.topBtn.on(BI.IconButton.EVENT_CHANGE, function () {
self._finetuning(o.step);
@ -102064,7 +102062,7 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
type: "bi.icon_button",
trigger: "lclick,",
forceNotSelected: true,
cls: "pull-down-font bottom-button bi-border-left bi-list-item-active3"
cls: "minus-down-font bottom-button bi-border-left bi-list-item-active3"
});
this.bottomBtn.on(BI.IconButton.EVENT_CHANGE, function () {
self._finetuning(-o.step);
@ -102145,7 +102143,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
less: 0,
less_equal: 1,
numTip: "",
adjustTop: 2
adjustYOffset: 2
},
_defaultConfig: function () {
var conf = BI.NumberInterval.superclass._defaultConfig.apply(this, arguments);
@ -102432,19 +102430,19 @@ BI.NumberInterval = BI.inherit(BI.Single, {
case c.typeError:
BI.Bubbles.show(c.typeError, BI.i18nText("BI-Numerical_Interval_Input_Data"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
break;
case c.numberError:
BI.Bubbles.show(c.numberError, BI.i18nText("BI-Numerical_Interval_Number_Value"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
break;
case c.signalError:
BI.Bubbles.show(c.signalError, BI.i18nText("BI-Numerical_Interval_Signal_Value"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
break;
default :
@ -102481,7 +102479,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
self._checkValidation();
BI.Bubbles.show(c.typeError, BI.i18nText("BI-Numerical_Interval_Input_Data"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
self.fireEvent(BI.NumberInterval.EVENT_ERROR);
});
@ -102495,14 +102493,14 @@ BI.NumberInterval = BI.inherit(BI.Single, {
case c.numberError:
BI.Bubbles.show(c.numberError, BI.i18nText("BI-Numerical_Interval_Number_Value"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
self.fireEvent(BI.NumberInterval.EVENT_ERROR);
break;
case c.signalError:
BI.Bubbles.show(c.signalError, BI.i18nText("BI-Numerical_Interval_Signal_Value"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
self.fireEvent(BI.NumberInterval.EVENT_ERROR);
break;
@ -102520,19 +102518,19 @@ BI.NumberInterval = BI.inherit(BI.Single, {
case c.typeError:
BI.Bubbles.show(c.typeError, BI.i18nText("BI-Numerical_Interval_Input_Data"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
break;
case c.numberError:
BI.Bubbles.show(c.numberError, BI.i18nText("BI-Numerical_Interval_Number_Value"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
break;
case c.signalError:
BI.Bubbles.show(c.signalError, BI.i18nText("BI-Numerical_Interval_Signal_Value"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
break;
default :

20
dist/core.js vendored

@ -26766,10 +26766,8 @@ BI.BubblesController = BI.inherit(BI.Controller, {
var container = opt.container || context;
var offsetStyle = opt.offsetStyle || {};
var level = opt.level || "error";
var adjustTop = opt.adjustTop || 0;
var adjustRight = opt.adjustRight || 0;
var adjustLeft = opt.adjustLeft || 0;
var adjustBottom = opt.adjustBottom || 0;
var adjustYOffset = opt.adjustYOffset || 0;
var adjustXOffset = opt.adjustXOffset || 0;
if (!this.storeBubbles[name]) {
this.storeBubbles[name] = {};
}
@ -26785,9 +26783,9 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["top"]);
var position = this._getTopPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left + adjustLeft, top: position.top - adjustTop});
this.get(name).element.css({left: position.left + adjustXOffset, top: position.top - adjustYOffset});
this.get(name).invisible();
if (!$.isTopSpaceEnough(context, this.get(name), adjustTop)) {
if (!$.isTopSpaceEnough(context, this.get(name), adjustYOffset)) {
if (!this.storeBubbles[name]["left"]) {
this.storeBubbles[name]["left"] = this._createBubble("left", text, level, 30);
}
@ -26800,9 +26798,9 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["left"]);
var position = this._getLeftPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left - adjustLeft, top: position.top - adjustTop});
this.get(name).element.css({left: position.left - adjustXOffset, top: position.top - adjustYOffset});
this.get(name).invisible();
if (!$.isLeftSpaceEnough(context, this.get(name), adjustLeft)) {
if (!$.isLeftSpaceEnough(context, this.get(name), adjustXOffset)) {
if (!this.storeBubbles[name]["right"]) {
this.storeBubbles[name]["right"] = this._createBubble("right", text, level, 30);
}
@ -26815,9 +26813,9 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["right"]);
var position = this._getRightPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left + adjustRight, top: position.top - adjustTop});
this.get(name).element.css({left: position.left + adjustXOffset, top: position.top - adjustYOffset});
this.get(name).invisible();
if (!$.isRightSpaceEnough(context, this.get(name), adjustLeft)) {
if (!$.isRightSpaceEnough(context, this.get(name), adjustXOffset)) {
if (!this.storeBubbles[name]["bottom"]) {
this.storeBubbles[name]["bottom"] = this._createBubble("bottom", text, level);
}
@ -26830,7 +26828,7 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["bottom"]);
var position = this._getBottomPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left + adjustLeft, top: position.top + adjustBottom});
this.get(name).element.css({left: position.left + adjustXOffset, top: position.top + adjustYOffset});
this.get(name).invisible();
}
}

30
dist/fineui.css vendored

@ -4267,6 +4267,12 @@ ul.ztree.zTreeDragUL {
-moz-border-radius: 2px;
border-radius: 2px;
}
.bi-number-editor .pull-down-font {
font-size: 12px;
}
.bi-number-editor .pull-up-font {
font-size: 12px;
}
.bi-number-interval .number-interval-small-editor {
-moz-border-radius-topleft: 2px;
-webkit-border-top-left-radius: 2px;
@ -5839,6 +5845,30 @@ textarea::-webkit-scrollbar-thumb:hover {
content: "\e6dd";
color: #13cd66;
}
.add-up-font .b-font {
font-size: 12px;
*zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = '');
}
.add-up-font .b-font:before {
content: "\e70a";
color: inherit;
}
.add-up-font.disabled .b-font:before {
content: "\e70a";
color: inherit;
}
.minus-down-font .b-font {
font-size: 12px;
*zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = '');
}
.minus-down-font .b-font:before {
content: "\e70b";
color: inherit;
}
.minus-down-font.disabled .b-font:before {
content: "\e70b";
color: inherit;
}
.tree-collapse-icon-type1 .x-icon {
display: block;
background: url('resources?path=/com/fr/web/ui/images/2x/icon/tree_collapse_1.png') no-repeat center center;

46
dist/fineui.js vendored

@ -27015,10 +27015,8 @@ BI.BubblesController = BI.inherit(BI.Controller, {
var container = opt.container || context;
var offsetStyle = opt.offsetStyle || {};
var level = opt.level || "error";
var adjustTop = opt.adjustTop || 0;
var adjustRight = opt.adjustRight || 0;
var adjustLeft = opt.adjustLeft || 0;
var adjustBottom = opt.adjustBottom || 0;
var adjustYOffset = opt.adjustYOffset || 0;
var adjustXOffset = opt.adjustXOffset || 0;
if (!this.storeBubbles[name]) {
this.storeBubbles[name] = {};
}
@ -27034,9 +27032,9 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["top"]);
var position = this._getTopPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left + adjustLeft, top: position.top - adjustTop});
this.get(name).element.css({left: position.left + adjustXOffset, top: position.top - adjustYOffset});
this.get(name).invisible();
if (!$.isTopSpaceEnough(context, this.get(name), adjustTop)) {
if (!$.isTopSpaceEnough(context, this.get(name), adjustYOffset)) {
if (!this.storeBubbles[name]["left"]) {
this.storeBubbles[name]["left"] = this._createBubble("left", text, level, 30);
}
@ -27049,9 +27047,9 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["left"]);
var position = this._getLeftPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left - adjustLeft, top: position.top - adjustTop});
this.get(name).element.css({left: position.left - adjustXOffset, top: position.top - adjustYOffset});
this.get(name).invisible();
if (!$.isLeftSpaceEnough(context, this.get(name), adjustLeft)) {
if (!$.isLeftSpaceEnough(context, this.get(name), adjustXOffset)) {
if (!this.storeBubbles[name]["right"]) {
this.storeBubbles[name]["right"] = this._createBubble("right", text, level, 30);
}
@ -27064,9 +27062,9 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["right"]);
var position = this._getRightPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left + adjustRight, top: position.top - adjustTop});
this.get(name).element.css({left: position.left + adjustXOffset, top: position.top - adjustYOffset});
this.get(name).invisible();
if (!$.isRightSpaceEnough(context, this.get(name), adjustLeft)) {
if (!$.isRightSpaceEnough(context, this.get(name), adjustXOffset)) {
if (!this.storeBubbles[name]["bottom"]) {
this.storeBubbles[name]["bottom"] = this._createBubble("bottom", text, level);
}
@ -27079,7 +27077,7 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["bottom"]);
var position = this._getBottomPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left + adjustLeft, top: position.top + adjustBottom});
this.get(name).element.css({left: position.left + adjustXOffset, top: position.top + adjustYOffset});
this.get(name).invisible();
}
}
@ -54626,7 +54624,7 @@ BI.Editor = BI.inherit(BI.Single, {
}
if (!this.disabledError && BI.isKey(errorText)) {
BI.Bubbles[b ? "show" : "hide"](this.getName(), errorText, this, {
adjustTop: 2
adjustYOffset: 2
});
this._checkToolTip();
return BI.Bubbles.get(this.getName());
@ -102302,7 +102300,7 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
type: "bi.icon_button",
forceNotSelected: true,
trigger: "lclick,",
cls: "pull-up-font top-button bi-border-left bi-list-item-active3"
cls: "add-up-font top-button bi-border-left bi-list-item-active3"
});
this.topBtn.on(BI.IconButton.EVENT_CHANGE, function () {
self._finetuning(o.step);
@ -102313,7 +102311,7 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
type: "bi.icon_button",
trigger: "lclick,",
forceNotSelected: true,
cls: "pull-down-font bottom-button bi-border-left bi-list-item-active3"
cls: "minus-down-font bottom-button bi-border-left bi-list-item-active3"
});
this.bottomBtn.on(BI.IconButton.EVENT_CHANGE, function () {
self._finetuning(-o.step);
@ -102394,7 +102392,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
less: 0,
less_equal: 1,
numTip: "",
adjustTop: 2
adjustYOffset: 2
},
_defaultConfig: function () {
var conf = BI.NumberInterval.superclass._defaultConfig.apply(this, arguments);
@ -102681,19 +102679,19 @@ BI.NumberInterval = BI.inherit(BI.Single, {
case c.typeError:
BI.Bubbles.show(c.typeError, BI.i18nText("BI-Numerical_Interval_Input_Data"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
break;
case c.numberError:
BI.Bubbles.show(c.numberError, BI.i18nText("BI-Numerical_Interval_Number_Value"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
break;
case c.signalError:
BI.Bubbles.show(c.signalError, BI.i18nText("BI-Numerical_Interval_Signal_Value"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
break;
default :
@ -102730,7 +102728,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
self._checkValidation();
BI.Bubbles.show(c.typeError, BI.i18nText("BI-Numerical_Interval_Input_Data"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
self.fireEvent(BI.NumberInterval.EVENT_ERROR);
});
@ -102744,14 +102742,14 @@ BI.NumberInterval = BI.inherit(BI.Single, {
case c.numberError:
BI.Bubbles.show(c.numberError, BI.i18nText("BI-Numerical_Interval_Number_Value"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
self.fireEvent(BI.NumberInterval.EVENT_ERROR);
break;
case c.signalError:
BI.Bubbles.show(c.signalError, BI.i18nText("BI-Numerical_Interval_Signal_Value"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
self.fireEvent(BI.NumberInterval.EVENT_ERROR);
break;
@ -102769,19 +102767,19 @@ BI.NumberInterval = BI.inherit(BI.Single, {
case c.typeError:
BI.Bubbles.show(c.typeError, BI.i18nText("BI-Numerical_Interval_Input_Data"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
break;
case c.numberError:
BI.Bubbles.show(c.numberError, BI.i18nText("BI-Numerical_Interval_Number_Value"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
break;
case c.signalError:
BI.Bubbles.show(c.signalError, BI.i18nText("BI-Numerical_Interval_Signal_Value"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
break;
default :

BIN
dist/font/iconfont.eot vendored

Binary file not shown.

149
dist/font/iconfont.svg vendored

@ -36,25 +36,25 @@ t9.5 -10.5t21.5 -4h37h67h81h80h64h36q23 0 34 12t2 38q-5 13 -9.5 30.5t-9.5 34.5q-
<glyph glyph-name="icon-test" unicode="&#59056;" d="M807.488 518.656h-104l-43.904-264.896h125.12v-55.232h-134.848l-25.984-135.68h-63.36l25.984 135.68H368.64l-29.248-135.68H277.76l29.248 135.68H217.6v55.232h100.736l48.768 264.896H245.248v55.232h131.584L402.88 710.4h61.696l-25.984-136.512h211.2l24.448 136.512h63.36l-22.72-136.512h92.608v-55.232z m-211.264-264.896l45.504 264.896h-211.2l-50.432-264.896h216.128z" horiz-adv-x="1024" />
<glyph glyph-name="shijian" unicode="&#59057;" d="M512 37.312A347.072 347.072 0 0 0 165.312 384 347.072 347.072 0 0 0 512 730.688 347.072 347.072 0 0 0 858.688 384 347.072 347.072 0 0 0 512 37.312zM512 800A416.448 416.448 0 0 1 96 384c0-229.376 186.624-416 416-416s416 186.624 416 416S741.376 800 512 800z m34.688-409.344V592a34.688 34.688 0 0 1-69.376 0v-215.68a34.56 34.56 0 0 1 10.176-24.512l116.224-116.224a34.56 34.56 0 0 1 49.024 0 34.688 34.688 0 0 1 0 49.024L546.688 390.656z" horiz-adv-x="1024" />
<glyph glyph-name="shijian" unicode="&#59057;" d="M512 37.31200000000001A347.072 347.072 0 0 0 165.312 384 347.072 347.072 0 0 0 512 730.688 347.072 347.072 0 0 0 858.688 384 347.072 347.072 0 0 0 512 37.31200000000001zM512 800A416.448 416.448 0 0 1 96 384c0-229.376 186.624-416 416-416s416 186.624 416 416S741.376 800 512 800z m34.688-409.344V592a34.688 34.688 0 0 1-69.376 0v-215.68a34.56 34.56 0 0 1 10.176-24.512l116.224-116.224a34.56 34.56 0 0 1 49.024 0 34.688 34.688 0 0 1 0 49.024L546.688 390.656z" horiz-adv-x="1024" />
<glyph glyph-name="fenxibiao" unicode="&#59059;" d="M885.312 761.6c71.936 0.192 132.48-53.76 138.24-123.2 5.76-70.464-44.416-132.032-116.8-143.68-16.64-2.688-33.024-2.368-49.28 1.28-6.4 1.408-8.768-0.448-11.52-5.12-50.88-85.76-101.696-171.52-152.96-256.896-5.376-8.832 1.152-10.24 5.568-13.632 35.2-27.2 51.584-62.912 45.824-106.24-6.08-45.184-32.384-76.864-76.352-93.184a118.4 118.4 0 0 0-131.328 34.368c-32 37.76-36.416 89.856-10.368 131.968 4.48 7.168 4.544 10.24-2.944 15.68a32231.36 32231.36 0 0 0-214.784 156.288c-5.952 4.352-10.432 5.312-17.472 1.92-16.32-7.616-34.048-10.496-51.968-7.936-7.744 1.152-10.944-1.344-14.464-7.232a8896 8896 0 0 0-64.64-108.608c-4.032-6.656-4.224-10.624 1.152-17.408 24.064-30.272 27.136-63.36 9.024-97.28a89.6 89.6 0 0 0-89.024-45.568c-38.272 4.992-64.768 25.536-76.8 61.632-20.864 62.912 35.456 124.928 102.4 112.832 7.488-1.408 10.944 0.64 14.528 6.784 20.16 34.56 40.576 69.12 61.44 103.36 4.608 7.424 4.48 11.328-2.56 17.536a97.28 97.28 0 0 0-24.96 113.856c17.472 39.104 58.24 62.976 102.72 60.096 42.112-2.752 78.912-32 90.88-72.768 8.064-27.328 4.608-53.504-10.24-77.888-3.904-6.4-2.752-9.28 2.944-13.44 72.32-52.352 144.64-104.96 216.768-157.632 4.736-3.456 8.256-4.672 14.08-1.472a110.08 110.08 0 0 0 64.512 13.056c8.128-0.768 11.52 2.176 15.232 8.448 50.112 84.736 100.416 169.344 151.04 253.76 4.48 7.616 4.736 11.328-3.008 17.216a131.2 131.2 0 0 0-44.544 148.864c18.944 53.568 71.488 90.112 129.664 90.24z" horiz-adv-x="1024" />
<glyph glyph-name="shujukubiao" unicode="&#59060;" d="M81.216 103.616v523.52H384c33.28 0 61.12-11.264 83.584-33.728 20.608-20.352 30.912-48.64 30.912-84.864v-275.008c0-42.624-10.624-74.944-32-96.96-9.6-10.048-21.632-18.304-36.032-24.704a87.68 87.68 0 0 0-33.728-8.32H81.28zM166.4 179.584h197.952c15.36 0 27.264 4.096 35.776 12.352a41.152 41.152 0 0 1 13.056 30.592V505.088c0 30.72-15.104 46.08-45.376 46.08H166.464v-371.584z m745.216 192.832c16.768-22.208 25.088-41.728 25.088-58.432v-105.6c0-31.104-10.88-56.896-32.64-77.312-20.416-19.008-43.456-28.48-69.12-28.48H656.64c-37.376 0-67.072 11.328-89.024 33.984-21.76 22.464-32.64 51.136-32.64 85.952V515.392c0 33.28 11.2 60.608 33.664 82.176 22.4 22.016 49.152 33.024 80.064 33.024h172.928c31.616 0 59.904-11.392 84.928-34.048 20.16-18.368 30.208-40.448 30.208-66.368v-51.84c0-36.928-2.752-62.144-8.256-75.648a195.52 195.52 0 0 0-16.832-30.272z m-291.52-34.752v-108.608c0-33.664 13.44-50.56 40.256-50.56h137.856c18.112 0 32.064 4.992 41.92 14.848a39.424 39.424 0 0 1 11.328 28.48V296.448c0 10.048-4.48 19.456-13.44 28.16a46.464 46.464 0 0 1-34.304 13.056H620.16z m0 75.968h188.8a43.648 43.648 0 0 1 30.528 10.688 38.4 38.4 0 0 1 12.032 29.184v58.112a44.16 44.16 0 0 1-9.6 29.568c-7.552 8.96-18.56 13.44-33.024 13.44h-148.864a40.192 40.192 0 0 1-24.704-8.32 34.944 34.944 0 0 1-15.168-28.48v-104.192z" horiz-adv-x="1024" />
<glyph glyph-name="shujukubiao" unicode="&#59060;" d="M81.216 103.61599999999999v523.52H384c33.28 0 61.12-11.264 83.584-33.728 20.608-20.352 30.912-48.64 30.912-84.864v-275.008c0-42.624-10.624-74.944-32-96.96-9.6-10.048-21.632-18.304-36.032-24.704a87.68 87.68 0 0 0-33.728-8.32H81.28zM166.4 179.58399999999995h197.952c15.36 0 27.264 4.096 35.776 12.352a41.152 41.152 0 0 1 13.056 30.592V505.088c0 30.72-15.104 46.08-45.376 46.08H166.464v-371.584z m745.216 192.832c16.768-22.208 25.088-41.728 25.088-58.432v-105.6c0-31.104-10.88-56.896-32.64-77.312-20.416-19.008-43.456-28.48-69.12-28.48H656.64c-37.376 0-67.072 11.328-89.024 33.984-21.76 22.464-32.64 51.136-32.64 85.952V515.392c0 33.28 11.2 60.608 33.664 82.176 22.4 22.016 49.152 33.024 80.064 33.024h172.928c31.616 0 59.904-11.392 84.928-34.048 20.16-18.368 30.208-40.448 30.208-66.368v-51.84c0-36.928-2.752-62.144-8.256-75.648a195.52 195.52 0 0 0-16.832-30.272z m-291.52-34.752v-108.608c0-33.664 13.44-50.56 40.256-50.56h137.856c18.112 0 32.064 4.992 41.92 14.848a39.424 39.424 0 0 1 11.328 28.48V296.448c0 10.048-4.48 19.456-13.44 28.16a46.464 46.464 0 0 1-34.304 13.056H620.16z m0 75.968h188.8a43.648 43.648 0 0 1 30.528 10.688 38.4 38.4 0 0 1 12.032 29.184v58.112a44.16 44.16 0 0 1-9.6 29.568c-7.552 8.96-18.56 13.44-33.024 13.44h-148.864a40.192 40.192 0 0 1-24.704-8.32 34.944 34.944 0 0 1-15.168-28.48v-104.192z" horiz-adv-x="1024" />
<glyph glyph-name="Excelbiao" unicode="&#59061;" d="M21.952 101.568l54.016 175.936c5.952 19.52 12.608 34.112 19.904 43.84-10.56 20.352-20.992 47.424-31.296 81.28L31.68 510.656h83.264l29.696-96.256c5.952-21.952 11.072-35.712 15.424-41.408 8.96-11.136 22.464-16.64 40.64-16.64 25.728 0 42.24 11.52 49.536 34.496l36.992 119.808h84.864L322.56 353.088a444.8 444.8 0 0 0-15.424-30.464l15.424-30.528 59.328-190.528H295.68l-46.72 149.952c-4.032 13.248-9.216 21.888-15.424 25.984a56.832 56.832 0 0 1-32.896 8.96c-25.472 0-41.6-10.88-48.384-32.512l-47.936-152.32H21.952z m415.168 619.52h86.528v-619.904H437.12V721.152z m141.44-620.736v76.8h248.576c24.32 0 36.544 9.472 36.544 28.416v36.16c0 20.032-12.16 30.08-36.544 30.08h-139.328c-34.432 0-61.12 9.728-80 29.248-19.584 20.032-29.312 42.496-29.312 67.456v42.24c0 28.736 9.728 52.48 29.248 71.488 19.52 19.2 43.904 28.8 73.152 28.8H940.8v-76.736h-237.632a44.672 44.672 0 0 1-27.008-8.128c-7.488-5.376-11.2-12.032-11.2-19.84v-31.36c0-5.632 2.688-11.072 8.128-16.256 7.296-6.72 19.2-10.112 35.776-10.112h133.632c33.856 0 60.544-10.176 80-30.464 18.432-19.2 27.648-39.68 27.648-61.376v-56.448c0-29.824-9.6-53.76-28.8-71.936-19.52-18.688-47.552-28.032-84.096-28.032H578.496z" horiz-adv-x="1024" />
<glyph glyph-name="Excelbiao" unicode="&#59061;" d="M21.952 101.56799999999998l54.016 175.936c5.952 19.52 12.608 34.112 19.904 43.84-10.56 20.352-20.992 47.424-31.296 81.28L31.68 510.656h83.264l29.696-96.256c5.952-21.952 11.072-35.712 15.424-41.408 8.96-11.136 22.464-16.64 40.64-16.64 25.728 0 42.24 11.52 49.536 34.496l36.992 119.808h84.864L322.56 353.08799999999997a444.8 444.8 0 0 0-15.424-30.464l15.424-30.528 59.328-190.528H295.68l-46.72 149.952c-4.032 13.248-9.216 21.888-15.424 25.984a56.832 56.832 0 0 1-32.896 8.96c-25.472 0-41.6-10.88-48.384-32.512l-47.936-152.32H21.952z m415.168 619.52h86.528v-619.904H437.12V721.152z m141.44-620.736v76.8h248.576c24.32 0 36.544 9.472 36.544 28.416v36.16c0 20.032-12.16 30.08-36.544 30.08h-139.328c-34.432 0-61.12 9.728-80 29.248-19.584 20.032-29.312 42.496-29.312 67.456v42.24c0 28.736 9.728 52.48 29.248 71.488 19.52 19.2 43.904 28.8 73.152 28.8H940.8v-76.736h-237.632a44.672 44.672 0 0 1-27.008-8.128c-7.488-5.376-11.2-12.032-11.2-19.84v-31.36c0-5.632 2.688-11.072 8.128-16.256 7.296-6.72 19.2-10.112 35.776-10.112h133.632c33.856 0 60.544-10.176 80-30.464 18.432-19.2 27.648-39.68 27.648-61.376v-56.448c0-29.824-9.6-53.76-28.8-71.936-19.52-18.688-47.552-28.032-84.096-28.032H578.496z" horiz-adv-x="1024" />
<glyph glyph-name="tianjiabiao" unicode="&#59063;" d="M176.832 10.688V756.416l-0.256 0.128h409.536v-186.432c0-41.152 33.408-74.624 74.496-74.624h185.664c0.064-0.64 0.32-1.408 0.32-1.92l0.256-482.944H176.768z m620.48 559.36l-136.768 0.064V719.104l136.768-149.056z m88.448 13.824l-190.528 207.552c-21.12 23.04-58.88 39.68-89.728 39.68H176.576A74.56 74.56 0 0 1 102.4 756.48v-745.728c0-41.152 33.088-74.496 74.112-74.688h670.336a74.496 74.496 0 0 1 74.112 74.752V493.44c0 30.144-14.784 68.16-35.2 90.368z m-335.296-338.304h109.44c20.672 0 37.44 16.64 37.44 37.184A37.376 37.376 0 0 1 659.904 320H550.4V432.256a37.376 37.376 0 0 1-37.184 37.504 37.376 37.376 0 0 1-37.248-37.504V320H359.936a37.376 37.376 0 0 1-37.504-37.248c0-20.48 16.832-37.184 37.504-37.184h116.096v-113.28c0-20.672 16.64-37.44 37.248-37.44a37.376 37.376 0 0 1 37.184 37.504v113.216z" horiz-adv-x="1024" />
<glyph glyph-name="tianjiabiao" unicode="&#59063;" d="M176.832 10.687999999999988V756.4159999999999l-0.256 0.128h409.536v-186.432c0-41.152 33.408-74.624 74.496-74.624h185.664c0.064-0.64 0.32-1.408 0.32-1.92l0.256-482.944H176.768z m620.48 559.36l-136.768 0.064V719.104l136.768-149.056z m88.448 13.824l-190.528 207.552c-21.12 23.04-58.88 39.68-89.728 39.68H176.576A74.56 74.56 0 0 1 102.4 756.48v-745.728c0-41.152 33.088-74.496 74.112-74.688h670.336a74.496 74.496 0 0 1 74.112 74.752V493.44c0 30.144-14.784 68.16-35.2 90.368z m-335.296-338.304h109.44c20.672 0 37.44 16.64 37.44 37.184A37.376 37.376 0 0 1 659.904 320H550.4V432.256a37.376 37.376 0 0 1-37.184 37.504 37.376 37.376 0 0 1-37.248-37.504V320H359.936a37.376 37.376 0 0 1-37.504-37.248c0-20.48 16.832-37.184 37.504-37.184h116.096v-113.28c0-20.672 16.64-37.44 37.248-37.44a37.376 37.376 0 0 1 37.184 37.504v113.216z" horiz-adv-x="1024" />
<glyph glyph-name="ABC" unicode="&#59064;" d="M108.8 143.36l109.696 370.624c9.152 30.848 21.248 55.36 36.224 73.472 20.224 24.768 47.488 37.184 81.92 37.184 34.112 0 60.48-9.664 79.04-29.056 14.592-15.424 25.6-35.2 33.152-59.392l119.36-393.088H490.368L444.416 289.92H233.472l-49.024-146.88L108.8 143.36z m140.928 215.68h175.04l-45.952 153.408a74.24 74.24 0 0 1-15.36 26.56 32 32 0 0 1-25.28 11.52 35.84 35.84 0 0 1-28.8-14.656 63.168 63.168 0 0 1-12.8-23.424L249.792 359.04z m346.56 262.144h66.56V463.36h161.92c30.208 0 53.12-7.36 68.736-22.144 15.36-14.592 23.104-31.36 23.104-50.304v-165.632c0-26.496-7.616-46.72-22.784-60.608a76.864 76.864 0 0 0-54.08-21.888h-164.096c-18.56 0-34.944 4.992-49.344 14.976-20.032 13.568-30.016 37.76-30.016 72.832V621.184z m96.896-419.328h123.712c12.736 0 21.504 2.56 26.24 7.808 4.608 4.992 6.912 13.184 6.912 24.64V373.76c0 20.48-9.344 30.656-28.16 30.656h-118.08c-15.232 0-24.704-1.408-28.416-4.096a26.24 26.24 0 0 1-12.544-22.784v-141.888c0-22.528 10.112-33.728 30.336-33.728z" horiz-adv-x="1024" />
<glyph glyph-name="ABC" unicode="&#59064;" d="M249.6 703.744h524.16v-83.328H560.512V64H463.744V620.4159999999999H249.6z" horiz-adv-x="1024" />
<glyph glyph-name="Sqlbiao" unicode="&#59065;" d="M20.736 164.352v76.8h248.576c24.384 0 36.608 9.472 36.608 28.416v36.16c0 20.032-12.16 30.08-36.608 30.08H129.984c-34.368 0-61.056 9.728-80 29.248-19.52 20.032-29.248 42.496-29.248 67.456v42.24c0 28.736 9.728 52.48 29.248 71.488 19.456 19.2 43.84 28.8 73.088 28.8h260.032v-76.736H145.408a44.672 44.672 0 0 1-27.008-8.128c-7.424-5.376-11.136-12.032-11.136-19.84v-31.36c0-5.632 2.688-11.072 8.128-16.256 7.296-6.72 19.2-10.112 35.712-10.112H284.8c33.856 0 60.544-10.176 80-30.464 18.432-19.2 27.648-39.68 27.648-61.376v-56.448c0-29.824-9.6-53.76-28.8-71.936-19.584-18.688-47.616-28.032-84.16-28.032H20.736z m743.808 5.312H548.48c-29.76 0-51.2 4.032-64.192 12.16-31.36 19.84-47.104 47.296-47.104 82.496V488.128c0 26.048 8.64 47.68 25.984 65.024 16.832 16.512 38.72 24.768 65.856 24.768h218.112c35.2 0 62.208-10.816 80.896-32.512 15.36-17.856 23.104-40.448 23.104-67.84v-452.16h-86.528v144.256zM552.96 244.416l165.76-0.448c18.432 0 30.592 3.264 36.544 9.792 6.272 6.464 9.344 17.216 9.344 32.064V458.112c0 15.68-2.816 26.368-8.512 32.064-7.296 7.296-20.864 11.008-40.64 11.008H561.408a39.36 39.36 0 0 1-29.632-11.84 26.624 26.624 0 0 1-8.128-19.456v-158.464c0-32.512 3.008-51.584 8.96-57.28 6.784-6.464 13.504-9.728 20.288-9.728z m351.808 540.736h86.528v-619.968h-86.528V785.152z" horiz-adv-x="1024" />
<glyph glyph-name="Sqlbiao" unicode="&#59065;" d="M20.736 164.35199999999998v76.8h248.576c24.384 0 36.608 9.472 36.608 28.416v36.16c0 20.032-12.16 30.08-36.608 30.08H129.984c-34.368 0-61.056 9.728-80 29.248-19.52 20.032-29.248 42.496-29.248 67.456v42.24c0 28.736 9.728 52.48 29.248 71.488 19.456 19.2 43.84 28.8 73.088 28.8h260.032v-76.736H145.408a44.672 44.672 0 0 1-27.008-8.128c-7.424-5.376-11.136-12.032-11.136-19.84v-31.36c0-5.632 2.688-11.072 8.128-16.256 7.296-6.72 19.2-10.112 35.712-10.112H284.8c33.856 0 60.544-10.176 80-30.464 18.432-19.2 27.648-39.68 27.648-61.376v-56.448c0-29.824-9.6-53.76-28.8-71.936-19.584-18.688-47.616-28.032-84.16-28.032H20.736z m743.808 5.312H548.48c-29.76 0-51.2 4.032-64.192 12.16-31.36 19.84-47.104 47.296-47.104 82.496V488.128c0 26.048 8.64 47.68 25.984 65.024 16.832 16.512 38.72 24.768 65.856 24.768h218.112c35.2 0 62.208-10.816 80.896-32.512 15.36-17.856 23.104-40.448 23.104-67.84v-452.16h-86.528v144.256zM552.96 244.41600000000005l165.76-0.448c18.432 0 30.592 3.264 36.544 9.792 6.272 6.464 9.344 17.216 9.344 32.064V458.112c0 15.68-2.816 26.368-8.512 32.064-7.296 7.296-20.864 11.008-40.64 11.008H561.408a39.36 39.36 0 0 1-29.632-11.84 26.624 26.624 0 0 1-8.128-19.456v-158.464c0-32.512 3.008-51.584 8.96-57.28 6.784-6.464 13.504-9.728 20.288-9.728z m351.808 540.736h86.528v-619.968h-86.528V785.152z" horiz-adv-x="1024" />
<glyph glyph-name="normal" unicode="&#59066;" d="M622.016 673.408L216.128 267.58399999999995l-11.776-129.472 129.472 11.776 405.824 405.888L622.08 673.408z m54.272 54.336l117.696-117.696 54.144 54.208-117.632 117.632-54.208-54.144zM140.8-6.1440000000000055H832a38.4 38.4 0 0 0 0-76.8H140.8a38.4 38.4 0 0 0 0 76.8z m227.648 82.048l-248.96-22.592 22.656 248.896L685.248 845.248a64 64 0 0 0 90.496 0l135.744-135.744a64 64 0 0 0 0-90.496l-543.04-543.104z" horiz-adv-x="1024" />
@ -108,7 +108,7 @@ t9.5 -10.5t21.5 -4h37h67h81h80h64h36q23 0 34 12t2 38q-5 13 -9.5 30.5t-9.5 34.5q-
<glyph glyph-name="normal16" unicode="&#59082;" d="M256 633.6a38.4 38.4 0 1 0 0 76.8h576a38.4 38.4 0 0 0 0-76.8H256z m0-384a38.4 38.4 0 1 0 0 76.8h576a38.4 38.4 0 0 0 0-76.8H256z m0 192a38.4 38.4 0 1 0 0 76.8h320a38.4 38.4 0 1 0 0-76.8H256z m0-384a38.4 38.4 0 0 0 0 76.8h320a38.4 38.4 0 0 0 0-76.8H256z" horiz-adv-x="1024" />
<glyph glyph-name="normal17" unicode="&#59083;" d="M1004.567189 527.865835a541.929984 541.929984 0 0 0 0-287.73231 42.878258 42.878258 0 0 0-43.774221-31.806708 83.644602 83.644602 0 0 1-79.356776-43.710225 89.404368 89.404368 0 0 1 2.815885-92.476243 44.79818 44.79818 0 0 0-4.863802-54.845772 507.627378 507.627378 0 0 0-242.294157-143.99415 42.238284 42.238284 0 0 0-48.638024 23.103062A84.66856 84.66856 0 0 1 511.979201-54.766495a84.66856 84.66856 0 0 1-76.476893-48.830016 42.238284 42.238284 0 0 0-48.638024-23.039064 507.435385 507.435385 0 0 0-242.294157 143.99415 44.79818 44.79818 0 0 0-4.9278 54.717777c18.111264 28.030861 19.19922 63.485421 2.815886 92.54024a84.796555 84.796555 0 0 1-79.356776 43.710225 42.622268 42.622268 0 0 0-43.710225 31.806708A539.242093 539.242093 0 0 0 0 383.99968c0 48.638024 6.463737 97.020059 19.391212 143.866155a42.110289 42.110289 0 0 0 43.710225 31.806708c32.382684-2.239909 63.229431 14.719402 79.356776 43.710225a89.404368 89.404368 0 0 1-2.815886 92.476243 44.79818 44.79818 0 0 0 4.9278 54.845772A507.947365 507.947365 0 0 0 386.864284 894.698933a42.238284 42.238284 0 0 0 48.638024-23.103062c14.27142-30.078778 44.030211-48.958011 76.476893-48.894013 32.510679-0.063997 62.205473 18.879233 76.476893 48.894013a42.238284 42.238284 0 0 0 48.638024 23.039064 508.075359 508.075359 0 0 0 242.294157-143.99415 44.79818 44.79818 0 0 0 4.863802-54.717777c-18.047267-27.774872-19.135223-63.677413-2.815885-92.54024 16.127345-29.05482 46.974092-46.014131 79.356776-43.710225 20.095184 1.407943 38.39844-11.903516 43.774221-31.806708z m-74.876958-233.526513a453.357582 453.357582 0 0 1 0 179.320716 169.465115 169.465115 0 0 0-122.107039 85.756516 179.000728 179.000728 0 0 0-11.263542 151.673838 422.254846 422.254846 0 0 1-150.969867 89.788352 167.86518 167.86518 0 0 0-266.805161 0 422.574833 422.574833 0 0 1-150.90587-89.788352 178.936731 178.936731 0 0 0-11.263542-151.673838 169.465115 169.465115 0 0 0-122.171037-85.756516 455.661489 455.661489 0 0 1 0-179.320716 169.401118 169.401118 0 0 0 122.235034-85.88451c26.046942-46.078128 30.142775-101.947858 11.199545-151.545844a422.830822 422.830822 0 0 1 150.90587-89.724355 167.86518 167.86518 0 0 0 266.869158-0.063997 422.63883 422.63883 0 0 1 150.90587 89.788352 178.808736 178.808736 0 0 0 11.263542 151.545844A169.401118 169.401118 0 0 0 929.690231 294.40332zM511.979201 607.99058c123.514982 0 223.9909-100.475918 223.9909-223.9909S635.494183 160.00878 511.979201 160.00878 287.9883 260.484698 287.9883 383.99968 388.464219 607.99058 511.979201 607.99058z m0-358.38544c74.108989 0 134.39454 60.349548 134.39454 134.39454 0 74.108989-60.285551 134.39454-134.39454 134.39454-74.108989 0-134.39454-60.285551-134.39454-134.39454 0-74.044992 60.285551-134.39454 134.39454-134.39454z" horiz-adv-x="1024" />
<glyph glyph-name="normal17" unicode="&#59083;" d="M989.29472 523.4051511499999a525.12697912 525.12697912 0 0 0 0-278.81092246 41.54878076 41.54878076 0 0 0-42.41696366-30.82051369 81.05112923 81.05112923 0 0 1-76.89625096-42.3549519 86.63230874 86.63230874 0 0 1 2.72857607-89.60893761 43.40917393 43.40917393 0 0 0-4.71299564-53.14523172 491.8879549 491.8879549 0 0 0-234.78161844-139.52948762 40.9286497 40.9286497 0 0 0-47.12996027 22.3867317A82.04333854 82.04333854 0 0 1 511.97984589-41.16216276a82.04333854 82.04333854 0 0 1-74.10566121-47.31599939 40.9286497 40.9286497 0 0 0-47.12996027-22.32471802 491.70191481 491.70191481 0 0 0-234.78161843 139.52948764 43.40917393 43.40917393 0 0 0-4.77500933 53.0212053c17.5497087 27.16174007 18.60393169 61.51700097 2.72857703 89.67095033a82.16736494 82.16736494 0 0 1-76.89625096 42.3549519 41.30072795 41.30072795 0 0 0-42.35495191 30.82051369A522.5224285 522.5224285 0 0 0 15.875 383.99968992000004c0 47.12996027 6.26332328 94.0118687 18.78997081 139.40546123a40.8046233 40.8046233 0 0 0 42.35495191 30.82051369c31.37863105-2.17045869 61.26894815 14.26301429 76.89625096 42.35495191a86.63230874 86.63230874 0 0 1-2.72857703 89.60893761 43.40917393 43.40917393 0 0 0 4.77500933 53.14523171A492.19802043 492.19802043 0 0 0 390.74422441 878.8642737a40.9286497 40.9286497 0 0 0 47.12996027-22.3867317c13.82892236-29.14615964 42.66501647-47.4400258 74.10566121-47.37801212 31.50265746-0.06201272 60.27673885 18.29386615 74.10566121 47.37801212a40.9286497 40.9286497 0 0 0 47.12996027 22.32471801 492.32204587 492.32204587 0 0 0 234.78161844-139.52948764 43.40917393 43.40917393 0 0 0 4.71299564-53.02120529c-17.48769597-26.91368822-18.54191897-61.70304009-2.72857607-89.67095033 15.6273028-28.15395034 45.51761991-44.58742332 76.89625097-42.35495191 19.47211555 1.36428852 37.20786337-11.53443725 42.41696365-30.82051369z m-72.55533357-226.28582278a439.30084056 439.30084056 0 0 1 0 173.7607231 164.21070348 164.21070348 0 0 0-118.32100532 83.09756152 173.45065659 173.45065659 0 0 0-10.91430619 146.97106031 409.16247162 409.16247162 0 0 1-146.28891654 87.00438699 162.66037583 162.66037583 0 0 0-258.5326377 0 409.47253715 409.47253715 0 0 1-146.22690381-87.00438698 173.38864388 173.38864388 0 0 0-10.91430621-146.97106032 164.21070348 164.21070348 0 0 0-118.383019-83.09756152 441.53331295 441.53331295 0 0 1 0-173.7607231 164.14869076 164.14869076 0 0 0 118.44503172-83.22158696c25.23933418-44.64943604 29.20817236-98.78687705 10.85229349-146.84703486a409.720589 409.720589 0 0 1 146.22690381-86.94237428 162.66037583 162.66037583 0 0 0 258.59465042-0.06201271 409.53454987 409.53454987 0 0 1 146.22690382 87.00438699 173.26461748 173.26461748 0 0 0 10.91430619 146.84703486A164.14869076 164.14869076 0 0 0 916.73938643 297.18134206zM511.97984589 601.0455595799999c119.68529384 0 217.04586966-97.36057581 217.04586965-217.04586966S631.66513973 166.95382027000005 511.97984589 166.95382027000005 294.93397527 264.31439608000005 294.93397527 383.99968992000004 392.29455206 601.0455595799999 511.97984589 601.0455595799999z m0-347.27339145c71.81117611 0 130.22752179 58.4783584 130.2275218 130.22752179 0 71.81117611-58.41634569 130.22752179-130.2275218 130.22752179-71.81117611 0-130.22752179-58.41634569-130.22752179-130.22752179 0-71.74916339 58.41634569-130.22752179 130.22752179-130.22752179z" horiz-adv-x="1024" />
<glyph glyph-name="normal18" unicode="&#59084;" d="M748.8 761.6v-755.2h57.6a32 32 0 0 0 32-32v-12.8a32 32 0 0 0-32-32h-192a32 32 0 0 0-32 32v12.8a32 32 0 0 0 32 32h57.6V761.6h-57.6a32 32 0 0 0-32 32v12.8a32 32 0 0 0 32 32h192a32 32 0 0 0 32-32v-12.8a32 32 0 0 0-32-32h-57.6zM121.6 294.4h473.6v-76.8h-512a38.4 38.4 0 0 0-38.4 38.4V512a38.4 38.4 0 0 0 38.4 38.4h512v-76.8H121.6v-179.2z m691.2 0h89.6V473.6h-89.6V550.4h128a38.4 38.4 0 0 0 38.4-38.4v-256a38.4 38.4 0 0 0-38.4-38.4h-128V294.4z" horiz-adv-x="1024" />
@ -126,16 +126,16 @@ t9.5 -10.5t21.5 -4h37h67h81h80h64h36q23 0 34 12t2 38q-5 13 -9.5 30.5t-9.5 34.5q-
<glyph glyph-name="normal22" unicode="&#59088;" d="M508.352 432.896l-248.96 248.96a32 32 0 1 1-45.248-45.312l248.96-248.896-248.96-248.896a32 32 0 0 1 45.312-45.248l248.896 248.96 248.896-248.96a32 32 0 1 1 45.248 45.248l-248.96 248.96 248.96 248.832a32 32 0 1 1-45.248 45.312l-248.96-248.96z" horiz-adv-x="1024" />
<glyph glyph-name="normal23" unicode="&#59089;" d="M0 123.52c206.08-113.856 520.32-134.272 509.824 313.728H256l384 384 384-384h-248.32c13.888-576-472.256-594.56-775.68-313.792" horiz-adv-x="1034" />
<glyph glyph-name="normal23" unicode="&#59089;" d="M0 123.51999999999998c206.08-113.856 520.32-134.272 509.824 313.728H256l384 384 384-384h-248.32c13.888-576-472.256-594.56-775.68-313.792" horiz-adv-x="1034" />
<glyph glyph-name="normal24" unicode="&#59090;" d="M1024 644.48c-206.08 113.856-520.32 134.272-509.824-313.728h253.824l-384-384-384 384h248.384c-13.952 576 472.192 594.56 775.68 313.792" horiz-adv-x="1034" />
<glyph glyph-name="normal25" unicode="&#59091;" d="M262.208-128C148.416 78.08 128 392.32 576 381.824V128l384 384-384 384v-248.384C0 661.568-18.56 175.424 262.208-128" horiz-adv-x="1024" />
<glyph glyph-name="normal25" unicode="&#59091;" d="M262.208-128C148.416 78.08000000000004 128 392.32 576 381.82399999999996V128l384 384-384 384v-248.384C0 661.568-18.56 175.42399999999998 262.208-128" horiz-adv-x="1024" />
<glyph glyph-name="normal26" unicode="&#59092;" d="M761.792-128C875.584 78.08 896 392.32 448 381.824V128L64 512l384 384v-248.384c576 13.952 594.56-472.192 313.792-775.616" horiz-adv-x="1024" />
<glyph glyph-name="normal26" unicode="&#59092;" d="M761.792-128C875.584 78.08000000000004 896 392.32 448 381.82399999999996V128L64 512l384 384v-248.384c576 13.952 594.56-472.192 313.792-775.616" horiz-adv-x="1024" />
<glyph glyph-name="normal27" unicode="&#59093;" d="M512 429.248L376.256 564.992a32 32 0 1 1-45.248-45.248L466.688 384l-135.68-135.744a32 32 0 0 1 45.248-45.248L512 338.688l135.744-135.68a32 32 0 1 1 45.248 45.248L557.312 384l135.68 135.744a32 32 0 1 1-45.248 45.248L512 429.312zM512 0A384 384 0 1 0 512 768a384 384 0 0 0 0-768z" horiz-adv-x="1024" />
@ -144,19 +144,19 @@ t9.5 -10.5t21.5 -4h37h67h81h80h64h36q23 0 34 12t2 38q-5 13 -9.5 30.5t-9.5 34.5q-
<glyph glyph-name="normal28" unicode="&#59094;" d="M531.84 549.12l236.224-295.04a24.896 24.896 0 0 0-19.008-40.448l-462.08-8.064a24.96 24.96 0 0 0-20.416 39.808l225.792 302.976a24.96 24.96 0 0 0 39.488 0.704z" horiz-adv-x="1024" />
<glyph glyph-name="normal29" unicode="&#59095;" d="M531.712 219.52a24.96 24.96 0 0 0-39.488 0l-231.04 299.072a24.96 24.96 0 0 0 19.712 40.128h462.144a24.896 24.896 0 0 0 19.712-40.128l-231.04-299.072z" horiz-adv-x="1024" />
<glyph glyph-name="normal29" unicode="&#59095;" d="M531.712 219.51999999999998a24.96 24.96 0 0 0-39.488 0l-231.04 299.072a24.96 24.96 0 0 0 19.712 40.128h462.144a24.896 24.896 0 0 0 19.712-40.128l-231.04-299.072z" horiz-adv-x="1024" />
<glyph glyph-name="normal30" unicode="&#59096;" d="M678.4 403.712l-299.072 231.04a24.896 24.896 0 0 1-40.128-19.712v-462.144a24.96 24.96 0 0 1 40.128-19.712l299.072 231.04a24.96 24.96 0 0 1 0 39.488" horiz-adv-x="1024" />
<glyph glyph-name="normal31" unicode="&#59097;" d="M342.464 403.712l299.072 231.04a24.896 24.896 0 0 0 40.128-19.712v-462.144a24.96 24.96 0 0 0-40.128-19.712L342.4 364.224a24.96 24.96 0 0 0 0 39.488" horiz-adv-x="1024" />
<glyph glyph-name="normal31" unicode="&#59097;" d="M342.464 403.712l299.072 231.04a24.896 24.896 0 0 0 40.128-19.712v-462.144a24.96 24.96 0 0 0-40.128-19.712L342.4 364.22400000000005a24.96 24.96 0 0 0 0 39.488" horiz-adv-x="1024" />
<glyph glyph-name="normal32" unicode="&#59098;" d="M557.248 389.504l-163.84-163.84a32 32 0 0 1 45.248-45.312l180.992 180.992a32 32 0 0 1 8.96 28.16 32 32 0 0 1-8.96 28.16L438.656 598.592a32 32 0 1 1-45.312-45.312l163.904-163.84z" horiz-adv-x="1024" />
<glyph glyph-name="normal33" unicode="&#59099;" d="M506.496 338.752l-163.84 163.84a32 32 0 1 1-45.248-45.248l180.992-180.992a32 32 0 0 1 28.16-8.96 32 32 0 0 1 28.096 8.96l180.992 180.992a32 32 0 0 1-45.248 45.248l-163.84-163.84z" horiz-adv-x="1024" />
<glyph glyph-name="normal33" unicode="&#59099;" d="M506.496 338.75199999999995l-163.84 163.84a32 32 0 1 1-45.248-45.248l180.992-180.992a32 32 0 0 1 28.16-8.96 32 32 0 0 1 28.096 8.96l180.992 180.992a32 32 0 0 1-45.248 45.248l-163.84-163.84z" horiz-adv-x="1024" />
<glyph glyph-name="normal34" unicode="&#59100;" d="M160.96 443.008a311.168 311.168 0 1 0 622.4 0 311.168 311.168 0 0 0-622.4 0m768-440.576l-174.08 174.016a387.072 387.072 0 0 1 106.24 266.56 388.928 388.928 0 1 1-388.928-388.928 386.56 386.56 0 0 1 223.808 71.232l177.92-177.92a39.04 39.04 0 0 1 55.04 55.04" horiz-adv-x="1024" />
@ -204,22 +204,22 @@ t9.5 -10.5t21.5 -4h37h67h81h80h64h36q23 0 34 12t2 38q-5 13 -9.5 30.5t-9.5 34.5q-
<glyph glyph-name="normal43" unicode="&#59115;" d="M512-64A448 448 0 1 0 512 832a448 448 0 0 0 0-896z m0 64A384 384 0 1 1 512 768a384 384 0 0 1 0-768z m7.68 640c45.44 0 82.432-12.352 110.4-38.528 27.968-25.472 41.92-60.352 41.92-104.768 0-36.352-9.088-66.176-25.856-89.408-6.272-7.296-26.56-26.88-60.096-57.472-12.544-10.88-21.632-23.296-27.904-36.352a106.24 106.24 0 0 1-10.496-47.296V256H467.2v10.24c0 27.52 4.224 51.584 14.016 71.232 9.088 19.648 36.288 50.176 81.728 92.352l8.32 10.176c12.608 16 18.944 33.472 18.944 51.648 0 24-7.04 42.88-19.584 56.704-13.248 13.824-32.128 20.352-55.872 20.352-30.72 0-52.48-9.408-65.728-29.824-11.84-16.64-17.408-40.704-17.408-71.232H352c0 53.76 14.72 96 45.44 126.528C427.456 624.704 467.968 640 519.68 640z m-8.064-448c18.112 0 33.856-5.952 46.208-17.792 11.52-11.904 18.176-27.136 18.176-45.76A62.784 62.784 0 0 0 511.616 64a63.488 63.488 0 0 0-45.44 18.624C453.76 94.528 448 109.76 448 128.448c0 18.624 5.76 33.92 18.176 45.76a62.72 62.72 0 0 0 45.44 17.792z" horiz-adv-x="1024" />
<glyph glyph-name="fangda" unicode="&#59116;" d="M214.656 425.344l338.688-338.688a32 32 0 0 0-22.592-54.656H192a32 32 0 0 0-32 32V402.752a32 32 0 0 0 54.656 22.592z m594.688-82.688L470.656 681.344a32 32 0 0 0 22.592 54.656H832a32 32 0 0 0 32-32v-338.752a32 32 0 0 0-54.656-22.592z" horiz-adv-x="1024" />
<glyph glyph-name="fangda" unicode="&#59116;" d="M611.264 537.6H448a38.4 38.4 0 1 0 0 76.8h256a38.4 38.4 0 0 0 38.4-38.4v-256a38.4 38.4 0 0 0-76.8 0V483.264l-128.704-128.64a38.4 38.4 0 1 0-54.336 54.272L611.264 537.6zM422.4 38.39999999999998H832a25.6 25.6 0 0 1 25.6 25.6V704a25.6 25.6 0 0 1-25.6 25.6H192a25.6 25.6 0 0 1-25.6-25.6v-409.6H320A102.4 102.4 0 0 0 422.4 192v-153.6z m-76.8 0V192a25.6 25.6 0 0 1-25.6 25.6H166.4V64c0-14.08 11.52-25.6 25.6-25.6h153.6zM192 806.4h640A102.4 102.4 0 0 0 934.4 704v-640a102.4 102.4 0 0 0-102.4-102.4H192A102.4 102.4 0 0 0 89.6 64V704A102.4 102.4 0 0 0 192 806.4z" horiz-adv-x="1024" />
<glyph glyph-name="suoxiao" unicode="&#59118;" d="M594.432 813.568L933.12 474.88a32 32 0 0 0-22.656-54.592H571.776a32 32 0 0 0-32 32V790.976a32 32 0 0 0 54.656 22.592zM421.12-37.12L82.432 301.568a32 32 0 0 0 22.592 54.656h338.752a32 32 0 0 0 32-32v-338.752a32 32 0 0 0-54.592-22.656z" horiz-adv-x="1024" />
<glyph glyph-name="suoxiao" unicode="&#59118;" d="M358.4 284.736l158.464 158.4a38.4 38.4 0 0 0 54.272-54.272L412.8 230.39999999999998H576a38.4 38.4 0 0 0 0-76.8H320a38.4 38.4 0 0 0-38.4 38.4V448a38.4 38.4 0 1 0 76.8 0v-163.264zM601.6 729.6H192a25.6 25.6 0 0 1-25.6-25.6v-640c0-14.08 11.52-25.6 25.6-25.6h640a25.6 25.6 0 0 1 25.6 25.6V473.6H704A102.4 102.4 0 0 0 601.6 576V729.6z m76.8 0V576c0-14.08 11.52-25.6 25.6-25.6h153.6V704a25.6 25.6 0 0 1-25.6 25.6h-153.6zM192 806.4h640A102.4 102.4 0 0 0 934.4 704v-640a102.4 102.4 0 0 0-102.4-102.4H192A102.4 102.4 0 0 0 89.6 64V704A102.4 102.4 0 0 0 192 806.4z" horiz-adv-x="1024" />
<glyph glyph-name="shuaxin" unicode="&#59119;" d="M824.832 700.736l76.608 76.608a32 32 0 0 0 54.656-22.592V528a32 32 0 0 0-32-32h-226.752a32 32 0 0 0-22.656 54.592l70.976 70.976a336 336 0 0 1-570.176-189.952 55.552 55.552 0 0 0-55.04-47.616 56.32 56.32 0 0 0-55.872 63.616 448.128 448.128 0 0 0 760.256 253.12zM512 48a336.064 336.064 0 0 1 332.608 288.32 55.552 55.552 0 0 0 55.04 47.68 56.32 56.32 0 0 0 55.872-63.68 448.128 448.128 0 0 0-760.256-253.056l-65.728-65.728A38.4 38.4 0 0 0 64 28.672V233.6a38.4 38.4 0 0 0 38.4 38.4h204.928a38.4 38.4 0 0 0 27.136-65.536l-60.032-60.032A334.656 334.656 0 0 1 512 48z" horiz-adv-x="1024" />
<glyph glyph-name="shuaxin" unicode="&#59119;" d="M208.96 217.60000000000002a345.664 345.664 0 0 1 643.328 105.536 38.4 38.4 0 0 0 75.584-13.44A422.528 422.528 0 0 0 153.6 160.25599999999997V64a38.4 38.4 0 0 0-76.8 0v192a38.4 38.4 0 0 0 38.4 38.4h192a38.4 38.4 0 1 0 0-76.8H208.96z m606.08 332.8A345.6 345.6 0 0 1 170.88 440.064a38.4 38.4 0 1 0-75.84 12.352A422.464 422.464 0 0 0 870.4 607.6800000000001V704a38.4 38.4 0 0 0 76.8 0v-192a38.4 38.4 0 0 0-38.4-38.4h-192a38.4 38.4 0 0 0 0 76.8h98.24z" horiz-adv-x="1024" />
<glyph glyph-name="xiala" unicode="&#59120;" d="M536.64 178.048l288.832 373.76a31.104 31.104 0 0 1-24.64 50.24H223.104a31.168 31.168 0 0 1-24.64-50.176l288.832-373.76a31.168 31.168 0 0 1 49.28 0" horiz-adv-x="1024" />
<glyph glyph-name="weiduqiehuan" unicode="&#59121;" d="M412.8 514.112l-68.48-90.24-90.88 120.96H118.4a54.4 54.4 0 0 0-54.4 54.4 54.4 54.4 0 0 0 54.4 54.4l161.92-0.64c17.28 0 33.28-7.68 43.52-21.12l88.96-117.76z m535.232-322.432a36.992 36.992 0 0 0 0-55.68l-89.088-74.24-69.632-58.24c-21.504-18.048-52.672-1.536-52.672 27.712v78.4h-128a53.056 53.056 0 0 0-43.52 21.76l-92.16 122.88 67.84 90.24 94.72-126.08h101.12v78.08c0 29.184 31.168 45.696 52.672 27.712l69.632-58.176 89.088-74.368z m0 436.288a36.928 36.928 0 0 0 0-55.68L858.88 498.048l-69.632-58.24c-21.504-17.92-52.672-1.472-52.672 27.776V544.896H635.52l-311.68-413.312a54.272 54.272 0 0 0-43.328-21.632l-161.984-0.448H118.4a54.4 54.4 0 0 0-0.128 108.8l134.976 0.32 311.68 413.44a54.336 54.336 0 0 0 43.456 21.632h128.256V732.8c0 29.248 31.168 45.696 52.672 27.776l69.632-58.24 89.088-74.368z" horiz-adv-x="1024" />
<glyph glyph-name="weiduqiehuan" unicode="&#59121;" d="M817.472 211.20000000000005l-68.864 68.864a38.4 38.4 0 1 0 54.336 54.272l135.68-135.744a38.4 38.4 0 0 0 0-54.336l-135.68-135.68a38.4 38.4 0 0 0-54.336 54.272l71.552 71.552H637.504a38.4 38.4 0 0 0-31.488 16.448L524.928 267.264l46.784 67.2 85.888-123.264h159.872z m-6.4 435.2l-62.464 62.464a38.4 38.4 0 1 0 54.336 54.272l135.68-135.744a38.4 38.4 0 0 0 0-54.336l-135.68-135.68a38.4 38.4 0 1 0-54.336 54.272L826.56 569.6h-168.96l-291.712-418.752a38.4 38.4 0 0 0-31.552-16.448H128a38.4 38.4 0 0 0 0 76.8h186.304L606.08 629.952a38.4 38.4 0 0 0 31.488 16.448h173.568z m-364.16-132.864l-46.72-67.2L314.24 569.6H128a38.4 38.4 0 1 0 0 76.8h206.336a38.4 38.4 0 0 0 31.552-16.448l81.088-116.416z" horiz-adv-x="1024" />
<glyph glyph-name="chakanmingxi" unicode="&#59122;" d="M835.008-2.4320000000000164a192 192 0 1 0 63.36 63.36l91.968-91.968a44.736 44.736 0 1 0-63.36-63.36l-91.968 91.968z m-100.352 266.24c-56.448 0-102.4-46.016-102.4-102.464 0-56.512 45.952-102.4 102.4-102.4 56.448 0 102.4 45.952 102.4 102.4 0 56.448-45.952 102.4-102.4 102.4zM829.376 832A66.56 66.56 0 0 0 896 765.376v-406.72a253.952 253.952 0 0 1-161.28 58.688 256 256 0 0 1-256-256c0-98.176 55.808-182.4 136.96-225.344H130.56a66.56 66.56 0 0 0-66.56 66.624V765.376A66.56 66.56 0 0 0 130.56 832H829.44z m-64.192-192c16 0 28.8 14.336 28.8 32s-12.8 32-28.8 32H188.8c-15.936 0-28.8-14.336-28.8-32s12.864-32 28.8-32h576.384z m-218.88-192C562.688 448 576 462.336 576 480S562.688 512 546.304 512H189.696c-16.448 0-29.696-14.336-29.696-32s13.248-32 29.696-32h356.608zM384 256a32 32 0 0 1 0 64H192a32 32 0 0 1 0-64h192z" horiz-adv-x="1024" />
<glyph glyph-name="chakanmingxi" unicode="&#59122;" d="M405.632 41.98400000000004v-9.728l-184.256 184.32h119.232c45.12 0 65.408-24.32 65.408-69.568l-0.384-104.96m371.84 268.8c-24.768 0-35.52-30.72-35.52-30.72v-218.688c0-39.488-21.76-52.032-61.248-52.032h-206.08c-2.944 10.24-2.112 179.84-2.112 179.84 0 39.488-48.384 87.68-87.872 87.68l-185.92 1.024V602.88c0 39.488 12.48 52.032 51.968 52.032h107.904s23.744 8.704 23.936 33.728c0.128 24.192-23.936 35.968-23.936 35.968h-139.52C173.824 724.544 128 678.592 128 633.472v-416.96h1.664l-0.256-0.32L405.888-64l0.128 0.064h324.928c45.184 0 81.728 49.536 81.728 94.72V280.06399999999996s-9.28 30.72-35.2 30.72M873.216 429.952l101.824-101.824a48.256 48.256 0 0 0 0-67.904 48.256 48.256 0 0 0-67.904 0l-101.888 101.888a48.064 48.064 0 0 0-10.624 51.136 233.6 233.6 0 0 0-146.048-51.584 235.2 235.2 0 1 0 178.944 82.56l-3.136-3.136a47.744 47.744 0 0 0 48.832-11.136z m-224.64 10.112a156.8 156.8 0 1 1 0 313.6 156.8 156.8 0 0 1 0-313.6zM471.04 384H275.2c-17.92 0-32 14.08-32 32s14.08 32 32 32h139.52c15.36-24.32 33.92-46.08 56.32-64" horiz-adv-x="1024" />
<glyph glyph-name="normal44" unicode="&#59123;" d="M466.752 519.744L376.256 610.304 512 745.984A256 256 0 1 0 874.048 384l-135.744-135.744-90.56 90.496 135.808 135.744a128 128 0 1 1-181.056 181.056L466.752 519.68zM376.256 429.248L240.448 293.504a128 128 0 0 1 181.056-181.056l135.744 135.808 90.496-90.56L512 22.016A256 256 0 1 0 149.952 384l135.744 135.744L376.32 429.248z m-203.648 248.96l45.248 45.184L308.352 632.96l-45.248-45.248-90.496 90.496z m543.04-543.104l45.248 45.248 90.496-90.496-45.248-45.248-90.496 90.496zM317.056 795.52h64v-128h-64v128z m607.36-607.36h-128v64h128v-64zM99.584 577.92h128v-64h-128v64z m607.36-607.36h-64v128h64v-128z" horiz-adv-x="1024" />
@ -246,7 +246,7 @@ t9.5 -10.5t21.5 -4h37h67h81h80h64h36q23 0 34 12t2 38q-5 13 -9.5 30.5t-9.5 34.5q-
<glyph glyph-name="shuxingtubiao_xilidu" unicode="&#59130;" d="M448 384a128 128 0 1 0-256.064 0.064A128 128 0 0 0 448 384z m256 448a128 128 0 1 0-0.064-256.064A128 128 0 0 0 704 832z m0-64a64 64 0 1 1 0-128 64 64 0 0 1 0 128z m0-256a128 128 0 1 0-0.064-256.064A128 128 0 0 0 704 512z m0-64a64 64 0 1 1 0-128 64 64 0 0 1 0 128z m0-256a128 128 0 1 0-0.064-256.064A128 128 0 0 0 704 192z m0-64a64 64 0 1 1 0-128 64 64 0 0 1 0 128z" horiz-adv-x="1024" />
<glyph glyph-name="shuaxin1" unicode="&#59131;" d="M856.256 252.032l-153.6-27.712a28.224 28.224 0 0 1-16.512-46.08l29.12-34.304a315.2 315.2 0 0 0-443.328 36.928 311.872 311.872 0 0 0-73.6 183.232h-0.448c0 1.728 0 3.52-0.256 5.184a35.072 35.072 0 0 1-69.248-10.496l0.256-1.024a381.312 381.312 0 0 1 89.728-221.888 385.28 385.28 0 0 1 542.08-45.056l26.56-31.232c14.08-16.64 40.896-11.712 48.256 8.704l52.672 146.624a28.16 28.16 0 0 1-31.68 37.12zM166.4 517.248L320 544.96a28.224 28.224 0 0 1 16.512 46.08l-43.2 51.008 15.424-18.176a315.136 315.136 0 0 0 443.52-36.8 311.296 311.296 0 0 0 73.728-186.112h0.448c0.064-1.024 0-2.24 0.128-3.2a35.008 35.008 0 0 1 39.872-29.312 34.752 34.752 0 0 1 29.568 34.624l-0.064 1.024c-0.128 1.408 0 2.688-0.256 4.032l-0.256 0.832a380.672 380.672 0 0 1-89.728 223.04 385.024 385.024 0 0 1-542.08 45.12l-27.968 32.768a28.352 28.352 0 0 1-48.256-8.704l-52.672-146.56c-7.424-20.416 10.24-41.216 31.68-37.376z" horiz-adv-x="1024" />
<glyph glyph-name="shuaxin1" unicode="&#59131;" d="M856.256 252.03200000000004a28.16 28.16 0 0 0 31.68-37.12l-52.672-146.56a28.352 28.352 0 0 0-48.256-8.768l-26.56 31.232a385.28 385.28 0 0 0-542.08 45.056A381.312 381.312 0 0 0 128.64 357.76l-0.256 1.024a35.072 35.072 0 0 0 69.248 10.496c0.256-1.664 0.256-3.456 0.256-5.184h0.448a311.872 311.872 0 0 1 73.6-183.232 315.2 315.2 0 0 1 443.328-36.928l-29.12 34.304a28.224 28.224 0 0 0 16.512 46.08l153.6 27.712zM166.4 517.248a28.288 28.288 0 0 0-31.68 37.44l52.672 146.496a28.352 28.352 0 0 0 48.256 8.704l27.968-32.768a385.024 385.024 0 0 0 542.08-45.12A380.672 380.672 0 0 0 895.36 408.96l0.256-0.832c0.256-1.344 0.128-2.624 0.256-4.032l0.064-1.024a34.752 34.752 0 0 0-29.568-34.624 35.008 35.008 0 0 0-39.872 29.248c-0.128 1.024 0 2.24-0.128 3.2h-0.448a311.296 311.296 0 0 1-73.664 186.176 315.136 315.136 0 0 1-443.52 36.8l-15.488 18.176 43.2-50.944c14.144-16.64 4.928-42.24-16.512-46.08l-153.6-27.776z" horiz-adv-x="1024" />
<glyph glyph-name="shuxingtubiao_yzhou" unicode="&#59132;" d="M620.416 227.52c0-10.24-3.712-19.456-11.136-27.648-7.424-8.192-20.032-12.288-38.016-12.288-17.92 0-30.592 4.352-37.952 13.056a40.832 40.832 0 0 0-11.136 26.88V425.6L386.24 671.36a45.376 45.376 0 0 0-4.608 31.104 37.12 37.12 0 0 0 18.432 26.496 63.68 63.68 0 0 0 33.344 9.216 28.16 28.16 0 0 0 26.496-15.36l112.128-211.968 108.352 208.896a32 32 0 0 0 14.528 13.44 49.92 49.92 0 0 0 18.816 4.672 60.416 60.416 0 0 0 18.432-1.984 43.84 43.84 0 0 0 13.44-5.376c12.288-8.64 18.56-17.664 18.816-26.88a57.664 57.664 0 0 0-8.064-29.184L620.416 425.6v-198.144zM902.4 64a38.4 38.4 0 0 0 0-76.736H166.4A38.4 38.4 0 0 0 128 25.6v704a38.4 38.4 0 0 0 76.8 0V64h697.6z" horiz-adv-x="1024" />
@ -312,7 +312,7 @@ t9.5 -10.5t21.5 -4h37h67h81h80h64h36q23 0 34 12t2 38q-5 13 -9.5 30.5t-9.5 34.5q-
<glyph glyph-name="shouqi" unicode="&#59151;" d="M284.736 384l292.8 292.864a38.4 38.4 0 1 1-54.272 54.272l-320-320a38.4 38.4 0 0 1 0-54.272l320-320a38.4 38.4 0 0 1 54.272 54.272L284.8 384zM540.736 384l292.8 292.864a38.4 38.4 0 1 1-54.272 54.272l-320-320a38.4 38.4 0 0 1 0-54.272l320-320a38.4 38.4 0 0 1 54.272 54.272L540.8 384z" horiz-adv-x="1024" />
<glyph glyph-name="normal55" unicode="&#59152;" d="M592.64 278.314667l125.354667-125.312a42.666667 42.666667 0 1 0-60.330667-60.330667l-125.312 125.312a256 256 0 1 0 60.330667 60.330667zM682.666667 554.666667h213.333333v-42.666667h-213.333333V554.666667z m42.666666-128h170.666667v-42.666667h-170.666667v42.666667z m-42.666666-128h213.333333v-42.666667h-213.333333v42.666667z" horiz-adv-x="1024" />
<glyph glyph-name="normal55" unicode="&#59152;" d="M426.666667 170.66666699999996a256 256 0 1 0 0 512 256 256 0 0 0 0-512z m0 405.333333A149.333333 149.333333 0 0 1 277.333333 426.666667a21.333333 21.333333 0 1 1 42.666667 0A106.666667 106.666667 0 0 0 426.666667 533.333333a21.333333 21.333333 0 1 1 0 42.666667zM549.484194 364.18023800000003l-60.339778-60.339779 241.359114-241.359115 60.339779 60.339779-241.359115 241.359115ZM725.333333 554.666667h213.333334v-42.666667h-213.333334zM768 426.666667h170.666667v-42.666667h-170.666667zM725.333333 298.66666699999996h213.333334v-42.666667h-213.333334z" horiz-adv-x="1024" />
<glyph glyph-name="normal56" unicode="&#59153;" d="M257.749333 213.333333H128v-42.666666h129.749333a128 128 0 0 1 252.501334 0H896v42.666666h-385.749333a128 128 0 0 1-252.501334 0z m256 384H128v-42.666666h385.749333a128 128 0 0 1 252.501334 0H896V597.333333h-129.749333a128 128 0 0 1-252.501334 0z" horiz-adv-x="1024" />
@ -531,7 +531,7 @@ t9.5 -10.5t21.5 -4h37h67h81h80h64h36q23 0 34 12t2 38q-5 13 -9.5 30.5t-9.5 34.5q-
<glyph glyph-name="FineIndex" unicode="&#59193;" d="M896 238.186667l-72.810667 46.08a42.666667 42.666667 0 0 1-45.568 0.042666l-160.362666-101.098666A42.666667 42.666667 0 0 1 597.333333 147.114667v-148.117334a42.666667 42.666667 0 0 1 20.821334-36.650666l-382.4-3.904a106.666667 106.666667 0 0 0-107.754667 106.666666V704a106.666667 106.666667 0 0 0 106.666667 106.666667h554.666666a106.666667 106.666667 0 0 0 106.666667-106.666667v-465.813333zM543.850667 490.453333l-103.509334 89.984a53.333333 53.333333 0 1 1-80-13.248l-80.768-83.626666a42.666667 42.666667 0 1 1 14.293334-15.893334l86.016 89.045334a53.354667 53.354667 0 0 1 45.994666 8.021333l108.714667-94.506667a53.333333 53.333333 0 1 1 94.357333 20.928l88.448 113.216a64 64 0 1 1-17.066666 12.8l-87.530667-112.021333a53.248 53.248 0 0 1-68.949333-14.698667zM234.666667 341.333333a21.333333 21.333333 0 0 1 0-42.666666h490.666666a21.333333 21.333333 0 0 1 0 42.666666H234.666667z m0-106.666666a21.333333 21.333333 0 0 1 0-42.666667h298.666666a21.333333 21.333333 0 0 1 0 42.666667H234.666667z m0-106.666667a21.333333 21.333333 0 0 1 0-42.666667h298.666666a21.333333 21.333333 0 0 1 0 42.666667H234.666667z m582.826666 102.784l134.826667-78.848a14.208 14.208 0 0 0 0-24.533333l-134.826667-78.848a28.437333 28.437333 0 0 0-28.672 0L653.653333 127.36a14.208 14.208 0 0 0 0 24.554667l135.168 78.848a28.437333 28.437333 0 0 0 28.672 0z m126.464-203.669333a10.666667 10.666667 0 0 0 10.752-18.410667l-134.826666-78.848a39.082667 39.082667 0 0 0-39.424 0l-135.168 78.848a10.666667 10.666667 0 0 0 10.752 18.410667l135.168-78.848c5.546667-3.242667 12.373333-3.242667 17.92 0l134.826666 78.848z m0 56.853333a10.666667 10.666667 0 1 0 10.752-18.410667l-134.826666-78.848a39.082667 39.082667 0 0 0-39.424 0l-135.168 78.848a10.666667 10.666667 0 0 0 10.752 18.410667l135.168-78.848c5.546667-3.242667 12.373333-3.242667 17.92 0l134.826666 78.848z" horiz-adv-x="1024" />
<glyph glyph-name="wodefenxibiao" unicode="&#59194;" d="M213.333333 789.333333h426.666667a21.333333 21.333333 0 0 0 21.333333-21.333333v-170.666667a64 64 0 0 1 64-64h170.666667a21.333333 21.333333 0 0 0 21.333333-21.333333v-426.666667a106.666667 106.666667 0 0 0-106.666666-106.666666H213.333333a106.666667 106.666667 0 0 0-106.666666 106.666666V682.666667a106.666667 106.666667 0 0 0 106.666666 106.666666z m527.082667-36.416l140.501333-140.501333A21.333333 21.333333 0 0 0 865.834667 576H768a64 64 0 0 0-64 64V737.834667a21.333333 21.333333 0 0 0 36.416 15.082666zM234.666667 618.666667a21.333333 21.333333 0 1 1 0-42.666667h256a21.333333 21.333333 0 1 1 0 42.666667H234.666667z m0-128a21.333333 21.333333 0 1 1 0-42.666667h384a21.333333 21.333333 0 0 1 0 42.666667H234.666667z m0-128a21.333333 21.333333 0 1 1 0-42.666667h384a21.333333 21.333333 0 0 1 0 42.666667H234.666667z" horiz-adv-x="1024" />
<glyph glyph-name="wodefenxibiao" unicode="&#59194;" d="M258.005333 261.33333300000004A127.957333 127.957333 0 0 1 192 149.33333300000004a21.333333 21.333333 0 0 1 42.666667 0 85.333333 85.333333 0 1 0 170.666666 0 21.333333 21.333333 0 0 1 42.666667 0c0 48.213333-26.666667 90.197333-66.005333 112a85.333333 85.333333 0 1 1-123.968 0zM106.666667 469.333333h810.666666v-384a106.666667 106.666667 0 0 0-106.666666-106.666666H213.333333a106.666667 106.666667 0 0 0-106.666666 106.666666V469.333333z m0 42.666667v170.666667a106.666667 106.666667 0 0 0 106.666666 106.666666h193.109334a85.333333 85.333333 0 0 0 58.666666-23.36l63.317334-59.946666A85.333333 85.333333 0 0 1 587.093333 682.666667H810.666667a106.666667 106.666667 0 0 0 106.666666-106.666667v-64H106.666667z m213.333333-234.666667a42.666667 42.666667 0 1 0 0 85.333334 42.666667 42.666667 0 0 0 0-85.333334z" horiz-adv-x="1024" />
<glyph glyph-name="normal94" unicode="&#59195;" d="M512 140.8c93.44 0 188.608 39.936 267.456 106.048C842.176 299.392 883.2 361.92 883.2 384c0 22.08-41.088 84.608-103.744 137.152C700.608 587.264 605.44 627.2 512 627.2c-93.44 0-188.608-39.936-267.456-106.048C181.824 468.608 140.8 406.08 140.8 384c0-22.08 41.088-84.608 103.744-137.152C323.392 180.736 418.56 140.8 512 140.8zM512 64c-247.424 0-448 224-448 320s200.576 320 448 320 448-224 448-320-200.576-320-448-320z m0 160a160 160 0 1 1 0 320 160 160 0 0 1 0-320z" horiz-adv-x="1024" />
@ -948,13 +948,7 @@ t9.5 -10.5t21.5 -4h37h67h81h80h64h36q23 0 34 12t2 38q-5 13 -9.5 30.5t-9.5 34.5q-
<glyph glyph-name="yibiaoban" unicode="&#59274;" d="M213.333333 789.333333h426.666667a21.333333 21.333333 0 0 0 21.333333-21.333333v-170.666667a64 64 0 0 1 64-64h170.666667a21.333333 21.333333 0 0 0 21.333333-21.333333v-426.666667a106.666667 106.666667 0 0 0-106.666666-106.666666H213.333333a106.666667 106.666667 0 0 0-106.666666 106.666666V682.666667a106.666667 106.666667 0 0 0 106.666666 106.666666z m527.082667-36.416l140.501333-140.501333A21.333333 21.333333 0 0 0 865.834667 576H768a64 64 0 0 0-64 64V737.834667a21.333333 21.333333 0 0 0 36.416 15.082666zM330.666667 554.666667a32 32 0 1 1-64 0v-405.333334a32 32 0 0 1 64 0V554.666667z m213.333333-106.666667a32 32 0 1 1-64 0v-298.666667a32 32 0 0 1 64 0V448z m213.333333-106.666667a32 32 0 0 1-64 0v-192a32 32 0 0 1 64 0v192z" horiz-adv-x="1024" />
<glyph glyph-name="normal105" unicode="&#59275;" d="M187.733333 405.33333333V738.13333333a25.6 25.6 0 1 0 51.2 0V405.33333333h631.466667a25.6 25.6 0 0 0 0-51.2H238.933333V64.00000033000003a25.6 25.6 0 1 0-51.2 0v290.133333H110.933333a25.6 25.6 0 1 0 0 51.2h76.8z m286.634667 224.853333l-157.610667-157.610666a25.6 25.6 0 0 0-36.181333 36.181333l170.666667 170.666667a25.6 25.6 0 0 0 29.525333 4.821333l156.544-78.293333L795.306667 724.4800003299999a25.6 25.6 0 1 0 30.72-40.96l-170.666667-128a25.6 25.6 0 0 0-26.794667-2.432L474.368 630.18666633z m0-426.666666l-157.610667-157.610667a25.6 25.6 0 0 0-36.181333 36.181333l170.666667 170.666667a25.6 25.6 0 0 0 29.525333 4.821333l156.544-78.293333 157.994667 118.528a25.6 25.6 0 1 0 30.72-40.96l-170.666667-128a25.6 25.6 0 0 0-26.794667-2.432l-154.197333 77.098667z" horiz-adv-x="1024" />
<glyph glyph-name="normal106" unicode="&#59276;" d="M849.066667 162.13333365999995H174.933333v-55.466667a25.6 25.6 0 1 0-51.2 0v55.466667H68.266667a25.6 25.6 0 1 0 0 51.2h55.466666V652.79999966a25.6 25.6 0 1 0 51.2 0V213.33333366h674.133334V652.79999966a25.6 25.6 0 1 0 51.2 0V213.33333366h55.466666a25.6 25.6 0 0 0 0-51.2h-55.466666v-55.466667a25.6 25.6 0 1 0-51.2 0v55.466667zM274.090667 408.57599966a25.6 25.6 0 0 0-36.181334 36.181334l170.666667 170.666666a25.6 25.6 0 0 0 29.525333 4.821334l156.544-78.293334L752.64 660.47999966a25.6 25.6 0 1 0 30.72-40.96l-170.666667-128a25.6 25.6 0 0 0-26.794666-2.432L431.701333 566.18666666l-157.610666-157.610667zM271.36 235.51999966000005a25.6 25.6 0 1 0-30.72 40.96l170.666667 128a25.6 25.6 0 0 0 26.794666 2.432l154.197334-77.098666 157.610666 157.610666a25.6 25.6 0 0 0 36.181334-36.181333l-170.666667-170.666667a25.6 25.6 0 0 0-29.525333-4.821333l-156.544 78.293333L271.36 235.51999966000005z" horiz-adv-x="1024" />
<glyph glyph-name="liekuandengfen" unicode="&#59277;" d="M634.112 345.6H389.952a38.72 38.72 0 0 0-5.44 0.384v-143.488a32 32 0 0 0-54.656-22.656l-179.2 179.2a32 32 0 0 0 0 45.312l179.2 179.2a32 32 0 0 0 54.656-22.592v-138.944a38.72 38.72 0 0 0 5.44 0.384h244.16V560.96a32 32 0 0 0 54.592 22.656l179.264-179.264a32 32 0 0 0 0-45.248l-179.2-179.2a32 32 0 0 0-54.656 22.592V345.6zM70.4 704a38.4 38.4 0 0 0 38.4-38.4v-563.2a38.4 38.4 0 0 0-76.8 0V665.6a38.4 38.4 0 0 0 38.4 38.4z m883.2 0a38.4 38.4 0 0 0 38.4-38.4v-563.2a38.4 38.4 0 1 0-76.8 0V665.6a38.4 38.4 0 0 0 38.4 38.4z" horiz-adv-x="1024" />
<glyph glyph-name="liekuandengfen" unicode="&#59277;" d="M286.528 422.4h450.752L623.616 536.0640000000001a38.4 38.4 0 0 0 54.336 54.272l180.992-180.992a38.4 38.4 0 0 0 0-54.336l-180.992-180.992a38.4 38.4 0 1 0-54.336 54.272L740.928 345.6H282.88l117.312-117.312a38.4 38.4 0 1 0-54.336-54.272L164.864 355.00800000000004a38.4 38.4 0 0 0 0 54.336l180.992 180.992a38.4 38.4 0 0 0 54.336-54.272L286.528 422.4zM108.8 672v-576c0-17.664-17.216-32-38.4-32-21.184 0-38.4 14.336-38.4 32v576c0 17.664 17.216 32 38.4 32 21.184 0 38.4-14.336 38.4-32z m883.2 0v-576c0-17.664-17.216-32-38.4-32-21.184 0-38.4 14.336-38.4 32v576c0 17.664 17.216 32 38.4 32 21.184 0 38.4-14.336 38.4-32z" horiz-adv-x="1024" />
<glyph glyph-name="pingtairizhi" unicode="&#59278;" d="M665.6 665.6H358.4V640a38.4 38.4 0 1 0-76.8 0v25.6H160a25.6 25.6 0 0 1-25.6-25.6v-96h755.2V640a25.6 25.6 0 0 1-25.6 25.6h-121.6V640a38.4 38.4 0 0 0-76.8 0v25.6z m76.8 76.8h121.6A102.4 102.4 0 0 0 966.4 640v-576a102.4 102.4 0 0 0-102.4-102.4h-704A102.4 102.4 0 0 0 57.6 64V640a102.4 102.4 0 0 0 102.4 102.4h121.6V768a38.4 38.4 0 1 0 76.8 0v-25.6h307.2V768a38.4 38.4 0 0 0 76.8 0v-25.6z m147.2-275.2H134.4V64c0-14.08 11.52-25.6 25.6-25.6h704a25.6 25.6 0 0 1 25.6 25.6V467.2zM256 307.20000000000005A38.4 38.4 0 1 0 256 384h512a38.4 38.4 0 0 0 0-76.8H256z m0-192A38.4 38.4 0 0 0 256 192h320a38.4 38.4 0 0 0 0-76.8H256z" horiz-adv-x="1024" />
@ -975,19 +969,19 @@ t9.5 -10.5t21.5 -4h37h67h81h80h64h36q23 0 34 12t2 38q-5 13 -9.5 30.5t-9.5 34.5q-
<glyph glyph-name="icon_mimayuechi" unicode="&#58978;" d="M725.650286 638.464l113.810285-113.810286a43.885714 43.885714 0 1 0-62.098285-62.025143L663.625143 576.365714 468.553143 381.293714a263.314286 263.314286 0 1 0-71.899429 52.224L787.748571 824.685714a43.885714 43.885714 0 0 0 62.025143 0l144.822857-144.822857a43.885714 43.885714 0 1 0-62.025142-62.025143L818.761143 731.428571 725.650286 638.537143z m-445.513143-616.594286a175.542857 175.542857 0 1 1 0 351.085715 175.542857 175.542857 0 0 1 0-351.085715z" horiz-adv-x="1024" />
<glyph glyph-name="icon_shuaxin_normal" unicode="&#58979;" d="M715.008 608.576a314.112 314.112 0 1 1 119.936-368.192 48.768 48.768 0 1 0 91.648-33.408 411.648 411.648 0 1 0-139.52 470.016v106.24a48.768 48.768 0 0 0 97.472 0v-223.424c0-26.944-21.76-48.768-48.768-48.768H612.352a48.768 48.768 0 0 0 0 97.536h102.656z" horiz-adv-x="1024" />
<glyph glyph-name="icon_shuaxin_normal" unicode="&#58979;" d="M806.4 674.816V793.6a38.4 38.4 0 1 0 76.8 0v-243.2a38.4 38.4 0 0 0-38.4-38.4H601.6a38.4 38.4 0 0 0 0 76.8h185.28a339.2 339.2 0 1 1 67.456-374.016 38.4 38.4 0 1 0 71.232-28.544h0.064A416.128 416.128 0 0 0 128 352a416 416 0 0 0 678.4 322.816z" horiz-adv-x="1024" />
<glyph glyph-name="zhibiaobinglie-hengzhou" unicode="&#58980;" d="M158.336 414.336V768h70.72v-353.664H960v-70.784H229.056v-377.216H158.336V343.552H64V414.336h94.336z m337.088 216.32L324.8 460.032a35.392 35.392 0 0 0-50.048 50.048l206.72 206.656 191.872-96 171.136 128.384a35.392 35.392 0 0 0 42.432-56.576l-206.08-154.56L495.36 630.656z m185.344-564.288l-185.344 92.672-170.624-170.56a35.392 35.392 0 1 0-50.048 49.984l206.72 206.72 191.872-96 171.136 128.384a35.392 35.392 0 0 0 42.432-56.576l-206.08-154.624z" horiz-adv-x="1024" />
<glyph glyph-name="zhibiaobinglie-hengzhou" unicode="&#58980;" d="M196.266667 388.266667H896a25.6 25.6 0 0 0 0-51.2H196.266667v-315.733334a25.6 25.6 0 0 0-51.2 0v315.733334H128a25.6 25.6 0 0 0 0 51.2h17.066667V704a25.6 25.6 0 1 0 51.2 0v-315.733333z m119.338666-343.466667a25.6 25.6 0 1 0-33.877333 38.4l176.256 155.434667a25.6 25.6 0 0 0 27.904 3.925333l149.632-70.912 159.274667 125.781333a25.6 25.6 0 0 0 31.744-40.192l-171.733334-135.594666a25.6 25.6 0 0 0-26.88-3.072l-148.736 70.485333-163.584-144.256z m0 384a25.6 25.6 0 1 0-33.877333 38.4l176.256 155.434667a25.6 25.6 0 0 0 27.904 3.925333l149.632-70.912 159.274667 125.781333a25.6 25.6 0 0 0 31.744-40.192l-171.733334-135.594666a25.6 25.6 0 0 0-26.88-3.072l-148.736 70.485333-163.584-144.256z" horiz-adv-x="1024" />
<glyph glyph-name="zhibiaobinglie-zongzhou" unicode="&#58981;" d="M480.64 51.2V768h67.2v-716.8h389.76v-67.2H86.4V51.2h394.24zM201.088 532.8l224-224-225.28-225.344a33.6 33.6 0 0 0-47.552 47.488l177.856 177.856-224 224 202.88 202.944a33.6 33.6 0 0 0 47.552-47.488L201.088 532.8z m716.8-224l-225.28-225.344a33.6 33.6 0 0 0-47.552 47.488l177.856 177.856-224 224 202.88 202.944a33.6 33.6 0 0 0 47.552-47.488l-155.456-155.456 224-224z" horiz-adv-x="1024" />
<glyph glyph-name="zhibiaobinglie-zongzhou" unicode="&#58981;" d="M537.6 68.26666699999998H896a25.6 25.6 0 0 0 0-51.2H128a25.6 25.6 0 0 0 0 51.2h358.4V725.333333a25.6 25.6 0 1 0 51.2 0v-657.066666z m277.504 252.032L622.933333 491.050667a25.6 25.6 0 0 0-0.170666 38.101333l190.549333 172.501333a25.6 25.6 0 0 0 34.389333-37.973333l-169.386666-153.344 192-170.666667a25.6 25.6 0 0 0 0.256-38.016l-187.605334-171.221333a25.6 25.6 0 0 0-34.517333 37.802667l166.613333 152.064zM153.6 491.050667a25.6 25.6 0 0 0-0.170667 38.101333l190.549334 172.501333a25.6 25.6 0 1 0 34.389333-37.973333l-169.386667-153.344 192-170.666667a25.6 25.6 0 0 0 0.256-38.016l-187.605333-171.221333a25.6 25.6 0 0 0-34.517333 37.802667l166.613333 152.064L153.6 491.050667z" horiz-adv-x="1024" />
<glyph glyph-name="zhibiaojuhe-hengzhou" unicode="&#58982;" d="M861.056 32H160.896v-64h-69.76v64H64v69.76h27.136V800h69.76v-698.24h700.16V800h69.824v-698.24H960v-69.76h-29.12v-64h-69.76v64zM608.768 453.824l-182.976 91.52-168.32-168.448a34.88 34.88 0 1 0-49.408 49.408l203.968 203.968 189.376-94.72 168.96 126.72a34.88 34.88 0 0 0 41.856-55.872L608.768 453.824z m3.2-234.304L422.592 314.24l-168.96-126.72a34.88 34.88 0 1 0-41.856 55.808l203.456 152.576 182.976-91.52 168.32 168.448a34.88 34.88 0 1 0 49.408-49.344L611.968 219.52z" horiz-adv-x="1024" />
<glyph glyph-name="zhibiaojuhe-hengzhou" unicode="&#58982;" d="M174.933333 110.93333299999995h674.133334V725.333333a25.6 25.6 0 1 0 51.2 0v-614.741333a25.6 25.6 0 0 0 0-50.517333V42.66666699999996a25.6 25.6 0 0 0-51.2 0v17.066666H174.933333v-17.066666a25.6 25.6 0 0 0-51.2 0v17.408a25.6 25.6 0 0 0 0 50.517333V725.333333a25.6 25.6 0 1 0 51.2 0v-614.4z m98.005334 83.2a25.6 25.6 0 1 0-33.877334 38.4l176.256 155.434667a25.6 25.6 0 0 0 27.904 3.925333l149.632-70.912 159.274667 125.781334a25.6 25.6 0 0 0 31.744-40.192l-171.733333-135.594667a25.6 25.6 0 0 0-26.88-3.072l-148.736 70.485333-163.584-144.256z m0 213.333334a25.6 25.6 0 1 0-33.877334 38.4l176.256 155.434666a25.6 25.6 0 0 0 27.904 3.925334l149.632-70.912 159.274667 125.781333a25.6 25.6 0 0 0 31.744-40.192l-171.733333-135.594667a25.6 25.6 0 0 0-26.88-3.072l-148.736 70.485334-163.584-144.256z" horiz-adv-x="1024" />
<glyph glyph-name="zhibiaojuhe-zongzhou" unicode="&#58983;" d="M143.168 53.888V690.56H96V761.28h47.168V832h70.72v-70.72H928v-70.784H213.888v-636.608H928v-70.72H213.888V-64H143.168v47.168H96v70.72h47.168z m337.088 440.32L309.632 323.648a35.392 35.392 0 1 0-49.984 49.984l206.656 206.72 191.872-96 171.136 128.384a35.392 35.392 0 1 0 42.432-56.64l-206.08-154.56-185.408 92.672z m188.608-330.112l-191.872 96-171.136-128.384a35.392 35.392 0 0 0-42.432 56.576l206.08 154.624 185.408-92.736 170.624 170.624a35.392 35.392 0 0 0 49.984-50.048l-206.656-206.656z" horiz-adv-x="1024" />
<glyph glyph-name="zhibiaojuhe-zongzhou" unicode="&#58983;" d="M145.408 729.6a25.6 25.6 0 0 0 50.517333 0H896a25.6 25.6 0 0 0 0-51.2H196.266667v-588.8H896a25.6 25.6 0 0 0 0-51.2H195.925333a25.6 25.6 0 0 0-50.517333 0H128a25.6 25.6 0 0 0 0 51.2h17.066667V678.4H128a25.6 25.6 0 1 0 0 51.2h17.408z m170.197333-364.8a25.6 25.6 0 1 0-33.877333 38.4l176.256 155.434667a25.6 25.6 0 0 0 27.904 3.925333l149.632-70.912 159.274667 125.781333a25.6 25.6 0 0 0 31.744-40.192l-171.733334-135.594666a25.6 25.6 0 0 0-26.88-3.072l-148.736 70.485333-163.584-144.256z m0-213.333333a25.6 25.6 0 1 0-33.877333 38.4l176.256 155.434666a25.6 25.6 0 0 0 27.904 3.925334l149.632-70.912 159.274667 125.781333a25.6 25.6 0 0 0 31.744-40.192l-171.733334-135.594667a25.6 25.6 0 0 0-26.88-3.072l-148.736 70.485334-163.584-144.256z" horiz-adv-x="1024" />
<glyph glyph-name="tuozhuai-heng" unicode="&#59282;" d="M896 469.333333a42.666667 42.666667 0 1 0-85.333333 0 42.666667 42.666667 0 0 0 85.333333 0z m-170.666667 0a42.666667 42.666667 0 1 0-85.333333 0 42.666667 42.666667 0 0 0 85.333333 0z m170.666667-170.666666a42.666667 42.666667 0 1 0-85.333333 0 42.666667 42.666667 0 0 0 85.333333 0z m-170.666667 0a42.666667 42.666667 0 1 0-85.333333 0 42.666667 42.666667 0 0 0 85.333333 0z m-170.666666 170.666666a42.666667 42.666667 0 1 0-85.333334 0 42.666667 42.666667 0 0 0 85.333334 0z m0-170.666666a42.666667 42.666667 0 1 0-85.333334 0 42.666667 42.666667 0 0 0 85.333334 0z m-170.666667 170.666666a42.666667 42.666667 0 1 0-85.333333 0 42.666667 42.666667 0 0 0 85.333333 0z m0-170.666666a42.666667 42.666667 0 1 0-85.333333 0 42.666667 42.666667 0 0 0 85.333333 0z m-170.666667 170.666666a42.666667 42.666667 0 1 0-85.333333 0 42.666667 42.666667 0 0 0 85.333333 0z m0-170.666666a42.666667 42.666667 0 1 0-85.333333 0 42.666667 42.666667 0 0 0 85.333333 0z" horiz-adv-x="1024" />
@ -1026,7 +1020,7 @@ t9.5 -10.5t21.5 -4h37h67h81h80h64h36q23 0 34 12t2 38q-5 13 -9.5 30.5t-9.5 34.5q-
<glyph glyph-name="tubiaoku-shichangyingxiao" unicode="&#58994;" d="M728.512 633.6H550.4v-627.2h115.2a38.4 38.4 0 0 0 0-76.8H358.4a38.4 38.4 0 0 0 0 76.8h115.2V633.6H295.488C375.808 503.296 416 412.608 416 361.472a160 160 0 0 0-320 0c0 51.136 40.192 141.824 120.512 272.128H166.4a38.4 38.4 0 0 0 0 76.8h307.2V800a38.4 38.4 0 1 0 76.8 0v-89.6h307.2a38.4 38.4 0 0 0 0-76.8h-50.112C887.808 503.296 928 412.608 928 361.472a160 160 0 1 0-320 0c0 51.136 40.192 141.824 120.512 272.128zM172.8 361.472a83.2 83.2 0 0 1 166.4 0c0 28.8-27.776 94.08-83.2 188.672-55.424-94.656-83.2-159.936-83.2-188.672z m512 0a83.2 83.2 0 1 1 166.4 0c0 28.8-27.776 94.08-83.2 188.672-55.424-94.656-83.2-159.936-83.2-188.672z" horiz-adv-x="1024" />
<glyph glyph-name="tubiaoku-qita-4" unicode="&#58995;" d="M512-64A448 448 0 1 0 512 832a448 448 0 0 0 0-896z m0 76.8A371.2 371.2 0 1 1 512 755.2a371.2 371.2 0 0 1 0-742.4z m-171.328 209.28a638.912 638.912 0 0 0-19.52 123.52H102.4a38.4 38.4 0 0 0 0 76.8h218.752c2.496 42.432 9.152 83.712 19.52 123.52a448.448 448.448 0 0 0-136.832 88.96c16 22.784 32 42.88 48 60.352a371.84 371.84 0 0 1 112.768-76.032A639.488 639.488 0 0 0 463.936 788.48l2.432-14.592h86.208l2.432 14.592a639.424 639.424 0 0 0 100.032-171.072 371.84 371.84 0 0 1 121.088 81.856l29.44-19.392 46.592-11.328a449.088 449.088 0 0 0-173.44-124.416c10.112-39.232 16.64-79.936 19.072-121.664H921.6a38.4 38.4 0 0 0 0-76.8h-223.808a638.976 638.976 0 0 0-19.008-121.664 449.088 449.088 0 0 0 173.888-124.992l-48.832 12.352-40.96-29.632a371.456 371.456 0 0 1-107.84 68.992 638.4 638.4 0 0 0-71.04-132.608l-48.384-4.288 4.416-4.992-30.592 2.688-30.528-2.688 4.48 4.992-48.512 4.288a638.464 638.464 0 0 0-70.272 130.752 371.712 371.712 0 0 1-110.08-73.408l-57.216 51.456a448.64 448.64 0 0 0 143.36 95.232z m97.472-50.24A562.368 562.368 0 0 1 509.44 46.08000000000004a562.368 562.368 0 0 1 71.744 126.72 373.248 373.248 0 0 1-143.04-0.896z m-24.128 73.408a449.536 449.536 0 0 0 191.168 1.024c8.064 32.128 13.376 65.28 15.68 99.328H398.08c2.24-34.368 7.68-67.904 15.872-100.352z m0 277.504A562.176 562.176 0 0 1 398.08 422.4H620.8a562.176 562.176 0 0 1-15.616 99.328 449.856 449.856 0 0 0-191.168 1.024z m24.128 73.408A372.928 372.928 0 0 1 581.12 595.2a562.368 562.368 0 0 1-71.68 126.72c-28.928-38.4-52.992-80.64-71.36-125.824z" horiz-adv-x="1024" />
<glyph glyph-name="tubiaoku-qita-4" unicode="&#58995;" d="M512-64A448 448 0 1 0 512 832a448 448 0 0 0 0-896z m0 76.8A371.2 371.2 0 1 1 512 755.2a371.2 371.2 0 0 1 0-742.4zM102.4 422.4h819.2a38.4 38.4 0 0 0 0-76.8H102.4a38.4 38.4 0 1 0 0 76.8z m332.48-404.352A637.056 637.056 0 0 0 320 384c0 153.408 53.952 294.144 143.936 404.416l2.432-14.592h87.168A561.28 561.28 0 0 1 396.8 384c0-144.128 54.144-275.648 143.232-375.232l-105.152 9.28z m149.12 0l-105.088-9.28A561.088 561.088 0 0 1 622.144 384a561.28 561.28 0 0 1-156.736 389.824h87.168l2.432 14.592A637.376 637.376 0 0 0 698.944 384a637.056 637.056 0 0 0-114.88-365.952z m-380.16 616.768c16 22.848 32 42.944 48 60.416A369.984 369.984 0 0 1 512 588.8c103.36 0 196.8 42.24 264.128 110.4l29.44-19.392 46.592-11.328A446.976 446.976 0 0 0 512 512c-119.424 0-227.84 46.72-308.16 122.88z m-6.528-507.968A446.592 446.592 0 0 0 512 256c136.384 0 258.56-60.928 340.672-157.056l-48.832 12.352-40.96-29.632A369.92 369.92 0 0 1 512 179.20000000000005a369.92 369.92 0 0 1-257.472-103.808l-57.216 51.456z" horiz-adv-x="1024" />
<glyph glyph-name="tubiaoku-tongjitubiao" unicode="&#58996;" d="M928 416a38.4 38.4 0 0 0-38.4-38.4H545.088a31.808 31.808 0 0 0-1.088 0 38.4 38.4 0 0 0-38.4 38.4V761.6a38.4 38.4 0 0 0 38.4 38.4 384 384 0 0 0 384-384z m-79.168 38.4A307.328 307.328 0 0 1 582.4 720.832V454.4h266.432z m-69.44-171.584a38.4 38.4 0 1 0 75.776-11.008l0.448-0.128a384 384 0 1 0-447.296 457.6 38.528 38.528 0 0 0 46.464-37.568 38.4 38.4 0 0 0-32.64-37.952A307.328 307.328 0 0 1 480 44.799999999999955a307.328 307.328 0 0 1 299.392 238.016z" horiz-adv-x="1024" />
@ -1077,6 +1071,93 @@ t9.5 -10.5t21.5 -4h37h67h81h80h64h36q23 0 34 12t2 38q-5 13 -9.5 30.5t-9.5 34.5q-
<glyph glyph-name="shijianziduanfuzhi" unicode="&#59011;" d="M640 64a320 320 0 1 0 0 640 320 320 0 0 0 0-640z m0 64a256 256 0 1 1 0 512 256 256 0 0 1 0-512z m26.688 261.12l81.6-81.6a26.688 26.688 0 0 0-37.76-37.76L621.12 359.296a26.624 26.624 0 0 0-7.808 18.88V544a26.688 26.688 0 1 0 53.376 0v-154.88zM64 448V512h192v-64H64z m0-128V384h192v-64H64z" horiz-adv-x="1024" />
<glyph glyph-name="jinzhi" unicode="&#59013;" d="M300.992 575.232a284.8 284.8 0 0 1 346.944-441.6l-346.944 441.6z m53.376 46.016l350.848-446.528a284.8 284.8 0 0 1-350.848 446.528zM512 28.799999999999955a355.2 355.2 0 1 0 0 710.4 355.2 355.2 0 0 0 0-710.4z" horiz-adv-x="1024" />
<glyph glyph-name="yunxu" unicode="&#59014;" d="M512 28.799999999999955a355.2 355.2 0 1 0 0 710.4 355.2 355.2 0 0 0 0-710.4z m0 70.4a284.8 284.8 0 1 1 0 569.6 284.8 284.8 0 0 1 0-569.6z m160 428.8l32-32-256-256-128 160 32 32 96-64 224 160z" horiz-adv-x="1024" />
<glyph glyph-name="anquanguanli" unicode="&#59015;" d="M473.6 454.4V601.6a38.4 38.4 0 0 0 76.8 0v-147.2h163.2a38.4 38.4 0 0 0 0-76.8H550.4v-211.2a38.4 38.4 0 0 0-76.8 0V377.6H310.4a38.4 38.4 0 0 0 0 76.8H473.6z m38.4-550.4c-116.8 0-416 214.912-416 480V723.008L512 864l416-140.992V384c0-265.088-299.2-480-416-480z m339.2 763.968L512 782.912 172.8 667.968V384c0-184.32 225.28-403.2 339.2-403.2 113.92 0 339.2 218.88 339.2 403.2V667.968z" horiz-adv-x="1024" />
<glyph glyph-name="wodefenxibiao1" unicode="&#59283;" d="M513.152 435.2H140.8v-320a57.6 57.6 0 0 1 57.6-57.6h251.648c-1.344-8.32-2.048-16.896-2.048-25.6v-51.2H198.4A134.4 134.4 0 0 0 64 115.20000000000005V832h382.976l118.336-134.4H825.6a134.4 134.4 0 0 0 134.08-124.736A160.768 160.768 0 0 1 928 576h-46.208a57.6 57.6 0 0 1-56.192 44.8H530.56L412.288 755.2H140.8V512h403.2a159.168 159.168 0 0 1-30.848-76.8zM214.4 384h192a38.4 38.4 0 0 0 0-76.8h-192a38.4 38.4 0 0 0 0 76.8z m0-128h57.6a38.4 38.4 0 0 0 0-76.8h-57.6a38.4 38.4 0 1 0 0 76.8zM768 153.60000000000002a166.4 166.4 0 1 0 0 332.8 166.4 166.4 0 0 0 0-332.8z m0 76.8a89.6 89.6 0 1 1 0 179.2 89.6 89.6 0 0 1 0-179.2zM998.4 0a38.4 38.4 0 0 0-76.8 0 153.6 153.6 0 1 1-307.2 0 38.4 38.4 0 0 0-76.8 0 230.4 230.4 0 1 0 460.8 0z" horiz-adv-x="1024" />
<glyph glyph-name="mobanguanli" unicode="&#59284;" d="M192 755.2a25.6 25.6 0 0 1-25.6-25.6v-96c0-14.08 11.52-25.6 25.6-25.6h640a25.6 25.6 0 0 1 25.6 25.6V729.6a25.6 25.6 0 0 1-25.6 25.6H192zM192 832h640a102.4 102.4 0 0 0 102.4-102.4v-96A102.4 102.4 0 0 0 832 531.2H192a102.4 102.4 0 0 0-102.4 102.4V729.6A102.4 102.4 0 0 0 192 832z m0-364.8h160a102.4 102.4 0 0 0 102.4-102.4v-320a102.4 102.4 0 0 0-102.4-102.4H192a102.4 102.4 0 0 0-102.4 102.4v320A102.4 102.4 0 0 0 192 467.2z m0-76.8a25.6 25.6 0 0 1-25.6-25.6v-320c0-14.08 11.52-25.6 25.6-25.6h160a25.6 25.6 0 0 1 25.6 25.6v320a25.6 25.6 0 0 1-25.6 25.6H192z m358.4 51.2h339.2a38.4 38.4 0 0 0 0-76.8H550.4a38.4 38.4 0 0 0 0 76.8z m0-198.4h339.2a38.4 38.4 0 1 0 0-76.8H550.4a38.4 38.4 0 1 0 0 76.8z m0-198.4h339.2a38.4 38.4 0 0 0 0-76.8H550.4a38.4 38.4 0 0 0 0 76.8z" horiz-adv-x="1024" />
<glyph glyph-name="ditupeizhi" unicode="&#59285;" d="M307.84 324.416l289.92 96.64-102.912 302.592a38.656 38.656 0 0 0-1.536 5.952H160a25.6 25.6 0 0 1-25.6-25.6v-437.376l173.44 57.792zM441.088 38.4H864a25.6 25.6 0 0 1 25.6 25.6V437.376L368.32 263.68l71.424-219.776c0.576-1.792 1.024-3.584 1.28-5.44z m-80.32 0l-65.28 200.96-155.328-51.84a38.72 38.72 0 0 0-5.76-1.408V64c0-14.08 11.52-25.6 25.6-25.6h200.768z m213.12 691.2l96.64-284.288L883.84 516.48c1.92 0.64 3.84 1.152 5.76 1.472V704a25.6 25.6 0 0 1-25.6 25.6H573.952zM160 806.4h704A102.4 102.4 0 0 0 966.4 704v-640a102.4 102.4 0 0 0-102.4-102.4h-704A102.4 102.4 0 0 0 57.6 64V704a102.4 102.4 0 0 0 102.4 102.4z" horiz-adv-x="1024" />
<glyph glyph-name="normal108" unicode="&#59286;" d="M256 320a64 64 0 1 0 0 128 64 64 0 0 0 0-128z m256 0a64 64 0 1 0 0 128 64 64 0 0 0 0-128z m256 0a64 64 0 1 0 0 128 64 64 0 0 0 0-128z" horiz-adv-x="1024" />
<glyph glyph-name="gengxinshezhi" unicode="&#59016;" d="M525.610667 99.84000000000003l49.493333-48.938667c15.445333-15.36 15.445333-40.106667 0-55.338666a39.338667 39.338667 0 0 0-27.946667-11.562667 39.978667 39.978667 0 0 0-27.989333 11.477333l-118.698667 117.461334a38.784 38.784 0 0 0 0 55.296l118.698667 117.504c15.36 15.317333 40.533333 15.317333 55.893333 0 15.488-15.36 15.488-40.106667 0-55.338667l-52.821333-52.309333h224.426667a156.629333 156.629333 0 0 1 156.458666 156.373333 156.586667 156.586667 0 0 1-146.218666 155.861333l-23.082667 1.365334-9.813333 20.821333a235.776 235.776 0 0 1-212.053334 134.656 235.776 235.776 0 0 1-212.053333-134.656l-9.813333-20.821333-23.04-1.450667a156.544 156.544 0 0 1-146.176-155.861333A156.672 156.672 0 0 1 277.333333 178.00533299999995a39.125333 39.125333 0 1 0 0-78.250666A234.837333 234.837333 0 0 0 42.666667 334.29333299999996c0 115.541333 84.778667 213.034667 196.821333 231.253334A314.026667 314.026667 0 0 0 512 725.333333a314.538667 314.538667 0 0 0 272.554667-159.573333A235.093333 235.093333 0 0 0 981.333333 334.336a234.88 234.88 0 0 0-234.666666-234.538667h-221.056z" horiz-adv-x="1024" />
<glyph glyph-name="checkbox_hover" unicode="&#59017;" d="M192 768a64 64 0 0 1-64-64v-640a64 64 0 0 1 64-64h640a64 64 0 0 1 64 64V704a64 64 0 0 1-64 64H192z m0 64h640a128 128 0 0 0 128-128v-640a128 128 0 0 0-128-128H192a128 128 0 0 0-128 128V704a128 128 0 0 0 128 128z" horiz-adv-x="1024" />
<glyph glyph-name="checkbox_semiselect" unicode="&#59018;" d="M224 768A96 96 0 0 1 128 672v-576A96 96 0 0 1 224 0h576a96 96 0 0 1 96 96v576A96 96 0 0 1 800 768h-576z m0 64h576A160 160 0 0 0 960 672v-576a160 160 0 0 0-160-160h-576A160 160 0 0 0 64 96v576A160 160 0 0 0 224 832zM320 576h384v-384H320z" horiz-adv-x="1024" />
<glyph glyph-name="checkbox_select" unicode="&#59019;" d="M192 832h640a128 128 0 0 0 128-128v-640a128 128 0 0 0-128-128H192a128 128 0 0 0-128 128V704a128 128 0 0 0 128 128z m212.992-503.296l-135.68 135.744-90.56-90.496 226.24-226.24 407.296 407.296-90.496 90.496-316.8-316.8z" horiz-adv-x="1024" />
<glyph glyph-name="normal109" unicode="&#58881;" d="M428.672 0a38.4 38.4 0 0 0 0-76.8H166.4A102.4 102.4 0 0 0 64 25.6v704A102.4 102.4 0 0 0 166.4 832h640a102.4 102.4 0 0 0 102.4-102.4v-203.712a38.4 38.4 0 0 0-76.8 0V729.6a25.6 25.6 0 0 1-25.6 25.6h-640a25.6 25.6 0 0 1-25.6-25.6v-704c0-14.08 11.52-25.6 25.6-25.6h262.272zM262.4 339.2a38.4 38.4 0 1 0 0 76.8h310.4a38.4 38.4 0 1 0 0-76.8H262.4z m0-192a38.4 38.4 0 0 0 0 76.8h193.792a38.4 38.4 0 0 0 0-76.8H262.4z m435.84 35.2a165.12 165.12 0 1 0 51.84-51.84l-67.712-67.712 55.168-55.232a32 32 0 0 0 0-45.248l-6.656-6.656a32 32 0 0 0-45.248 0l-55.168 55.232-81.152-81.152a32 32 0 0 0-45.248 0l-6.656 6.656a32 32 0 0 0 0 45.248l200.768 200.768zM262.4 531.2a38.4 38.4 0 1 0 0 76.8h464a38.4 38.4 0 0 0 0-76.8H262.4z m510.72-325.696a91.712 91.712 0 1 1 129.728 129.728 91.712 91.712 0 0 1-129.728-129.728z" horiz-adv-x="1024" />
<glyph glyph-name="normal110" unicode="&#59287;" d="M544 12.799999999999955H704V192h64v-179.2h115.2V320H140.8v-307.2H256V192h64v-179.2h160v211.2h64v-211.2zM883.2 384V499.2h-256v256H396.8v-256h-256V384h742.4zM704 576h192a64 64 0 0 0 64-64v-512a64 64 0 0 0-64-64H128a64 64 0 0 0-64 64V512a64 64 0 0 0 64 64h192V768a64 64 0 0 0 64 64h256a64 64 0 0 0 64-64v-192z" horiz-adv-x="1024" />
<glyph glyph-name="ditupeizhi_biaojidian" unicode="&#59020;" d="M805.312 306.688l-261.44-388.096a38.4 38.4 0 0 0-63.68 0L218.496 306.688l-0.192-0.128a359.552 359.552 0 0 0-11.648 17.728l-10.944 16.192a38.272 38.272 0 0 0-5.888 14.4 358.4 358.4 0 1 0 635.968-16.192 38.528 38.528 0 0 0-3.968-7.552l-2.816-4.224a359.424 359.424 0 0 0-13.376-20.48l-0.32 0.256z m-51.2 61.44a281.6 281.6 0 1 1-482.88-2.368L512 8.832l242.176 359.424zM512 345.6a166.4 166.4 0 1 0 0 332.8 166.4 166.4 0 0 0 0-332.8z m0 76.8a89.6 89.6 0 1 1 0 179.2 89.6 89.6 0 0 1 0-179.2z" horiz-adv-x="1024" />
<glyph glyph-name="ditupeizhi_daorushuju" unicode="&#59021;" d="M928 384.896a37.76 37.76 0 1 0-75.392 0h-0.192v109.44c0 0.64-0.256 1.408-0.32 1.984h-188.8a75.264 75.264 0 0 0-75.648 74.688V757.376H171.392l0.256-0.064V11.52h287.424a38.144 38.144 0 0 0 1.536 0h2.176v-0.128a37.44 37.44 0 1 0-7.168-74.496H171.328A75.136 75.136 0 0 0 96 11.52V757.312c0 41.152 33.664 74.56 75.392 74.688H607.36c31.36 0 69.76-16.704 91.2-39.68l193.664-207.552c20.736-22.208 35.776-60.224 35.776-90.368v-109.504zM802.24 570.88l-139.008 148.992v-148.928l139.008-0.064z m-207.68-393.216l46.464-46.272a44.288 44.288 0 1 0-62.72-62.592l-119.808 119.872a44.224 44.224 0 0 0 0 62.528L578.56 371.2a44.224 44.224 0 1 0 62.464-62.528l-42.432-42.432h285.248a44.224 44.224 0 1 0 0-88.448H594.624z" horiz-adv-x="1024" />
<glyph glyph-name="ditupeizhi_duobianxing" unicode="&#59022;" d="M534.592 799.04l395.648-287.424a38.4 38.4 0 0 0 13.952-42.88l-151.168-465.152a38.4 38.4 0 0 0-36.48-26.56H267.456a38.4 38.4 0 0 0-36.48 26.56L79.808 468.672a38.4 38.4 0 0 0 13.952 42.944l395.648 287.424a38.4 38.4 0 0 0 45.184 0zM512 720.512L161.472 465.92l133.888-412.032h433.28l133.888 412.032L512 720.64z" horiz-adv-x="1024" />
<glyph glyph-name="ditupeizhi_fangda" unicode="&#59023;" d="M512 0a38.4 38.4 0 0 1 38.4 38.4V345.6h307.2a38.4 38.4 0 0 1 0 76.8H550.4V729.6a38.4 38.4 0 0 1-76.8 0v-307.2H166.4a38.4 38.4 0 0 1 0-76.8h307.2v-307.2a38.4 38.4 0 0 1 38.4-38.4" horiz-adv-x="1024" />
<glyph glyph-name="ditupeizhi_juxing" unicode="&#59024;" d="M192 768h640a64 64 0 0 0 64-64v-640a64 64 0 0 0-64-64H192a64 64 0 0 0-64 64V704a64 64 0 0 0 64 64z m12.8-76.8v-614.4h614.4V691.2H204.8z" horiz-adv-x="1024" />
<glyph glyph-name="ditupeizhi_suoxiao" unicode="&#59025;" d="M166.4 371.2a38.4 38.4 0 1 0 0 76.8h690.688a38.4 38.4 0 1 0 0-76.8H166.4z" horiz-adv-x="1024" />
<glyph glyph-name="shanchu" unicode="&#59026;" d="M512 414.144L421.504 504.704a21.312 21.312 0 1 1-30.208-30.208L481.92 384 391.296 293.504a21.312 21.312 0 1 1 30.208-30.208L512 353.92l90.496-90.56a21.312 21.312 0 0 1 30.208 30.208L542.08 384l90.56 90.496a21.312 21.312 0 0 1-30.208 30.208L512 414.08zM512 128a256 256 0 1 0 0 512 256 256 0 0 0 0-512z" horiz-adv-x="1024" />
<glyph glyph-name="xiala1" unicode="&#59288;" d="M192 806.4h640A102.4 102.4 0 0 0 934.4 704v-640a102.4 102.4 0 0 0-102.4-102.4H192A102.4 102.4 0 0 0 89.6 64V704A102.4 102.4 0 0 0 192 806.4z m0-76.8a25.6 25.6 0 0 1-25.6-25.6v-640c0-14.08 11.52-25.6 25.6-25.6h640a25.6 25.6 0 0 1 25.6 25.6V704a25.6 25.6 0 0 1-25.6 25.6H192z m308.992-397.312l153.92 153.856a38.4 38.4 0 1 0 54.272-54.336L528.192 250.88a38.4 38.4 0 0 0-54.336 0L292.864 431.808a38.4 38.4 0 0 0 54.272 54.336l153.856-153.856z" horiz-adv-x="1024" />
<glyph glyph-name="chexiao" unicode="&#59289;" d="M218.88 537.6l117.312-117.312a38.4 38.4 0 1 0-54.336-54.272L100.864 547.008a38.4 38.4 0 0 0 0 54.336l180.992 180.992a38.4 38.4 0 1 0 54.336-54.272L222.528 614.4H640a294.4 294.4 0 0 0 0-588.8H320a38.4 38.4 0 0 0 0 76.8h320a217.6 217.6 0 0 1 0 435.2H218.88z" horiz-adv-x="1024" />
<glyph glyph-name="guanbi" unicode="&#59290;" d="M505.6 458.304l248.896 248.96a48 48 0 1 0 67.84-67.904L573.44 390.4l248.96-248.896a48 48 0 1 0-67.904-67.84L505.536 322.56 256.64 73.6a48 48 0 1 0-67.84 67.904l248.896 248.96-248.96 248.896A48 48 0 1 0 256.64 707.2L505.6 458.304z" horiz-adv-x="1024" />
<glyph glyph-name="normal107" unicode="&#59291;" d="M435.072 543.488l-54.336 54.336 135.808 135.68a230.4 230.4 0 1 0 325.76-325.76l-135.68-135.808-54.336 54.336 135.744 135.744A153.6 153.6 0 1 1 570.88 679.232L435.072 543.488z m-63.36-63.36L235.968 344.384a153.6 153.6 0 0 1 217.216-217.216l135.744 135.744 54.336-54.336-135.808-135.68a230.4 230.4 0 1 0-325.76 325.76l135.68 135.808 54.336-54.336zM172.608 678.144l45.248 45.248L308.352 632.96l-45.248-45.248-90.496 90.496z m543.04-543.04l45.248 45.248 90.496-90.496-45.248-45.248-90.496 90.496zM317.056 795.52h64v-128h-64v128z m607.36-607.36h-128v64h128v-64zM99.584 577.92h128v-64h-128v64z m607.36-607.36h-64v128h64v-128z" horiz-adv-x="1024" />
<glyph glyph-name="zhibiaobinglie-hengzhou1" unicode="&#59012;" d="M230.4 422.4H896a38.4 38.4 0 0 0 0-76.8H230.4V0a38.4 38.4 0 0 0-76.8 0V345.6H128a38.4 38.4 0 1 0 0 76.8h25.6V768a38.4 38.4 0 1 0 76.8 0v-345.6z m114.816-419.328a38.4 38.4 0 1 0-50.432 57.856l187.264 163.2a38.4 38.4 0 0 0 41.472 5.824l152.96-71.616 163.84 127.936a38.4 38.4 0 1 0 47.36-60.544l-182.528-142.4a38.4 38.4 0 0 0-39.936-4.48L513.664 149.76l-168.448-146.752zM513.664 629.76L345.216 483.072a38.4 38.4 0 0 0-50.432 57.856l187.264 163.2a38.4 38.4 0 0 0 41.472 5.824l152.96-71.616 163.84 127.936a38.4 38.4 0 1 0 47.36-60.544l-182.528-142.4a38.4 38.4 0 0 0-39.936-4.48L513.664 629.76z" horiz-adv-x="1024" />
<glyph glyph-name="zhibiaojuhe-zongzhou1" unicode="&#59027;" d="M154.112 774.4a38.4 38.4 0 0 0 75.776 0H896a38.4 38.4 0 0 0 0-76.8H230.4v-627.2H896a38.4 38.4 0 0 0 0-76.8H229.888a38.4 38.4 0 0 0-75.776 0H128a38.4 38.4 0 0 0 0 76.8h25.6V697.6H128a38.4 38.4 0 1 0 0 76.8h26.112z m191.104-419.328a38.4 38.4 0 0 0-50.432 57.856l187.264 163.2a38.4 38.4 0 0 0 41.472 5.824l152.96-71.616 163.84 127.936a38.4 38.4 0 1 0 47.36-60.544l-182.528-142.4a38.4 38.4 0 0 0-39.936-4.48L513.664 501.76 345.216 355.072z m0-224a38.4 38.4 0 1 0-50.432 57.856l187.264 163.2a38.4 38.4 0 0 0 41.472 5.824l152.96-71.616 163.84 127.936a38.4 38.4 0 1 0 47.36-60.544l-182.528-142.4a38.4 38.4 0 0 0-39.936-4.48L513.664 277.76l-168.448-146.752z" horiz-adv-x="1024" />
<glyph glyph-name="zhibiaojuhe-hengzhou1" unicode="&#59028;" d="M166.4 102.39999999999998h691.2V768a38.4 38.4 0 0 0 76.8 0v-666.112a38.4 38.4 0 0 0 0-75.776V0a38.4 38.4 0 0 0-76.8 0v25.6H166.4v-25.6a38.4 38.4 0 0 0-76.8 0v26.112a38.4 38.4 0 0 0 0 75.776V768a38.4 38.4 0 1 0 76.8 0v-665.6z m88.064 70.912a38.4 38.4 0 0 0-50.816 57.6l194.816 171.776a38.4 38.4 0 0 0 41.856 5.888l159.744-75.648 171.072 135.104a38.4 38.4 0 0 0 47.616-60.288L628.928 257.91999999999996a38.4 38.4 0 0 0-40.256-4.544L430.272 328.32000000000005l-175.808-155.072z m0 235.776a38.4 38.4 0 1 0-50.816 57.6l194.816 171.776a38.4 38.4 0 0 0 41.856 5.888l159.744-75.648 171.072 135.104a38.4 38.4 0 1 0 47.616-60.288L628.928 493.632a38.4 38.4 0 0 0-40.256-4.544L430.272 564.1600000000001 254.464 409.088z" horiz-adv-x="1024" />
<glyph glyph-name="zhibiaobinglie-zongzhou1" unicode="&#59029;" d="M550.4 70.39999999999998H896a38.4 38.4 0 0 0 0-76.8H128a38.4 38.4 0 0 0 0 76.8h345.6V768a38.4 38.4 0 1 0 76.8 0v-697.6z m93.568 453.056a38.4 38.4 0 0 0-0.192 52.288l171.52 186.24a38.4 38.4 0 1 0 56.448-51.968l-147.328-160.064L892.032 371.20000000000005a38.4 38.4 0 0 0 0.32-52.16l-168.832-184.96a38.4 38.4 0 1 0-56.704 51.84l144.896 158.656-167.68 178.88z m-344.32-178.88l-167.68 178.88a38.4 38.4 0 0 0-0.192 52.288l171.52 186.24a38.4 38.4 0 0 0 56.448-51.968L212.416 549.952 380.032 371.20000000000005a38.4 38.4 0 0 0 0.32-52.16l-168.832-184.96a38.4 38.4 0 1 0-56.704 51.84l144.896 158.656z" horiz-adv-x="1024" />
<glyph glyph-name="qiehuanlujingtianjiaziduan" unicode="&#59275;" d="M217.6 515.264L91.136 388.864a38.4 38.4 0 0 0-54.272 54.272l192 192A38.4 38.4 0 0 0 294.4 608v-512a89.6 89.6 0 0 1 179.2 0v576a166.4 166.4 0 1 0 332.8 0v-419.264l126.464 126.4a38.4 38.4 0 0 0 54.272-54.272l-192-192A38.4 38.4 0 0 0 729.6 160v512a89.6 89.6 0 0 1-179.2 0v-576a166.4 166.4 0 0 0-332.8 0V515.264z" horiz-adv-x="1024" />
</font>

Before

Width:  |  Height:  |  Size: 247 KiB

After

Width:  |  Height:  |  Size: 262 KiB

BIN
dist/font/iconfont.ttf vendored

Binary file not shown.

BIN
dist/font/iconfont.woff vendored

Binary file not shown.

24
dist/resource.css vendored

@ -1293,6 +1293,30 @@ textarea::-webkit-scrollbar-thumb:hover {
content: "\e6dd";
color: #13cd66;
}
.add-up-font .b-font {
font-size: 12px;
*zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = '&#xe70a;');
}
.add-up-font .b-font:before {
content: "\e70a";
color: inherit;
}
.add-up-font.disabled .b-font:before {
content: "\e70a";
color: inherit;
}
.minus-down-font .b-font {
font-size: 12px;
*zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = '&#xe70b;');
}
.minus-down-font .b-font:before {
content: "\e70b";
color: inherit;
}
.minus-down-font.disabled .b-font:before {
content: "\e70b";
color: inherit;
}
.tree-collapse-icon-type1 .x-icon {
display: block;
background: url('images/2x/icon/tree_collapse_1.png') no-repeat center center;

6
dist/widget.css vendored

@ -180,6 +180,12 @@
-moz-border-radius: 2px;
border-radius: 2px;
}
.bi-number-editor .pull-down-font {
font-size: 12px;
}
.bi-number-editor .pull-up-font {
font-size: 12px;
}
.bi-number-interval .number-interval-small-editor {
-moz-border-radius-topleft: 2px;
-webkit-border-top-left-radius: 2px;

24
dist/widget.js vendored

@ -14243,7 +14243,7 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
type: "bi.icon_button",
forceNotSelected: true,
trigger: "lclick,",
cls: "pull-up-font top-button bi-border-left bi-list-item-active3"
cls: "add-up-font top-button bi-border-left bi-list-item-active3"
});
this.topBtn.on(BI.IconButton.EVENT_CHANGE, function () {
self._finetuning(o.step);
@ -14254,7 +14254,7 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
type: "bi.icon_button",
trigger: "lclick,",
forceNotSelected: true,
cls: "pull-down-font bottom-button bi-border-left bi-list-item-active3"
cls: "minus-down-font bottom-button bi-border-left bi-list-item-active3"
});
this.bottomBtn.on(BI.IconButton.EVENT_CHANGE, function () {
self._finetuning(-o.step);
@ -14335,7 +14335,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
less: 0,
less_equal: 1,
numTip: "",
adjustTop: 2
adjustYOffset: 2
},
_defaultConfig: function () {
var conf = BI.NumberInterval.superclass._defaultConfig.apply(this, arguments);
@ -14622,19 +14622,19 @@ BI.NumberInterval = BI.inherit(BI.Single, {
case c.typeError:
BI.Bubbles.show(c.typeError, BI.i18nText("BI-Numerical_Interval_Input_Data"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
break;
case c.numberError:
BI.Bubbles.show(c.numberError, BI.i18nText("BI-Numerical_Interval_Number_Value"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
break;
case c.signalError:
BI.Bubbles.show(c.signalError, BI.i18nText("BI-Numerical_Interval_Signal_Value"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
break;
default :
@ -14671,7 +14671,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
self._checkValidation();
BI.Bubbles.show(c.typeError, BI.i18nText("BI-Numerical_Interval_Input_Data"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
self.fireEvent(BI.NumberInterval.EVENT_ERROR);
});
@ -14685,14 +14685,14 @@ BI.NumberInterval = BI.inherit(BI.Single, {
case c.numberError:
BI.Bubbles.show(c.numberError, BI.i18nText("BI-Numerical_Interval_Number_Value"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
self.fireEvent(BI.NumberInterval.EVENT_ERROR);
break;
case c.signalError:
BI.Bubbles.show(c.signalError, BI.i18nText("BI-Numerical_Interval_Signal_Value"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
self.fireEvent(BI.NumberInterval.EVENT_ERROR);
break;
@ -14710,19 +14710,19 @@ BI.NumberInterval = BI.inherit(BI.Single, {
case c.typeError:
BI.Bubbles.show(c.typeError, BI.i18nText("BI-Numerical_Interval_Input_Data"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
break;
case c.numberError:
BI.Bubbles.show(c.numberError, BI.i18nText("BI-Numerical_Interval_Number_Value"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
break;
case c.signalError:
BI.Bubbles.show(c.signalError, BI.i18nText("BI-Numerical_Interval_Signal_Value"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
break;
default :

24
public/css/font.css

@ -957,3 +957,27 @@
content: "\e6dd";
color: #13cd66;
}
.add-up-font .b-font {
font-size: 12px;
*zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = '&#xe70a;');
}
.add-up-font .b-font:before {
content: "\e70a";
color: inherit;
}
.add-up-font.disabled .b-font:before {
content: "\e70a";
color: inherit;
}
.minus-down-font .b-font {
font-size: 12px;
*zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = '&#xe70b;');
}
.minus-down-font .b-font:before {
content: "\e70b";
color: inherit;
}
.minus-down-font.disabled .b-font:before {
content: "\e70b";
color: inherit;
}

2
src/base/single/editor/editor.js

@ -227,7 +227,7 @@ BI.Editor = BI.inherit(BI.Single, {
}
if (!this.disabledError && BI.isKey(errorText)) {
BI.Bubbles[b ? "show" : "hide"](this.getName(), errorText, this, {
adjustTop: 2
adjustYOffset: 2
});
this._checkToolTip();
return BI.Bubbles.get(this.getName());

20
src/core/controller/controller.bubbles.js

@ -112,10 +112,8 @@ BI.BubblesController = BI.inherit(BI.Controller, {
var container = opt.container || context;
var offsetStyle = opt.offsetStyle || {};
var level = opt.level || "error";
var adjustTop = opt.adjustTop || 0;
var adjustRight = opt.adjustRight || 0;
var adjustLeft = opt.adjustLeft || 0;
var adjustBottom = opt.adjustBottom || 0;
var adjustYOffset = opt.adjustYOffset || 0;
var adjustXOffset = opt.adjustXOffset || 0;
if (!this.storeBubbles[name]) {
this.storeBubbles[name] = {};
}
@ -131,9 +129,9 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["top"]);
var position = this._getTopPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left + adjustLeft, top: position.top - adjustTop});
this.get(name).element.css({left: position.left + adjustXOffset, top: position.top - adjustYOffset});
this.get(name).invisible();
if (!$.isTopSpaceEnough(context, this.get(name), adjustTop)) {
if (!$.isTopSpaceEnough(context, this.get(name), adjustYOffset)) {
if (!this.storeBubbles[name]["left"]) {
this.storeBubbles[name]["left"] = this._createBubble("left", text, level, 30);
}
@ -146,9 +144,9 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["left"]);
var position = this._getLeftPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left - adjustLeft, top: position.top - adjustTop});
this.get(name).element.css({left: position.left - adjustXOffset, top: position.top - adjustYOffset});
this.get(name).invisible();
if (!$.isLeftSpaceEnough(context, this.get(name), adjustLeft)) {
if (!$.isLeftSpaceEnough(context, this.get(name), adjustXOffset)) {
if (!this.storeBubbles[name]["right"]) {
this.storeBubbles[name]["right"] = this._createBubble("right", text, level, 30);
}
@ -161,9 +159,9 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["right"]);
var position = this._getRightPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left + adjustRight, top: position.top - adjustTop});
this.get(name).element.css({left: position.left + adjustXOffset, top: position.top - adjustYOffset});
this.get(name).invisible();
if (!$.isRightSpaceEnough(context, this.get(name), adjustLeft)) {
if (!$.isRightSpaceEnough(context, this.get(name), adjustXOffset)) {
if (!this.storeBubbles[name]["bottom"]) {
this.storeBubbles[name]["bottom"] = this._createBubble("bottom", text, level);
}
@ -176,7 +174,7 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
this.set(name, this.storeBubbles[name]["bottom"]);
var position = this._getBottomPosition(name, context, offsetStyle);
this.get(name).element.css({left: position.left + adjustLeft, top: position.top + adjustBottom});
this.get(name).element.css({left: position.left + adjustXOffset, top: position.top + adjustYOffset});
this.get(name).invisible();
}
}

24
src/css/resource/font.css

@ -957,3 +957,27 @@
content: "\e6dd";
color: #13cd66;
}
.add-up-font .b-font {
font-size: 12px;
*zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = '&#xe70a;');
}
.add-up-font .b-font:before {
content: "\e70a";
color: inherit;
}
.add-up-font.disabled .b-font:before {
content: "\e70a";
color: inherit;
}
.minus-down-font .b-font {
font-size: 12px;
*zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = '&#xe70b;');
}
.minus-down-font .b-font:before {
content: "\e70b";
color: inherit;
}
.minus-down-font.disabled .b-font:before {
content: "\e70b";
color: inherit;
}

6
src/css/widget/numbereditor/number.css

@ -3,3 +3,9 @@
-moz-border-radius: 2px;
border-radius: 2px;
}
.bi-number-editor .pull-down-font {
font-size: 12px;
}
.bi-number-editor .pull-up-font {
font-size: 12px;
}

5
src/less/resource/font.less

@ -113,4 +113,7 @@
.font(toast-warning-font, @font-tip-warning);
.font(toast-message-font, @font-tip-message);
.font(text-add-tip-font, @font-add, @color-bi-text-success);
.font(text-add-tip-font, @font-add, @color-bi-text-success);
.font(add-up-font, @font-up-triangle, inherit, @font-size-12);
.font(minus-down-font, @font-down-triangle, inherit, @font-size-12);

6
src/less/widget/numbereditor/number.editor.less

@ -2,8 +2,10 @@
.bi-number-editor {
.border-radius(2px);
& .top-button {
& .pull-down-font {
font-size: 12px;
}
& .bottom-button {
& .pull-up-font {
font-size: 12px;
}
}

4
src/widget/numbereditor/number.editor.js

@ -42,7 +42,7 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
type: "bi.icon_button",
forceNotSelected: true,
trigger: "lclick,",
cls: "pull-up-font top-button bi-border-left bi-list-item-active3"
cls: "add-up-font top-button bi-border-left bi-list-item-active3"
});
this.topBtn.on(BI.IconButton.EVENT_CHANGE, function () {
self._finetuning(o.step);
@ -53,7 +53,7 @@ BI.NumberEditor = BI.inherit(BI.Widget, {
type: "bi.icon_button",
trigger: "lclick,",
forceNotSelected: true,
cls: "pull-down-font bottom-button bi-border-left bi-list-item-active3"
cls: "minus-down-font bottom-button bi-border-left bi-list-item-active3"
});
this.bottomBtn.on(BI.IconButton.EVENT_CHANGE, function () {
self._finetuning(-o.step);

20
src/widget/numberinterval/numberinterval.js

@ -18,7 +18,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
less: 0,
less_equal: 1,
numTip: "",
adjustTop: 2
adjustYOffset: 2
},
_defaultConfig: function () {
var conf = BI.NumberInterval.superclass._defaultConfig.apply(this, arguments);
@ -305,19 +305,19 @@ BI.NumberInterval = BI.inherit(BI.Single, {
case c.typeError:
BI.Bubbles.show(c.typeError, BI.i18nText("BI-Numerical_Interval_Input_Data"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
break;
case c.numberError:
BI.Bubbles.show(c.numberError, BI.i18nText("BI-Numerical_Interval_Number_Value"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
break;
case c.signalError:
BI.Bubbles.show(c.signalError, BI.i18nText("BI-Numerical_Interval_Signal_Value"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
break;
default :
@ -354,7 +354,7 @@ BI.NumberInterval = BI.inherit(BI.Single, {
self._checkValidation();
BI.Bubbles.show(c.typeError, BI.i18nText("BI-Numerical_Interval_Input_Data"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
self.fireEvent(BI.NumberInterval.EVENT_ERROR);
});
@ -368,14 +368,14 @@ BI.NumberInterval = BI.inherit(BI.Single, {
case c.numberError:
BI.Bubbles.show(c.numberError, BI.i18nText("BI-Numerical_Interval_Number_Value"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
self.fireEvent(BI.NumberInterval.EVENT_ERROR);
break;
case c.signalError:
BI.Bubbles.show(c.signalError, BI.i18nText("BI-Numerical_Interval_Signal_Value"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
self.fireEvent(BI.NumberInterval.EVENT_ERROR);
break;
@ -393,19 +393,19 @@ BI.NumberInterval = BI.inherit(BI.Single, {
case c.typeError:
BI.Bubbles.show(c.typeError, BI.i18nText("BI-Numerical_Interval_Input_Data"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
break;
case c.numberError:
BI.Bubbles.show(c.numberError, BI.i18nText("BI-Numerical_Interval_Number_Value"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
break;
case c.signalError:
BI.Bubbles.show(c.signalError, BI.i18nText("BI-Numerical_Interval_Signal_Value"), self, {
offsetStyle: "left",
adjustTop: c.adjustTop
adjustYOffset: c.adjustYOffset
});
break;
default :

24
ui/css/font.css

@ -957,3 +957,27 @@
content: "\e6dd";
color: #13cd66;
}
.add-up-font .b-font {
font-size: 12px;
*zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = '&#xe70a;');
}
.add-up-font .b-font:before {
content: "\e70a";
color: inherit;
}
.add-up-font.disabled .b-font:before {
content: "\e70a";
color: inherit;
}
.minus-down-font .b-font {
font-size: 12px;
*zoom: expression( this.runtimeStyle['zoom'] = '1',this.innerHTML = '&#xe70b;');
}
.minus-down-font .b-font:before {
content: "\e70b";
color: inherit;
}
.minus-down-font.disabled .b-font:before {
content: "\e70b";
color: inherit;
}

Loading…
Cancel
Save