@coolbox/hongqi
Version:
Icons for Coolbox
1,381 lines • 1.55 MB
JavaScript
import { ref, proxyRefs, openBlock, createElementBlock, normalizeClass, createElementVNode, createStaticVNode, createBlock, resolveDynamicComponent, withCtx, createTextVNode } from "vue";
/**
* vue-class-component v8.0.0-rc.1
* (c) 2015-present Evan You
* @license MIT
*/
function _classCallCheck(instance, Constructor) {
if (!(instance instanceof Constructor)) {
throw new TypeError("Cannot call a class as a function");
}
}
function _defineProperties(target, props) {
for (var i = 0; i < props.length; i++) {
var descriptor = props[i];
descriptor.enumerable = descriptor.enumerable || false;
descriptor.configurable = true;
if ("value" in descriptor)
descriptor.writable = true;
Object.defineProperty(target, descriptor.key, descriptor);
}
}
function _createClass(Constructor, protoProps, staticProps) {
if (protoProps)
_defineProperties(Constructor.prototype, protoProps);
if (staticProps)
_defineProperties(Constructor, staticProps);
return Constructor;
}
function _defineProperty(obj, key, value) {
if (key in obj) {
Object.defineProperty(obj, key, {
value,
enumerable: true,
configurable: true,
writable: true
});
} else {
obj[key] = value;
}
return obj;
}
function ownKeys(object, enumerableOnly) {
var keys = Object.keys(object);
if (Object.getOwnPropertySymbols) {
var symbols = Object.getOwnPropertySymbols(object);
if (enumerableOnly)
symbols = symbols.filter(function(sym) {
return Object.getOwnPropertyDescriptor(object, sym).enumerable;
});
keys.push.apply(keys, symbols);
}
return keys;
}
function _objectSpread2(target) {
for (var i = 1; i < arguments.length; i++) {
var source = arguments[i] != null ? arguments[i] : {};
if (i % 2) {
ownKeys(Object(source), true).forEach(function(key) {
_defineProperty(target, key, source[key]);
});
} else if (Object.getOwnPropertyDescriptors) {
Object.defineProperties(target, Object.getOwnPropertyDescriptors(source));
} else {
ownKeys(Object(source)).forEach(function(key) {
Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key));
});
}
}
return target;
}
function _inherits(subClass, superClass) {
if (typeof superClass !== "function" && superClass !== null) {
throw new TypeError("Super expression must either be null or a function");
}
subClass.prototype = Object.create(superClass && superClass.prototype, {
constructor: {
value: subClass,
writable: true,
configurable: true
}
});
if (superClass)
_setPrototypeOf(subClass, superClass);
}
function _getPrototypeOf(o) {
_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf2(o2) {
return o2.__proto__ || Object.getPrototypeOf(o2);
};
return _getPrototypeOf(o);
}
function _setPrototypeOf(o, p) {
_setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf2(o2, p2) {
o2.__proto__ = p2;
return o2;
};
return _setPrototypeOf(o, p);
}
function _isNativeReflectConstruct() {
if (typeof Reflect === "undefined" || !Reflect.construct)
return false;
if (Reflect.construct.sham)
return false;
if (typeof Proxy === "function")
return true;
try {
Date.prototype.toString.call(Reflect.construct(Date, [], function() {
}));
return true;
} catch (e) {
return false;
}
}
function _assertThisInitialized(self) {
if (self === void 0) {
throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
}
return self;
}
function _possibleConstructorReturn(self, call) {
if (call && (typeof call === "object" || typeof call === "function")) {
return call;
}
return _assertThisInitialized(self);
}
function _createSuper(Derived) {
var hasNativeReflectConstruct = _isNativeReflectConstruct();
return function _createSuperInternal() {
var Super = _getPrototypeOf(Derived), result;
if (hasNativeReflectConstruct) {
var NewTarget = _getPrototypeOf(this).constructor;
result = Reflect.construct(Super, arguments, NewTarget);
} else {
result = Super.apply(this, arguments);
}
return _possibleConstructorReturn(this, result);
};
}
function _toConsumableArray(arr) {
return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();
}
function _arrayWithoutHoles(arr) {
if (Array.isArray(arr))
return _arrayLikeToArray(arr);
}
function _iterableToArray(iter) {
if (typeof Symbol !== "undefined" && Symbol.iterator in Object(iter))
return Array.from(iter);
}
function _unsupportedIterableToArray(o, minLen) {
if (!o)
return;
if (typeof o === "string")
return _arrayLikeToArray(o, minLen);
var n = Object.prototype.toString.call(o).slice(8, -1);
if (n === "Object" && o.constructor)
n = o.constructor.name;
if (n === "Map" || n === "Set")
return Array.from(o);
if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n))
return _arrayLikeToArray(o, minLen);
}
function _arrayLikeToArray(arr, len) {
if (len == null || len > arr.length)
len = arr.length;
for (var i = 0, arr2 = new Array(len); i < len; i++)
arr2[i] = arr[i];
return arr2;
}
function _nonIterableSpread() {
throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
}
function defineGetter(obj, key, getter) {
Object.defineProperty(obj, key, {
get: getter,
enumerable: false,
configurable: true
});
}
function defineProxy(proxy, key, target) {
Object.defineProperty(proxy, key, {
get: function get() {
return target[key].value;
},
set: function set(value) {
target[key].value = value;
},
enumerable: true,
configurable: true
});
}
function getSuper(Ctor) {
var superProto = Object.getPrototypeOf(Ctor.prototype);
if (!superProto) {
return void 0;
}
return superProto.constructor;
}
function getOwn(value, key) {
return value.hasOwnProperty(key) ? value[key] : void 0;
}
var VueImpl = /* @__PURE__ */ function() {
function VueImpl2(props, ctx) {
var _this = this;
_classCallCheck(this, VueImpl2);
defineGetter(this, "$props", function() {
return props;
});
defineGetter(this, "$attrs", function() {
return ctx.attrs;
});
defineGetter(this, "$slots", function() {
return ctx.slots;
});
defineGetter(this, "$emit", function() {
return ctx.emit;
});
Object.keys(props).forEach(function(key) {
Object.defineProperty(_this, key, {
enumerable: false,
configurable: true,
writable: true,
value: props[key]
});
});
}
_createClass(VueImpl2, null, [
{
key: "registerHooks",
value: function registerHooks(keys) {
var _this$__h;
(_this$__h = this.__h).push.apply(_this$__h, _toConsumableArray(keys));
}
},
{
key: "with",
value: function _with(Props2) {
var propsMeta = new Props2();
var props = {};
Object.keys(propsMeta).forEach(function(key) {
var meta = propsMeta[key];
props[key] = meta !== null && meta !== void 0 ? meta : null;
});
var PropsMixin = /* @__PURE__ */ function(_this2) {
_inherits(PropsMixin2, _this2);
var _super = _createSuper(PropsMixin2);
function PropsMixin2() {
_classCallCheck(this, PropsMixin2);
return _super.apply(this, arguments);
}
return PropsMixin2;
}(this);
PropsMixin.__b = {
props
};
return PropsMixin;
}
},
{
key: "__vccOpts",
get: function get() {
if (this === Vue) {
return {};
}
var Ctor = this;
var cache = getOwn(Ctor, "__c");
if (cache) {
return cache;
}
var options = _objectSpread2({}, getOwn(Ctor, "__o"));
Ctor.__c = options;
var Super = getSuper(Ctor);
if (Super) {
options["extends"] = Super.__vccOpts;
}
var base = getOwn(Ctor, "__b");
if (base) {
options.mixins = options.mixins || [];
options.mixins.unshift(base);
}
options.methods = _objectSpread2({}, options.methods);
options.computed = _objectSpread2({}, options.computed);
var proto = Ctor.prototype;
Object.getOwnPropertyNames(proto).forEach(function(key) {
if (key === "constructor") {
return;
}
if (Ctor.__h.indexOf(key) > -1) {
options[key] = proto[key];
return;
}
var descriptor = Object.getOwnPropertyDescriptor(proto, key);
if (typeof descriptor.value === "function") {
options.methods[key] = descriptor.value;
return;
}
if (descriptor.get || descriptor.set) {
options.computed[key] = {
get: descriptor.get,
set: descriptor.set
};
return;
}
});
options.setup = function(props, ctx) {
var _promise;
var data = new Ctor(props, ctx);
var dataKeys = Object.keys(data);
var plainData = {};
var promise = null;
dataKeys.forEach(function(key) {
if (data[key] === void 0 || data[key] && data[key].__s) {
return;
}
plainData[key] = ref(data[key]);
defineProxy(data, key, plainData);
});
dataKeys.forEach(function(key) {
if (data[key] && data[key].__s) {
var setupState = data[key].__s();
if (setupState instanceof Promise) {
if (!promise) {
promise = Promise.resolve(plainData);
}
promise = promise.then(function() {
return setupState.then(function(value) {
plainData[key] = proxyRefs(value);
return plainData;
});
});
} else {
plainData[key] = proxyRefs(setupState);
}
}
});
return (_promise = promise) !== null && _promise !== void 0 ? _promise : plainData;
};
var decorators = getOwn(Ctor, "__d");
if (decorators) {
decorators.forEach(function(fn) {
return fn(options);
});
}
var injections = [
"render",
"ssrRender",
"__file",
"__cssModules",
"__scopeId",
"__hmrId"
];
injections.forEach(function(key) {
if (Ctor[key]) {
options[key] = Ctor[key];
}
});
return options;
}
}
]);
return VueImpl2;
}();
VueImpl.__h = [
"data",
"beforeCreate",
"created",
"beforeMount",
"mounted",
"beforeUnmount",
"unmounted",
"beforeUpdate",
"updated",
"activated",
"deactivated",
"render",
"errorCaptured",
"serverPrefetch"
];
var Vue = VueImpl;
function prop(options) {
return options;
}
var _export_sfc = (sfc, props) => {
const target = sfc.__vccOpts || sfc;
for (const [key, val] of props) {
target[key] = val;
}
return target;
};
class Props$5O {
constructor() {
this.width = prop({
type: [Number, String],
required: false
});
this.height = prop({
type: [Number, String],
required: false
});
this.stroke = prop({
type: String,
required: false
});
this.fill = prop({
type: String,
required: false
});
this.color = prop({
type: String,
required: false
});
this.spin = prop({
type: Boolean,
required: false,
default: false
});
this.rtl = prop({
type: Boolean,
required: false,
default: false
});
this.size = prop({ default: "1em" });
}
}
class Neirongyishanchu extends Vue.with(Props$5O) {
get _id() {
return "hongqi-Neirongyishanchu-" + (parseInt(Math.random() * 1e6) + 1e6);
}
get _fill() {
return this.fill || this.color;
}
get _stroke() {
return this.stroke || this.color;
}
get _width() {
return this.width || this.size;
}
get _height() {
return this.height || this.size;
}
get cls() {
return [
"cool-icon",
"cool-icon-hongqi",
this.spin ? "cool-icon-spin" : "",
this.rtl ? "cool-icon-rtl" : ""
].filter(Boolean).join(" ");
}
mounted() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
}
updated() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
}
}
const _sfc_main$5O = Neirongyishanchu;
const _hoisted_1$5O = ["width", "height"];
const _hoisted_2$5O = { icon: "cool" };
const _hoisted_3$5O = ["id"];
const _hoisted_4$56 = /* @__PURE__ */ createElementVNode("stop", {
"stop-color": "#d2d2d2",
offset: "0"
}, null, -1);
const _hoisted_5$1d = /* @__PURE__ */ createElementVNode("stop", {
"stop-opacity": "0",
"stop-color": "#d2d2d2",
offset: "1"
}, null, -1);
const _hoisted_6$p = [
_hoisted_4$56,
_hoisted_5$1d
];
const _hoisted_7$p = ["id"];
const _hoisted_8$j = ["id"];
const _hoisted_9$i = ["id"];
const _hoisted_10$i = ["id"];
const _hoisted_11$i = ["id"];
const _hoisted_12$i = ["id"];
const _hoisted_13$i = ["id"];
const _hoisted_14$i = ["id"];
const _hoisted_15$i = /* @__PURE__ */ createElementVNode("stop", {
"stop-color": "#fd9351",
offset: "0"
}, null, -1);
const _hoisted_16$e = /* @__PURE__ */ createElementVNode("stop", {
"stop-color": "#fd763e",
offset: "1"
}, null, -1);
const _hoisted_17$e = [
_hoisted_15$i,
_hoisted_16$e
];
const _hoisted_18$e = ["id"];
const _hoisted_19$e = /* @__PURE__ */ createElementVNode("stop", {
"stop-color": "#f4f4f4",
offset: "0"
}, null, -1);
const _hoisted_20$c = /* @__PURE__ */ createElementVNode("stop", {
"stop-color": "#ddddde",
offset: "0.96"
}, null, -1);
const _hoisted_21$c = [
_hoisted_19$e,
_hoisted_20$c
];
const _hoisted_22$c = ["id"];
const _hoisted_23$c = /* @__PURE__ */ createElementVNode("stop", {
"stop-color": "#d7d7d7",
offset: "0"
}, null, -1);
const _hoisted_24$c = /* @__PURE__ */ createElementVNode("stop", {
"stop-color": "#e4e4e4",
offset: "1"
}, null, -1);
const _hoisted_25$c = [
_hoisted_23$c,
_hoisted_24$c
];
const _hoisted_26$c = ["fill"];
const _hoisted_27$c = ["fill"];
const _hoisted_28$c = ["fill"];
const _hoisted_29$c = ["fill"];
const _hoisted_30$b = ["fill"];
const _hoisted_31$b = ["fill"];
const _hoisted_32$b = ["fill"];
const _hoisted_33$b = ["fill"];
const _hoisted_34$b = /* @__PURE__ */ createElementVNode("path", {
d: "M121.17 82.3a2.06 2.06 0 0 1 .93 1.6v14.94c0 .59-.42.83-.93.53a2 2 0 0 1-.92-1.6V82.83c0-.59.42-.83.93-.53Zm-10.12-5.82a2 2 0 0 1 .92 1.6v14.94c0 .59-.42.83-.93.53a2 2 0 0 1-.93-1.6V77.01c0-.59.43-.83.94-.53Z",
"data-name": "\u8DEF\u5F84 122",
fill: "#fff",
opacity: "0.43"
}, null, -1);
const _hoisted_35$b = /* @__PURE__ */ createElementVNode("path", {
d: "M144.37 69.21v.08c.07-1.21-.69-2.44-2.29-3.36l-29.91-17.27a12.16 12.16 0 0 0-11 0 3.83 3.83 0 0 0-2.25 3.18v7.36a3.12 3.12 0 0 0 .5 1.7 5.16 5.16 0 0 0 1.8 1.61l20.81 12 .13.08.13.07.12.07.1.06.54.31.12.07.15.08.13.08.09.05.51.29.13.08.13.08.15.09.1.06.53.3.13.08.11.06.12.07.14.08.73.42.16.09.14.08.14.08.13.08.14.08.15.08.13.07.13.08.28.17.13.07.52.3.13.08.15.08.13.08h.09l.34.2.14.08.14.08.33.19.16.09.12.07.47.27.13.08.13.07.1.06.16.09.26.14.13.07.14.07.14.07c.21.1.42.19.64.27l.18.06h.14l.15.05H133.16a13.27 13.27 0 0 0 1.39.31h2.19a12.2 12.2 0 0 0 3.65-.56 6.79 6.79 0 0 0 3.21-2 3.24 3.24 0 0 0 .74-1.55 4.41 4.41 0 0 0 0-.52v-6.9Z",
"data-name": "\u8DEF\u5F84 123",
fill: "#ffa78f"
}, null, -1);
const _hoisted_36$b = /* @__PURE__ */ createElementVNode("path", {
d: "m131.93 114.66-.17.11Z",
"data-name": "\u8DEF\u5F84 124",
fill: "#ff896e"
}, null, -1);
const _hoisted_37$b = ["fill"];
const _hoisted_38$b = /* @__PURE__ */ createElementVNode("path", {
d: "M142.08 65.92c3 1.76 3.06 4.63 0 6.38a12.16 12.16 0 0 1-11 0L101.19 55c-3-1.76-3-4.63 0-6.38a12.16 12.16 0 0 1 11 0Z",
"data-name": "\u8DEF\u5F84 126",
fill: "#ffa78f"
}, null, -1);
const _hoisted_39$9 = ["fill"];
const _hoisted_40$9 = ["fill"];
function _sfc_render$5O(_ctx, _cache, $props, $setup, $data, $options) {
return openBlock(), createElementBlock("span", {
class: normalizeClass(_ctx.cls)
}, [
(openBlock(), createElementBlock("svg", {
xmlns: "http://www.w3.org/2000/svg",
width: _ctx._width,
height: _ctx._height,
viewBox: "0 0 240 150",
preserveAspectRatio: "xMidYMid meet",
fill: "",
role: "presentation",
ref: "host"
}, [
createElementVNode("g", _hoisted_2$5O, [
createElementVNode("defs", null, [
createElementVNode("linearGradient", {
gradientUnits: "userSpaceOnUse",
gradientTransform: "matrix(63.93 0 0 -65.41 -115162.17 50099.61)",
y2: "764.15",
x2: "1802.39",
y1: "765.73",
x1: "1801.75",
id: "a-" + _ctx._id
}, _hoisted_6$p, 8, _hoisted_3$5O),
createElementVNode("linearGradient", {
"xlink:href": "#a",
gradientTransform: "matrix(59.26 0 0 -64.97 -106395.75 49803.96)",
y2: "764.79",
x2: "1798.65",
y1: "765.71",
x1: "1799.01",
id: "b-" + _ctx._id
}, null, 8, _hoisted_7$p),
createElementVNode("linearGradient", {
"xlink:href": "#a",
gradientTransform: "matrix(370.52 0 0 -51.85 -676571.3 39771.68)",
y2: "764.53",
x2: "1826.34",
y1: "766.31",
x1: "1826.34",
id: "c-" + _ctx._id
}, null, 8, _hoisted_8$j),
createElementVNode("linearGradient", {
"xlink:href": "#a",
gradientTransform: "matrix(35.77 0 0 -55.85 -63409.16 42790.85)",
y2: "764.17",
x2: "1777.31",
y1: "765.29",
x1: "1777.65",
id: "d-" + _ctx._id
}, null, 8, _hoisted_9$i),
createElementVNode("linearGradient", {
"xlink:href": "#a",
gradientTransform: "matrix(32.84 0 0 -22.82 -58217.39 17406.69)",
y2: "761.15",
x2: "1774.96",
y1: "762.98",
x1: "1774.96",
id: "e-" + _ctx._id
}, null, 8, _hoisted_10$i),
createElementVNode("linearGradient", {
"xlink:href": "#a",
gradientTransform: "matrix(40.65 0 0 -28.39 -72456.05 21664.32)",
y2: "761.74",
x2: "1785.03",
y1: "763.23",
x1: "1785.03",
id: "f-" + _ctx._id
}, null, 8, _hoisted_11$i),
createElementVNode("linearGradient", {
"xlink:href": "#a",
gradientTransform: "matrix(21.76 0 0 -99.32 -37932.8 76019.24)",
y2: "764.23",
x2: "1749.87",
y1: "764.7",
x1: "1749.87",
id: "g-" + _ctx._id
}, null, 8, _hoisted_12$i),
createElementVNode("linearGradient", {
"xlink:href": "#a",
gradientTransform: "matrix(67.67 0 0 -115.06 -122066.86 88057.77)",
y2: "764.29",
x2: "1805.56",
y1: "764.76",
x1: "1805.56",
id: "h-" + _ctx._id
}, null, 8, _hoisted_13$i),
createElementVNode("linearGradient", {
gradientUnits: "userSpaceOnUse",
y2: "66.45",
x2: "144.36",
y1: "66.45",
x1: "98.87",
id: "i-" + _ctx._id
}, _hoisted_17$e, 8, _hoisted_14$i),
createElementVNode("linearGradient", {
gradientUnits: "userSpaceOnUse",
y2: "57.05",
x2: "136.77",
y1: "57.05",
x1: "107.58",
id: "j-" + _ctx._id
}, _hoisted_21$c, 8, _hoisted_18$e),
createElementVNode("linearGradient", {
gradientUnits: "userSpaceOnUse",
y2: "59.74",
x2: "127.55",
y1: "59.74",
x1: "106.48",
id: "k-" + _ctx._id
}, _hoisted_25$c, 8, _hoisted_22$c)
]),
createElementVNode("path", {
d: "M48.83 116.62c-4.38-2-9.13-7.29-7.78-12.3a1.63 1.63 0 0 1 1.76.69s7.6 11.87 5.47.95c-1-5.13-2.74-10.1-2.87-15.4-.23-9.63 8.59-12.31 11.16-1.66.33 1.41 1.62 12.85 4.54 11.54a2.1 2.1 0 0 0 .88-.89c1.48-2.43 1.92-6 4.64-6.83 2.39-.75 4.74 1.32 6 3.46 2.61 4.34 6.09 15.15.76 18.81s-18.78 4.24-24.53 1.68Z",
fill: "url(#a-" + _ctx._id + ")"
}, null, 8, _hoisted_26$c),
createElementVNode("path", {
d: "M171.91 120.3c-1.93-4.41-1.88-11.53 2.5-14.35a1.63 1.63 0 0 1 .82 1.72s-2.33 13.9 3.42 4.37c2.73-4.49 4.78-9.32 8.2-13.35 6.28-7.34 14.65-3.35 9.4 6.25-.69 1.27-7.43 10.62-4.38 11.62a2.14 2.14 0 0 0 1.25-.08c2.73-.81 5.46-3.16 8-2 2.26 1 2.62 4.15 2.14 6.6-1 5-5.81 10.53-12.22 9.67s-16.64-4.67-19.16-10.43Z",
"data-name": "\u8DEF\u5F84",
fill: "url(#b-" + _ctx._id + ")"
}, null, 8, _hoisted_27$c),
createElementVNode("path", {
d: "M222.54 129.48c-25.76-17.68-62.18-28.7-102.54-28.7s-76.78 11-102.54 28.7Z",
"data-name": "\u8DEF\u5F84",
fill: "url(#c-" + _ctx._id + ")"
}, null, 8, _hoisted_28$c),
createElementVNode("path", {
d: "M183.14 77.48c-1.63 2-2.68 5-1.7 7.55.67 1.79 2.71 1.8 2.57 4.29a8.07 8.07 0 0 1-1.25 3.48 26.34 26.34 0 0 1-4.21 5.53 4.86 4.86 0 0 1 1.83 4.5 8.09 8.09 0 0 1-2.31 4.49 3.24 3.24 0 0 1-1.36 1 3.47 3.47 0 0 1-1.57 0 27.45 27.45 0 0 1-7.34-2.32c-1.44-.69-2.92-1.64-3.41-3.14-.57-1.72.33-2.27 1.31-2.81l.25-.14a3.36 3.36 0 0 0 1.3-1.08c.72-1.18.74-2.75 1-4.06.37-1.93-.18-5.46 2.24-6.22.94-.29 2-.22 2.89-.52 2-.65 2.88-2.57 3.69-4.5l.15-.35a11.63 11.63 0 0 1 1.68-3c1.01-1.28 3.56-1.87 4.24-2.7ZM177.23 89s-7.36 8.58-7.12 16.52h2.38s.86-9.62 4.74-16.52Z",
fill: "url(#d-" + _ctx._id + ")"
}, null, 8, _hoisted_29$c),
createElementVNode("path", {
d: "M75.1 31.32a5.39 5.39 0 0 0-10.49-1.83 4.49 4.49 0 1 0 .14 9h9.9a3.59 3.59 0 0 0 .45-7.15Z",
"data-name": "\u8DEF\u5F84",
fill: "url(#e-" + _ctx._id + ")"
}, null, 8, _hoisted_30$b),
createElementVNode("path", {
d: "M116 25.89a6.73 6.73 0 0 0-13-2.28 5.62 5.62 0 0 0 .18 11.24h12.3a4.48 4.48 0 0 0 .56-8.93Z",
"data-name": "\u8DEF\u5F84",
fill: "url(#f-" + _ctx._id + ")"
}, null, 8, _hoisted_31$b),
createElementVNode("path", {
d: "m142.16 73.83-1.39-.8-1.3-.75-2-1.14-2.57-1.48-3-1.73V78.6l1 .59-.08 33.17a2.84 2.84 0 0 1-.93 2.29l2.19-1.26 3.89-2.27 1.49-.87 1.18-.68.2-.12a2.05 2.05 0 0 0 .55-.47 3.09 3.09 0 0 0 .57-1.93c.16-6.48.21-33.19.2-33.22Z",
"data-name": "\u8DEF\u5F84 120",
fill: "url(#g-" + _ctx._id + ")"
}, null, 8, _hoisted_32$b),
createElementVNode("path", {
d: "m132.94 79.2-.1 33.18c0 2.35-1.68 3.31-3.73 2.12l-24.32-14a8.19 8.19 0 0 1-3.7-6.41l.09-33.19Z",
"data-name": "\u8DEF\u5F84 121",
fill: "url(#h-" + _ctx._id + ")"
}, null, 8, _hoisted_33$b),
_hoisted_34$b,
_hoisted_35$b,
_hoisted_36$b,
createElementVNode("path", {
d: "M143.23 71.49a6.92 6.92 0 0 1-1.21.88l-.33.17-.27.12-.35.15-.17.07-.11.05h-.15l-.26.08h-.11l-.33.09-.2.06H139.27l-.21.05a13.2 13.2 0 0 1-1.66.2h-2.33l-.52-.07H134.21l-.5-.1h-.39l-.46-.13H132.51l.22-4.56-.9-.52-.27-.16-.37-.21-1.83-1.06-1.83-1.06-1.83-1-1.83-1.06-1.82-1.06-11.65-6.93-4.2 2.44-4.92-2.84a5.59 5.59 0 0 1-1.78-1.5 3.05 3.05 0 0 1-.61-1.77V59.2a3.07 3.07 0 0 0 .5 1.69 5.12 5.12 0 0 0 1.81 1.62l20.8 12 .2.12h.06l.23.13.17.11.37.2.12.07.25.15.23.13.37.22h.06l.13.08.08.05.11.06h.06l.63.36.19.11.31.18.57.33.25.14.14.09.22.12.17.1.13.08.32.18.22.13.11.06.49.29.23.13.21.12.22.12.24.14.15.09.23.13.15.09.23.14.36.2.13.08h.07l.18.11h.08a3.39 3.39 0 0 0 .38.2l.14.07.32.15.47.19h.05l.22.08h1.05a10.67 10.67 0 0 0 1.25.26h2.12a12.2 12.2 0 0 0 3.65-.56 6.87 6.87 0 0 0 3.21-2 3.24 3.24 0 0 0 .74-1.55 4.41 4.41 0 0 0 0-.52v-7.28a3.34 3.34 0 0 1-1.04 3.1Z",
"data-name": "\u8DEF\u5F84 125",
opacity: "0.8",
fill: "url(#i-" + _ctx._id + ")"
}, null, 8, _hoisted_37$b),
_hoisted_38$b,
createElementVNode("path", {
d: "M136.71 58.56c0-.19-.08-.39-.12-.56a5.36 5.36 0 0 0-.36-1.09 8.18 8.18 0 0 0-.55-1.11 2 2 0 0 0-.11-.2c-.08-.13-.15-.25-.24-.37a7 7 0 0 0-1-1.26 3.55 3.55 0 0 0-.46-.41l-.17-.13-.32-.22-.09-.06h-.06l-1.23-.71-.66-.38-1-.57-1.2-.69-9.54-5.51a3.65 3.65 0 0 0-1.6-.56 2.12 2.12 0 0 0-1.16.25l-9.09 5.29-.12.07a2.7 2.7 0 0 1 2.64.25l13.62 7.87c.15.09.6.42.83.59s.65.63.89.89l.18.23c.16.22.57.83.74 1.11a10.91 10.91 0 0 1 .69 1.52.93.93 0 0 1 0 .13l.06.2a8.67 8.67 0 0 1 .22 1.13 6 6 0 0 1 0 .73v4.48l1.76-1 .79-.46 1.54-.9c2.46-1.43 5.12-3 5.12-3V59.37a3.9 3.9 0 0 0 0-.81Z",
"data-name": "\u8DEF\u5F84 127",
fill: "url(#j-" + _ctx._id + ")"
}, null, 8, _hoisted_39$9),
createElementVNode("path", {
d: "M123.84 58.37a8.23 8.23 0 0 1 3.71 6.41v4.7l-21-12.16v-4.69c0-2.35 1.68-3.3 3.72-2.12Z",
"data-name": "\u8DEF\u5F84 128",
fill: "url(#k-" + _ctx._id + ")"
}, null, 8, _hoisted_40$9)
])
], 8, _hoisted_1$5O))
], 2);
}
var Neirongyishanchu$1 = /* @__PURE__ */ _export_sfc(_sfc_main$5O, [["render", _sfc_render$5O]]);
class Props$5N {
constructor() {
this.width = prop({
type: [Number, String],
required: false
});
this.height = prop({
type: [Number, String],
required: false
});
this.stroke = prop({
type: String,
required: false
});
this.fill = prop({
type: String,
required: false
});
this.color = prop({
type: String,
required: false
});
this.spin = prop({
type: Boolean,
required: false,
default: false
});
this.rtl = prop({
type: Boolean,
required: false,
default: false
});
this.size = prop({ default: "1em" });
}
}
class Wangluochucuoqingshuaxin extends Vue.with(Props$5N) {
get _id() {
return "hongqi-Wangluochucuoqingshuaxin-" + (parseInt(Math.random() * 1e6) + 1e6);
}
get _fill() {
return this.fill || this.color;
}
get _stroke() {
return this.stroke || this.color;
}
get _width() {
return this.width || this.size;
}
get _height() {
return this.height || this.size;
}
get cls() {
return [
"cool-icon",
"cool-icon-hongqi",
this.spin ? "cool-icon-spin" : "",
this.rtl ? "cool-icon-rtl" : ""
].filter(Boolean).join(" ");
}
mounted() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
}
updated() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
}
}
const _sfc_main$5N = Wangluochucuoqingshuaxin;
const _hoisted_1$5N = ["width", "height"];
const _hoisted_2$5N = { icon: "cool" };
const _hoisted_3$5N = ["id"];
const _hoisted_4$55 = /* @__PURE__ */ createElementVNode("stop", {
"stop-color": "#d2d2d2",
offset: "0"
}, null, -1);
const _hoisted_5$1c = /* @__PURE__ */ createElementVNode("stop", {
"stop-opacity": "0",
"stop-color": "#d2d2d2",
offset: "1"
}, null, -1);
const _hoisted_6$o = [
_hoisted_4$55,
_hoisted_5$1c
];
const _hoisted_7$o = ["id"];
const _hoisted_8$i = ["id"];
const _hoisted_9$h = ["id"];
const _hoisted_10$h = ["id"];
const _hoisted_11$h = ["id"];
const _hoisted_12$h = ["id"];
const _hoisted_13$h = /* @__PURE__ */ createElementVNode("stop", {
"stop-color": "#e9e9e9",
offset: "0"
}, null, -1);
const _hoisted_14$h = /* @__PURE__ */ createElementVNode("stop", {
"stop-color": "#ccc",
offset: "1"
}, null, -1);
const _hoisted_15$h = [
_hoisted_13$h,
_hoisted_14$h
];
const _hoisted_16$d = ["id"];
const _hoisted_17$d = /* @__PURE__ */ createElementVNode("stop", {
"stop-color": "#f2f2f2",
offset: "0"
}, null, -1);
const _hoisted_18$d = /* @__PURE__ */ createElementVNode("stop", {
"stop-color": "#d8d8d8",
offset: "1"
}, null, -1);
const _hoisted_19$d = [
_hoisted_17$d,
_hoisted_18$d
];
const _hoisted_20$b = ["id"];
const _hoisted_21$b = /* @__PURE__ */ createElementVNode("stop", {
"stop-color": "#fd763e",
offset: "0"
}, null, -1);
const _hoisted_22$b = /* @__PURE__ */ createElementVNode("stop", {
"stop-color": "#fd9351",
offset: "1"
}, null, -1);
const _hoisted_23$b = [
_hoisted_21$b,
_hoisted_22$b
];
const _hoisted_24$b = ["id"];
const _hoisted_25$b = /* @__PURE__ */ createElementVNode("stop", {
"stop-color": "#fd9351",
offset: "0"
}, null, -1);
const _hoisted_26$b = /* @__PURE__ */ createElementVNode("stop", {
"stop-color": "#fd763e",
offset: "1"
}, null, -1);
const _hoisted_27$b = [
_hoisted_25$b,
_hoisted_26$b
];
const _hoisted_28$b = ["fill"];
const _hoisted_29$b = ["fill"];
const _hoisted_30$a = ["fill"];
const _hoisted_31$a = ["fill"];
const _hoisted_32$a = ["fill"];
const _hoisted_33$a = ["fill"];
const _hoisted_34$a = ["fill"];
const _hoisted_35$a = ["fill"];
const _hoisted_36$a = { opacity: "0.8" };
const _hoisted_37$a = ["fill"];
const _hoisted_38$a = ["fill"];
function _sfc_render$5N(_ctx, _cache, $props, $setup, $data, $options) {
return openBlock(), createElementBlock("span", {
class: normalizeClass(_ctx.cls)
}, [
(openBlock(), createElementBlock("svg", {
xmlns: "http://www.w3.org/2000/svg",
width: _ctx._width,
height: _ctx._height,
viewBox: "0 0 240 150",
preserveAspectRatio: "xMidYMid meet",
fill: "",
role: "presentation",
ref: "host"
}, [
createElementVNode("g", _hoisted_2$5N, [
createElementVNode("defs", null, [
createElementVNode("linearGradient", {
gradientUnits: "userSpaceOnUse",
gradientTransform: "matrix(63.93 0 0 -65.41 -115162.17 63261.07)",
y2: "965.38",
x2: "1802.39",
y1: "966.96",
x1: "1801.75",
id: "a-" + _ctx._id
}, _hoisted_6$o, 8, _hoisted_3$5N),
createElementVNode("linearGradient", {
"xlink:href": "#a",
gradientTransform: "matrix(59.26 0 0 -64.97 -106395.75 62879.19)",
y2: "966.03",
x2: "1798.65",
y1: "966.95",
x1: "1799.01",
id: "b-" + _ctx._id
}, null, 8, _hoisted_7$o),
createElementVNode("linearGradient", {
"xlink:href": "#a",
gradientTransform: "matrix(370.52 0 0 -51.85 -676571.3 50246.62)",
y2: "966.54",
x2: "1826.34",
y1: "968.32",
x1: "1826.34",
id: "c-" + _ctx._id
}, null, 8, _hoisted_8$i),
createElementVNode("linearGradient", {
"xlink:href": "#a",
gradientTransform: "matrix(35.77 0 0 -55.85 -63409.16 54058.84)",
y2: "965.91",
x2: "1777.31",
y1: "967.03",
x1: "1777.65",
id: "d-" + _ctx._id
}, null, 8, _hoisted_9$h),
createElementVNode("linearGradient", {
"xlink:href": "#a",
gradientTransform: "matrix(32.84 0 0 -22.82 -58217.39 22127.33)",
y2: "968.04",
x2: "1774.96",
y1: "969.86",
x1: "1774.96",
id: "e-" + _ctx._id
}, null, 8, _hoisted_10$h),
createElementVNode("linearGradient", {
"xlink:href": "#a",
gradientTransform: "matrix(40.65 0 0 -28.39 -72456.05 27490.23)",
y2: "966.91",
x2: "1785.03",
y1: "968.4",
x1: "1785.03",
id: "f-" + _ctx._id
}, null, 8, _hoisted_11$h),
createElementVNode("linearGradient", {
gradientUnits: "userSpaceOnUse",
gradientTransform: "matrix(144 0 0 -99 -261704.38 95613.64)",
y2: "964.75",
x2: "1818.24",
y1: "965.32",
x1: "1818.24",
id: "g-" + _ctx._id
}, _hoisted_15$h, 8, _hoisted_12$h),
createElementVNode("linearGradient", {
gradientUnits: "userSpaceOnUse",
gradientTransform: "matrix(140 0 0 -100 -254378.56 96574.48)",
y2: "964.73",
x2: "1817.86",
y1: "965.29",
x1: "1817.86",
id: "h-" + _ctx._id
}, _hoisted_19$d, 8, _hoisted_16$d),
createElementVNode("linearGradient", {
gradientUnits: "userSpaceOnUse",
gradientTransform: "matrix(31 0 0 -77 -54742.61 74398.04)",
y2: "965.11",
x2: "1769.95",
y1: "965.67",
x1: "1769.95",
id: "i-" + _ctx._id
}, _hoisted_23$b, 8, _hoisted_20$b),
createElementVNode("linearGradient", {
gradientUnits: "userSpaceOnUse",
gradientTransform: "matrix(29 0 0 -76 -51080.7 73434.2)",
y2: "965.14",
x2: "1765.73",
y1: "965.7",
x1: "1765.73",
id: "j-" + _ctx._id
}, _hoisted_27$b, 8, _hoisted_24$b)
]),
createElementVNode("path", {
d: "M48.83 116.62c-4.38-2-9.13-7.29-7.78-12.3a1.63 1.63 0 0 1 1.76.69s7.6 11.87 5.47.95c-1-5.13-2.74-10.1-2.87-15.4-.23-9.63 8.59-12.31 11.16-1.66.33 1.41 1.62 12.85 4.54 11.54a2.1 2.1 0 0 0 .88-.89c1.48-2.43 1.92-6 4.64-6.83 2.39-.75 4.74 1.32 6 3.46 2.61 4.34 6.09 15.15.76 18.81s-18.78 4.24-24.53 1.68Z",
fill: "url(#a-" + _ctx._id + ")"
}, null, 8, _hoisted_28$b),
createElementVNode("path", {
d: "M171.91 120.3c-1.93-4.41-1.88-11.53 2.5-14.35a1.63 1.63 0 0 1 .82 1.72s-2.33 13.9 3.42 4.37c2.73-4.49 4.78-9.32 8.2-13.35 6.28-7.34 14.65-3.35 9.4 6.25-.69 1.27-7.43 10.62-4.38 11.62a2.14 2.14 0 0 0 1.25-.08c2.73-.81 5.46-3.16 8-2 2.26 1 2.62 4.15 2.14 6.6-1 5-5.81 10.53-12.22 9.67s-16.64-4.67-19.16-10.43Z",
"data-name": "\u8DEF\u5F84",
fill: "url(#b-" + _ctx._id + ")"
}, null, 8, _hoisted_29$b),
createElementVNode("path", {
d: "M222.54 129.48c-25.76-17.68-62.18-28.7-102.54-28.7s-76.78 11-102.54 28.7Z",
"data-name": "\u8DEF\u5F84",
fill: "url(#c-" + _ctx._id + ")"
}, null, 8, _hoisted_30$a),
createElementVNode("path", {
d: "M183.14 77.48c-1.63 2-2.68 5-1.7 7.55.67 1.79 2.71 1.8 2.57 4.29a8.07 8.07 0 0 1-1.25 3.48 26.34 26.34 0 0 1-4.21 5.53 4.86 4.86 0 0 1 1.83 4.5 8.09 8.09 0 0 1-2.31 4.49 3.24 3.24 0 0 1-1.36 1 3.47 3.47 0 0 1-1.57 0 27.45 27.45 0 0 1-7.34-2.32c-1.44-.69-2.92-1.64-3.41-3.14-.57-1.72.33-2.27 1.31-2.81l.25-.14a3.36 3.36 0 0 0 1.3-1.08c.72-1.18.74-2.75 1-4.06.37-1.93-.18-5.46 2.24-6.22.94-.29 2-.22 2.89-.52 2-.65 2.88-2.57 3.69-4.5l.15-.35a11.63 11.63 0 0 1 1.68-3c1.01-1.28 3.56-1.87 4.24-2.7ZM177.23 89s-7.36 8.58-7.12 16.52h2.38s.86-9.62 4.74-16.52Z",
fill: "url(#d-" + _ctx._id + ")"
}, null, 8, _hoisted_31$a),
createElementVNode("path", {
d: "M75.1 31.32a5.39 5.39 0 0 0-10.49-1.83 4.49 4.49 0 1 0 .14 9h9.9a3.59 3.59 0 0 0 .45-7.15Z",
"data-name": "\u8DEF\u5F84",
fill: "url(#e-" + _ctx._id + ")"
}, null, 8, _hoisted_32$a),
createElementVNode("path", {
d: "M116 25.89a6.73 6.73 0 0 0-13-2.28 5.62 5.62 0 0 0 .18 11.24h12.3a4.48 4.48 0 0 0 .56-8.93Z",
"data-name": "\u8DEF\u5F84",
fill: "url(#f-" + _ctx._id + ")"
}, null, 8, _hoisted_33$a),
createElementVNode("path", {
d: "M118.56 99a5.07 5.07 0 0 1 7 0l-3.49 3.87ZM118 84.76v.23l-2 10.69a9.49 9.49 0 0 0-.9.78l-7-7.2c2.71-2.7 6.39-3.8 9.89-4.5Zm7-.59c3.6.68 7.7 1.53 10.48 4.46l-7.2 7.83c-2-2.14-5.25-3.67-7.92-3.39l3.62-6.55ZM122.05 66l-1.39 9.22a27.8 27.8 0 0 0-18 8.34L95.29 76c5.24-5.35 12.37-7.92 19.11-9.44l-.24 1h4Zm11.45 1.2c5.5 1.8 11.5 4.09 15.9 8.47L142 83a30.55 30.55 0 0 0-13-7.74Zm.64-18.72c10 2.25 20.26 6.53 28.05 14.29l-7.37 7.36a50.36 50.36 0 0 0-18.25-11.9l2.13-3.45-4.87.35h-2.47ZM118 47.3l-2.28 9.57a46.38 46.38 0 0 0-27.21 13.26l-7.18-7.23c10-10 23.54-14.78 36.65-15.6Z",
"data-name": "\u5F62\u72B6\u7ED3\u5408",
opacity: "0.55",
fill: "url(#g-" + _ctx._id + ")"
}, null, 8, _hoisted_34$a),
createElementVNode("path", {
d: "M118.56 98.47a3.77 3.77 0 0 1 5.82 0l-2.91 3.31Zm0-14.83v.24l-1.93 10.68a8.17 8.17 0 0 0-.88.78l-6.46-6.6a18.11 18.11 0 0 1 9.32-5.1Zm6.51-.58a18.12 18.12 0 0 1 9.79 5.39l-6.53 6.89a8.93 8.93 0 0 0-7.44-2.81l3.16-7.13Zm-11.3-18.14-.24 1h7.94l-1.4 7.65a28.14 28.14 0 0 0-18.13 8.29l-6.68-6.73a37.67 37.67 0 0 1 18.51-10.24Zm19.85 1.17a37.46 37.46 0 0 1 15.22 9.2l-6.64 6.6a28.14 28.14 0 0 0-12.58-7.26Zm.61-19.3a54.81 54.81 0 0 1 26.84 15l-6.52 6.6A45.87 45.87 0 0 0 137 57.3l1.58-3.48h-6.65Zm-15.67-1.17-2.29 9.56a46.53 46.53 0 0 0-27.22 13.25l-6.6-6.57a55.84 55.84 0 0 1 36.11-16.24Z",
"data-name": "\u5F62\u72B6\u7ED3\u5408",
opacity: "0.4",
fill: "url(#h-" + _ctx._id + ")"
}, null, 8, _hoisted_35$a),
createElementVNode("g", _hoisted_36$a, [
createElementVNode("path", {
"data-name": "\u8DEF\u5F84",
d: "m123.36 41.63 10.23-.5-5.15 15.95 6.24-.61-13.73 27.9L125.98 63l-8.71-.5 6.09-20.87z",
fill: "url(#i-" + _ctx._id + ")"
}, null, 8, _hoisted_37$a),
createElementVNode("path", {
"data-name": "\u8DEF\u5F84",
d: "M122.32 41.13h10.09l-5.05 15.43h6.19l-12.53 27.25 3.9-21.34h-7.65l5.05-21.34z",
fill: "url(#j-" + _ctx._id + ")"
}, null, 8, _hoisted_38$a)
])
])
], 8, _hoisted_1$5N))
], 2);
}
var Wangluochucuoqingshuaxin$1 = /* @__PURE__ */ _export_sfc(_sfc_main$5N, [["render", _sfc_render$5N]]);
class Props$5M {
constructor() {
this.width = prop({
type: [Number, String],
required: false
});
this.height = prop({
type: [Number, String],
required: false
});
this.stroke = prop({
type: String,
required: false
});
this.fill = prop({
type: String,
required: false
});
this.color = prop({
type: String,
required: false
});
this.spin = prop({
type: Boolean,
required: false,
default: false
});
this.rtl = prop({
type: Boolean,
required: false,
default: false
});
this.size = prop({ default: "1em" });
}
}
class Zanwujiankongshuju extends Vue.with(Props$5M) {
get _id() {
return "hongqi-Zanwujiankongshuju-" + (parseInt(Math.random() * 1e6) + 1e6);
}
get _fill() {
return this.fill || this.color;
}
get _stroke() {
return this.stroke || this.color;
}
get _width() {
return this.width || this.size;
}
get _height() {
return this.height || this.size;
}
get cls() {
return [
"cool-icon",
"cool-icon-hongqi",
this.spin ? "cool-icon-spin" : "",
this.rtl ? "cool-icon-rtl" : ""
].filter(Boolean).join(" ");
}
mounted() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
}
updated() {
var _a, _b;
if (!this._fill) {
(_a = this.$refs.host) == null ? void 0 : _a.querySelectorAll("[data-follow-fill]").forEach((item) => {
item.setAttribute("fill", item.getAttribute("data-follow-fill") || "");
});
}
if (!this._stroke) {
(_b = this.$refs.host) == null ? void 0 : _b.querySelectorAll("[data-follow-stroke]").forEach((item) => {
item.setAttribute("stroke", item.getAttribute("data-follow-stroke") || "");
});
}
}
}
const _sfc_main$5M = Zanwujiankongshuju;
const _hoisted_1$5M = ["width", "height"];
const _hoisted_2$5M = { icon: "cool" };
const _hoisted_3$5M = ["id"];
const _hoisted_4$54 = /* @__PURE__ */ createElementVNode("stop", {
"stop-color": "#d2d2d2",
offset: "0"
}, null, -1);
const _hoisted_5$1b = /* @__PURE__ */ createElementVNode("stop", {
"stop-opacity": "0",
"stop-color": "#d2d2d2",
offset: "1"
}, null, -1);
const _hoisted_6$n = [
_hoisted_4$54,
_hoisted_5$1b
];
const _hoisted_7$n = ["id"];
const _hoisted_8$h = ["id"];
const _hoisted_9$g = ["id"];
const _hoisted_10$g = ["id"];
const _hoisted_11$g = ["id"];
const _hoisted_12$g = ["id"];
const _hoisted_13$g = /* @__PURE__ */ createElementVNode("stop", {
"stop-color": "#f3f3f3",
offset: "0"
}, null, -1);
const _hoisted_14$g = /* @__PURE__ */ createElementVNode("stop", {
"stop-color": "#c5c5c5",
offset: "1"
}, null, -1);
const _hoisted_15$g = [
_hoisted_13$g,
_hoisted_14$g
];
const _hoisted_16$c = ["id"];
const _hoisted_17$c = /* @__PURE__ */ createElementVNode("stop", {
"stop-color": "#c5c5c5",
offset: "0"
}, null, -1);
const _hoisted_18$c = /* @__PURE__ */ createElementVNode("stop", {
"stop-color": "#e6e6e6",
offset: "1"
}, null, -1);
const _hoisted_19$c = [
_hoisted_17$c,
_hoisted_18$c
];
const _hoisted_20$a = ["id"];
const _hoisted_21$a = /* @__PURE__ */ createElementVNode("stop", {
"stop-color": "#fd9351",
offset: "0"
}, null, -1);
const _hoisted_22$a = /* @__PURE__ */ createElementVNode("stop", {
"stop-color": "#fd763e",
offset: "1"
}, null, -1);
const _hoisted_23$a = [
_hoisted_21$a,
_hoisted_22$a
];
const _hoisted_24$a = ["fill"];
const _hoisted_25$a = ["fill"];
const _hoisted_26$a = ["fill"];
const _hoisted_27$a = ["fill"];
const _hoisted_28$a = ["fill"];
const _hoisted_29$a = ["fill"];
const _hoisted_30$9 = ["fill"];
const _hoisted_31$9 = /* @__PURE__ */ createElementVNode("path", {
d: "M90.62 54.51h61a1.32 1.32 0 0 1 1.38 1.33v43.25H89.28V55.85a1.33 1.33 0 0 1 1.34-1.34Z",
"data-name": "\u8DEF\u5F84",
style: { "isolation": "isolate" },
opacity: "0.2",
fill: "#fff"
}, null, -1);
const _hoisted_32$9 = ["fill"];
const _hoisted_33$9 = /* @__PURE__ */ createElementVNode("path", {
d: "M107.63 98.63h24.25c0 1.25-.74 2.26-1.66 2.26h-20.91c-.94-.01-1.68-1.02-1.68-2.26Z",
"data-name": "\u8DEF\u5F84",
fill: "#b5b5b5",
opacity: "0.55"
}, null, -1);
const _hoisted_34$9 = /* @__PURE__ */ createElementVNode("path", {
d: "M127.09 88a1 1 0 0 1-1-.89V72.93a1 1 0 0 1 1-.88h5a1 1 0 0 1 1 .88v14.13a1 1 0 0 1-1 .88Zm-10.9-.88V66.54a1 1 0 0 1 1-.88h5a.94.94 0 0 1 .72.22.92.92 0 0 1 .36.66v20.52a1 1 0 0 1-1 .88h-5a.94.94 0 0 1-.72-.22 1 1 0 0 1-.36-.66Zm-9.8 0V76.43a1 1 0 0 1 1-.87h5a1 1 0 0 1 1 .87v10.63a.92.92 0 0 1-.33.66 1 1 0 0 1-.71.24h-5a1 1 0 0 1-1-.9Z",
fill: "#fff",
opacity: "0.55"
}, null, -1);
const _hoisted_35$9 = ["fill"];
const _hoisted_36$9 = /* @__PURE__ */ createElementVNode("circle", {
r: "3.08",
cy: "92.35",
cx: "143.53",
"data-name": "\u692D\u5706\u5F62",
opacity: "0.8",
fill: "#fff"
}, null, -1);
const _hoisted_37$9 = /* @__PURE__ */ createElementVNode("circle", {
r: "3.08",
cy: "92.35",
cx: "153.55",
"data-name": "\u692D\u5706\u5F62",
opacity: "0.8",
fill: "#fff"
}, null, -1);
const _hoisted_38$9 = /* @__PURE__ */ createElementVNode("circle", {
r: "3.08",
cy: "92.35",
cx: "163.54",
"data-name": "\u692D\u5706\u5F62",
opacity: "0.8",
fill: "#fff"
}, null, -1);
function _sfc_render$5M(_ctx, _cache, $props, $setup, $data, $options) {
return openBlock(), createElementBlock("span", {
class: normalizeClass(_ctx.cls)
}, [
(openBlock(), createElementBlock("svg", {
xmlns: "http://www.w3.org/2000/svg",
width: _ctx._width,
height: _ctx._height,
viewBox: "0 0 240 150",
preserveAspectRatio: "xMidYMid meet",
fill: "",
role: "presentation",
ref: "host"
}, [
createElementVNode("g", _hoisted_2$5M, [
createElementVNode("defs", null, [
createElementVNode("linearGradient", {
gradientUnits: "userSpaceOnUse",
gradientTransform: "matrix(63.93 0 0 -65.41 -98337.16 63261.07)",
y2: "965.38",
x2: "1539.21",
y1: "966.96",
x1: "1538.57",
id: "a-" + _ctx._id
}, _hoisted_6$n, 8, _hoisted_3$5M),
createElementVNode("linearGradient", {
"xlink:href": "#a",
gradientTransform: "matrix(59.26 0 0 -64.97 -90819.86 62879.19)",
y2: "966.03",
x2: "1535.8",
y1: "966.95",
x1: "1536.16",
id: "b-" + _ctx._id
}, null, 8, _hoisted_7$n),
createElementVNode("linearGradient", {
"xlink:href": "#a",
gradientTransform: "matrix(370.52 0 0 -51.85 -577775.72 50246.62)",
y2: "966.54",
x2: "1559.69",
y1: "968.32",
x1: "1559.69",
id: "c-" + _ctx._id
}, null, 8, _hoisted_8$h),
createElementVNode("linearGradient", {
"xlink:href": "#a",
gradientTransform: "matrix(35.77 0 0 -55.85 -54112.05 54058.84)",
y2: "965.91",
x2: "1517.43",
y1: "967.03",
x1: "1517.76",
id: "d-" + _ctx._id
}, null, 8, _hoisted_9$g),
createElementVNode("linearGradient", {
"xlink:href": "#a",
gradientTransform: "matrix(32.84 0 0 -22.82 -49705.03 22127.33)",
y2: "968.04",
x2: "1515.74",
y1: "969.86",
x1: "1515.74",
id: "e-" + _ctx._id
}, null, 8, _hoisted_10$g),
createElementVNode("linearGradient", {
"xlink:href": "#a",
gradientTransform: "matrix(40.65 0 0 -28.39 -61854.64 27490.23)",
y2: "966.91",
x2: "1524.25",
y1: "968.4",
x1: "1524.25",
id: "f-" + _ctx._id
}, null, 8, _hoisted_11$g),
createElementVNode("linearGradient", {
gradientUnits: "userSpaceOnUse",
y2: "104.33",
x2: "120.76",
y1: "45.13",
x1: "120.76",
id: "g-" + _ctx._id
}, _hoisted_15$g, 8, _hoisted_12$g),
createElementVNode("linearGradient", {
gradientUnits: "userSpaceOnUse",
gradientTransform: "matrix(149.38 0 0 -6.86 -231905.94 6888.5)",
y2: "989.85",
x2: "1553.1",
y1: "989.83",
x1: "1553.38",
id: "h-" + _ctx._id
}, _hoisted_19$c, 8, _hoisted_16$c),
createElementVNode("linearGradient", {
gradientUnits: "userSpaceOnUse",
gradientTransform: "matrix(71.68 0 0 -71.68 -110310.26 69318.77)",
y2: "965.46",
x2: "1541.28",
y1: "966.08",
x1: "1540.91",
id: "i-" + _ctx._id
}, _hoisted_23$a, 8, _hoisted_20$a)
]),
createElementVNode("path", {
d: "M48.83 116.62c-4.38-2-9.13-7.29-7.78-12.3a1.63 1.63 0 0 1 1.76.69s7.6 11.87 5.47.95c-1-5.13-2.74-10.1-2.87-15.4-.23-9.63 8.59-12.31 11.16-1.66.33 1.41 1.62 12.85 4.54 11.54a2.1 2.1 0 0 0 .88-.89c1.48-2.43 1.92-6 4.64-6.83 2.39-.75 4.74 1.32 6 3.46 2.61 4.34 6.09 15.15.76 18.81s-18.78 4.24-24.53 1.68Z",
fill: "url(#a-" + _ctx._id + ")"
}, null, 8, _hoisted_24$a),
createElementVNode("path", {
d: "M171.91 120.3c-1.93-4.41-1.88-11.53 2.5-14.35a1.63 1.63 0 0 1 .82 1.72s-2.33 13.9 3.42 4.37c2.73-4.49 4.78-9.32 8.2-13.35 6.28-7.34 14.65-3.35 9.4 6.25-.69 1.27-7.43 10.62-4.38 11.62a2.14 2.14