Authored by 王涛

图标

  1 +@import "../icon/iconfont.css";
1 @import "../css/assets.css"; 2 @import "../css/assets.css";
2 3
3 4
  1 +/* Logo 字体 */
  2 +@font-face {
  3 + font-family: "iconfont logo";
  4 + src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834');
  5 + src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834#iefix') format('embedded-opentype'),
  6 + url('https://at.alicdn.com/t/font_985780_km7mi63cihi.woff?t=1545807318834') format('woff'),
  7 + url('https://at.alicdn.com/t/font_985780_km7mi63cihi.ttf?t=1545807318834') format('truetype'),
  8 + url('https://at.alicdn.com/t/font_985780_km7mi63cihi.svg?t=1545807318834#iconfont') format('svg');
  9 +}
  10 +
  11 +.logo {
  12 + font-family: "iconfont logo";
  13 + font-size: 160px;
  14 + font-style: normal;
  15 + -webkit-font-smoothing: antialiased;
  16 + -moz-osx-font-smoothing: grayscale;
  17 +}
  18 +
  19 +/* tabs */
  20 +.nav-tabs {
  21 + position: relative;
  22 +}
  23 +
  24 +.nav-tabs .nav-more {
  25 + position: absolute;
  26 + right: 0;
  27 + bottom: 0;
  28 + height: 42px;
  29 + line-height: 42px;
  30 + color: #666;
  31 +}
  32 +
  33 +#tabs {
  34 + border-bottom: 1px solid #eee;
  35 +}
  36 +
  37 +#tabs li {
  38 + cursor: pointer;
  39 + width: 100px;
  40 + height: 40px;
  41 + line-height: 40px;
  42 + text-align: center;
  43 + font-size: 16px;
  44 + border-bottom: 2px solid transparent;
  45 + position: relative;
  46 + z-index: 1;
  47 + margin-bottom: -1px;
  48 + color: #666;
  49 +}
  50 +
  51 +
  52 +#tabs .active {
  53 + border-bottom-color: #f00;
  54 + color: #222;
  55 +}
  56 +
  57 +.tab-container .content {
  58 + display: none;
  59 +}
  60 +
  61 +/* 页面布局 */
  62 +.main {
  63 + padding: 30px 100px;
  64 + width: 960px;
  65 + margin: 0 auto;
  66 +}
  67 +
  68 +.main .logo {
  69 + color: #333;
  70 + text-align: left;
  71 + margin-bottom: 30px;
  72 + line-height: 1;
  73 + height: 110px;
  74 + margin-top: -50px;
  75 + overflow: hidden;
  76 + *zoom: 1;
  77 +}
  78 +
  79 +.main .logo a {
  80 + font-size: 160px;
  81 + color: #333;
  82 +}
  83 +
  84 +.helps {
  85 + margin-top: 40px;
  86 +}
  87 +
  88 +.helps pre {
  89 + padding: 20px;
  90 + margin: 10px 0;
  91 + border: solid 1px #e7e1cd;
  92 + background-color: #fffdef;
  93 + overflow: auto;
  94 +}
  95 +
  96 +.icon_lists {
  97 + width: 100% !important;
  98 + overflow: hidden;
  99 + *zoom: 1;
  100 +}
  101 +
  102 +.icon_lists li {
  103 + width: 100px;
  104 + margin-bottom: 10px;
  105 + margin-right: 20px;
  106 + text-align: center;
  107 + list-style: none !important;
  108 + cursor: default;
  109 +}
  110 +
  111 +.icon_lists li .code-name {
  112 + line-height: 1.2;
  113 +}
  114 +
  115 +.icon_lists .icon {
  116 + display: block;
  117 + height: 100px;
  118 + line-height: 100px;
  119 + font-size: 42px;
  120 + margin: 10px auto;
  121 + color: #333;
  122 + -webkit-transition: font-size 0.25s linear, width 0.25s linear;
  123 + -moz-transition: font-size 0.25s linear, width 0.25s linear;
  124 + transition: font-size 0.25s linear, width 0.25s linear;
  125 +}
  126 +
  127 +.icon_lists .icon:hover {
  128 + font-size: 100px;
  129 +}
  130 +
  131 +.icon_lists .svg-icon {
  132 + /* 通过设置 font-size 来改变图标大小 */
  133 + width: 1em;
  134 + /* 图标和文字相邻时,垂直对齐 */
  135 + vertical-align: -0.15em;
  136 + /* 通过设置 color 来改变 SVG 的颜色/fill */
  137 + fill: currentColor;
  138 + /* path 和 stroke 溢出 viewBox 部分在 IE 下会显示
  139 + normalize.css 中也包含这行 */
  140 + overflow: hidden;
  141 +}
  142 +
  143 +.icon_lists li .name,
  144 +.icon_lists li .code-name {
  145 + color: #666;
  146 +}
  147 +
  148 +/* markdown 样式 */
  149 +.markdown {
  150 + color: #666;
  151 + font-size: 14px;
  152 + line-height: 1.8;
  153 +}
  154 +
  155 +.highlight {
  156 + line-height: 1.5;
  157 +}
  158 +
  159 +.markdown img {
  160 + vertical-align: middle;
  161 + max-width: 100%;
  162 +}
  163 +
  164 +.markdown h1 {
  165 + color: #404040;
  166 + font-weight: 500;
  167 + line-height: 40px;
  168 + margin-bottom: 24px;
  169 +}
  170 +
  171 +.markdown h2,
  172 +.markdown h3,
  173 +.markdown h4,
  174 +.markdown h5,
  175 +.markdown h6 {
  176 + color: #404040;
  177 + margin: 1.6em 0 0.6em 0;
  178 + font-weight: 500;
  179 + clear: both;
  180 +}
  181 +
  182 +.markdown h1 {
  183 + font-size: 28px;
  184 +}
  185 +
  186 +.markdown h2 {
  187 + font-size: 22px;
  188 +}
  189 +
  190 +.markdown h3 {
  191 + font-size: 16px;
  192 +}
  193 +
  194 +.markdown h4 {
  195 + font-size: 14px;
  196 +}
  197 +
  198 +.markdown h5 {
  199 + font-size: 12px;
  200 +}
  201 +
  202 +.markdown h6 {
  203 + font-size: 12px;
  204 +}
  205 +
  206 +.markdown hr {
  207 + height: 1px;
  208 + border: 0;
  209 + background: #e9e9e9;
  210 + margin: 16px 0;
  211 + clear: both;
  212 +}
  213 +
  214 +.markdown p {
  215 + margin: 1em 0;
  216 +}
  217 +
  218 +.markdown>p,
  219 +.markdown>blockquote,
  220 +.markdown>.highlight,
  221 +.markdown>ol,
  222 +.markdown>ul {
  223 + width: 80%;
  224 +}
  225 +
  226 +.markdown ul>li {
  227 + list-style: circle;
  228 +}
  229 +
  230 +.markdown>ul li,
  231 +.markdown blockquote ul>li {
  232 + margin-left: 20px;
  233 + padding-left: 4px;
  234 +}
  235 +
  236 +.markdown>ul li p,
  237 +.markdown>ol li p {
  238 + margin: 0.6em 0;
  239 +}
  240 +
  241 +.markdown ol>li {
  242 + list-style: decimal;
  243 +}
  244 +
  245 +.markdown>ol li,
  246 +.markdown blockquote ol>li {
  247 + margin-left: 20px;
  248 + padding-left: 4px;
  249 +}
  250 +
  251 +.markdown code {
  252 + margin: 0 3px;
  253 + padding: 0 5px;
  254 + background: #eee;
  255 + border-radius: 3px;
  256 +}
  257 +
  258 +.markdown strong,
  259 +.markdown b {
  260 + font-weight: 600;
  261 +}
  262 +
  263 +.markdown>table {
  264 + border-collapse: collapse;
  265 + border-spacing: 0px;
  266 + empty-cells: show;
  267 + border: 1px solid #e9e9e9;
  268 + width: 95%;
  269 + margin-bottom: 24px;
  270 +}
  271 +
  272 +.markdown>table th {
  273 + white-space: nowrap;
  274 + color: #333;
  275 + font-weight: 600;
  276 +}
  277 +
  278 +.markdown>table th,
  279 +.markdown>table td {
  280 + border: 1px solid #e9e9e9;
  281 + padding: 8px 16px;
  282 + text-align: left;
  283 +}
  284 +
  285 +.markdown>table th {
  286 + background: #F7F7F7;
  287 +}
  288 +
  289 +.markdown blockquote {
  290 + font-size: 90%;
  291 + color: #999;
  292 + border-left: 4px solid #e9e9e9;
  293 + padding-left: 0.8em;
  294 + margin: 1em 0;
  295 +}
  296 +
  297 +.markdown blockquote p {
  298 + margin: 0;
  299 +}
  300 +
  301 +.markdown .anchor {
  302 + opacity: 0;
  303 + transition: opacity 0.3s ease;
  304 + margin-left: 8px;
  305 +}
  306 +
  307 +.markdown .waiting {
  308 + color: #ccc;
  309 +}
  310 +
  311 +.markdown h1:hover .anchor,
  312 +.markdown h2:hover .anchor,
  313 +.markdown h3:hover .anchor,
  314 +.markdown h4:hover .anchor,
  315 +.markdown h5:hover .anchor,
  316 +.markdown h6:hover .anchor {
  317 + opacity: 1;
  318 + display: inline-block;
  319 +}
  320 +
  321 +.markdown>br,
  322 +.markdown>p>br {
  323 + clear: both;
  324 +}
  325 +
  326 +
  327 +.hljs {
  328 + display: block;
  329 + background: white;
  330 + padding: 0.5em;
  331 + color: #333333;
  332 + overflow-x: auto;
  333 +}
  334 +
  335 +.hljs-comment,
  336 +.hljs-meta {
  337 + color: #969896;
  338 +}
  339 +
  340 +.hljs-string,
  341 +.hljs-variable,
  342 +.hljs-template-variable,
  343 +.hljs-strong,
  344 +.hljs-emphasis,
  345 +.hljs-quote {
  346 + color: #df5000;
  347 +}
  348 +
  349 +.hljs-keyword,
  350 +.hljs-selector-tag,
  351 +.hljs-type {
  352 + color: #a71d5d;
  353 +}
  354 +
  355 +.hljs-literal,
  356 +.hljs-symbol,
  357 +.hljs-bullet,
  358 +.hljs-attribute {
  359 + color: #0086b3;
  360 +}
  361 +
  362 +.hljs-section,
  363 +.hljs-name {
  364 + color: #63a35c;
  365 +}
  366 +
  367 +.hljs-tag {
  368 + color: #333333;
  369 +}
  370 +
  371 +.hljs-title,
  372 +.hljs-attr,
  373 +.hljs-selector-id,
  374 +.hljs-selector-class,
  375 +.hljs-selector-attr,
  376 +.hljs-selector-pseudo {
  377 + color: #795da3;
  378 +}
  379 +
  380 +.hljs-addition {
  381 + color: #55a532;
  382 + background-color: #eaffea;
  383 +}
  384 +
  385 +.hljs-deletion {
  386 + color: #bd2c00;
  387 + background-color: #ffecec;
  388 +}
  389 +
  390 +.hljs-link {
  391 + text-decoration: underline;
  392 +}
  393 +
  394 +/* 代码高亮 */
  395 +/* PrismJS 1.15.0
  396 +https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript */
  397 +/**
  398 + * prism.js default theme for JavaScript, CSS and HTML
  399 + * Based on dabblet (http://dabblet.com)
  400 + * @author Lea Verou
  401 + */
  402 +code[class*="language-"],
  403 +pre[class*="language-"] {
  404 + color: black;
  405 + background: none;
  406 + text-shadow: 0 1px white;
  407 + font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
  408 + text-align: left;
  409 + white-space: pre;
  410 + word-spacing: normal;
  411 + word-break: normal;
  412 + word-wrap: normal;
  413 + line-height: 1.5;
  414 +
  415 + -moz-tab-size: 4;
  416 + -o-tab-size: 4;
  417 + tab-size: 4;
  418 +
  419 + -webkit-hyphens: none;
  420 + -moz-hyphens: none;
  421 + -ms-hyphens: none;
  422 + hyphens: none;
  423 +}
  424 +
  425 +pre[class*="language-"]::-moz-selection,
  426 +pre[class*="language-"] ::-moz-selection,
  427 +code[class*="language-"]::-moz-selection,
  428 +code[class*="language-"] ::-moz-selection {
  429 + text-shadow: none;
  430 + background: #b3d4fc;
  431 +}
  432 +
  433 +pre[class*="language-"]::selection,
  434 +pre[class*="language-"] ::selection,
  435 +code[class*="language-"]::selection,
  436 +code[class*="language-"] ::selection {
  437 + text-shadow: none;
  438 + background: #b3d4fc;
  439 +}
  440 +
  441 +@media print {
  442 +
  443 + code[class*="language-"],
  444 + pre[class*="language-"] {
  445 + text-shadow: none;
  446 + }
  447 +}
  448 +
  449 +/* Code blocks */
  450 +pre[class*="language-"] {
  451 + padding: 1em;
  452 + margin: .5em 0;
  453 + overflow: auto;
  454 +}
  455 +
  456 +:not(pre)>code[class*="language-"],
  457 +pre[class*="language-"] {
  458 + background: #f5f2f0;
  459 +}
  460 +
  461 +/* Inline code */
  462 +:not(pre)>code[class*="language-"] {
  463 + padding: .1em;
  464 + border-radius: .3em;
  465 + white-space: normal;
  466 +}
  467 +
  468 +.token.comment,
  469 +.token.prolog,
  470 +.token.doctype,
  471 +.token.cdata {
  472 + color: slategray;
  473 +}
  474 +
  475 +.token.punctuation {
  476 + color: #999;
  477 +}
  478 +
  479 +.namespace {
  480 + opacity: .7;
  481 +}
  482 +
  483 +.token.property,
  484 +.token.tag,
  485 +.token.boolean,
  486 +.token.number,
  487 +.token.constant,
  488 +.token.symbol,
  489 +.token.deleted {
  490 + color: #905;
  491 +}
  492 +
  493 +.token.selector,
  494 +.token.attr-name,
  495 +.token.string,
  496 +.token.char,
  497 +.token.builtin,
  498 +.token.inserted {
  499 + color: #690;
  500 +}
  501 +
  502 +.token.operator,
  503 +.token.entity,
  504 +.token.url,
  505 +.language-css .token.string,
  506 +.style .token.string {
  507 + color: #9a6e3a;
  508 + background: hsla(0, 0%, 100%, .5);
  509 +}
  510 +
  511 +.token.atrule,
  512 +.token.attr-value,
  513 +.token.keyword {
  514 + color: #07a;
  515 +}
  516 +
  517 +.token.function,
  518 +.token.class-name {
  519 + color: #DD4A68;
  520 +}
  521 +
  522 +.token.regex,
  523 +.token.important,
  524 +.token.variable {
  525 + color: #e90;
  526 +}
  527 +
  528 +.token.important,
  529 +.token.bold {
  530 + font-weight: bold;
  531 +}
  532 +
  533 +.token.italic {
  534 + font-style: italic;
  535 +}
  536 +
  537 +.token.entity {
  538 + cursor: help;
  539 +}
  1 +<!DOCTYPE html>
  2 +<html>
  3 +<head>
  4 + <meta charset="utf-8"/>
  5 + <title>iconfont Demo</title>
  6 + <link rel="shortcut icon" href="//img.alicdn.com/imgextra/i2/O1CN01ZyAlrn1MwaMhqz36G_!!6000000001499-73-tps-64-64.ico" type="image/x-icon"/>
  7 + <link rel="icon" type="image/svg+xml" href="//img.alicdn.com/imgextra/i4/O1CN01EYTRnJ297D6vehehJ_!!6000000008020-55-tps-64-64.svg"/>
  8 + <link rel="stylesheet" href="https://g.alicdn.com/thx/cube/1.3.2/cube.min.css">
  9 + <link rel="stylesheet" href="demo.css">
  10 + <link rel="stylesheet" href="iconfont.css">
  11 + <script src="iconfont.js"></script>
  12 + <!-- jQuery -->
  13 + <script src="https://a1.alicdn.com/oss/uploads/2018/12/26/7bfddb60-08e8-11e9-9b04-53e73bb6408b.js"></script>
  14 + <!-- 代码高亮 -->
  15 + <script src="https://a1.alicdn.com/oss/uploads/2018/12/26/a3f714d0-08e6-11e9-8a15-ebf944d7534c.js"></script>
  16 + <style>
  17 + .main .logo {
  18 + margin-top: 0;
  19 + height: auto;
  20 + }
  21 +
  22 + .main .logo a {
  23 + display: flex;
  24 + align-items: center;
  25 + }
  26 +
  27 + .main .logo .sub-title {
  28 + margin-left: 0.5em;
  29 + font-size: 22px;
  30 + color: #fff;
  31 + background: linear-gradient(-45deg, #3967FF, #B500FE);
  32 + -webkit-background-clip: text;
  33 + -webkit-text-fill-color: transparent;
  34 + }
  35 + </style>
  36 +</head>
  37 +<body>
  38 + <div class="main">
  39 + <h1 class="logo"><a href="https://www.iconfont.cn/" title="iconfont 首页" target="_blank">
  40 + <img width="200" src="https://img.alicdn.com/imgextra/i3/O1CN01Mn65HV1FfSEzR6DKv_!!6000000000514-55-tps-228-59.svg">
  41 +
  42 + </a></h1>
  43 + <div class="nav-tabs">
  44 + <ul id="tabs" class="dib-box">
  45 + <li class="dib active"><span>Unicode</span></li>
  46 + <li class="dib"><span>Font class</span></li>
  47 + <li class="dib"><span>Symbol</span></li>
  48 + </ul>
  49 +
  50 + <a href="https://www.iconfont.cn/manage/index?manage_type=myprojects&projectId=2843738" target="_blank" class="nav-more">查看项目</a>
  51 +
  52 + </div>
  53 + <div class="tab-container">
  54 + <div class="content unicode" style="display: block;">
  55 + <ul class="icon_lists dib-box">
  56 +
  57 + <li class="dib">
  58 + <span class="icon iconfont">&#xe600;</span>
  59 + <div class="name">文件</div>
  60 + <div class="code-name">&amp;#xe600;</div>
  61 + </li>
  62 +
  63 + <li class="dib">
  64 + <span class="icon iconfont">&#xe601;</span>
  65 + <div class="name">编辑文件</div>
  66 + <div class="code-name">&amp;#xe601;</div>
  67 + </li>
  68 +
  69 + <li class="dib">
  70 + <span class="icon iconfont">&#xe602;</span>
  71 + <div class="name">等待文件</div>
  72 + <div class="code-name">&amp;#xe602;</div>
  73 + </li>
  74 +
  75 + <li class="dib">
  76 + <span class="icon iconfont">&#xe603;</span>
  77 + <div class="name">删除文件</div>
  78 + <div class="code-name">&amp;#xe603;</div>
  79 + </li>
  80 +
  81 + <li class="dib">
  82 + <span class="icon iconfont">&#xe604;</span>
  83 + <div class="name">剪切文件</div>
  84 + <div class="code-name">&amp;#xe604;</div>
  85 + </li>
  86 +
  87 + <li class="dib">
  88 + <span class="icon iconfont">&#xe605;</span>
  89 + <div class="name">文件夹</div>
  90 + <div class="code-name">&amp;#xe605;</div>
  91 + </li>
  92 +
  93 + <li class="dib">
  94 + <span class="icon iconfont">&#xe606;</span>
  95 + <div class="name">删除文件夹</div>
  96 + <div class="code-name">&amp;#xe606;</div>
  97 + </li>
  98 +
  99 + <li class="dib">
  100 + <span class="icon iconfont">&#xe607;</span>
  101 + <div class="name">未打卡的文件夹</div>
  102 + <div class="code-name">&amp;#xe607;</div>
  103 + </li>
  104 +
  105 + <li class="dib">
  106 + <span class="icon iconfont">&#xe608;</span>
  107 + <div class="name">资料库</div>
  108 + <div class="code-name">&amp;#xe608;</div>
  109 + </li>
  110 +
  111 + <li class="dib">
  112 + <span class="icon iconfont">&#xe609;</span>
  113 + <div class="name">文本</div>
  114 + <div class="code-name">&amp;#xe609;</div>
  115 + </li>
  116 +
  117 + <li class="dib">
  118 + <span class="icon iconfont">&#xe60a;</span>
  119 + <div class="name">代码文件</div>
  120 + <div class="code-name">&amp;#xe60a;</div>
  121 + </li>
  122 +
  123 + <li class="dib">
  124 + <span class="icon iconfont">&#xe611;</span>
  125 + <div class="name">excel</div>
  126 + <div class="code-name">&amp;#xe611;</div>
  127 + </li>
  128 +
  129 + <li class="dib">
  130 + <span class="icon iconfont">&#xeac3;</span>
  131 + <div class="name">24gf-fileEmpty</div>
  132 + <div class="code-name">&amp;#xeac3;</div>
  133 + </li>
  134 +
  135 + <li class="dib">
  136 + <span class="icon iconfont">&#xeac4;</span>
  137 + <div class="name">24gf-fileText</div>
  138 + <div class="code-name">&amp;#xeac4;</div>
  139 + </li>
  140 +
  141 + <li class="dib">
  142 + <span class="icon iconfont">&#xeac5;</span>
  143 + <div class="name">24gf-folderHeart</div>
  144 + <div class="code-name">&amp;#xeac5;</div>
  145 + </li>
  146 +
  147 + <li class="dib">
  148 + <span class="icon iconfont">&#xeac6;</span>
  149 + <div class="name">24gf-folderStar</div>
  150 + <div class="code-name">&amp;#xeac6;</div>
  151 + </li>
  152 +
  153 + <li class="dib">
  154 + <span class="icon iconfont">&#xeac7;</span>
  155 + <div class="name">24gf-folderOpen</div>
  156 + <div class="code-name">&amp;#xeac7;</div>
  157 + </li>
  158 +
  159 + <li class="dib">
  160 + <span class="icon iconfont">&#xe619;</span>
  161 + <div class="name">文件</div>
  162 + <div class="code-name">&amp;#xe619;</div>
  163 + </li>
  164 +
  165 + <li class="dib">
  166 + <span class="icon iconfont">&#xea40;</span>
  167 + <div class="name">文件,图片,image</div>
  168 + <div class="code-name">&amp;#xea40;</div>
  169 + </li>
  170 +
  171 + <li class="dib">
  172 + <span class="icon iconfont">&#xea41;</span>
  173 + <div class="name">文件,图片,image</div>
  174 + <div class="code-name">&amp;#xea41;</div>
  175 + </li>
  176 +
  177 + <li class="dib">
  178 + <span class="icon iconfont">&#xea42;</span>
  179 + <div class="name">文件,json</div>
  180 + <div class="code-name">&amp;#xea42;</div>
  181 + </li>
  182 +
  183 + <li class="dib">
  184 + <span class="icon iconfont">&#xea43;</span>
  185 + <div class="name">文件,json</div>
  186 + <div class="code-name">&amp;#xea43;</div>
  187 + </li>
  188 +
  189 + <li class="dib">
  190 + <span class="icon iconfont">&#xea44;</span>
  191 + <div class="name">文件,pdf</div>
  192 + <div class="code-name">&amp;#xea44;</div>
  193 + </li>
  194 +
  195 + <li class="dib">
  196 + <span class="icon iconfont">&#xea45;</span>
  197 + <div class="name">文件,pdf</div>
  198 + <div class="code-name">&amp;#xea45;</div>
  199 + </li>
  200 +
  201 + <li class="dib">
  202 + <span class="icon iconfont">&#xea46;</span>
  203 + <div class="name">文件,txt</div>
  204 + <div class="code-name">&amp;#xea46;</div>
  205 + </li>
  206 +
  207 + <li class="dib">
  208 + <span class="icon iconfont">&#xea47;</span>
  209 + <div class="name">文件,txt</div>
  210 + <div class="code-name">&amp;#xea47;</div>
  211 + </li>
  212 +
  213 + <li class="dib">
  214 + <span class="icon iconfont">&#xea48;</span>
  215 + <div class="name">文件,excel</div>
  216 + <div class="code-name">&amp;#xea48;</div>
  217 + </li>
  218 +
  219 + <li class="dib">
  220 + <span class="icon iconfont">&#xea49;</span>
  221 + <div class="name">文件,excel</div>
  222 + <div class="code-name">&amp;#xea49;</div>
  223 + </li>
  224 +
  225 + <li class="dib">
  226 + <span class="icon iconfont">&#xea4a;</span>
  227 + <div class="name">文件,ppt</div>
  228 + <div class="code-name">&amp;#xea4a;</div>
  229 + </li>
  230 +
  231 + <li class="dib">
  232 + <span class="icon iconfont">&#xea4b;</span>
  233 + <div class="name">文件,ppt</div>
  234 + <div class="code-name">&amp;#xea4b;</div>
  235 + </li>
  236 +
  237 + <li class="dib">
  238 + <span class="icon iconfont">&#xea4c;</span>
  239 + <div class="name">文件,word</div>
  240 + <div class="code-name">&amp;#xea4c;</div>
  241 + </li>
  242 +
  243 + <li class="dib">
  244 + <span class="icon iconfont">&#xea4d;</span>
  245 + <div class="name">文件,word</div>
  246 + <div class="code-name">&amp;#xea4d;</div>
  247 + </li>
  248 +
  249 + <li class="dib">
  250 + <span class="icon iconfont">&#xea4e;</span>
  251 + <div class="name">文件,音频</div>
  252 + <div class="code-name">&amp;#xea4e;</div>
  253 + </li>
  254 +
  255 + <li class="dib">
  256 + <span class="icon iconfont">&#xea4f;</span>
  257 + <div class="name">文件,音频</div>
  258 + <div class="code-name">&amp;#xea4f;</div>
  259 + </li>
  260 +
  261 + <li class="dib">
  262 + <span class="icon iconfont">&#xea50;</span>
  263 + <div class="name">文件,视频</div>
  264 + <div class="code-name">&amp;#xea50;</div>
  265 + </li>
  266 +
  267 + <li class="dib">
  268 + <span class="icon iconfont">&#xea51;</span>
  269 + <div class="name">文件,视频</div>
  270 + <div class="code-name">&amp;#xea51;</div>
  271 + </li>
  272 +
  273 + <li class="dib">
  274 + <span class="icon iconfont">&#xea52;</span>
  275 + <div class="name">文件,zip</div>
  276 + <div class="code-name">&amp;#xea52;</div>
  277 + </li>
  278 +
  279 + <li class="dib">
  280 + <span class="icon iconfont">&#xea53;</span>
  281 + <div class="name">文件,zip</div>
  282 + <div class="code-name">&amp;#xea53;</div>
  283 + </li>
  284 +
  285 + </ul>
  286 + <div class="article markdown">
  287 + <h2 id="unicode-">Unicode 引用</h2>
  288 + <hr>
  289 +
  290 + <p>Unicode 是字体在网页端最原始的应用方式,特点是:</p>
  291 + <ul>
  292 + <li>支持按字体的方式去动态调整图标大小,颜色等等。</li>
  293 + <li>默认情况下不支持多色,直接添加多色图标会自动去色。</li>
  294 + </ul>
  295 + <blockquote>
  296 + <p>注意:新版 iconfont 支持两种方式引用多色图标:SVG symbol 引用方式和彩色字体图标模式。(使用彩色字体图标需要在「编辑项目」中开启「彩色」选项后并重新生成。)</p>
  297 + </blockquote>
  298 + <p>Unicode 使用步骤如下:</p>
  299 + <h3 id="-font-face">第一步:拷贝项目下面生成的 <code>@font-face</code></h3>
  300 +<pre><code class="language-css"
  301 +>@font-face {
  302 + font-family: 'iconfont';
  303 + src: url('iconfont.woff2?t=1632902475934') format('woff2'),
  304 + url('iconfont.woff?t=1632902475934') format('woff'),
  305 + url('iconfont.ttf?t=1632902475934') format('truetype');
  306 +}
  307 +</code></pre>
  308 + <h3 id="-iconfont-">第二步:定义使用 iconfont 的样式</h3>
  309 +<pre><code class="language-css"
  310 +>.iconfont {
  311 + font-family: "iconfont" !important;
  312 + font-size: 16px;
  313 + font-style: normal;
  314 + -webkit-font-smoothing: antialiased;
  315 + -moz-osx-font-smoothing: grayscale;
  316 +}
  317 +</code></pre>
  318 + <h3 id="-">第三步:挑选相应图标并获取字体编码,应用于页面</h3>
  319 +<pre>
  320 +<code class="language-html"
  321 +>&lt;span class="iconfont"&gt;&amp;#x33;&lt;/span&gt;
  322 +</code></pre>
  323 + <blockquote>
  324 + <p>"iconfont" 是你项目下的 font-family。可以通过编辑项目查看,默认是 "iconfont"。</p>
  325 + </blockquote>
  326 + </div>
  327 + </div>
  328 + <div class="content font-class">
  329 + <ul class="icon_lists dib-box">
  330 +
  331 + <li class="dib">
  332 + <span class="icon iconfont icon-wenjian"></span>
  333 + <div class="name">
  334 + 文件
  335 + </div>
  336 + <div class="code-name">.icon-wenjian
  337 + </div>
  338 + </li>
  339 +
  340 + <li class="dib">
  341 + <span class="icon iconfont icon-bianjiwenjian"></span>
  342 + <div class="name">
  343 + 编辑文件
  344 + </div>
  345 + <div class="code-name">.icon-bianjiwenjian
  346 + </div>
  347 + </li>
  348 +
  349 + <li class="dib">
  350 + <span class="icon iconfont icon-dengdaiwenjian"></span>
  351 + <div class="name">
  352 + 等待文件
  353 + </div>
  354 + <div class="code-name">.icon-dengdaiwenjian
  355 + </div>
  356 + </li>
  357 +
  358 + <li class="dib">
  359 + <span class="icon iconfont icon-shanchuwenjian"></span>
  360 + <div class="name">
  361 + 删除文件
  362 + </div>
  363 + <div class="code-name">.icon-shanchuwenjian
  364 + </div>
  365 + </li>
  366 +
  367 + <li class="dib">
  368 + <span class="icon iconfont icon-jianqiewenjian"></span>
  369 + <div class="name">
  370 + 剪切文件
  371 + </div>
  372 + <div class="code-name">.icon-jianqiewenjian
  373 + </div>
  374 + </li>
  375 +
  376 + <li class="dib">
  377 + <span class="icon iconfont icon-wenjianjia"></span>
  378 + <div class="name">
  379 + 文件夹
  380 + </div>
  381 + <div class="code-name">.icon-wenjianjia
  382 + </div>
  383 + </li>
  384 +
  385 + <li class="dib">
  386 + <span class="icon iconfont icon-shanchuwenjianjia"></span>
  387 + <div class="name">
  388 + 删除文件夹
  389 + </div>
  390 + <div class="code-name">.icon-shanchuwenjianjia
  391 + </div>
  392 + </li>
  393 +
  394 + <li class="dib">
  395 + <span class="icon iconfont icon-weidaqiadewenjianjia"></span>
  396 + <div class="name">
  397 + 未打卡的文件夹
  398 + </div>
  399 + <div class="code-name">.icon-weidaqiadewenjianjia
  400 + </div>
  401 + </li>
  402 +
  403 + <li class="dib">
  404 + <span class="icon iconfont icon-ziliaoku"></span>
  405 + <div class="name">
  406 + 资料库
  407 + </div>
  408 + <div class="code-name">.icon-ziliaoku
  409 + </div>
  410 + </li>
  411 +
  412 + <li class="dib">
  413 + <span class="icon iconfont icon-wenben"></span>
  414 + <div class="name">
  415 + 文本
  416 + </div>
  417 + <div class="code-name">.icon-wenben
  418 + </div>
  419 + </li>
  420 +
  421 + <li class="dib">
  422 + <span class="icon iconfont icon-daimawenjian"></span>
  423 + <div class="name">
  424 + 代码文件
  425 + </div>
  426 + <div class="code-name">.icon-daimawenjian
  427 + </div>
  428 + </li>
  429 +
  430 + <li class="dib">
  431 + <span class="icon iconfont icon-excel"></span>
  432 + <div class="name">
  433 + excel
  434 + </div>
  435 + <div class="code-name">.icon-excel
  436 + </div>
  437 + </li>
  438 +
  439 + <li class="dib">
  440 + <span class="icon iconfont icon-24gf-fileEmpty"></span>
  441 + <div class="name">
  442 + 24gf-fileEmpty
  443 + </div>
  444 + <div class="code-name">.icon-24gf-fileEmpty
  445 + </div>
  446 + </li>
  447 +
  448 + <li class="dib">
  449 + <span class="icon iconfont icon-24gf-fileText"></span>
  450 + <div class="name">
  451 + 24gf-fileText
  452 + </div>
  453 + <div class="code-name">.icon-24gf-fileText
  454 + </div>
  455 + </li>
  456 +
  457 + <li class="dib">
  458 + <span class="icon iconfont icon-24gf-folderHeart"></span>
  459 + <div class="name">
  460 + 24gf-folderHeart
  461 + </div>
  462 + <div class="code-name">.icon-24gf-folderHeart
  463 + </div>
  464 + </li>
  465 +
  466 + <li class="dib">
  467 + <span class="icon iconfont icon-24gf-folderStar"></span>
  468 + <div class="name">
  469 + 24gf-folderStar
  470 + </div>
  471 + <div class="code-name">.icon-24gf-folderStar
  472 + </div>
  473 + </li>
  474 +
  475 + <li class="dib">
  476 + <span class="icon iconfont icon-24gf-folderOpen"></span>
  477 + <div class="name">
  478 + 24gf-folderOpen
  479 + </div>
  480 + <div class="code-name">.icon-24gf-folderOpen
  481 + </div>
  482 + </li>
  483 +
  484 + <li class="dib">
  485 + <span class="icon iconfont icon-wenjian1"></span>
  486 + <div class="name">
  487 + 文件
  488 + </div>
  489 + <div class="code-name">.icon-wenjian1
  490 + </div>
  491 + </li>
  492 +
  493 + <li class="dib">
  494 + <span class="icon iconfont icon-image"></span>
  495 + <div class="name">
  496 + 文件,图片,image
  497 + </div>
  498 + <div class="code-name">.icon-image
  499 + </div>
  500 + </li>
  501 +
  502 + <li class="dib">
  503 + <span class="icon iconfont icon-image-full"></span>
  504 + <div class="name">
  505 + 文件,图片,image
  506 + </div>
  507 + <div class="code-name">.icon-image-full
  508 + </div>
  509 + </li>
  510 +
  511 + <li class="dib">
  512 + <span class="icon iconfont icon-json-full"></span>
  513 + <div class="name">
  514 + 文件,json
  515 + </div>
  516 + <div class="code-name">.icon-json-full
  517 + </div>
  518 + </li>
  519 +
  520 + <li class="dib">
  521 + <span class="icon iconfont icon-json"></span>
  522 + <div class="name">
  523 + 文件,json
  524 + </div>
  525 + <div class="code-name">.icon-json
  526 + </div>
  527 + </li>
  528 +
  529 + <li class="dib">
  530 + <span class="icon iconfont icon-pdf"></span>
  531 + <div class="name">
  532 + 文件,pdf
  533 + </div>
  534 + <div class="code-name">.icon-pdf
  535 + </div>
  536 + </li>
  537 +
  538 + <li class="dib">
  539 + <span class="icon iconfont icon-pdf-full"></span>
  540 + <div class="name">
  541 + 文件,pdf
  542 + </div>
  543 + <div class="code-name">.icon-pdf-full
  544 + </div>
  545 + </li>
  546 +
  547 + <li class="dib">
  548 + <span class="icon iconfont icon-txt-full"></span>
  549 + <div class="name">
  550 + 文件,txt
  551 + </div>
  552 + <div class="code-name">.icon-txt-full
  553 + </div>
  554 + </li>
  555 +
  556 + <li class="dib">
  557 + <span class="icon iconfont icon-txt"></span>
  558 + <div class="name">
  559 + 文件,txt
  560 + </div>
  561 + <div class="code-name">.icon-txt
  562 + </div>
  563 + </li>
  564 +
  565 + <li class="dib">
  566 + <span class="icon iconfont icon-excel1"></span>
  567 + <div class="name">
  568 + 文件,excel
  569 + </div>
  570 + <div class="code-name">.icon-excel1
  571 + </div>
  572 + </li>
  573 +
  574 + <li class="dib">
  575 + <span class="icon iconfont icon-excel-full"></span>
  576 + <div class="name">
  577 + 文件,excel
  578 + </div>
  579 + <div class="code-name">.icon-excel-full
  580 + </div>
  581 + </li>
  582 +
  583 + <li class="dib">
  584 + <span class="icon iconfont icon-ppt"></span>
  585 + <div class="name">
  586 + 文件,ppt
  587 + </div>
  588 + <div class="code-name">.icon-ppt
  589 + </div>
  590 + </li>
  591 +
  592 + <li class="dib">
  593 + <span class="icon iconfont icon-ppt-full"></span>
  594 + <div class="name">
  595 + 文件,ppt
  596 + </div>
  597 + <div class="code-name">.icon-ppt-full
  598 + </div>
  599 + </li>
  600 +
  601 + <li class="dib">
  602 + <span class="icon iconfont icon-word-full"></span>
  603 + <div class="name">
  604 + 文件,word
  605 + </div>
  606 + <div class="code-name">.icon-word-full
  607 + </div>
  608 + </li>
  609 +
  610 + <li class="dib">
  611 + <span class="icon iconfont icon-word"></span>
  612 + <div class="name">
  613 + 文件,word
  614 + </div>
  615 + <div class="code-name">.icon-word
  616 + </div>
  617 + </li>
  618 +
  619 + <li class="dib">
  620 + <span class="icon iconfont icon-audio-full"></span>
  621 + <div class="name">
  622 + 文件,音频
  623 + </div>
  624 + <div class="code-name">.icon-audio-full
  625 + </div>
  626 + </li>
  627 +
  628 + <li class="dib">
  629 + <span class="icon iconfont icon-audio"></span>
  630 + <div class="name">
  631 + 文件,音频
  632 + </div>
  633 + <div class="code-name">.icon-audio
  634 + </div>
  635 + </li>
  636 +
  637 + <li class="dib">
  638 + <span class="icon iconfont icon-avi-full"></span>
  639 + <div class="name">
  640 + 文件,视频
  641 + </div>
  642 + <div class="code-name">.icon-avi-full
  643 + </div>
  644 + </li>
  645 +
  646 + <li class="dib">
  647 + <span class="icon iconfont icon-avi"></span>
  648 + <div class="name">
  649 + 文件,视频
  650 + </div>
  651 + <div class="code-name">.icon-avi
  652 + </div>
  653 + </li>
  654 +
  655 + <li class="dib">
  656 + <span class="icon iconfont icon-zip-full"></span>
  657 + <div class="name">
  658 + 文件,zip
  659 + </div>
  660 + <div class="code-name">.icon-zip-full
  661 + </div>
  662 + </li>
  663 +
  664 + <li class="dib">
  665 + <span class="icon iconfont icon-zip"></span>
  666 + <div class="name">
  667 + 文件,zip
  668 + </div>
  669 + <div class="code-name">.icon-zip
  670 + </div>
  671 + </li>
  672 +
  673 + </ul>
  674 + <div class="article markdown">
  675 + <h2 id="font-class-">font-class 引用</h2>
  676 + <hr>
  677 +
  678 + <p>font-class 是 Unicode 使用方式的一种变种,主要是解决 Unicode 书写不直观,语意不明确的问题。</p>
  679 + <p>与 Unicode 使用方式相比,具有如下特点:</p>
  680 + <ul>
  681 + <li>相比于 Unicode 语意明确,书写更直观。可以很容易分辨这个 icon 是什么。</li>
  682 + <li>因为使用 class 来定义图标,所以当要替换图标时,只需要修改 class 里面的 Unicode 引用。</li>
  683 + </ul>
  684 + <p>使用步骤如下:</p>
  685 + <h3 id="-fontclass-">第一步:引入项目下面生成的 fontclass 代码:</h3>
  686 +<pre><code class="language-html">&lt;link rel="stylesheet" href="./iconfont.css"&gt;
  687 +</code></pre>
  688 + <h3 id="-">第二步:挑选相应图标并获取类名,应用于页面:</h3>
  689 +<pre><code class="language-html">&lt;span class="iconfont icon-xxx"&gt;&lt;/span&gt;
  690 +</code></pre>
  691 + <blockquote>
  692 + <p>"
  693 + iconfont" 是你项目下的 font-family。可以通过编辑项目查看,默认是 "iconfont"。</p>
  694 + </blockquote>
  695 + </div>
  696 + </div>
  697 + <div class="content symbol">
  698 + <ul class="icon_lists dib-box">
  699 +
  700 + <li class="dib">
  701 + <svg class="icon svg-icon" aria-hidden="true">
  702 + <use xlink:href="#icon-wenjian"></use>
  703 + </svg>
  704 + <div class="name">文件</div>
  705 + <div class="code-name">#icon-wenjian</div>
  706 + </li>
  707 +
  708 + <li class="dib">
  709 + <svg class="icon svg-icon" aria-hidden="true">
  710 + <use xlink:href="#icon-bianjiwenjian"></use>
  711 + </svg>
  712 + <div class="name">编辑文件</div>
  713 + <div class="code-name">#icon-bianjiwenjian</div>
  714 + </li>
  715 +
  716 + <li class="dib">
  717 + <svg class="icon svg-icon" aria-hidden="true">
  718 + <use xlink:href="#icon-dengdaiwenjian"></use>
  719 + </svg>
  720 + <div class="name">等待文件</div>
  721 + <div class="code-name">#icon-dengdaiwenjian</div>
  722 + </li>
  723 +
  724 + <li class="dib">
  725 + <svg class="icon svg-icon" aria-hidden="true">
  726 + <use xlink:href="#icon-shanchuwenjian"></use>
  727 + </svg>
  728 + <div class="name">删除文件</div>
  729 + <div class="code-name">#icon-shanchuwenjian</div>
  730 + </li>
  731 +
  732 + <li class="dib">
  733 + <svg class="icon svg-icon" aria-hidden="true">
  734 + <use xlink:href="#icon-jianqiewenjian"></use>
  735 + </svg>
  736 + <div class="name">剪切文件</div>
  737 + <div class="code-name">#icon-jianqiewenjian</div>
  738 + </li>
  739 +
  740 + <li class="dib">
  741 + <svg class="icon svg-icon" aria-hidden="true">
  742 + <use xlink:href="#icon-wenjianjia"></use>
  743 + </svg>
  744 + <div class="name">文件夹</div>
  745 + <div class="code-name">#icon-wenjianjia</div>
  746 + </li>
  747 +
  748 + <li class="dib">
  749 + <svg class="icon svg-icon" aria-hidden="true">
  750 + <use xlink:href="#icon-shanchuwenjianjia"></use>
  751 + </svg>
  752 + <div class="name">删除文件夹</div>
  753 + <div class="code-name">#icon-shanchuwenjianjia</div>
  754 + </li>
  755 +
  756 + <li class="dib">
  757 + <svg class="icon svg-icon" aria-hidden="true">
  758 + <use xlink:href="#icon-weidaqiadewenjianjia"></use>
  759 + </svg>
  760 + <div class="name">未打卡的文件夹</div>
  761 + <div class="code-name">#icon-weidaqiadewenjianjia</div>
  762 + </li>
  763 +
  764 + <li class="dib">
  765 + <svg class="icon svg-icon" aria-hidden="true">
  766 + <use xlink:href="#icon-ziliaoku"></use>
  767 + </svg>
  768 + <div class="name">资料库</div>
  769 + <div class="code-name">#icon-ziliaoku</div>
  770 + </li>
  771 +
  772 + <li class="dib">
  773 + <svg class="icon svg-icon" aria-hidden="true">
  774 + <use xlink:href="#icon-wenben"></use>
  775 + </svg>
  776 + <div class="name">文本</div>
  777 + <div class="code-name">#icon-wenben</div>
  778 + </li>
  779 +
  780 + <li class="dib">
  781 + <svg class="icon svg-icon" aria-hidden="true">
  782 + <use xlink:href="#icon-daimawenjian"></use>
  783 + </svg>
  784 + <div class="name">代码文件</div>
  785 + <div class="code-name">#icon-daimawenjian</div>
  786 + </li>
  787 +
  788 + <li class="dib">
  789 + <svg class="icon svg-icon" aria-hidden="true">
  790 + <use xlink:href="#icon-excel"></use>
  791 + </svg>
  792 + <div class="name">excel</div>
  793 + <div class="code-name">#icon-excel</div>
  794 + </li>
  795 +
  796 + <li class="dib">
  797 + <svg class="icon svg-icon" aria-hidden="true">
  798 + <use xlink:href="#icon-24gf-fileEmpty"></use>
  799 + </svg>
  800 + <div class="name">24gf-fileEmpty</div>
  801 + <div class="code-name">#icon-24gf-fileEmpty</div>
  802 + </li>
  803 +
  804 + <li class="dib">
  805 + <svg class="icon svg-icon" aria-hidden="true">
  806 + <use xlink:href="#icon-24gf-fileText"></use>
  807 + </svg>
  808 + <div class="name">24gf-fileText</div>
  809 + <div class="code-name">#icon-24gf-fileText</div>
  810 + </li>
  811 +
  812 + <li class="dib">
  813 + <svg class="icon svg-icon" aria-hidden="true">
  814 + <use xlink:href="#icon-24gf-folderHeart"></use>
  815 + </svg>
  816 + <div class="name">24gf-folderHeart</div>
  817 + <div class="code-name">#icon-24gf-folderHeart</div>
  818 + </li>
  819 +
  820 + <li class="dib">
  821 + <svg class="icon svg-icon" aria-hidden="true">
  822 + <use xlink:href="#icon-24gf-folderStar"></use>
  823 + </svg>
  824 + <div class="name">24gf-folderStar</div>
  825 + <div class="code-name">#icon-24gf-folderStar</div>
  826 + </li>
  827 +
  828 + <li class="dib">
  829 + <svg class="icon svg-icon" aria-hidden="true">
  830 + <use xlink:href="#icon-24gf-folderOpen"></use>
  831 + </svg>
  832 + <div class="name">24gf-folderOpen</div>
  833 + <div class="code-name">#icon-24gf-folderOpen</div>
  834 + </li>
  835 +
  836 + <li class="dib">
  837 + <svg class="icon svg-icon" aria-hidden="true">
  838 + <use xlink:href="#icon-wenjian1"></use>
  839 + </svg>
  840 + <div class="name">文件</div>
  841 + <div class="code-name">#icon-wenjian1</div>
  842 + </li>
  843 +
  844 + <li class="dib">
  845 + <svg class="icon svg-icon" aria-hidden="true">
  846 + <use xlink:href="#icon-image"></use>
  847 + </svg>
  848 + <div class="name">文件,图片,image</div>
  849 + <div class="code-name">#icon-image</div>
  850 + </li>
  851 +
  852 + <li class="dib">
  853 + <svg class="icon svg-icon" aria-hidden="true">
  854 + <use xlink:href="#icon-image-full"></use>
  855 + </svg>
  856 + <div class="name">文件,图片,image</div>
  857 + <div class="code-name">#icon-image-full</div>
  858 + </li>
  859 +
  860 + <li class="dib">
  861 + <svg class="icon svg-icon" aria-hidden="true">
  862 + <use xlink:href="#icon-json-full"></use>
  863 + </svg>
  864 + <div class="name">文件,json</div>
  865 + <div class="code-name">#icon-json-full</div>
  866 + </li>
  867 +
  868 + <li class="dib">
  869 + <svg class="icon svg-icon" aria-hidden="true">
  870 + <use xlink:href="#icon-json"></use>
  871 + </svg>
  872 + <div class="name">文件,json</div>
  873 + <div class="code-name">#icon-json</div>
  874 + </li>
  875 +
  876 + <li class="dib">
  877 + <svg class="icon svg-icon" aria-hidden="true">
  878 + <use xlink:href="#icon-pdf"></use>
  879 + </svg>
  880 + <div class="name">文件,pdf</div>
  881 + <div class="code-name">#icon-pdf</div>
  882 + </li>
  883 +
  884 + <li class="dib">
  885 + <svg class="icon svg-icon" aria-hidden="true">
  886 + <use xlink:href="#icon-pdf-full"></use>
  887 + </svg>
  888 + <div class="name">文件,pdf</div>
  889 + <div class="code-name">#icon-pdf-full</div>
  890 + </li>
  891 +
  892 + <li class="dib">
  893 + <svg class="icon svg-icon" aria-hidden="true">
  894 + <use xlink:href="#icon-txt-full"></use>
  895 + </svg>
  896 + <div class="name">文件,txt</div>
  897 + <div class="code-name">#icon-txt-full</div>
  898 + </li>
  899 +
  900 + <li class="dib">
  901 + <svg class="icon svg-icon" aria-hidden="true">
  902 + <use xlink:href="#icon-txt"></use>
  903 + </svg>
  904 + <div class="name">文件,txt</div>
  905 + <div class="code-name">#icon-txt</div>
  906 + </li>
  907 +
  908 + <li class="dib">
  909 + <svg class="icon svg-icon" aria-hidden="true">
  910 + <use xlink:href="#icon-excel1"></use>
  911 + </svg>
  912 + <div class="name">文件,excel</div>
  913 + <div class="code-name">#icon-excel1</div>
  914 + </li>
  915 +
  916 + <li class="dib">
  917 + <svg class="icon svg-icon" aria-hidden="true">
  918 + <use xlink:href="#icon-excel-full"></use>
  919 + </svg>
  920 + <div class="name">文件,excel</div>
  921 + <div class="code-name">#icon-excel-full</div>
  922 + </li>
  923 +
  924 + <li class="dib">
  925 + <svg class="icon svg-icon" aria-hidden="true">
  926 + <use xlink:href="#icon-ppt"></use>
  927 + </svg>
  928 + <div class="name">文件,ppt</div>
  929 + <div class="code-name">#icon-ppt</div>
  930 + </li>
  931 +
  932 + <li class="dib">
  933 + <svg class="icon svg-icon" aria-hidden="true">
  934 + <use xlink:href="#icon-ppt-full"></use>
  935 + </svg>
  936 + <div class="name">文件,ppt</div>
  937 + <div class="code-name">#icon-ppt-full</div>
  938 + </li>
  939 +
  940 + <li class="dib">
  941 + <svg class="icon svg-icon" aria-hidden="true">
  942 + <use xlink:href="#icon-word-full"></use>
  943 + </svg>
  944 + <div class="name">文件,word</div>
  945 + <div class="code-name">#icon-word-full</div>
  946 + </li>
  947 +
  948 + <li class="dib">
  949 + <svg class="icon svg-icon" aria-hidden="true">
  950 + <use xlink:href="#icon-word"></use>
  951 + </svg>
  952 + <div class="name">文件,word</div>
  953 + <div class="code-name">#icon-word</div>
  954 + </li>
  955 +
  956 + <li class="dib">
  957 + <svg class="icon svg-icon" aria-hidden="true">
  958 + <use xlink:href="#icon-audio-full"></use>
  959 + </svg>
  960 + <div class="name">文件,音频</div>
  961 + <div class="code-name">#icon-audio-full</div>
  962 + </li>
  963 +
  964 + <li class="dib">
  965 + <svg class="icon svg-icon" aria-hidden="true">
  966 + <use xlink:href="#icon-audio"></use>
  967 + </svg>
  968 + <div class="name">文件,音频</div>
  969 + <div class="code-name">#icon-audio</div>
  970 + </li>
  971 +
  972 + <li class="dib">
  973 + <svg class="icon svg-icon" aria-hidden="true">
  974 + <use xlink:href="#icon-avi-full"></use>
  975 + </svg>
  976 + <div class="name">文件,视频</div>
  977 + <div class="code-name">#icon-avi-full</div>
  978 + </li>
  979 +
  980 + <li class="dib">
  981 + <svg class="icon svg-icon" aria-hidden="true">
  982 + <use xlink:href="#icon-avi"></use>
  983 + </svg>
  984 + <div class="name">文件,视频</div>
  985 + <div class="code-name">#icon-avi</div>
  986 + </li>
  987 +
  988 + <li class="dib">
  989 + <svg class="icon svg-icon" aria-hidden="true">
  990 + <use xlink:href="#icon-zip-full"></use>
  991 + </svg>
  992 + <div class="name">文件,zip</div>
  993 + <div class="code-name">#icon-zip-full</div>
  994 + </li>
  995 +
  996 + <li class="dib">
  997 + <svg class="icon svg-icon" aria-hidden="true">
  998 + <use xlink:href="#icon-zip"></use>
  999 + </svg>
  1000 + <div class="name">文件,zip</div>
  1001 + <div class="code-name">#icon-zip</div>
  1002 + </li>
  1003 +
  1004 + </ul>
  1005 + <div class="article markdown">
  1006 + <h2 id="symbol-">Symbol 引用</h2>
  1007 + <hr>
  1008 +
  1009 + <p>这是一种全新的使用方式,应该说这才是未来的主流,也是平台目前推荐的用法。相关介绍可以参考这篇<a href="">文章</a>
  1010 + 这种用法其实是做了一个 SVG 的集合,与另外两种相比具有如下特点:</p>
  1011 + <ul>
  1012 + <li>支持多色图标了,不再受单色限制。</li>
  1013 + <li>通过一些技巧,支持像字体那样,通过 <code>font-size</code>, <code>color</code> 来调整样式。</li>
  1014 + <li>兼容性较差,支持 IE9+,及现代浏览器。</li>
  1015 + <li>浏览器渲染 SVG 的性能一般,还不如 png。</li>
  1016 + </ul>
  1017 + <p>使用步骤如下:</p>
  1018 + <h3 id="-symbol-">第一步:引入项目下面生成的 symbol 代码:</h3>
  1019 +<pre><code class="language-html">&lt;script src="./iconfont.js"&gt;&lt;/script&gt;
  1020 +</code></pre>
  1021 + <h3 id="-css-">第二步:加入通用 CSS 代码(引入一次就行):</h3>
  1022 +<pre><code class="language-html">&lt;style&gt;
  1023 +.icon {
  1024 + width: 1em;
  1025 + height: 1em;
  1026 + vertical-align: -0.15em;
  1027 + fill: currentColor;
  1028 + overflow: hidden;
  1029 +}
  1030 +&lt;/style&gt;
  1031 +</code></pre>
  1032 + <h3 id="-">第三步:挑选相应图标并获取类名,应用于页面:</h3>
  1033 +<pre><code class="language-html">&lt;svg class="icon" aria-hidden="true"&gt;
  1034 + &lt;use xlink:href="#icon-xxx"&gt;&lt;/use&gt;
  1035 +&lt;/svg&gt;
  1036 +</code></pre>
  1037 + </div>
  1038 + </div>
  1039 +
  1040 + </div>
  1041 + </div>
  1042 + <script>
  1043 + $(document).ready(function () {
  1044 + $('.tab-container .content:first').show()
  1045 +
  1046 + $('#tabs li').click(function (e) {
  1047 + var tabContent = $('.tab-container .content')
  1048 + var index = $(this).index()
  1049 +
  1050 + if ($(this).hasClass('active')) {
  1051 + return
  1052 + } else {
  1053 + $('#tabs li').removeClass('active')
  1054 + $(this).addClass('active')
  1055 +
  1056 + tabContent.hide().eq(index).fadeIn()
  1057 + }
  1058 + })
  1059 + })
  1060 + </script>
  1061 +</body>
  1062 +</html>
  1 +@font-face {
  2 + font-family: "iconfont"; /* Project id 2843738 */
  3 + src: url('iconfont.woff2?t=1632902475934') format('woff2'),
  4 + url('iconfont.woff?t=1632902475934') format('woff'),
  5 + url('iconfont.ttf?t=1632902475934') format('truetype');
  6 +}
  7 +
  8 +.iconfont {
  9 + font-family: "iconfont" !important;
  10 + font-size: 16px;
  11 + font-style: normal;
  12 + -webkit-font-smoothing: antialiased;
  13 + -moz-osx-font-smoothing: grayscale;
  14 +}
  15 +
  16 +.icon-wenjian:before {
  17 + content: "\e600";
  18 +}
  19 +
  20 +.icon-bianjiwenjian:before {
  21 + content: "\e601";
  22 +}
  23 +
  24 +.icon-dengdaiwenjian:before {
  25 + content: "\e602";
  26 +}
  27 +
  28 +.icon-shanchuwenjian:before {
  29 + content: "\e603";
  30 +}
  31 +
  32 +.icon-jianqiewenjian:before {
  33 + content: "\e604";
  34 +}
  35 +
  36 +.icon-wenjianjia:before {
  37 + content: "\e605";
  38 +}
  39 +
  40 +.icon-shanchuwenjianjia:before {
  41 + content: "\e606";
  42 +}
  43 +
  44 +.icon-weidaqiadewenjianjia:before {
  45 + content: "\e607";
  46 +}
  47 +
  48 +.icon-ziliaoku:before {
  49 + content: "\e608";
  50 +}
  51 +
  52 +.icon-wenben:before {
  53 + content: "\e609";
  54 +}
  55 +
  56 +.icon-daimawenjian:before {
  57 + content: "\e60a";
  58 +}
  59 +
  60 +.icon-excel:before {
  61 + content: "\e611";
  62 +}
  63 +
  64 +.icon-24gf-fileEmpty:before {
  65 + content: "\eac3";
  66 +}
  67 +
  68 +.icon-24gf-fileText:before {
  69 + content: "\eac4";
  70 +}
  71 +
  72 +.icon-24gf-folderHeart:before {
  73 + content: "\eac5";
  74 +}
  75 +
  76 +.icon-24gf-folderStar:before {
  77 + content: "\eac6";
  78 +}
  79 +
  80 +.icon-24gf-folderOpen:before {
  81 + content: "\eac7";
  82 +}
  83 +
  84 +.icon-wenjian1:before {
  85 + content: "\e619";
  86 +}
  87 +
  88 +.icon-image:before {
  89 + content: "\ea40";
  90 +}
  91 +
  92 +.icon-image-full:before {
  93 + content: "\ea41";
  94 +}
  95 +
  96 +.icon-json-full:before {
  97 + content: "\ea42";
  98 +}
  99 +
  100 +.icon-json:before {
  101 + content: "\ea43";
  102 +}
  103 +
  104 +.icon-pdf:before {
  105 + content: "\ea44";
  106 +}
  107 +
  108 +.icon-pdf-full:before {
  109 + content: "\ea45";
  110 +}
  111 +
  112 +.icon-txt-full:before {
  113 + content: "\ea46";
  114 +}
  115 +
  116 +.icon-txt:before {
  117 + content: "\ea47";
  118 +}
  119 +
  120 +.icon-excel1:before {
  121 + content: "\ea48";
  122 +}
  123 +
  124 +.icon-excel-full:before {
  125 + content: "\ea49";
  126 +}
  127 +
  128 +.icon-ppt:before {
  129 + content: "\ea4a";
  130 +}
  131 +
  132 +.icon-ppt-full:before {
  133 + content: "\ea4b";
  134 +}
  135 +
  136 +.icon-word-full:before {
  137 + content: "\ea4c";
  138 +}
  139 +
  140 +.icon-word:before {
  141 + content: "\ea4d";
  142 +}
  143 +
  144 +.icon-audio-full:before {
  145 + content: "\ea4e";
  146 +}
  147 +
  148 +.icon-audio:before {
  149 + content: "\ea4f";
  150 +}
  151 +
  152 +.icon-avi-full:before {
  153 + content: "\ea50";
  154 +}
  155 +
  156 +.icon-avi:before {
  157 + content: "\ea51";
  158 +}
  159 +
  160 +.icon-zip-full:before {
  161 + content: "\ea52";
  162 +}
  163 +
  164 +.icon-zip:before {
  165 + content: "\ea53";
  166 +}
  167 +
  1 +!function(c){var t,l,h,v,a,o='<svg><symbol id="icon-wenjian" viewBox="0 0 1024 1024"><path d="M815.104 69.632q27.648 25.6 44.032 42.496t25.088 28.672 10.752 19.968 2.048 14.336l0 16.384-151.552 0q-10.24 0-17.92-7.68t-12.8-17.92-7.68-20.992-2.56-16.896l0-126.976 3.072 0q8.192 0 16.896 2.56t19.968 9.728 28.16 20.48 42.496 35.84zM640 129.024q0 20.48 6.144 42.496t19.456 40.96 33.792 31.232 48.128 12.288l149.504 0 0 577.536q0 29.696-11.776 53.248t-31.232 39.936-43.008 25.6-46.08 9.216l-503.808 0q-19.456 0-42.496-11.264t-43.008-29.696-33.28-41.984-13.312-49.152l0-696.32q0-21.504 9.728-44.544t26.624-42.496 38.4-32.256 45.056-12.8l391.168 0 0 128zM704.512 768q26.624 0 45.056-18.944t18.432-45.568-18.432-45.056-45.056-18.432l-384 0q-26.624 0-45.056 18.432t-18.432 45.056 18.432 45.568 45.056 18.944l384 0zM768 448.512q0-26.624-18.432-45.568t-45.056-18.944l-384 0q-26.624 0-45.056 18.944t-18.432 45.568 18.432 45.056 45.056 18.432l384 0q26.624 0 45.056-18.432t18.432-45.056z" ></path></symbol><symbol id="icon-bianjiwenjian" viewBox="0 0 1069 1024"><path d="M746.027944 190.083832q-11.241517 0-18.906188-7.664671t-12.774451-17.884232-7.664671-20.9501-2.55489-17.884232l0-125.700599 2.043912 0q9.197605 0 17.373253 2.043912t19.928144 9.708583 28.61477 21.461078 42.411178 36.279441q27.592814 24.526946 43.944112 41.389222t25.037924 28.61477 10.730539 19.928144 2.043912 14.307385l0 16.351297-150.227545 0zM1063.856287 671.42515q3.065868 8.175649 4.087824 20.439122t-10.219561 23.50499q-5.10978 5.10978-9.197605 9.708583t-7.153693 7.664671q-4.087824 4.087824-7.153693 6.131737l-86.866267-85.844311q6.131737-5.10978 13.796407-12.263473t12.774451-11.241517q12.263473-11.241517 26.570858-9.708583t23.50499 6.642715q10.219561 5.10978 21.972056 17.884232t17.884232 27.081836zM703.105788 766.467066q22.483034 0 37.812375-12.263473l-198.259481 206.43513-282.05988 0q-19.417166 0-42.411178-11.241517t-42.922156-29.636727-33.213573-42.411178-13.285429-49.56487l0-695.952096q0-21.461078 9.708583-44.966068t26.570858-42.411178 38.323353-31.680639 44.966068-12.774451l391.409182 0 0 127.744511q0 19.417166 6.131737 41.9002t18.906188 41.389222 33.213573 31.680639 49.053892 12.774451l149.205589 0 0 338.267465-140.007984 145.117764q11.241517-16.351297 11.241517-35.768463 0-26.570858-18.906188-45.477046t-45.477046-18.906188l-383.233533 0q-26.570858 0-44.966068 18.906188t-18.39521 45.477046 18.39521 44.966068 44.966068 18.39521l383.233533 0zM319.872255 383.233533q-26.570858 0-44.966068 18.906188t-18.39521 45.477046 18.39521 44.966068 44.966068 18.39521l383.233533 0q26.570858 0 45.477046-18.39521t18.906188-44.966068-18.906188-45.477046-45.477046-18.906188l-383.233533 0zM705.149701 895.233533l13.285429-13.285429 25.548902-25.548902q15.329341-15.329341 33.724551-34.235529t36.790419-37.301397q43.944112-43.944112 99.129741-98.107784l85.844311 85.844311-99.129741 99.129741-36.790419 36.790419-33.724551 33.724551q-14.307385 14.307385-24.015968 24.526946t-10.730539 11.241517q-5.10978 4.087824-11.241517 8.686627t-12.263473 7.664671-18.906188 7.664671-26.05988 8.686627-25.548902 7.153693-18.39521 4.087824q-12.263473 2.043912-16.351297-3.065868t-2.043912-17.373253q1.021956-6.131737 4.087824-18.39521t7.153693-25.037924 7.664671-24.015968 5.620758-15.329341q6.131737-13.285429 16.351297-23.50499z" ></path></symbol><symbol id="icon-dengdaiwenjian" viewBox="0 0 1093 1024"><path d="M748.819181 190.273726q-10.22977 0-17.902098-7.160839t-12.787213-17.390609-7.672328-20.971029-2.557443-17.902098l0-126.849151 2.045954 0q8.183816 0 16.879121 2.557443t20.45954 9.718282 28.643357 20.971029 42.453546 36.315684q27.62038 24.551449 43.476523 41.942058t24.551449 29.154845 10.741259 19.948052 2.045954 14.321678l0 15.344655-150.377622 0zM867.484515 573.89011q47.056943 0 87.976024 17.390609t71.608392 48.07992 48.07992 71.608392 17.390609 87.976024-17.390609 87.976024-48.07992 71.608392-71.608392 48.07992-87.976024 17.390609q-46.033966 0-86.953047-17.390609t-71.608392-48.07992-48.591409-71.608392-17.902098-87.976024 17.902098-87.976024 48.591409-71.608392 71.608392-48.07992 86.953047-17.390609zM995.356643 834.749251q9.206793 0 16.367632-10.22977t7.160839-24.551449-7.160839-24.551449-16.367632-10.22977l-97.182817 0 0-90.021978q0-8.183816-8.695305-14.321678t-24.03996-6.137862-23.016983 6.137862-7.672328 14.321678l0 112.527473q-2.045954 8.183816-2.045954 12.275724 0 14.321678 7.160839 24.551449t16.367632 10.22977l139.124875 0zM575.936064 768.255744q-1.022977 7.160839-1.022977 14.321678l0 15.344655q0 46.033966 13.298701 86.953047t36.827173 76.723277l-362.133866 0q-19.436563 0-42.453546-11.252747t-42.965035-29.666334-33.246753-41.942058-13.298701-49.102897l0-697.67033q0-21.482517 10.22977-44.4995t26.597403-42.453546 37.85015-32.223776 45.010989-12.787213l391.8002 0 0 127.872128q0 20.45954 6.137862 42.453546t19.436563 41.430569 33.758242 31.712288 48.07992 12.275724l149.354645 0 0 254.721279q-8.183816-2.045954-17.390609-2.045954l-18.413586 0q-76.723277 0-140.147852 35.804196t-102.297702 96.15984l-297.686314 0q-26.597403 0-45.522478 18.413586t-18.925075 45.010989 18.925075 45.522478 45.522478 18.925075l252.675325 0zM323.260739 383.616384q-26.597403 0-45.522478 18.925075t-18.925075 45.522478 18.925075 45.010989 45.522478 18.413586l383.616384 0q26.597403 0 45.010989-18.413586t18.413586-45.010989-18.413586-45.522478-45.010989-18.925075l-383.616384 0z" ></path></symbol><symbol id="icon-shanchuwenjian" viewBox="0 0 1094 1024"><path d="M748.819181 190.273726q-10.22977 0-17.902098-7.672328t-12.787213-17.902098-7.672328-20.971029-2.557443-17.902098l0-125.826174 2.045954 0q9.206793 0 17.390609 2.045954t19.948052 9.718282 28.643357 21.482517 42.453546 36.315684q27.62038 24.551449 43.988012 41.430569t24.551449 28.643357 10.741259 19.948052 2.557443 14.321678l0 16.367632-151.400599 0zM867.484515 572.867133q47.056943 0 87.976024 17.902098t71.608392 48.591409 48.591409 71.608392 17.902098 86.953047q0 47.056943-17.902098 87.976024t-48.591409 71.608392-71.608392 48.591409-87.976024 17.902098q-46.033966 0-86.953047-17.902098t-71.608392-48.591409-48.591409-71.608392-17.902098-87.976024q0-46.033966 17.902098-86.953047t48.591409-71.608392 71.608392-48.591409 86.953047-17.902098zM912.495504 798.945055l67.516484-67.516484q9.206793-9.206793 9.206793-22.505495t-9.206793-22.505495-22.505495-9.206793-22.505495 9.206793l-67.516484 67.516484-68.539461-67.516484q-9.206793-9.206793-22.505495-9.206793t-22.505495 9.206793-9.206793 22.505495 9.206793 22.505495l67.516484 67.516484-67.516484 68.539461q-9.206793 9.206793-9.206793 22.505495t9.206793 22.505495 22.505495 9.206793 22.505495-9.206793l68.539461-67.516484 67.516484 67.516484q9.206793 9.206793 22.505495 9.206793t22.505495-9.206793 9.206793-22.505495-9.206793-22.505495zM575.936064 767.232767q-1.022977 8.183816-1.022977 14.321678l0 15.344655q0 46.033966 13.298701 87.464535t37.85015 76.211788l-363.156843 0q-19.436563 0-42.453546-11.252747t-42.965035-29.666334-33.246753-41.942058-13.298701-49.102897l0-696.647353q0-21.482517 10.22977-45.010989t27.108891-42.453546 38.361638-31.712288 45.010989-12.787213l391.8002 0 0 127.872128q0 19.436563 6.137862 41.942058t18.925075 41.430569 33.246753 31.712288 49.102897 12.787213l149.354645 0 0 253.698302q-9.206793-1.022977-18.413586-1.534466t-17.390609-0.511489q-76.723277 0-140.659341 35.804196t-102.809191 96.15984l-297.686314 0q-26.597403 0-45.522478 18.925075t-18.925075 45.522478 18.925075 45.010989 45.522478 18.413586l252.675325 0zM323.260739 383.616384q-26.597403 0-45.522478 18.413586t-18.925075 45.010989 18.925075 45.522478 45.522478 18.925075l383.616384 0q26.597403 0 45.522478-18.925075t18.925075-45.522478-18.925075-45.010989-45.522478-18.413586l-383.616384 0z" ></path></symbol><symbol id="icon-jianqiewenjian" viewBox="0 0 1026 1024"><path d="M747.405104 190.174213q-11.246862 0-18.915177-7.668315t-12.780525-17.892735-7.668315-20.960061-2.556105-16.870293l0-126.782808 2.044884 0q9.201978 0 17.381514 2.556105t19.937619 9.713199 28.628376 20.960061 42.431343 36.296691q27.605934 24.538608 43.965006 41.920122t25.049829 28.628376 10.735641 19.426398 2.044884 14.314188l0 16.359072-150.298974 0zM764.786618 796.48232q-36.807912 7.157094-65.436288 19.426398-24.538608 11.246862-43.965006 30.67326t-16.359072 49.077216q2.044884 20.44884 3.067326 36.296691t2.044884 29.139597l-382.393309 0q-19.426398 0-42.431343-11.246862t-42.942564-29.650818-33.229365-42.431343-13.291746-48.565995l0-697.305446q0-21.471282 9.713199-44.987448t26.583492-42.431343 38.341575-31.695702 44.987448-12.780525l391.595287 0 0 127.80525q0 20.44884 6.134652 42.431343t19.426398 41.408901 33.740586 31.695702 48.054774 12.269304l149.276532 0 0 305.710159-41.920122 66.45873-89.974896-105.311526q-17.381514 19.426398-29.650818 38.852796-11.246862 17.381514-20.44884 37.319133t-11.246862 40.386459l-383.415751 0q-26.583492 0-44.987448 18.915177t-18.403956 45.498669 18.403956 44.987448 44.987448 18.403956l383.415751 0q23.516166 0 38.852796-12.269304 5.11221 9.201978 8.690757 17.381514t6.645873 13.291746q4.089768 6.134652 6.134652 11.246862zM321.046789 383.415751q-26.583492 0-44.987448 18.915177t-18.403956 45.498669 18.403956 44.987448 44.987448 18.403956l383.415751 0q26.583492 0 45.498669-18.403956t18.915177-44.987448-18.915177-45.498669-45.498669-18.915177l-383.415751 0zM954.960831 881.345006q6.134652 3.067326 18.403956 7.157094t24.027387 11.758083 20.44884 21.471282 7.668315 36.296691q-1.022442 27.605934-16.359072 43.453785t-35.78547 20.44884-41.408901-2.044884-32.206923-25.049829q-14.314188-23.516166-12.780525-46.521111t5.623431-48.565995q2.044884-14.314188-0.511221-20.44884t-5.623431-11.246862q-2.044884-2.044884-5.623431-6.645873t-6.645873-9.713199q-4.089768-5.11221-8.179536-11.246862-3.067326 5.11221-7.157094 9.201978-3.067326 4.089768-6.645873 9.201978t-6.645873 10.22442q-7.157094 9.201978-7.668315 15.33663t1.533663 14.314188q1.022442 4.089768 2.556105 15.33663t1.022442 25.56105-5.11221 30.162039-15.847851 30.162039q-15.33663 18.403956-35.78547 22.493724t-39.364017-2.556105-32.206923-22.493724-13.291746-38.341575q-1.022442-21.471282 7.157094-35.78547t20.44884-23.516166 25.56105-14.825409 22.493724-8.690757q18.403956-7.157094 25.56105-12.780525t13.291746-13.802967q3.067326-4.089768 7.668315-10.735641t9.713199-12.780525q5.11221-7.157094 10.22442-15.33663-4.089768-4.089768-8.179536-10.22442-4.089768-5.11221-9.713199-12.269304t-11.758083-16.359072q-7.157094-8.179536-14.314188-19.937619t-13.291746-23.516166-10.735641-21.471282-5.623431-14.825409q-4.089768-10.22442-6.134652-26.583492t6.134652-21.471282 11.246862-0.511221 9.201978 12.780525q2.044884 4.089768 14.314188 23.004945t26.583492 39.364017q16.359072 25.56105 34.763028 55.211868 15.33663-24.538608 27.605934-46.00989 11.246862-18.403956 21.471282-35.78547t14.314188-23.516166q7.157094-12.269304 11.758083-18.915177t6.645873-8.690757 6.645873-0.511221 7.668315 6.645873q2.044884 5.11221 1.533663 13.802967t-2.556105 26.072271q-2.044884 8.179536-6.645873 18.403956t-9.713199 20.44884-10.22442 19.426398-8.179536 13.291746q-3.067326 5.11221-9.713199 13.291746t-12.780525 16.359072q-7.157094 10.22442-15.33663 20.44884 5.11221 8.179536 9.201978 14.314188t7.668315 11.758083 5.623431 8.690757q6.134652 11.246862 18.915177 21.471282t25.049829 16.359072zM773.988596 980.521881q14.314188 0 24.027387-9.713199t9.713199-24.027387-9.713199-24.027387-24.027387-9.713199-24.027387 9.713199-9.713199 24.027387 9.713199 24.027387 24.027387 9.713199zM957.005715 993.813627q15.33663 0 26.072271-10.735641t10.735641-26.072271-10.735641-26.072271-26.072271-10.735641-26.072271 10.735641-10.735641 26.072271 10.735641 26.072271 26.072271 10.735641z" ></path></symbol><symbol id="icon-wenjianjia" viewBox="0 0 1024 1024"><path d="M855.04 385.024q19.456 2.048 38.912 10.24t33.792 23.04 21.504 37.376 2.048 54.272q-2.048 8.192-8.192 40.448t-14.336 74.24-18.432 86.528-19.456 76.288q-5.12 18.432-14.848 37.888t-25.088 35.328-36.864 26.112-51.2 10.24l-567.296 0q-21.504 0-44.544-9.216t-42.496-26.112-31.744-40.96-12.288-53.76l0-439.296q0-62.464 33.792-97.792t95.232-35.328l503.808 0q22.528 0 46.592 8.704t43.52 24.064 31.744 35.84 12.288 44.032l0 11.264-53.248 0q-40.96 0-95.744-0.512t-116.736-0.512-115.712-0.512-92.672-0.512l-47.104 0q-26.624 0-41.472 16.896t-23.04 44.544q-8.192 29.696-18.432 62.976t-18.432 61.952q-10.24 33.792-20.48 65.536-2.048 8.192-2.048 13.312 0 17.408 11.776 29.184t29.184 11.776q31.744 0 43.008-39.936l54.272-198.656q133.12 1.024 243.712 1.024l286.72 0z" ></path></symbol><symbol id="icon-shanchuwenjianjia" viewBox="0 0 1024 1024"><path d="M797.696 442.368q-60.416 0-113.152 22.528t-91.648 61.952-61.952 92.16-23.04 113.152q0 50.176 17.408 97.28l-392.192 0q-21.504 0-44.544-9.216t-42.496-26.112-31.744-40.96-12.288-53.76l0-41.984 0-81.92q0-47.104-0.512-100.864t-0.512-99.84l0-78.848 0-35.84q0-61.44 34.304-97.28t94.72-35.84l503.808 0q23.552 0 47.616 8.704t43.008 24.064 31.232 35.84 12.288 44.032l0 13.312-517.12 0q-51.2 0-67.584 57.344-8.192 29.696-18.432 62.976t-18.432 61.952q-10.24 33.792-20.48 65.536-2.048 8.192-2.048 14.336 0 16.384 11.264 28.16t28.672 11.776 26.624-12.288 14.336-27.648l56.32-196.608 541.696 0q18.432 3.072 35.84 11.776t30.208 23.552 18.432 36.864 0.512 51.712q0 2.048-0.512 5.12t-1.536 8.192q-39.936-13.312-88.064-13.312zM802.816 510.976q46.08 0 86.016 17.408t70.144 47.616 47.616 70.144 17.408 86.016-17.408 86.016-47.616 70.144-70.144 47.616-86.016 17.408-86.016-17.408-70.144-47.616-47.616-70.144-17.408-86.016 17.408-86.016 47.616-70.144 70.144-47.616 86.016-17.408zM845.824 729.088l67.584-68.608q9.216-9.216 9.216-22.528t-9.216-22.528-22.528-9.216-22.528 9.216l-68.608 68.608-67.584-68.608q-9.216-9.216-22.528-9.216t-22.528 9.216-9.216 22.528 9.216 22.528l67.584 68.608-67.584 67.584q-9.216 9.216-9.216 22.528t9.216 22.528q9.216 10.24 22.528 10.24t22.528-10.24l67.584-67.584 68.608 67.584q9.216 10.24 22.528 10.24t22.528-10.24q9.216-9.216 9.216-22.528t-9.216-22.528z" ></path></symbol><symbol id="icon-weidaqiadewenjianjia" viewBox="0 0 1024 1024"><path d="M960.512 443.392q0 8.192 0.512 38.912t0.512 71.168 0.512 85.504 0.512 81.92q0 19.456-8.704 38.912t-25.6 35.328-40.448 25.6-53.248 9.728l-637.952 0q-21.504 0-44.544-9.216t-42.496-26.112-31.744-40.96-12.288-53.76l0-439.296q0-62.464 34.304-97.792t94.72-35.328l52.224 0 105.472 0q61.44 0 131.072-0.512t130.048-0.512l101.376 0 47.104 0q23.552 0 47.616 9.216t43.008 24.576 31.232 35.84 12.288 44.032l0 11.264q-28.672 0-75.264 0.512t-102.912 1.024-119.296 1.024-124.416 1.024-117.76 0.512l-99.328 0q-25.6 0-44.544 15.872t-18.944 45.568-0.512 64-0.512 62.976l0 66.56 1.024 0 0 30.72q0 13.312 9.216 22.528t22.528 9.216 22.528-9.216 9.216-22.528l0-32.768 2.048 0-2.048-191.488 603.136 1.024q19.456 2.048 37.376 10.24t31.744 23.04 22.528 37.376 8.704 54.272z" ></path></symbol><symbol id="icon-ziliaoku" viewBox="0 0 1026 1024"><path d="M1015.808 790.528q5.12 30.72-12.8 55.296t-48.64 29.696l-122.88 19.456q-29.696 5.12-54.784-12.8t-30.208-48.64l-104.448-661.504q-2.048-15.36 1.536-29.184t11.776-25.6 20.992-19.456 28.16-10.752l121.856-19.456q30.72-5.12 55.296 13.312t29.696 49.152zM500.736 63.488q30.72 0 52.224 21.504t21.504 52.224l0 684.032q0 30.72-21.504 52.224t-52.224 21.504l-106.496 0q-30.72 0-52.224-21.504t-21.504-52.224l0-684.032q0-30.72 16.384-52.224t48.128-21.504l115.712 0zM500.736 579.584q10.24 0 17.408-9.728t7.168-23.04q0-14.336-7.168-23.552t-17.408-9.216l-106.496 0q-10.24 0-17.408 9.216t-7.168 23.552q0 13.312 7.168 23.04t17.408 9.728l106.496 0zM500.736 449.536q10.24 0 17.408-9.728t7.168-24.064-7.168-23.552-17.408-9.216l-106.496 0q-10.24 0-17.408 9.216t-7.168 23.552 7.168 24.064 17.408 9.728l106.496 0zM179.2 63.488q30.72 0 52.736 21.504t22.016 52.224l0 684.032q0 30.72-22.016 52.224t-52.736 21.504l-106.496 0q-30.72 0-52.736-21.504t-22.016-52.224l0-684.032q0-30.72 22.016-52.224t52.736-21.504l106.496 0zM76.8 319.488q-11.264 0-18.432 9.216t-7.168 23.552q0 13.312 7.168 23.04t18.432 9.728l98.304 0q11.264 0 17.92-9.728t6.656-23.04q0-14.336-6.656-23.552t-17.92-9.216l-98.304 0zM179.2 641.024q11.264 0 17.92-9.216t6.656-22.528q0-14.336-6.656-23.04t-17.92-8.704l-102.4 0q-11.264 0-18.432 8.704t-7.168 23.04q0 13.312 7.168 22.528t18.432 9.216l102.4 0zM179.2 515.072q11.264 0 17.92-9.216t6.656-23.552-6.656-23.552-17.92-9.216l-102.4 0q-11.264 0-18.432 9.216t-7.168 23.552 7.168 23.552 18.432 9.216l102.4 0z" ></path></symbol><symbol id="icon-wenben" viewBox="0 0 1024 1024"><path d="M823.296 60.416q65.536 0 99.328 38.4t33.792 93.696l0 543.744q0 25.6-21.504 46.08l-171.008 163.84q-13.312 11.264-22.528 14.336t-23.552 3.072l-459.776 0q-23.552 0-47.104-9.728t-41.984-27.648-30.208-43.008-11.776-55.808l0-634.88q0-60.416 33.28-96.256t94.72-35.84l568.32 0zM608.256 702.464q13.312 0 22.528-9.216t9.216-22.528q0-14.336-9.216-23.04t-22.528-8.704l-320.512 0q-13.312 0-22.528 8.704t-9.216 23.04q0 13.312 9.216 22.528t22.528 9.216l320.512 0zM736.256 509.952q13.312 0 22.528-9.216t9.216-22.528-9.216-22.528-22.528-9.216l-448.512 0q-13.312 0-22.528 9.216t-9.216 22.528 9.216 22.528 22.528 9.216l448.512 0zM799.744 318.464q13.312 0 22.528-9.216t9.216-23.552q0-13.312-9.216-22.528t-22.528-9.216l-512 0q-13.312 0-22.528 9.216t-9.216 22.528q0 14.336 9.216 23.552t22.528 9.216l512 0z" ></path></symbol><symbol id="icon-daimawenjian" viewBox="0 0 1024 1024"><path d="M742.4 139.264q27.648 24.576 44.032 41.472t25.088 28.672 10.752 19.968 2.048 14.336l0 16.384-150.528 0q-11.264 0-18.944-7.68t-12.8-17.92-7.68-20.992-2.56-17.92l0-125.952 2.048 0q9.216 0 17.408 2.048t19.968 9.728 28.672 21.504 42.496 36.352zM567.296 197.632q0 19.456 6.144 41.984t19.456 41.472 33.792 31.744 48.128 12.8l149.504 0 0 513.024q0 29.696-11.776 53.248t-31.232 40.448-43.008 26.112-46.08 9.216l-441.344 0q-19.456 0-42.496-11.264t-43.008-29.696-33.28-42.496-13.312-49.664l0-632.832q0-21.504 10.24-45.056t27.136-42.496 38.4-31.744 45.056-12.8l327.68 0 0 128zM485.376 659.456q12.288-12.288 13.312-32.768t-11.264-31.744l-167.936-168.96q-12.288-12.288-30.208-12.288t-30.208 12.288q-12.288 13.312-12.288 31.232t12.288 30.208l137.216 139.264-137.216 138.24q-12.288 12.288-12.288 30.208t12.288 31.232q12.288 12.288 30.208 12.288t30.208-12.288zM695.296 773.12l-192.512 0 0 64.512 192.512 0 0-64.512z" ></path></symbol><symbol id="icon-excel" viewBox="0 0 1024 1024"><path d="M625.664 132.608v67.072h309.76v43.008h-309.76v69.632h309.76v43.008h-309.76v68.608h309.76v43.008h-309.76v68.608h309.76v43.008h-309.76v68.608h309.76v43.008h-309.76v68.096h309.76v43.008h-309.76v89.088H1024v-757.76H625.664zM0 914.944L577.024 1024V0L0 109.056" ></path><path d="M229.376 660.48h-89.6l118.272-187.904-112.64-180.736h92.16l65.536 119.808 67.584-119.808h89.088l-112.64 177.664L466.944 660.48h-93.696l-70.144-125.44-73.728 125.44z" ></path></symbol><symbol id="icon-24gf-fileEmpty" viewBox="0 0 1024 1024"><path d="M682.666667 55.42c1.066667 0.913333 2.12 1.86 3.126666 2.866667l194.586667 194.586666c1.006667 1.006667 1.953333 2.06 2.866667 3.126667H693.333333a10.666667 10.666667 0 0 1-10.666666-10.666667zM640 245.333333V42.666667H181.333333a53.393333 53.393333 0 0 0-53.333333 53.333333v832a53.393333 53.393333 0 0 0 53.333333 53.333333h661.333334a53.393333 53.393333 0 0 0 53.333333-53.333333V298.666667h-202.666667a53.393333 53.393333 0 0 1-53.333333-53.333334z" fill="#5C5C66" ></path></symbol><symbol id="icon-24gf-fileText" viewBox="0 0 1024 1024"><path d="M682.666667 245.333333a10.666667 10.666667 0 0 0 10.666666 10.666667h189.913334c-0.913333-1.066667-1.86-2.12-2.866667-3.126667L685.793333 58.286667c-1.006667-1.006667-2.06-1.953333-3.126666-2.866667z" fill="#5C5C66" ></path><path d="M640 245.333333V42.666667H181.333333a53.393333 53.393333 0 0 0-53.333333 53.333333v832a53.393333 53.393333 0 0 0 53.333333 53.333333h661.333334a53.393333 53.393333 0 0 0 53.333333-53.333333V298.666667h-202.666667a53.393333 53.393333 0 0 1-53.333333-53.333334z m-320 10.666667h170.666667a21.333333 21.333333 0 0 1 0 42.666667H320a21.333333 21.333333 0 0 1 0-42.666667z m384 512H320a21.333333 21.333333 0 0 1 0-42.666667h384a21.333333 21.333333 0 0 1 0 42.666667z m21.333333-234.666667a21.333333 21.333333 0 0 1-21.333333 21.333334H320a21.333333 21.333333 0 0 1 0-42.666667h384a21.333333 21.333333 0 0 1 21.333333 21.333333z" fill="#5C5C66" ></path></symbol><symbol id="icon-24gf-folderHeart" viewBox="0 0 1024 1024"><path d="M970.666667 213.333333H546.586667a10.573333 10.573333 0 0 1-7.54-3.126666L429.793333 100.953333A52.986667 52.986667 0 0 0 392.08 85.333333H96a53.393333 53.393333 0 0 0-53.333333 53.333334v704a53.393333 53.393333 0 0 0 53.333333 53.333333h874.666667a53.393333 53.393333 0 0 0 53.333333-53.333333V266.666667a53.393333 53.393333 0 0 0-53.333333-53.333334z m-275.866667 374.82c-25.486667 33.926667-71.333333 74.92-148.666667 132.913334a21.333333 21.333333 0 0 1-25.6 0c-77.333333-58-123.18-98.986667-148.666666-132.913334S341.333333 528.273333 341.333333 497.233333C341.333333 434.793333 392.126667 384 454.566667 384A112.893333 112.893333 0 0 1 533.333333 415.9 112.893333 112.893333 0 0 1 612.1 384c62.44 0 113.233333 50.793333 113.233333 113.233333 0 31.04-5.106667 57.08-30.533333 90.92z" fill="#5C5C66" ></path></symbol><symbol id="icon-24gf-folderStar" viewBox="0 0 1024 1024"><path d="M1024 266.666667v576a53.393333 53.393333 0 0 1-53.333333 53.333333H96a53.393333 53.393333 0 0 1-53.333333-53.333333V138.666667a53.393333 53.393333 0 0 1 53.333333-53.333334h296.08a52.986667 52.986667 0 0 1 37.713333 15.62l109.253334 109.253334a10.573333 10.573333 0 0 0 7.54 3.126666H970.666667a53.393333 53.393333 0 0 1 53.333333 53.333334z m-313.333333 246.153333a21.333333 21.333333 0 0 0-17.22-14.52L596 484.146667l-43.533333-88.253334a21.333333 21.333333 0 0 0-38.266667 0L470.666667 484.146667l-97.4 14.153333A21.333333 21.333333 0 0 0 361.426667 534.666667l70.473333 68.666666-16.666667 97.006667a21.333333 21.333333 0 0 0 30.953334 22.486667L533.333333 677.086667l87.113334 45.793333a21.333333 21.333333 0 0 0 30.953333-22.486667l-16.666667-97.006666 70.473334-68.666667a21.333333 21.333333 0 0 0 5.46-21.9z" fill="#5C5C66" ></path></symbol><symbol id="icon-24gf-folderOpen" viewBox="0 0 1024 1024"><path d="M81.16 412.073333L0 709.653333V138.666667a53.393333 53.393333 0 0 1 53.333333-53.333334h253.413334a52.986667 52.986667 0 0 1 37.713333 15.62l109.253333 109.253334a10.573333 10.573333 0 0 0 7.54 3.126666H842.666667a53.393333 53.393333 0 0 1 53.333333 53.333334v74.666666H173.773333a96.2 96.2 0 0 0-92.613333 70.74z m922-7.113333a52.933333 52.933333 0 0 0-42.386667-20.96H173.773333a53.453333 53.453333 0 0 0-51.453333 39.333333L11.773333 828.666667a53.333333 53.333333 0 0 0 51.453334 67.333333h787a53.453333 53.453333 0 0 0 51.453333-39.333333l110.546667-405.333334a52.953333 52.953333 0 0 0-9.073334-46.373333z" fill="#5C5C66" ></path></symbol><symbol id="icon-wenjian1" viewBox="0 0 1024 1024"><path d="M64.67 512c2.03-148.27 27.78-271.04 103.07-344.26C240.96 92.45 363.73 66.7 512 64.67c148.27 2.03 271.04 27.78 344.26 103.07C931.55 240.96 957.3 363.73 959.33 512c-2.03 148.27-27.78 271.04-103.07 344.26C783.04 931.55 660.27 957.3 512 959.33c-148.27-2.03-271.04-27.78-344.26-103.07C92.45 783.04 66.7 660.27 64.67 512z" ></path><path d="M710.38 679.44v-61.48c0-11.97-9.71-21.68-21.68-21.68h-54.98c-29.71 0-53.8 24.09-53.8 53.8v61.48c0 11.97 9.71 21.68 21.68 21.68h54.98c29.71 0 53.8-24.09 53.8-53.8z" fill="#FFFFFF" ></path><path d="M633.72 564.01h46.92c16.43 0 29.74-13.32 29.74-29.74V344.56c0-29.71-24.09-53.8-53.8-53.8H367.42c-29.71 0-53.8 24.09-53.8 53.8v334.88c0 29.71 24.09 53.8 53.8 53.8H517.9c16.43 0 29.74-13.32 29.74-29.74v-53.42c0-47.54 38.54-86.07 86.08-86.07zM413.01 372.8h197.98c11.76 0 21.38 7.82 21.38 17.39 0 9.56-9.62 17.39-21.38 17.39H413.01c-11.76 0-21.38-7.82-21.38-17.39 0-9.56 9.62-17.39 21.38-17.39z m0 132.6c-11.76 0-21.38-7.82-21.38-17.39s9.62-17.39 21.38-17.39h197.98c11.76 0 21.38 7.82 21.38 17.39s-9.62 17.39-21.38 17.39H413.01z" fill="#FFFFFF" ></path></symbol><symbol id="icon-image" viewBox="0 0 1025 1024"><path d="M272.5 224c44.1 0 80 35.9 80 80s-35.9 80-80 80-80-35.9-80-80 35.9-80 80-80m0-64c-79.5 0-144 64.5-144 144s64.5 144 144 144 144-64.5 144-144-64.5-144-144-144z" ></path><path d="M929 32h-833c-53 0-96 43-96 96v736c0 53 43 96 96 96h833c53 0 96-43 96-96V128c0-53-43-96-96-96z m-865 128c0-35.3 28.7-64 64-64h769c35.3 0 64 28.7 64 64v170c0 5.1-4.7 8.9-9.7 7.8-37.9-8.3-74.6-8.7-109.6-1.1-47.9 10.4-90.1 35-128.8 75.3-32.3 33.6-57.3 72.7-81.6 110.4-39.1 61-72.9 113.6-121.5 117.6-33.5 2.7-57.7-17.5-94.5-50.6-19.8-17.8-40.2-36.2-65-50.9-30-17.8-60.7-26.5-93.7-26.5h-0.4c-49.1 0-98.1 19.3-145.6 57.4-6.6 5.3-13.2 10.9-19.8 17-10.2 9.4-26.8 2.1-26.8-11.8V160z m897 672c0 35.3-28.7 64-64 64h-769c-35.3 0-64-28.7-64-64v-96.1c0-14.1 4.6-27.7 13.2-38.9 61.2-80.3 121.3-121 179-121h0.3c48.5 0.1 81.3 29.7 116.1 61 35.2 31.7 74.7 67.3 131.3 67.3 3.7 0 7.5-0.2 11.3-0.5 37.1-3 70.3-20.4 101.5-53 25.2-26.4 46.3-59.1 68.5-93.8 44.3-69 90.1-140.5 170.1-157.8 25.3-5.5 52.1-5.3 80.2 0.6 14.9 3.1 25.5 16.2 25.5 31.3V832z" ></path></symbol><symbol id="icon-image-full" viewBox="0 0 1025 1024"><path d="M929 32h-833c-53 0-96 43-96 96v736c0 53 43 96 96 96h833c53 0 96-43 96-96V128c0-53-43-96-96-96z m32 298c0 5.1-4.7 8.9-9.7 7.8-37.9-8.3-74.6-8.7-109.6-1.1-47.9 10.4-90.1 35-128.8 75.3-32.3 33.6-57.3 72.7-81.6 110.4-39.1 61-72.9 113.6-121.5 117.6-33.5 2.7-57.7-17.5-94.5-50.6-19.8-17.8-40.2-36.2-65-50.9-30-17.8-60.7-26.5-93.7-26.5h-0.4c-49.1 0-98.1 19.3-145.6 57.4-6.6 5.3-13.2 10.9-19.8 17-10.2 9.4-26.8 2.1-26.8-11.8V160c0-35.4 28.7-64 64-64h769c35.3 0 64 28.6 64 64v170z" ></path><path d="M272.5 304m-144 0a144 144 0 1 0 288 0 144 144 0 1 0-288 0Z" ></path></symbol><symbol id="icon-json-full" viewBox="0 0 1024 1024"><path d="M1008 464h-72c-4.4 0-8-3.6-8-8V314.5c0-17-6.7-33.3-18.7-45.3L658.7 18.7C646.7 6.7 630.5 0 613.5 0H144c-26.5 0-48 21.5-48 48v408c0 4.4-3.6 8-8 8H16c-8.8 0-16 7.2-16 16v400c0 8.8 7.2 16 16 16h80c0 35.3 14.3 67.3 37.5 90.5 23.2 23.2 55.2 37.5 90.5 37.5h656c26.5 0 48-21.5 48-48v-64c0-8.8 7.2-16 16-16h64c8.8 0 16-7.2 16-16V480c0-8.8-7.2-16-16-16zM704 154.5l69.5 69.5H708c-2.2 0-4-1.8-4-4v-65.5zM160 72c0-4.4 3.6-8 8-8h408c35.3 0 64 28.7 64 64v144c0 8.8 7.2 16 16 16h144c35.3 0 64 28.7 64 64v104c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8V72z m492.3 603.5c0 32.5-9.5 58.9-28.4 79.1-18.9 20.3-43.7 30.4-74.3 30.4-29.9 0-54.2-9.8-72.9-29.4-18.5-19.6-27.9-44.9-27.9-75.8 0-32.7 9.5-59.3 28.6-79.8s44.3-30.8 75.6-30.8c29.8 0 53.8 9.9 72 29.8 18.2 19.8 27.3 45.4 27.3 76.5z m-365.9 53.3c16.9 13.9 35.9 20.9 57.3 20.9 12.1 0 21.2-2.1 27.3-6.3 6.1-4.2 9.2-9.5 9.2-16.1 0-5.7-2.4-11-7.3-16s-17.6-11.9-38.4-20.5c-32.6-13.8-48.9-33.9-48.9-60.4 0-19.4 7.4-34.5 22.2-45.2s34.3-16.1 58.7-16.1c20.4 0 37.5 2.7 51.3 7.9v41.8c-14-9.5-30.4-14.3-49.2-14.3-11 0-19.7 2-26.3 6-6.6 4-9.8 9.4-9.8 16.1 0 5.4 2.2 10.4 6.7 14.9s15.6 10.7 33.3 18.4c20.7 8.9 35 18.3 42.8 28.2 7.8 9.9 11.7 21.6 11.7 35.3 0 20-7.1 35.3-21.3 45.8S371.3 785 345.2 785c-23.9 0-43.5-3.9-58.7-11.6l-0.1-44.6c0.1 0 0 0 0 0z m-139.6 8.9c7.7 5.8 16.5 8.8 26.4 8.8 21.4 0 32.1-16.2 32.1-48.6V572.7h44.5v126.8h-0.1c0 27.6-6.4 48.7-19.1 63.5-12.7 14.6-30.9 22-54.6 22-10.5 0-20.3-1.8-29.2-5.4v-41.9zM864 952c0 4.4-3.6 8-8 8H224c-35.3 0-64-28.7-64-64h696c4.4 0 8 3.6 8 8v48z m9.2-170.6h-45.5l-88.4-135c-4.6-7-7.9-12.7-10-17h-0.7c0.8 7.2 1.2 18.3 1.2 33.3v118.7h-42.2V572.7h48.5l85.1 131.2c5.7 8.7 9.1 14.2 10.4 16.6h0.7c-0.9-5-1.3-14.6-1.3-28.8v-119h42.2v208.7zM286.5 728.8s-0.1 0 0 0z" ></path><path d="M605.8 678.2c0 20.9-4.8 37.5-14.5 49.8s-23.3 18.5-40.7 18.5c-17.1 0-30.5-6.4-40.3-19.3-9.8-12.9-14.7-29.5-14.7-49.8 0-20.6 5-37.3 15-50.2 10.1-12.9 23.8-19.4 41.2-19.4 17.2 0 30.5 6.3 39.9 18.9 9.4 12.6 14.1 29.8 14.1 51.5z" ></path></symbol><symbol id="icon-json" viewBox="0 0 1024 1024"><path d="M928 456V314.5c0-17-6.7-33.3-18.7-45.3L658.7 18.7C646.7 6.7 630.5 0 613.5 0H144c-26.5 0-48 21.5-48 48v408c0 4.4-3.6 8-8 8H16c-8.8 0-16 7.2-16 16v400c0 8.8 7.2 16 16 16h80c0 70.7 57.3 128 128 128h656c26.5 0 48-21.5 48-48v-64c0-8.8 7.2-16 16-16h64c8.8 0 16-7.2 16-16V480c0-8.8-7.2-16-16-16h-72c-4.4 0-8-3.6-8-8zM704 154.5l69.5 69.5H708c-2.2 0-4-1.8-4-4v-65.5zM168 64h408c35.3 0 64 28.7 64 64v144c0 8.8 7.2 16 16 16h144c35.3 0 64 28.7 64 64v104c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8V72c0-4.4 3.6-8 8-8z m688 896H224c-35.3 0-64-28.7-64-64h696c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8z m96-128H72c-4.4 0-8-3.6-8-8V536c0-4.4 3.6-8 8-8h880c4.4 0 8 3.6 8 8v288c0 4.4-3.6 8-8 8z" ></path><path d="M249.7 699.5c0 27.6-6.4 48.7-19.1 63.5-12.7 14.6-30.9 22-54.6 22-10.5 0-20.3-1.8-29.2-5.4v-41.9c7.7 5.8 16.5 8.8 26.4 8.8 21.4 0 32.1-16.2 32.1-48.6V572.7h44.5v126.8zM286.4 728.8c16.8 13.9 35.9 20.9 57.3 20.9 12.1 0 21.2-2.1 27.3-6.3 6.1-4.2 9.2-9.5 9.2-16.1 0-5.7-2.4-11-7.3-16s-17.6-11.9-38.4-20.5c-32.6-13.8-48.9-33.9-48.9-60.4 0-19.4 7.4-34.5 22.2-45.2 14.8-10.7 34.3-16.1 58.7-16.1 20.4 0 37.5 2.7 51.3 7.9v41.8c-14-9.5-30.4-14.3-49.2-14.3-11 0-19.7 2-26.3 6-6.6 4-9.8 9.4-9.8 16.1 0 5.4 2.2 10.4 6.7 14.9s15.6 10.7 33.3 18.4c20.7 8.9 35 18.3 42.8 28.2 7.8 9.9 11.7 21.6 11.7 35.3 0 20-7.1 35.3-21.3 45.8-14.2 10.5-34.4 15.8-60.5 15.8-23.9 0-43.5-3.9-58.7-11.6v-44.6zM448.8 679.8c0-32.7 9.5-59.3 28.6-79.8s44.3-30.8 75.6-30.8c29.8 0 53.8 9.9 72 29.8 18.2 19.8 27.3 45.4 27.3 76.5 0 32.5-9.5 58.9-28.4 79.1-18.9 20.3-43.7 30.4-74.3 30.4-29.9 0-54.2-9.8-72.9-29.4-18.5-19.6-27.9-44.9-27.9-75.8z m46.8-2.4c0 20.3 4.9 36.9 14.7 49.8 9.8 12.9 23.2 19.3 40.3 19.3 17.4 0 31-6.2 40.7-18.5 9.7-12.3 14.5-28.9 14.5-49.8 0-21.7-4.7-38.9-14.1-51.5-9.4-12.6-22.7-18.9-39.9-18.9-17.4 0-31.1 6.5-41.2 19.4-10 12.9-15 29.6-15 50.2zM873.2 781.4h-45.5l-88.4-135c-4.6-7-7.9-12.7-10-17h-0.7c0.8 7.2 1.2 18.3 1.2 33.3v118.7h-42.2V572.7h48.5l85.1 131.2c5.7 8.7 9.1 14.2 10.4 16.6h0.7c-0.9-5-1.3-14.6-1.3-28.8v-119h42.2v208.7z" ></path></symbol><symbol id="icon-pdf" viewBox="0 0 1024 1024"><path d="M928 456V314.5c0-17-6.7-33.3-18.7-45.3L658.7 18.7C646.7 6.7 630.5 0 613.5 0H144c-26.5 0-48 21.5-48 48v408c0 4.4-3.6 8-8 8H16c-8.8 0-16 7.2-16 16v400c0 8.8 7.2 16 16 16h80c0 70.7 57.3 128 128 128h656c26.5 0 48-21.5 48-48v-64c0-8.8 7.2-16 16-16h64c8.8 0 16-7.2 16-16V480c0-8.8-7.2-16-16-16h-72c-4.4 0-8-3.6-8-8zM704 154.5l69.5 69.5H708c-2.2 0-4-1.8-4-4v-65.5zM168 64h408c35.3 0 64 28.7 64 64v144c0 8.8 7.2 16 16 16h144c35.3 0 64 28.7 64 64v104c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8V72c0-4.4 3.6-8 8-8z m688 896H224c-35.3 0-64-28.7-64-64h696c4.4 0 8 3.6 8 8v48c0 4.4-3.6 8-8 8z m96-128H72c-4.4 0-8-3.6-8-8V536c0-4.4 3.6-8 8-8h880c4.4 0 8 3.6 8 8v288c0 4.4-3.6 8-8 8z" ></path><path d="M286.6 711.6v72.7h-44.5V575.7H314c51.9 0 77.9 22 77.9 66 0 21.4-7.8 38.5-23.5 51.4-15.7 12.9-35.3 19.1-58.8 18.5h-23z m0-101.4v67.4h19.3c26.1 0 39.2-11.4 39.2-34.1 0-22.2-12.9-33.3-38.8-33.3h-19.7zM437.5 784.4V575.7h72.1c74.1 0 111.1 33.9 111.1 101.7 0 32.2-10.4 58.1-31.1 77.7-20.7 19.5-47.5 29.3-80.3 29.3h-71.8zM482 612.1V748h24.2c21.1 0 37.7-6.3 49.7-18.9 12-12.6 18.1-29.6 18.1-51.1 0-20.7-6.3-36.9-18.9-48.6-12.6-11.6-28.9-17.4-49-17.4H482zM783.9 612.1h-74.5v53.6H778v36.4h-68.6v82.3h-44.5V575.7h119v36.4z" ></path></symbol><symbol id="icon-pdf-full" viewBox="0 0 1024 1024"><path d="M1008 464h-72c-4.4 0-8-3.6-8-8V314.5c0-17-6.7-33.3-18.8-45.3L658.8 18.8C646.7 6.7 630.5 0 613.5 0H144c-26.5 0-48 21.5-48 48v408c0 4.4-3.6 8-8 8H16c-8.8 0-16 7.2-16 16v400c0 8.8 7.2 16 16 16h80c0 35.3 14.3 67.3 37.5 90.5 23.2 23.2 55.2 37.5 90.5 37.5h656c26.5 0 48-21.5 48-48v-64c0-8.8 7.2-16 16-16h64c8.8 0 16-7.2 16-16V480c0-8.8-7.2-16-16-16zM704 154.5l69.5 69.5H708c-2.2 0-4-1.8-4-4v-65.5zM864 952c0 4.4-3.6 8-8 8H224c-35.3 0-64-28.7-64-64h696c4.4 0 8 3.6 8 8v48zM242.2 784.4V575.7H314c51.9 0 77.9 22 77.9 66 0 21.4-7.8 38.5-23.5 51.4-15.7 12.9-35.3 19.1-58.8 18.5h-22.9v72.8h-44.5z m195.3 0V575.7h72.1c74.1 0 111.1 33.9 111.1 101.7 0 32.2-10.4 58.1-31.1 77.7-20.7 19.5-47.5 29.3-80.3 29.3h-71.8z m340.4-118.7v36.4h-68.6v82.3h-44.5V575.7h119v36.4h-74.5v53.6h68.6zM864 456c0 4.4-3.6 8-8 8H168c-4.4 0-8-3.6-8-8V72c0-4.4 3.6-8 8-8h408c35.3 0 64 28.6 64 64v144c0 8.8 7.2 16 16 16h144c35.3 0 64 28.6 64 64v104z" ></path><path d="M345.1 643.5c0 22.7-13.1 34.1-39.2 34.1h-19.3v-67.4h19.7c25.9 0 38.8 11.1 38.8 33.3zM574 678.1c0 21.5-6 38.5-18 51.1-12 12.6-28.6 18.9-49.7 18.9H482v-136h24.1c20.1 0 36.5 5.8 49 17.4 12.6 11.6 18.9 27.8 18.9 48.6z" ></path></symbol><symbol id="icon-txt-full" viewBox="0 0 1024 1024"><path d="M909.3 269.3L658.8 18.8C646.7 6.7 630.5 0 613.5 0H144c-26.5 0-48 21.5-48 48v264c0 4.4-3.6 8-8 8H16c-8.8 0-16 7.2-16 16v544c0 8.8 7.2 16 16 16h80c0 35.3 14.3 67.3 37.5 90.5 23.2 23.2 55.2 37.5 90.5 37.5h656c26.5 0 48-21.5 48-48V314.5c0-17-6.7-33.2-18.7-45.2zM704 154.5l69.5 69.5H708c-2.2 0-4-1.8-4-4v-65.5zM188.5 527.1v-46.8h210.3v46.8h-76.6v221.5h-57.3V527.1h-76.4zM864 952c0 4.4-3.6 8-8 8H224c-35.3 0-64-28.7-64-64h400c8.8 0 16-7.2 16-16V336c0-8.8-7.2-16-16-16H168c-4.4 0-8-3.6-8-8V72c0-4.4 3.6-8 8-8h408c35.3 0 64 28.6 64 64v144c0 8.8 7.2 16 16 16h144c35.3 0 64 28.6 64 64v600z" ></path><path d="M796 512H628c-2.2 0-4-1.8-4-4v-56c0-2.2 1.8-4 4-4h168c2.2 0 4 1.8 4 4v56c0 2.2-1.8 4-4 4zM796 640H628c-2.2 0-4-1.8-4-4v-56c0-2.2 1.8-4 4-4h168c2.2 0 4 1.8 4 4v56c0 2.2-1.8 4-4 4zM796 768H628c-2.2 0-4-1.8-4-4v-56c0-2.2 1.8-4 4-4h168c2.2 0 4 1.8 4 4v56c0 2.2-1.8 4-4 4z" ></path></symbol><symbol id="icon-txt" viewBox="0 0 1024 1024"><path d="M909.3 269.3L658.8 18.8C646.7 6.7 630.5 0 613.5 0H144c-26.5 0-48 21.5-48 48v264c0 4.4-3.6 8-8 8H16c-8.8 0-16 7.2-16 16v544c0 8.8 7.2 16 16 16h80c0 35.3 14.3 67.3 37.5 90.5 23.2 23.2 55.2 37.5 90.5 37.5h656c26.5 0 48-21.5 48-48V314.5c0-17-6.7-33.2-18.7-45.2zM704 154.5l69.5 69.5H708c-2.2 0-4-1.8-4-4v-65.5zM72 832c-4.4 0-8-3.6-8-8V392c0-4.4 3.6-8 8-8h432c4.4 0 8 3.6 8 8v432c0 4.4-3.6 8-8 8H72z m792 120c0 4.4-3.6 8-8 8H224c-35.3 0-64-28.7-64-64h400c8.8 0 16-7.2 16-16V336c0-8.8-7.2-16-16-16H168c-4.4 0-8-3.6-8-8V72c0-4.4 3.6-8 8-8h408c35.3 0 64 28.7 64 64v144c0 8.8 7.2 16 16 16h144c35.3 0 64 28.7 64 64v600z" ></path><path d="M398.8 527.1h-76.6v221.5h-57.3V527.1h-76.4v-46.8h210.3v46.8zM796 512H628c-2.2 0-4-1.8-4-4v-56c0-2.2 1.8-4 4-4h168c2.2 0 4 1.8 4 4v56c0 2.2-1.8 4-4 4zM796 640H628c-2.2 0-4-1.8-4-4v-56c0-2.2 1.8-4 4-4h168c2.2 0 4 1.8 4 4v56c0 2.2-1.8 4-4 4zM796 768H628c-2.2 0-4-1.8-4-4v-56c0-2.2 1.8-4 4-4h168c2.2 0 4 1.8 4 4v56c0 2.2-1.8 4-4 4z" ></path></symbol><symbol id="icon-excel1" viewBox="0 0 1024 1024"><path d="M576 96V75.9c0-40.3-36.9-70.6-76.4-62.8l-448 88.7C21.6 107.7 0 134 0 164.6v694.7c0 30.6 21.7 57 51.8 62.8l448 87.1c39.5 7.7 76.2-22.6 76.2-62.8V928h416c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H576z m-83.1 846.7l-416-80.9c-7.5-1.5-12.9-8-12.9-15.7V177.7c0-7.6 5.4-14.2 12.9-15.7l416-82.3c9.9-2 19.1 5.6 19.1 15.7V927c0 10-9.2 17.6-19.1 15.7zM952 864H576v-88c0-4.4 3.6-8 8-8h96c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-96c-4.4 0-8-3.6-8-8v-32c0-4.4 3.6-8 8-8h96c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-96c-4.4 0-8-3.6-8-8v-32c0-4.4 3.6-8 8-8h96c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-96c-4.4 0-8-3.6-8-8v-32c0-4.4 3.6-8 8-8h96c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-96c-4.4 0-8-3.6-8-8v-32c0-4.4 3.6-8 8-8h96c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-96c-4.4 0-8-3.6-8-8v-88h376c4.4 0 8 3.6 8 8v688c0 4.4-3.6 8-8 8z" ></path><path d="M760 256c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h128c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H760zM760 368c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h128c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H760zM760 480c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h128c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H760zM760 592c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h128c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H760zM760 704c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h128c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H760zM403.4 720.3l-72.7-12.8c-5.2-0.9-9.6-4.3-11.8-9.1l-56.5-123.7c-2-4.5-4.1-12.5-6.3-24h-0.8c-1.1 5.6-3.5 13.5-7.2 23.9L200.8 673c-3.1 6.5-10.1 10.1-17.2 8.8l-43-7.5c-5.4-0.9-8.2-6.8-5.7-11.6l75.4-142c2.4-4.5 2.5-9.9 0.3-14.5l-69.5-143c-2.3-4.8 0.6-10.5 5.8-11.4l45.2-7.9c7.3-1.3 14.5 2.6 17.5 9.4l38.9 90.6c3.7 8.8 6.9 18.5 9.6 29.3h0.8c2.8-10 6.3-20.6 10.4-31.9l52.1-113.2c2.2-4.8 6.6-8.2 11.8-9.1l67.1-11.8c6.6-1.2 11.6 5.8 8.4 11.7L306.9 504.1c-2.6 4.8-2.6 10.7 0 15.5l104.8 189c3.3 5.8-1.7 12.8-8.3 11.7z" ></path></symbol><symbol id="icon-excel-full" viewBox="0 0 1024 1024"><path d="M992 96H576V75.9c0-40.3-36.9-70.6-76.4-62.8l-448 88.7C21.6 107.7 0 134 0 164.6v694.7c0 30.6 21.7 57 51.8 62.8l448 87.1c39.5 7.7 76.2-22.6 76.2-62.8V928h416c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32zM134.9 662.5l75.4-142.1c2.4-4.5 2.5-9.9 0.3-14.5l-69.5-143c-2.3-4.8 0.6-10.5 5.8-11.4l45.2-7.9c7.3-1.3 14.5 2.6 17.5 9.4l38.9 90.6c3.7 8.8 6.9 18.5 9.6 29.3h0.8c2.8-10 6.3-20.6 10.5-31.9l52.1-113.2c2.2-4.8 6.6-8.2 11.8-9.1l67.1-11.8c6.6-1.2 11.6 5.8 8.4 11.7L306.9 504.1c-2.6 4.8-2.6 10.7 0 15.5l104.8 189c3.3 5.9-1.8 12.9-8.4 11.8l-72.7-12.8c-5.2-0.9-9.6-4.3-11.8-9.1l-56.5-123.7c-2-4.5-4.1-12.5-6.3-24h-0.8c-1.1 5.6-3.5 13.5-7.2 23.9l-47.3 98.4c-3.1 6.5-10.1 10.1-17.2 8.8l-43-7.5c-5.3-1.2-8.2-7.1-5.6-11.9zM960 856c0 4.4-3.6 8-8 8H576v-88c0-4.4 3.6-8 8-8h96c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-96c-4.4 0-8-3.6-8-8v-32c0-4.4 3.6-8 8-8h96c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-96c-4.4 0-8-3.6-8-8v-32c0-4.4 3.6-8 8-8h96c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-96c-4.4 0-8-3.6-8-8v-32c0-4.4 3.6-8 8-8h96c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-96c-4.4 0-8-3.6-8-8v-32c0-4.4 3.6-8 8-8h96c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8h-96c-4.4 0-8-3.6-8-8v-88h376c4.4 0 8 3.6 8 8v688z" ></path><path d="M760 256c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h128c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H760zM760 368c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h128c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H760zM760 480c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h128c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H760zM760 592c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h128c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H760zM760 704c-4.4 0-8 3.6-8 8v48c0 4.4 3.6 8 8 8h128c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H760z" ></path></symbol><symbol id="icon-ppt" viewBox="0 0 1024 1024"><path d="M576 96V75.9c0-40.3-36.9-70.6-76.4-62.8l-448 88.7C21.6 107.7 0 134 0 164.6v694.7c0 30.6 21.7 57 51.8 62.8l448 87.1c39.5 7.7 76.2-22.6 76.2-62.8V928h416c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H576z m-83.1 846.7l-416-80.9c-7.5-1.5-12.9-8-12.9-15.7V177.7c0-7.6 5.4-14.2 12.9-15.7l416-82.3c9.9-2 19.1 5.6 19.1 15.7V927c0 10-9.2 17.6-19.1 15.7zM952 864H576v-88c0-4.4 3.6-8 8-8h304c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H584c-4.4 0-8-3.6-8-8v-32c0-4.4 3.6-8 8-8h304c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H584c-4.4 0-8-3.6-8-8V160h376c4.4 0 8 3.6 8 8v688c0 4.4-3.6 8-8 8z" ></path><path d="M219.9 584.5v89.2c0 9.8-8.7 17.3-18.4 15.8l-30.5-4.6c-7.8-1.2-13.6-7.9-13.6-15.8v-297c0-15.8 11.6-29.3 27.2-31.6l77.4-11.7c88.6-13.6 138 22.4 138 109.2 0 42.2-15.3 76-44.9 100.6-28.3 23.5-62 33.5-100.2 30.7l-18.3-0.8c-9.1-0.4-16.7 6.9-16.7 16z m0-175.9v100.8l29.3-0.1c42.2-0.2 64.4-21.2 64.4-63.2 0-41-22-59.3-63.8-55l-15.6 1.6c-8.1 0.8-14.3 7.7-14.3 15.9zM688 338.9c34.8 6.4 66.9 23.1 92.5 48.7 17.5 17.5 30.9 38.1 39.6 60.5H688V338.9M656 272h-16c-8.8 0-16 7.2-16 16v192c0 17.7 14.3 32 32 32h223.4c9.3 0 16.6-7.9 16-17.2C886.6 370.3 782.8 272 656 272z" ></path></symbol><symbol id="icon-ppt-full" viewBox="0 0 1024 1024"><path d="M992 96H576V75.9c0-40.3-36.9-70.6-76.4-62.8l-448 88.7C21.6 107.7 0 134 0 164.6v694.7c0 30.6 21.7 57 51.8 62.8l448 87.1c39.5 7.7 76.2-22.6 76.2-62.8V928h416c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32zM355.1 538.6c-28.3 23.5-62 33.5-100.2 30.7l-18.3-0.8c-9.1-0.4-16.7 6.9-16.7 16v89.2c0 9.8-8.7 17.3-18.4 15.8l-30.5-4.6c-7.8-1.2-13.6-7.9-13.6-15.8v-297c0-15.8 11.6-29.3 27.2-31.6l77.4-11.7c88.7-13.5 138 22.5 138 109.3 0 42.1-15.3 75.9-44.9 100.5zM960 856c0 4.4-3.6 8-8 8H576v-88c0-4.4 3.6-8 8-8h304c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H584c-4.4 0-8-3.6-8-8v-32c0-4.4 3.6-8 8-8h304c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H584c-4.4 0-8-3.6-8-8V160h376c4.4 0 8 3.6 8 8v688z" ></path><path d="M313.6 446.1c0 42-22.2 63.1-64.4 63.2l-29.3 0.1V408.6c0-8.2 6.2-15.1 14.4-15.9l15.6-1.6c41.7-4.3 63.7 14 63.7 55zM688 338.9c34.8 6.4 66.9 23.1 92.5 48.7 17.5 17.5 30.9 38.1 39.6 60.5H688V338.9zM656 272h-16c-8.8 0-16 7.2-16 16v192c0 17.7 14.3 32 32 32h223.4c9.3 0 16.6-7.9 16-17.2C886.6 370.3 782.8 272 656 272z" ></path></symbol><symbol id="icon-word-full" viewBox="0 0 1024 1024"><path d="M992 96H576V75.9c0-40.3-36.9-70.6-76.4-62.8l-448 88.7C21.6 107.7 0 134 0 164.6v694.7c0 30.6 21.7 57 51.8 62.8l448 87.1c39.5 7.7 76.2-22.6 76.2-62.8V928h416c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32zM107.4 385.4l31.7-4.4c4.4-0.6 8.4 2.4 9 6.8l31.4 218.1c1.5 10.2 2.5 23 3.1 38.5l1 0.1c0.5-12 2-25.1 4.5-39.2L231 373.6c0.6-3.4 3.3-6 6.8-6.5l44.7-6.3c4.3-0.6 8.2 2.3 9 6.5L337 615.6c2 10.5 3.5 24.2 4.6 41.1l0.9 0.1c0.5-14.4 1.9-28.4 4.3-42.1l42.7-263.1c0.6-3.5 3.3-6.2 6.8-6.6l53.1-7.4c5.5-0.8 10.1 4.2 8.9 9.6l-81.8 388.4c-0.9 4.1-4.8 6.9-8.9 6.3l-55.2-7.7c-3.4-0.5-6.1-3.1-6.8-6.5l-44.1-237.4c-2.3-12.7-3.7-25.9-4.1-39.8h-0.7c-1.1 16.3-2.6 29.6-4.6 40.1L211 712.1c-0.8 4.2-4.7 7.1-9 6.5l-42.1-5.9c-3.5-0.5-6.2-3.1-6.8-6.6l-52.5-311.4c-0.7-4.5 2.3-8.7 6.8-9.3zM960 856c0 4.4-3.6 8-8 8H576v-88c0-4.4 3.6-8 8-8h304c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H584c-4.4 0-8-3.6-8-8v-32c0-4.4 3.6-8 8-8h304c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H584c-4.4 0-8-3.6-8-8v-32c0-4.4 3.6-8 8-8h304c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H584c-4.4 0-8-3.6-8-8v-32c0-4.4 3.6-8 8-8h304c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H584c-4.4 0-8-3.6-8-8v-32c0-4.4 3.6-8 8-8h304c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H584c-4.4 0-8-3.6-8-8v-88h376c4.4 0 8 3.6 8 8v688z" ></path></symbol><symbol id="icon-word" viewBox="0 0 1024 1024"><path d="M576 96V75.9c0-40.3-36.9-70.6-76.4-62.8l-448 88.7C21.6 107.7 0 134 0 164.6v694.7c0 30.6 21.7 57 51.8 62.8l448 87.1c39.5 7.7 76.2-22.6 76.2-62.8V928h416c17.7 0 32-14.3 32-32V128c0-17.7-14.3-32-32-32H576z m-83.1 846.7l-416-80.9c-7.5-1.5-12.9-8-12.9-15.7V177.7c0-7.6 5.4-14.2 12.9-15.7l416-82.3c9.9-2 19.1 5.6 19.1 15.7V927c0 10-9.2 17.6-19.1 15.7zM952 864H576v-88c0-4.4 3.6-8 8-8h304c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H584c-4.4 0-8-3.6-8-8v-32c0-4.4 3.6-8 8-8h304c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H584c-4.4 0-8-3.6-8-8v-32c0-4.4 3.6-8 8-8h304c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H584c-4.4 0-8-3.6-8-8v-32c0-4.4 3.6-8 8-8h304c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H584c-4.4 0-8-3.6-8-8v-32c0-4.4 3.6-8 8-8h304c4.4 0 8-3.6 8-8v-48c0-4.4-3.6-8-8-8H584c-4.4 0-8-3.6-8-8v-88h376c4.4 0 8 3.6 8 8v688c0 4.4-3.6 8-8 8z" ></path><path d="M458.3 347.2l-81.8 388.4c-0.9 4.1-4.8 6.9-8.9 6.3l-55.2-7.7c-3.4-0.5-6.1-3.1-6.8-6.5l-44.1-237.4c-2.3-12.7-3.7-25.9-4.1-39.8h-0.7c-1.1 16.3-2.6 29.6-4.6 40.1l-41.2 221.5c-0.8 4.2-4.7 7.1-9 6.5l-42.1-5.9c-3.5-0.5-6.2-3.2-6.8-6.6l-52.5-311.4c-0.7-4.4 2.3-8.6 6.8-9.3L139 381c4.4-0.6 8.4 2.4 9 6.8l31.4 218.1c1.5 10.2 2.5 23 3.1 38.5l1 0.1c0.5-12 2-25.1 4.5-39.2l43-231.6c0.6-3.4 3.3-6 6.8-6.5l44.7-6.3c4.2-0.6 8.2 2.3 9 6.5L337 615.7c2 10.5 3.5 24.2 4.6 41l0.9 0.1c0.5-14.4 1.9-28.4 4.3-42.1l42.7-263.1c0.6-3.5 3.3-6.2 6.8-6.6l53.1-7.4c5.5-0.8 10.1 4.1 8.9 9.6z" ></path></symbol><symbol id="icon-audio-full" viewBox="0 0 1024 1024"><path d="M890.5 250.5l-213-213C653.5 13.5 620.9 0 587 0H160c-35.3 0-64 28.6-64 64v896c0 35.3 28.7 64 64 64h704c35.3 0 64-28.7 64-64V341c0-33.9-13.5-66.5-37.5-90.5zM640 90.5L837.5 288H704c-35.3 0-64-28.7-64-64V90.5zM344 739h1.8c12.4 0 22.5-10.1 22.5-22.5l-0.2-180.6c0-27.5 17.5-51.9 43.6-60.7L587.6 416c41.5-14 84.4 16.9 84.4 60.7v289c0 42.9-38.7 77.7-86.5 77.7S499 808.6 499 765.7c0-42.9 38.7-77.7 86.5-77.7 12.4 0 22.5-10.1 22.5-22.5V498.9c0-11-10.7-18.7-21.1-15.2l-143.8 48.5c-6.5 2.2-10.9 8.3-10.9 15.2l0.2 204.6h-0.4v65.6c0 43.4-39.4 78.6-88 78.6s-88-35.2-88-78.6c0-43.4 39.4-78.6 88-78.6z" ></path></symbol><symbol id="icon-audio" viewBox="0 0 1024 1024"><path d="M587 0H160c-35.3 0-64 28.7-64 64v896c0 35.3 28.7 64 64 64h704c35.3 0 64-28.7 64-64V341c0-33.9-13.5-66.5-37.5-90.5l-213-213C653.5 13.5 620.9 0 587 0z m53 90.5L837.5 288H704c-35.3 0-64-28.7-64-64V90.5zM832 960H192c-17.7 0-32-14.3-32-32V96c0-17.7 14.3-32 32-32h384v160c0 70.7 57.3 128 128 128h160v576c0 17.7-14.3 32-32 32z" ></path><path d="M672 476.6v289.1c0 42.9-38.7 77.7-86.5 77.7S499 808.6 499 765.7c0-42.9 38.7-77.7 86.5-77.7 12.4 0 22.5-10.1 22.5-22.5V498.9c0-11-10.7-18.7-21.1-15.2l-143.8 48.5c-6.5 2.2-10.9 8.3-10.9 15.2l0.2 204.6h-0.4v65.6c0 43.4-39.4 78.6-88 78.6s-88-35.2-88-78.6c0-43.4 39.4-78.6 88-78.6h1.8c12.4 0 22.5-10.1 22.5-22.5l-0.2-180.6c0-27.5 17.5-51.9 43.6-60.7L587.6 416c41.4-14 84.4 16.8 84.4 60.6z" ></path></symbol><symbol id="icon-avi-full" viewBox="0 0 1024 1024"><path d="M890.5 250.5l-213-213C653.5 13.5 620.9 0 587 0H160c-35.3 0-64 28.6-64 64v896c0 35.3 28.7 64 64 64h704c35.3 0 64-28.7 64-64V341c0-33.9-13.5-66.5-37.5-90.5zM640 90.5L837.5 288H704c-35.3 0-64-28.7-64-64V90.5zM353 502.9c0-24.5 26.5-39.9 47.8-27.8l270.1 153.1c21.6 12.3 21.6 43.4 0 55.7l-270.1 153c-21.3 12.1-47.8-3.3-47.8-27.8V502.9z" ></path><path d="M565.6 669.9l-124.8 70.7c-10.7 6-23.9-1.7-23.9-13.9V585.3c0-12.3 13.2-20 23.9-13.9l124.8 70.7c10.9 6.1 10.9 21.7 0 27.8z" ></path></symbol><symbol id="icon-avi" viewBox="0 0 1024 1024"><path d="M587 0H160c-35.3 0-64 28.7-64 64v896c0 35.3 28.7 64 64 64h704c35.3 0 64-28.7 64-64V341c0-33.9-13.5-66.5-37.5-90.5l-213-213C653.5 13.5 620.9 0 587 0z m53 90.5L837.5 288H704c-35.3 0-64-28.7-64-64V90.5zM832 960H192c-17.7 0-32-14.3-32-32V96c0-17.7 14.3-32 32-32h384v160c0 70.7 57.3 128 128 128h160v576c0 17.7-14.3 32-32 32z" ></path><path d="M440.9 571.4l124.8 70.7c10.8 6.1 10.8 21.7 0 27.8l-124.8 70.7c-10.7 6-23.9-1.7-23.9-13.9V585.3c0-12.3 13.2-20 23.9-13.9zM353 809.1c0 24.5 26.4 39.9 47.8 27.8l270.1-153.1c21.6-12.3 21.6-43.4 0-55.7l-270.1-153c-21.3-12.1-47.8 3.3-47.8 27.8v306.2z" ></path></symbol><symbol id="icon-zip-full" viewBox="0 0 1024 1024"><path d="M544 532v88c0 2.2-1.8 4-4 4h-56c-2.2 0-4-1.8-4-4v-88c0-2.2 1.8-4 4-4h56c2.2 0 4 1.8 4 4z" ></path><path d="M1024 64v896c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V64C0 28.7 28.7 0 64 0h432c8.8 0 16 7.2 16 16v140c0 2.2-1.8 4-4 4h-56c-2.2 0-4 1.8-4 4v120c0 2.2 1.8 4 4 4h56c2.2 0 4 1.8 4 4v72c0 2.2-1.8 4-4 4h-56c-2.2 0-4 1.8-4 4v88c0 2.2-1.8 4-4.1 4-7.7 0-14.7 3.2-19.7 8.2-5.1 5.1-8.2 12.1-8.2 19.8v168c0 15.5 12.5 28 28 28h136c15.5 0 28-12.5 28-28V492c0-15.5-12.5-28-28-28h-64c-2.2 0-4-1.8-4-4v-56c0-2.2 1.8-4 4-4h56c2.2 0 4-1.8 4-4V260c0-2.2-1.8-4-4-4h-56c-2.2 0-4-1.8-4-4v-56c0-2.2 1.8-4 4-4h56c2.2 0 4-1.8 4-4V16c0-8.8 7.2-16 16-16h368c35.3 0 64 28.7 64 64z" ></path></symbol><symbol id="icon-zip" viewBox="0 0 1024 1024"><path d="M0 64v896c0 35.3 28.7 64 64 64h896c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64C28.7 0 0 28.7 0 64z m944 896H80c-8.8 0-16-7.2-16-16V80c0-8.8 7.2-16 16-16h416c8.8 0 16 7.2 16 16v76c0 2.2-1.8 4-4 4h-56c-2.2 0-4 1.8-4 4v120c0 2.2 1.8 4 4 4h56c2.2 0 4 1.8 4 4v72c0 2.2-1.8 4-4 4h-56c-2.2 0-4 1.8-4 4v88c0 2.2-1.8 4-4 4-15.5 0-28 12.5-28 28v168c0 15.5 12.5 28 28 28h136c15.5 0 28-12.5 28-28V492c0-15.5-12.5-28-28-28h-64c-2.2 0-4-1.8-4-4v-56c0-2.2 1.8-4 4-4h56c2.2 0 4-1.8 4-4V260c0-2.2-1.8-4-4-4h-56c-2.2 0-4-1.8-4-4v-56c0-2.2 1.8-4 4-4h56c2.2 0 4-1.8 4-4V80c0-8.8 7.2-16 16-16h352c8.8 0 16 7.2 16 16v864c0 8.8-7.2 16-16 16zM484 528h56c2.2 0 4 1.8 4 4v88c0 2.2-1.8 4-4 4h-56c-2.2 0-4-1.8-4-4v-88c0-2.2 1.8-4 4-4z" ></path></symbol></svg>',q=(q=document.getElementsByTagName("script"))[q.length-1].getAttribute("data-injectcss"),i=function(c,t){t.parentNode.insertBefore(c,t)};if(q&&!c.__iconfont__svg__cssinject__){c.__iconfont__svg__cssinject__=!0;try{document.write("<style>.svgfont {display: inline-block;width: 1em;height: 1em;fill: currentColor;vertical-align: -0.1em;font-size:16px;}</style>")}catch(c){console&&console.log(c)}}function z(){a||(a=!0,h())}function e(){try{v.documentElement.doScroll("left")}catch(c){return void setTimeout(e,50)}z()}t=function(){var c,t;(t=document.createElement("div")).innerHTML=o,o=null,(c=t.getElementsByTagName("svg")[0])&&(c.setAttribute("aria-hidden","true"),c.style.position="absolute",c.style.width=0,c.style.height=0,c.style.overflow="hidden",t=c,(c=document.body).firstChild?i(t,c.firstChild):c.appendChild(t))},document.addEventListener?~["complete","loaded","interactive"].indexOf(document.readyState)?setTimeout(t,0):(l=function(){document.removeEventListener("DOMContentLoaded",l,!1),t()},document.addEventListener("DOMContentLoaded",l,!1)):document.attachEvent&&(h=t,v=c.document,a=!1,e(),v.onreadystatechange=function(){"complete"==v.readyState&&(v.onreadystatechange=null,z())})}(window);
  1 +{
  2 + "id": "2843738",
  3 + "name": "文件系统",
  4 + "font_family": "iconfont",
  5 + "css_prefix_text": "icon-",
  6 + "description": "",
  7 + "glyphs": [
  8 + {
  9 + "icon_id": "1118",
  10 + "name": "文件",
  11 + "font_class": "wenjian",
  12 + "unicode": "e600",
  13 + "unicode_decimal": 58880
  14 + },
  15 + {
  16 + "icon_id": "1119",
  17 + "name": "编辑文件",
  18 + "font_class": "bianjiwenjian",
  19 + "unicode": "e601",
  20 + "unicode_decimal": 58881
  21 + },
  22 + {
  23 + "icon_id": "1120",
  24 + "name": "等待文件",
  25 + "font_class": "dengdaiwenjian",
  26 + "unicode": "e602",
  27 + "unicode_decimal": 58882
  28 + },
  29 + {
  30 + "icon_id": "1121",
  31 + "name": "删除文件",
  32 + "font_class": "shanchuwenjian",
  33 + "unicode": "e603",
  34 + "unicode_decimal": 58883
  35 + },
  36 + {
  37 + "icon_id": "1122",
  38 + "name": "剪切文件",
  39 + "font_class": "jianqiewenjian",
  40 + "unicode": "e604",
  41 + "unicode_decimal": 58884
  42 + },
  43 + {
  44 + "icon_id": "1126",
  45 + "name": "文件夹",
  46 + "font_class": "wenjianjia",
  47 + "unicode": "e605",
  48 + "unicode_decimal": 58885
  49 + },
  50 + {
  51 + "icon_id": "1128",
  52 + "name": "删除文件夹",
  53 + "font_class": "shanchuwenjianjia",
  54 + "unicode": "e606",
  55 + "unicode_decimal": 58886
  56 + },
  57 + {
  58 + "icon_id": "1129",
  59 + "name": "未打卡的文件夹",
  60 + "font_class": "weidaqiadewenjianjia",
  61 + "unicode": "e607",
  62 + "unicode_decimal": 58887
  63 + },
  64 + {
  65 + "icon_id": "1131",
  66 + "name": "资料库",
  67 + "font_class": "ziliaoku",
  68 + "unicode": "e608",
  69 + "unicode_decimal": 58888
  70 + },
  71 + {
  72 + "icon_id": "1233",
  73 + "name": "文本",
  74 + "font_class": "wenben",
  75 + "unicode": "e609",
  76 + "unicode_decimal": 58889
  77 + },
  78 + {
  79 + "icon_id": "1383",
  80 + "name": "代码文件",
  81 + "font_class": "daimawenjian",
  82 + "unicode": "e60a",
  83 + "unicode_decimal": 58890
  84 + },
  85 + {
  86 + "icon_id": "6664157",
  87 + "name": "excel",
  88 + "font_class": "excel",
  89 + "unicode": "e611",
  90 + "unicode_decimal": 58897
  91 + },
  92 + {
  93 + "icon_id": "7594860",
  94 + "name": "24gf-fileEmpty",
  95 + "font_class": "24gf-fileEmpty",
  96 + "unicode": "eac3",
  97 + "unicode_decimal": 60099
  98 + },
  99 + {
  100 + "icon_id": "7594867",
  101 + "name": "24gf-fileText",
  102 + "font_class": "24gf-fileText",
  103 + "unicode": "eac4",
  104 + "unicode_decimal": 60100
  105 + },
  106 + {
  107 + "icon_id": "7594871",
  108 + "name": "24gf-folderHeart",
  109 + "font_class": "24gf-folderHeart",
  110 + "unicode": "eac5",
  111 + "unicode_decimal": 60101
  112 + },
  113 + {
  114 + "icon_id": "7594873",
  115 + "name": "24gf-folderStar",
  116 + "font_class": "24gf-folderStar",
  117 + "unicode": "eac6",
  118 + "unicode_decimal": 60102
  119 + },
  120 + {
  121 + "icon_id": "7594875",
  122 + "name": "24gf-folderOpen",
  123 + "font_class": "24gf-folderOpen",
  124 + "unicode": "eac7",
  125 + "unicode_decimal": 60103
  126 + },
  127 + {
  128 + "icon_id": "11006266",
  129 + "name": "文件",
  130 + "font_class": "wenjian1",
  131 + "unicode": "e619",
  132 + "unicode_decimal": 58905
  133 + },
  134 + {
  135 + "icon_id": "18174831",
  136 + "name": "文件,图片,image",
  137 + "font_class": "image",
  138 + "unicode": "ea40",
  139 + "unicode_decimal": 59968
  140 + },
  141 + {
  142 + "icon_id": "18174832",
  143 + "name": "文件,图片,image",
  144 + "font_class": "image-full",
  145 + "unicode": "ea41",
  146 + "unicode_decimal": 59969
  147 + },
  148 + {
  149 + "icon_id": "18174834",
  150 + "name": "文件,json",
  151 + "font_class": "json-full",
  152 + "unicode": "ea42",
  153 + "unicode_decimal": 59970
  154 + },
  155 + {
  156 + "icon_id": "18174835",
  157 + "name": "文件,json",
  158 + "font_class": "json",
  159 + "unicode": "ea43",
  160 + "unicode_decimal": 59971
  161 + },
  162 + {
  163 + "icon_id": "18174846",
  164 + "name": "文件,pdf",
  165 + "font_class": "pdf",
  166 + "unicode": "ea44",
  167 + "unicode_decimal": 59972
  168 + },
  169 + {
  170 + "icon_id": "18174847",
  171 + "name": "文件,pdf",
  172 + "font_class": "pdf-full",
  173 + "unicode": "ea45",
  174 + "unicode_decimal": 59973
  175 + },
  176 + {
  177 + "icon_id": "18174850",
  178 + "name": "文件,txt",
  179 + "font_class": "txt-full",
  180 + "unicode": "ea46",
  181 + "unicode_decimal": 59974
  182 + },
  183 + {
  184 + "icon_id": "18174851",
  185 + "name": "文件,txt",
  186 + "font_class": "txt",
  187 + "unicode": "ea47",
  188 + "unicode_decimal": 59975
  189 + },
  190 + {
  191 + "icon_id": "18174855",
  192 + "name": "文件,excel",
  193 + "font_class": "excel1",
  194 + "unicode": "ea48",
  195 + "unicode_decimal": 59976
  196 + },
  197 + {
  198 + "icon_id": "18174856",
  199 + "name": "文件,excel",
  200 + "font_class": "excel-full",
  201 + "unicode": "ea49",
  202 + "unicode_decimal": 59977
  203 + },
  204 + {
  205 + "icon_id": "18174864",
  206 + "name": "文件,ppt",
  207 + "font_class": "ppt",
  208 + "unicode": "ea4a",
  209 + "unicode_decimal": 59978
  210 + },
  211 + {
  212 + "icon_id": "18174865",
  213 + "name": "文件,ppt",
  214 + "font_class": "ppt-full",
  215 + "unicode": "ea4b",
  216 + "unicode_decimal": 59979
  217 + },
  218 + {
  219 + "icon_id": "18174873",
  220 + "name": "文件,word",
  221 + "font_class": "word-full",
  222 + "unicode": "ea4c",
  223 + "unicode_decimal": 59980
  224 + },
  225 + {
  226 + "icon_id": "18174874",
  227 + "name": "文件,word",
  228 + "font_class": "word",
  229 + "unicode": "ea4d",
  230 + "unicode_decimal": 59981
  231 + },
  232 + {
  233 + "icon_id": "18174878",
  234 + "name": "文件,音频",
  235 + "font_class": "audio-full",
  236 + "unicode": "ea4e",
  237 + "unicode_decimal": 59982
  238 + },
  239 + {
  240 + "icon_id": "18174879",
  241 + "name": "文件,音频",
  242 + "font_class": "audio",
  243 + "unicode": "ea4f",
  244 + "unicode_decimal": 59983
  245 + },
  246 + {
  247 + "icon_id": "18174882",
  248 + "name": "文件,视频",
  249 + "font_class": "avi-full",
  250 + "unicode": "ea50",
  251 + "unicode_decimal": 59984
  252 + },
  253 + {
  254 + "icon_id": "18174883",
  255 + "name": "文件,视频",
  256 + "font_class": "avi",
  257 + "unicode": "ea51",
  258 + "unicode_decimal": 59985
  259 + },
  260 + {
  261 + "icon_id": "18174884",
  262 + "name": "文件,zip",
  263 + "font_class": "zip-full",
  264 + "unicode": "ea52",
  265 + "unicode_decimal": 59986
  266 + },
  267 + {
  268 + "icon_id": "18174885",
  269 + "name": "文件,zip",
  270 + "font_class": "zip",
  271 + "unicode": "ea53",
  272 + "unicode_decimal": 59987
  273 + }
  274 + ]
  275 +}