feat:初始化 -融骅
This commit is contained in:
539
serve/tf/font/demo.css
Normal file
539
serve/tf/font/demo.css
Normal file
@@ -0,0 +1,539 @@
|
||||
/* Logo 字体 */
|
||||
@font-face {
|
||||
font-family: "iconfont logo";
|
||||
src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834');
|
||||
src: url('https://at.alicdn.com/t/font_985780_km7mi63cihi.eot?t=1545807318834#iefix') format('embedded-opentype'),
|
||||
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.woff?t=1545807318834') format('woff'),
|
||||
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.ttf?t=1545807318834') format('truetype'),
|
||||
url('https://at.alicdn.com/t/font_985780_km7mi63cihi.svg?t=1545807318834#iconfont') format('svg');
|
||||
}
|
||||
|
||||
.logo {
|
||||
font-family: "iconfont logo";
|
||||
font-size: 160px;
|
||||
font-style: normal;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
/* tabs */
|
||||
.nav-tabs {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nav-tabs .nav-more {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
height: 42px;
|
||||
line-height: 42px;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
#tabs {
|
||||
border-bottom: 1px solid #eee;
|
||||
}
|
||||
|
||||
#tabs li {
|
||||
cursor: pointer;
|
||||
width: 100px;
|
||||
height: 40px;
|
||||
line-height: 40px;
|
||||
text-align: center;
|
||||
font-size: 16px;
|
||||
border-bottom: 2px solid transparent;
|
||||
position: relative;
|
||||
z-index: 1;
|
||||
margin-bottom: -1px;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
|
||||
#tabs .active {
|
||||
border-bottom-color: #f00;
|
||||
color: #222;
|
||||
}
|
||||
|
||||
.tab-container .content {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* 页面布局 */
|
||||
.main {
|
||||
padding: 30px 100px;
|
||||
width: 960px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
.main .logo {
|
||||
color: #333;
|
||||
text-align: left;
|
||||
margin-bottom: 30px;
|
||||
line-height: 1;
|
||||
height: 110px;
|
||||
margin-top: -50px;
|
||||
overflow: hidden;
|
||||
*zoom: 1;
|
||||
}
|
||||
|
||||
.main .logo a {
|
||||
font-size: 160px;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.helps {
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.helps pre {
|
||||
padding: 20px;
|
||||
margin: 10px 0;
|
||||
border: solid 1px #e7e1cd;
|
||||
background-color: #fffdef;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
.icon_lists {
|
||||
width: 100% !important;
|
||||
overflow: hidden;
|
||||
*zoom: 1;
|
||||
}
|
||||
|
||||
.icon_lists li {
|
||||
width: 100px;
|
||||
margin-bottom: 10px;
|
||||
margin-right: 20px;
|
||||
text-align: center;
|
||||
list-style: none !important;
|
||||
cursor: default;
|
||||
}
|
||||
|
||||
.icon_lists li .code-name {
|
||||
line-height: 1.2;
|
||||
}
|
||||
|
||||
.icon_lists .icon {
|
||||
display: block;
|
||||
height: 100px;
|
||||
line-height: 100px;
|
||||
font-size: 42px;
|
||||
margin: 10px auto;
|
||||
color: #333;
|
||||
-webkit-transition: font-size 0.25s linear, width 0.25s linear;
|
||||
-moz-transition: font-size 0.25s linear, width 0.25s linear;
|
||||
transition: font-size 0.25s linear, width 0.25s linear;
|
||||
}
|
||||
|
||||
.icon_lists .icon:hover {
|
||||
font-size: 100px;
|
||||
}
|
||||
|
||||
.icon_lists .svg-icon {
|
||||
/* 通过设置 font-size 来改变图标大小 */
|
||||
width: 1em;
|
||||
/* 图标和文字相邻时,垂直对齐 */
|
||||
vertical-align: -0.15em;
|
||||
/* 通过设置 color 来改变 SVG 的颜色/fill */
|
||||
fill: currentColor;
|
||||
/* path 和 stroke 溢出 viewBox 部分在 IE 下会显示
|
||||
normalize.css 中也包含这行 */
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.icon_lists li .name,
|
||||
.icon_lists li .code-name {
|
||||
color: #666;
|
||||
}
|
||||
|
||||
/* markdown 样式 */
|
||||
.markdown {
|
||||
color: #666;
|
||||
font-size: 14px;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
.highlight {
|
||||
line-height: 1.5;
|
||||
}
|
||||
|
||||
.markdown img {
|
||||
vertical-align: middle;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.markdown h1 {
|
||||
color: #404040;
|
||||
font-weight: 500;
|
||||
line-height: 40px;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.markdown h2,
|
||||
.markdown h3,
|
||||
.markdown h4,
|
||||
.markdown h5,
|
||||
.markdown h6 {
|
||||
color: #404040;
|
||||
margin: 1.6em 0 0.6em 0;
|
||||
font-weight: 500;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.markdown h1 {
|
||||
font-size: 28px;
|
||||
}
|
||||
|
||||
.markdown h2 {
|
||||
font-size: 22px;
|
||||
}
|
||||
|
||||
.markdown h3 {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.markdown h4 {
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.markdown h5 {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.markdown h6 {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.markdown hr {
|
||||
height: 1px;
|
||||
border: 0;
|
||||
background: #e9e9e9;
|
||||
margin: 16px 0;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.markdown p {
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
.markdown>p,
|
||||
.markdown>blockquote,
|
||||
.markdown>.highlight,
|
||||
.markdown>ol,
|
||||
.markdown>ul {
|
||||
width: 80%;
|
||||
}
|
||||
|
||||
.markdown ul>li {
|
||||
list-style: circle;
|
||||
}
|
||||
|
||||
.markdown>ul li,
|
||||
.markdown blockquote ul>li {
|
||||
margin-left: 20px;
|
||||
padding-left: 4px;
|
||||
}
|
||||
|
||||
.markdown>ul li p,
|
||||
.markdown>ol li p {
|
||||
margin: 0.6em 0;
|
||||
}
|
||||
|
||||
.markdown ol>li {
|
||||
list-style: decimal;
|
||||
}
|
||||
|
||||
.markdown>ol li,
|
||||
.markdown blockquote ol>li {
|
||||
margin-left: 20px;
|
||||
padding-left: 4px;
|
||||
}
|
||||
|
||||
.markdown code {
|
||||
margin: 0 3px;
|
||||
padding: 0 5px;
|
||||
background: #eee;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.markdown strong,
|
||||
.markdown b {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.markdown>table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0px;
|
||||
empty-cells: show;
|
||||
border: 1px solid #e9e9e9;
|
||||
width: 95%;
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
.markdown>table th {
|
||||
white-space: nowrap;
|
||||
color: #333;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.markdown>table th,
|
||||
.markdown>table td {
|
||||
border: 1px solid #e9e9e9;
|
||||
padding: 8px 16px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.markdown>table th {
|
||||
background: #F7F7F7;
|
||||
}
|
||||
|
||||
.markdown blockquote {
|
||||
font-size: 90%;
|
||||
color: #999;
|
||||
border-left: 4px solid #e9e9e9;
|
||||
padding-left: 0.8em;
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
.markdown blockquote p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.markdown .anchor {
|
||||
opacity: 0;
|
||||
transition: opacity 0.3s ease;
|
||||
margin-left: 8px;
|
||||
}
|
||||
|
||||
.markdown .waiting {
|
||||
color: #ccc;
|
||||
}
|
||||
|
||||
.markdown h1:hover .anchor,
|
||||
.markdown h2:hover .anchor,
|
||||
.markdown h3:hover .anchor,
|
||||
.markdown h4:hover .anchor,
|
||||
.markdown h5:hover .anchor,
|
||||
.markdown h6:hover .anchor {
|
||||
opacity: 1;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.markdown>br,
|
||||
.markdown>p>br {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
|
||||
.hljs {
|
||||
display: block;
|
||||
background: white;
|
||||
padding: 0.5em;
|
||||
color: #333333;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
.hljs-comment,
|
||||
.hljs-meta {
|
||||
color: #969896;
|
||||
}
|
||||
|
||||
.hljs-string,
|
||||
.hljs-variable,
|
||||
.hljs-template-variable,
|
||||
.hljs-strong,
|
||||
.hljs-emphasis,
|
||||
.hljs-quote {
|
||||
color: #df5000;
|
||||
}
|
||||
|
||||
.hljs-keyword,
|
||||
.hljs-selector-tag,
|
||||
.hljs-type {
|
||||
color: #a71d5d;
|
||||
}
|
||||
|
||||
.hljs-literal,
|
||||
.hljs-symbol,
|
||||
.hljs-bullet,
|
||||
.hljs-attribute {
|
||||
color: #0086b3;
|
||||
}
|
||||
|
||||
.hljs-section,
|
||||
.hljs-name {
|
||||
color: #63a35c;
|
||||
}
|
||||
|
||||
.hljs-tag {
|
||||
color: #333333;
|
||||
}
|
||||
|
||||
.hljs-title,
|
||||
.hljs-attr,
|
||||
.hljs-selector-id,
|
||||
.hljs-selector-class,
|
||||
.hljs-selector-attr,
|
||||
.hljs-selector-pseudo {
|
||||
color: #795da3;
|
||||
}
|
||||
|
||||
.hljs-addition {
|
||||
color: #55a532;
|
||||
background-color: #eaffea;
|
||||
}
|
||||
|
||||
.hljs-deletion {
|
||||
color: #bd2c00;
|
||||
background-color: #ffecec;
|
||||
}
|
||||
|
||||
.hljs-link {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* 代码高亮 */
|
||||
/* PrismJS 1.15.0
|
||||
https://prismjs.com/download.html#themes=prism&languages=markup+css+clike+javascript */
|
||||
/**
|
||||
* prism.js default theme for JavaScript, CSS and HTML
|
||||
* Based on dabblet (http://dabblet.com)
|
||||
* @author Lea Verou
|
||||
*/
|
||||
code[class*="language-"],
|
||||
pre[class*="language-"] {
|
||||
color: black;
|
||||
background: none;
|
||||
text-shadow: 0 1px white;
|
||||
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
||||
text-align: left;
|
||||
white-space: pre;
|
||||
word-spacing: normal;
|
||||
word-break: normal;
|
||||
word-wrap: normal;
|
||||
line-height: 1.5;
|
||||
|
||||
-moz-tab-size: 4;
|
||||
-o-tab-size: 4;
|
||||
tab-size: 4;
|
||||
|
||||
-webkit-hyphens: none;
|
||||
-moz-hyphens: none;
|
||||
-ms-hyphens: none;
|
||||
hyphens: none;
|
||||
}
|
||||
|
||||
pre[class*="language-"]::-moz-selection,
|
||||
pre[class*="language-"] ::-moz-selection,
|
||||
code[class*="language-"]::-moz-selection,
|
||||
code[class*="language-"] ::-moz-selection {
|
||||
text-shadow: none;
|
||||
background: #b3d4fc;
|
||||
}
|
||||
|
||||
pre[class*="language-"]::selection,
|
||||
pre[class*="language-"] ::selection,
|
||||
code[class*="language-"]::selection,
|
||||
code[class*="language-"] ::selection {
|
||||
text-shadow: none;
|
||||
background: #b3d4fc;
|
||||
}
|
||||
|
||||
@media print {
|
||||
|
||||
code[class*="language-"],
|
||||
pre[class*="language-"] {
|
||||
text-shadow: none;
|
||||
}
|
||||
}
|
||||
|
||||
/* Code blocks */
|
||||
pre[class*="language-"] {
|
||||
padding: 1em;
|
||||
margin: .5em 0;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
:not(pre)>code[class*="language-"],
|
||||
pre[class*="language-"] {
|
||||
background: #f5f2f0;
|
||||
}
|
||||
|
||||
/* Inline code */
|
||||
:not(pre)>code[class*="language-"] {
|
||||
padding: .1em;
|
||||
border-radius: .3em;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
.token.comment,
|
||||
.token.prolog,
|
||||
.token.doctype,
|
||||
.token.cdata {
|
||||
color: slategray;
|
||||
}
|
||||
|
||||
.token.punctuation {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
.namespace {
|
||||
opacity: .7;
|
||||
}
|
||||
|
||||
.token.property,
|
||||
.token.tag,
|
||||
.token.boolean,
|
||||
.token.number,
|
||||
.token.constant,
|
||||
.token.symbol,
|
||||
.token.deleted {
|
||||
color: #905;
|
||||
}
|
||||
|
||||
.token.selector,
|
||||
.token.attr-name,
|
||||
.token.string,
|
||||
.token.char,
|
||||
.token.builtin,
|
||||
.token.inserted {
|
||||
color: #690;
|
||||
}
|
||||
|
||||
.token.operator,
|
||||
.token.entity,
|
||||
.token.url,
|
||||
.language-css .token.string,
|
||||
.style .token.string {
|
||||
color: #9a6e3a;
|
||||
background: hsla(0, 0%, 100%, .5);
|
||||
}
|
||||
|
||||
.token.atrule,
|
||||
.token.attr-value,
|
||||
.token.keyword {
|
||||
color: #07a;
|
||||
}
|
||||
|
||||
.token.function,
|
||||
.token.class-name {
|
||||
color: #DD4A68;
|
||||
}
|
||||
|
||||
.token.regex,
|
||||
.token.important,
|
||||
.token.variable {
|
||||
color: #e90;
|
||||
}
|
||||
|
||||
.token.important,
|
||||
.token.bold {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.token.italic {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.token.entity {
|
||||
cursor: help;
|
||||
}
|
||||
2900
serve/tf/font/demo_index.html
Normal file
2900
serve/tf/font/demo_index.html
Normal file
File diff suppressed because it is too large
Load Diff
485
serve/tf/font/iconfont.css
Normal file
485
serve/tf/font/iconfont.css
Normal file
@@ -0,0 +1,485 @@
|
||||
@font-face {
|
||||
font-family: "iconfont"; /* Project id 3739288 */
|
||||
src: url('iconfont.ttf?t=1684825215477') format('truetype');
|
||||
}
|
||||
|
||||
.iconfont {
|
||||
font-family: "iconfont" !important;
|
||||
font-size: 16px;
|
||||
font-style: normal;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
.i-cai:before {
|
||||
content: "\e654";
|
||||
}
|
||||
|
||||
.i-zan:before {
|
||||
content: "\e6d0";
|
||||
}
|
||||
|
||||
.i-xls:before {
|
||||
content: "\e63c";
|
||||
}
|
||||
|
||||
.i-shipin:before {
|
||||
content: "\e63d";
|
||||
}
|
||||
|
||||
.i-yinyue:before {
|
||||
content: "\e63e";
|
||||
}
|
||||
|
||||
.i-ppt:before {
|
||||
content: "\e63f";
|
||||
}
|
||||
|
||||
.i-pptx:before {
|
||||
content: "\e640";
|
||||
}
|
||||
|
||||
.i-xlsx:before {
|
||||
content: "\e643";
|
||||
}
|
||||
|
||||
.i-tupiao:before {
|
||||
content: "\e64e";
|
||||
}
|
||||
|
||||
.i-doc:before {
|
||||
content: "\e650";
|
||||
}
|
||||
|
||||
.i-docx:before {
|
||||
content: "\e651";
|
||||
}
|
||||
|
||||
.i-pdf:before {
|
||||
content: "\e653";
|
||||
}
|
||||
|
||||
.i-wenjianjia:before {
|
||||
content: "\e64d";
|
||||
}
|
||||
|
||||
.i-pingjia:before {
|
||||
content: "\e63a";
|
||||
}
|
||||
|
||||
.i-kaoheceping:before {
|
||||
content: "\e63b";
|
||||
}
|
||||
|
||||
.i-zanting:before {
|
||||
content: "\e693";
|
||||
}
|
||||
|
||||
.i-bofang:before {
|
||||
content: "\e733";
|
||||
}
|
||||
|
||||
.i-xitongguanli:before {
|
||||
content: "\e683";
|
||||
}
|
||||
|
||||
.i-zaixiankecheng:before {
|
||||
content: "\e639";
|
||||
}
|
||||
|
||||
.i-zaixianjiaoxue:before {
|
||||
content: "\e66b";
|
||||
}
|
||||
|
||||
.i-ksrk-mnks:before {
|
||||
content: "\e637";
|
||||
}
|
||||
|
||||
.i-dao-hang:before {
|
||||
content: "\e635";
|
||||
}
|
||||
|
||||
.i-dbsy-twdn:before {
|
||||
content: "\e689";
|
||||
}
|
||||
|
||||
.i-csrk-ctgg:before {
|
||||
content: "\e652";
|
||||
}
|
||||
|
||||
.i-dbsy-sjpg:before {
|
||||
content: "\e62d";
|
||||
}
|
||||
|
||||
.i-dbsy-zbsk:before {
|
||||
content: "\e633";
|
||||
}
|
||||
|
||||
.i-ksrk-sczy:before {
|
||||
content: "\e627";
|
||||
}
|
||||
|
||||
.i-ksrk-kcgl:before {
|
||||
content: "\e628";
|
||||
}
|
||||
|
||||
.i-ksrk-tjst:before {
|
||||
content: "\e62b";
|
||||
}
|
||||
|
||||
.i-ksrk-jlsj:before {
|
||||
content: "\e664";
|
||||
}
|
||||
|
||||
.i-ksrk-cjzb:before {
|
||||
content: "\e62c";
|
||||
}
|
||||
|
||||
.i-bg-upload:before {
|
||||
content: "\e64b";
|
||||
}
|
||||
|
||||
.i-lock:before {
|
||||
content: "\e6c3";
|
||||
}
|
||||
|
||||
.i-user:before {
|
||||
content: "\e73f";
|
||||
}
|
||||
|
||||
.i-logo:before {
|
||||
content: "\e64a";
|
||||
}
|
||||
|
||||
.i-zy-folder:before {
|
||||
content: "\e85e";
|
||||
}
|
||||
|
||||
.i-j-ksap-bianji2:before {
|
||||
content: "\ec7c";
|
||||
}
|
||||
|
||||
.i-x-ctgg-gonggulianxi:before {
|
||||
content: "\e626";
|
||||
}
|
||||
|
||||
.i-h-sczy-cuowu:before {
|
||||
content: "\e68d";
|
||||
}
|
||||
|
||||
.i-h-sczy-wancheng:before {
|
||||
content: "\e625";
|
||||
}
|
||||
|
||||
.i-h-yhgl-shoujitianchong:before {
|
||||
content: "\e6b9";
|
||||
}
|
||||
|
||||
.i-h-yhgl-farenshenfenzheng:before {
|
||||
content: "\e621";
|
||||
}
|
||||
|
||||
.i-h-yhgl-gender:before {
|
||||
content: "\e6d7";
|
||||
}
|
||||
|
||||
.i-h-yhgl-pipeizhiwei:before {
|
||||
content: "\e624";
|
||||
}
|
||||
|
||||
.i-h-yhgl-zuzhijiagoujiekou:before {
|
||||
content: "\e89a";
|
||||
}
|
||||
|
||||
.i-h-yhgl-wo:before {
|
||||
content: "\e636";
|
||||
}
|
||||
|
||||
.i-h-yhgl-youxiang:before {
|
||||
content: "\e62f";
|
||||
}
|
||||
|
||||
.i-h-jsgl-duoren:before {
|
||||
content: "\e6d6";
|
||||
}
|
||||
|
||||
.i-x-wdkk-shijian:before {
|
||||
content: "\e638";
|
||||
}
|
||||
|
||||
.i-x-wdkk-jxxx:before {
|
||||
content: "\e72d";
|
||||
}
|
||||
|
||||
.i-x-wdkk-tongji:before {
|
||||
content: "\e65b";
|
||||
}
|
||||
|
||||
.i-x-wdkk-jiangshi:before {
|
||||
content: "\e660";
|
||||
}
|
||||
|
||||
.i-x-wdkk-kaishixuexi:before {
|
||||
content: "\e64f";
|
||||
}
|
||||
|
||||
.i-x-kskk-biaoji:before {
|
||||
content: "\e672";
|
||||
}
|
||||
|
||||
.i-x-zxks-canjiakaoshi:before {
|
||||
content: "\e61f";
|
||||
}
|
||||
|
||||
.i-j-kcgl--zuo:before {
|
||||
content: "\e62a";
|
||||
}
|
||||
|
||||
.i-j-hfzb--playCircle:before {
|
||||
content: "\ea82";
|
||||
}
|
||||
|
||||
.i-j-jxzb-yuan:before {
|
||||
content: "\e629";
|
||||
}
|
||||
|
||||
.i-j-jxzb-checkin:before {
|
||||
content: "\e61e";
|
||||
}
|
||||
|
||||
.i-j-jxzb-wenzi:before {
|
||||
content: "\e6ed";
|
||||
}
|
||||
|
||||
.i-j-jxzb-juxing:before {
|
||||
content: "\e620";
|
||||
}
|
||||
|
||||
.i-j-jxzb-shanchu:before {
|
||||
content: "\e8b6";
|
||||
}
|
||||
|
||||
.i-j-jxzb-chexiao:before {
|
||||
content: "\e641";
|
||||
}
|
||||
|
||||
.i-j-jxzb-xiangpi:before {
|
||||
content: "\e622";
|
||||
}
|
||||
|
||||
.i-j-jxzb-line:before {
|
||||
content: "\e6bb";
|
||||
}
|
||||
|
||||
.i-j-jxzb-quanping:before {
|
||||
content: "\e61c";
|
||||
}
|
||||
|
||||
.i-j-jxzb-nuanchang:before {
|
||||
content: "\e666";
|
||||
}
|
||||
|
||||
.i-j-jxzb-datika:before {
|
||||
content: "\e631";
|
||||
}
|
||||
|
||||
.i-j-jxzb-yangshengqi:before {
|
||||
content: "\e619";
|
||||
}
|
||||
|
||||
.i-j-jxzb-diannao:before {
|
||||
content: "\e61b";
|
||||
}
|
||||
|
||||
.i-j-jxzb--shiping:before {
|
||||
content: "\e62e";
|
||||
}
|
||||
|
||||
.i-j-jxzb-maikefeng:before {
|
||||
content: "\e64c";
|
||||
}
|
||||
|
||||
.i-j-jxzb-kejian:before {
|
||||
content: "\e659";
|
||||
}
|
||||
|
||||
.i-j-jxzb-baiban:before {
|
||||
content: "\e61d";
|
||||
}
|
||||
|
||||
.i-mima:before {
|
||||
content: "\e617";
|
||||
}
|
||||
|
||||
.i-caidan:before {
|
||||
content: "\e7af";
|
||||
}
|
||||
|
||||
.i-zy-lb:before {
|
||||
content: "\e616";
|
||||
}
|
||||
|
||||
.i-zy-slt:before {
|
||||
content: "\e675";
|
||||
}
|
||||
|
||||
.i-zy-sj-d:before {
|
||||
content: "\e647";
|
||||
}
|
||||
|
||||
.i-zy-sj:before {
|
||||
content: "\e648";
|
||||
}
|
||||
|
||||
.i-zy-sj-u:before {
|
||||
content: "\e649";
|
||||
}
|
||||
|
||||
.i-tb-tuichudenglu:before {
|
||||
content: "\e6ec";
|
||||
}
|
||||
|
||||
.i-zy-dx:before {
|
||||
content: "\e644";
|
||||
}
|
||||
|
||||
.i-zy-dx-u:before {
|
||||
content: "\e645";
|
||||
}
|
||||
|
||||
.i-zy-dx-d:before {
|
||||
content: "\e646";
|
||||
}
|
||||
|
||||
.i-j-zblb-huifang:before {
|
||||
content: "\e618";
|
||||
}
|
||||
|
||||
.i-j-rypj-xiazai:before {
|
||||
content: "\e856";
|
||||
}
|
||||
|
||||
.i-j-rypj-kaishi:before {
|
||||
content: "\e614";
|
||||
}
|
||||
|
||||
.i-j-rypj-zhongxin:before {
|
||||
content: "\e615";
|
||||
}
|
||||
|
||||
.i-j-rgpj-xiangqing:before {
|
||||
content: "\e634";
|
||||
}
|
||||
|
||||
.i-j-fbks-rili:before {
|
||||
content: "\e73d";
|
||||
}
|
||||
|
||||
.i-j-fbks-yulan:before {
|
||||
content: "\e642";
|
||||
}
|
||||
|
||||
.i-j-ksap-shanchu:before {
|
||||
content: "\e68c";
|
||||
}
|
||||
|
||||
.i-j-ksap-bianji:before {
|
||||
content: "\e6d4";
|
||||
}
|
||||
|
||||
.i-j-ksap-renyuan:before {
|
||||
content: "\e61a";
|
||||
}
|
||||
|
||||
.i-j-ksap-fuzhi:before {
|
||||
content: "\e632";
|
||||
}
|
||||
|
||||
.i-j-fbks-pingyu:before {
|
||||
content: "\e623";
|
||||
}
|
||||
|
||||
.i-x-ktbj-tianjia:before {
|
||||
content: "\e630";
|
||||
}
|
||||
|
||||
.i-x-ktbj-add-plus-circle:before {
|
||||
content: "\e600";
|
||||
}
|
||||
|
||||
.i-x-ktbj-close-circle:before {
|
||||
content: "\e601";
|
||||
}
|
||||
|
||||
.i-x-ktbj-double-quotes-left:before {
|
||||
content: "\e602";
|
||||
}
|
||||
|
||||
.i-x-ktbj-clean:before {
|
||||
content: "\e603";
|
||||
}
|
||||
|
||||
.i-x-ktbj-bold:before {
|
||||
content: "\e604";
|
||||
}
|
||||
|
||||
.i-x-ktbj-image:before {
|
||||
content: "\e605";
|
||||
}
|
||||
|
||||
.i-x-ktbj-italic:before {
|
||||
content: "\e606";
|
||||
}
|
||||
|
||||
.i-x-ktbj-paperclip-attechment-tilt:before {
|
||||
content: "\e607";
|
||||
}
|
||||
|
||||
.i-x-ktbj-move-vertical:before {
|
||||
content: "\e608";
|
||||
}
|
||||
|
||||
.i-x-ktbj-redo:before {
|
||||
content: "\e609";
|
||||
}
|
||||
|
||||
.i-x-ktbj-underline:before {
|
||||
content: "\e60a";
|
||||
}
|
||||
|
||||
.i-x-ktbj-text-align-justify:before {
|
||||
content: "\e60b";
|
||||
}
|
||||
|
||||
.i-x-ktbj-table-remove:before {
|
||||
content: "\e60c";
|
||||
}
|
||||
|
||||
.i-x-ktbj-text-align-left:before {
|
||||
content: "\e60d";
|
||||
}
|
||||
|
||||
.i-x-ktbj-list-checked:before {
|
||||
content: "\e60e";
|
||||
}
|
||||
|
||||
.i-x-ktbj-move-horizontal:before {
|
||||
content: "\e60f";
|
||||
}
|
||||
|
||||
.i-x-ktbj-text-align-right:before {
|
||||
content: "\e610";
|
||||
}
|
||||
|
||||
.i-x-ktbj-bg-color:before {
|
||||
content: "\e611";
|
||||
}
|
||||
|
||||
.i-x-ktbj-painter:before {
|
||||
content: "\e612";
|
||||
}
|
||||
|
||||
.i-x-ktbj-font-color:before {
|
||||
content: "\e613";
|
||||
}
|
||||
|
||||
1
serve/tf/font/iconfont.js
Normal file
1
serve/tf/font/iconfont.js
Normal file
File diff suppressed because one or more lines are too long
BIN
serve/tf/font/iconfont.js.gz
Normal file
BIN
serve/tf/font/iconfont.js.gz
Normal file
Binary file not shown.
835
serve/tf/font/iconfont.json
Normal file
835
serve/tf/font/iconfont.json
Normal file
@@ -0,0 +1,835 @@
|
||||
{
|
||||
"id": "3739288",
|
||||
"name": "怀励",
|
||||
"font_family": "iconfont",
|
||||
"css_prefix_text": "i-",
|
||||
"description": "",
|
||||
"glyphs": [
|
||||
{
|
||||
"icon_id": "22533620",
|
||||
"name": "踩",
|
||||
"font_class": "cai",
|
||||
"unicode": "e654",
|
||||
"unicode_decimal": 58964
|
||||
},
|
||||
{
|
||||
"icon_id": "18372382",
|
||||
"name": "赞",
|
||||
"font_class": "zan",
|
||||
"unicode": "e6d0",
|
||||
"unicode_decimal": 59088
|
||||
},
|
||||
{
|
||||
"icon_id": "34364736",
|
||||
"name": "XLS",
|
||||
"font_class": "xls",
|
||||
"unicode": "e63c",
|
||||
"unicode_decimal": 58940
|
||||
},
|
||||
{
|
||||
"icon_id": "34364737",
|
||||
"name": "shipin",
|
||||
"font_class": "shipin",
|
||||
"unicode": "e63d",
|
||||
"unicode_decimal": 58941
|
||||
},
|
||||
{
|
||||
"icon_id": "34364738",
|
||||
"name": "yinyue",
|
||||
"font_class": "yinyue",
|
||||
"unicode": "e63e",
|
||||
"unicode_decimal": 58942
|
||||
},
|
||||
{
|
||||
"icon_id": "34364739",
|
||||
"name": "PPT",
|
||||
"font_class": "ppt",
|
||||
"unicode": "e63f",
|
||||
"unicode_decimal": 58943
|
||||
},
|
||||
{
|
||||
"icon_id": "34364740",
|
||||
"name": "pptx",
|
||||
"font_class": "pptx",
|
||||
"unicode": "e640",
|
||||
"unicode_decimal": 58944
|
||||
},
|
||||
{
|
||||
"icon_id": "34364741",
|
||||
"name": "XLSX",
|
||||
"font_class": "xlsx",
|
||||
"unicode": "e643",
|
||||
"unicode_decimal": 58947
|
||||
},
|
||||
{
|
||||
"icon_id": "34364742",
|
||||
"name": "tupiao",
|
||||
"font_class": "tupiao",
|
||||
"unicode": "e64e",
|
||||
"unicode_decimal": 58958
|
||||
},
|
||||
{
|
||||
"icon_id": "34364743",
|
||||
"name": "DOC",
|
||||
"font_class": "doc",
|
||||
"unicode": "e650",
|
||||
"unicode_decimal": 58960
|
||||
},
|
||||
{
|
||||
"icon_id": "34364744",
|
||||
"name": "DOCX",
|
||||
"font_class": "docx",
|
||||
"unicode": "e651",
|
||||
"unicode_decimal": 58961
|
||||
},
|
||||
{
|
||||
"icon_id": "34364745",
|
||||
"name": "PDF",
|
||||
"font_class": "pdf",
|
||||
"unicode": "e653",
|
||||
"unicode_decimal": 58963
|
||||
},
|
||||
{
|
||||
"icon_id": "5121520",
|
||||
"name": "文件夹",
|
||||
"font_class": "wenjianjia",
|
||||
"unicode": "e64d",
|
||||
"unicode_decimal": 58957
|
||||
},
|
||||
{
|
||||
"icon_id": "2570060",
|
||||
"name": "评价",
|
||||
"font_class": "pingjia",
|
||||
"unicode": "e63a",
|
||||
"unicode_decimal": 58938
|
||||
},
|
||||
{
|
||||
"icon_id": "2080134",
|
||||
"name": "学生考核",
|
||||
"font_class": "kaoheceping",
|
||||
"unicode": "e63b",
|
||||
"unicode_decimal": 58939
|
||||
},
|
||||
{
|
||||
"icon_id": "7156146",
|
||||
"name": "暂停",
|
||||
"font_class": "zanting",
|
||||
"unicode": "e693",
|
||||
"unicode_decimal": 59027
|
||||
},
|
||||
{
|
||||
"icon_id": "7712700",
|
||||
"name": "play3",
|
||||
"font_class": "bofang",
|
||||
"unicode": "e733",
|
||||
"unicode_decimal": 59187
|
||||
},
|
||||
{
|
||||
"icon_id": "7001721",
|
||||
"name": "系统管理",
|
||||
"font_class": "xitongguanli",
|
||||
"unicode": "e683",
|
||||
"unicode_decimal": 59011
|
||||
},
|
||||
{
|
||||
"icon_id": "10359983",
|
||||
"name": "行政班课程",
|
||||
"font_class": "zaixiankecheng",
|
||||
"unicode": "e639",
|
||||
"unicode_decimal": 58937
|
||||
},
|
||||
{
|
||||
"icon_id": "12842687",
|
||||
"name": "w_教学",
|
||||
"font_class": "zaixianjiaoxue",
|
||||
"unicode": "e66b",
|
||||
"unicode_decimal": 58987
|
||||
},
|
||||
{
|
||||
"icon_id": "6606711",
|
||||
"name": "考试-选中",
|
||||
"font_class": "ksrk-mnks",
|
||||
"unicode": "e637",
|
||||
"unicode_decimal": 58935
|
||||
},
|
||||
{
|
||||
"icon_id": "8765227",
|
||||
"name": "导航",
|
||||
"font_class": "dao-hang",
|
||||
"unicode": "e635",
|
||||
"unicode_decimal": 58933
|
||||
},
|
||||
{
|
||||
"icon_id": "23787412",
|
||||
"name": "icon_专家答疑",
|
||||
"font_class": "dbsy-twdn",
|
||||
"unicode": "e689",
|
||||
"unicode_decimal": 59017
|
||||
},
|
||||
{
|
||||
"icon_id": "683271",
|
||||
"name": "错题",
|
||||
"font_class": "csrk-ctgg",
|
||||
"unicode": "e652",
|
||||
"unicode_decimal": 58962
|
||||
},
|
||||
{
|
||||
"icon_id": "1119",
|
||||
"name": "编辑文件",
|
||||
"font_class": "dbsy-sjpg",
|
||||
"unicode": "e62d",
|
||||
"unicode_decimal": 58925
|
||||
},
|
||||
{
|
||||
"icon_id": "1312045",
|
||||
"name": "讲师-01",
|
||||
"font_class": "dbsy-zbsk",
|
||||
"unicode": "e633",
|
||||
"unicode_decimal": 58931
|
||||
},
|
||||
{
|
||||
"icon_id": "534146",
|
||||
"name": "添加学员",
|
||||
"font_class": "ksrk-sczy",
|
||||
"unicode": "e627",
|
||||
"unicode_decimal": 58919
|
||||
},
|
||||
{
|
||||
"icon_id": "7384771",
|
||||
"name": "课程管理",
|
||||
"font_class": "ksrk-kcgl",
|
||||
"unicode": "e628",
|
||||
"unicode_decimal": 58920
|
||||
},
|
||||
{
|
||||
"icon_id": "7409743",
|
||||
"name": "添加",
|
||||
"font_class": "ksrk-tjst",
|
||||
"unicode": "e62b",
|
||||
"unicode_decimal": 58923
|
||||
},
|
||||
{
|
||||
"icon_id": "7450633",
|
||||
"name": "试卷",
|
||||
"font_class": "ksrk-jlsj",
|
||||
"unicode": "e664",
|
||||
"unicode_decimal": 58980
|
||||
},
|
||||
{
|
||||
"icon_id": "11125636",
|
||||
"name": "直播",
|
||||
"font_class": "ksrk-cjzb",
|
||||
"unicode": "e62c",
|
||||
"unicode_decimal": 58924
|
||||
},
|
||||
{
|
||||
"icon_id": "11882898",
|
||||
"name": "bg-upload",
|
||||
"font_class": "bg-upload",
|
||||
"unicode": "e64b",
|
||||
"unicode_decimal": 58955
|
||||
},
|
||||
{
|
||||
"icon_id": "1261902",
|
||||
"name": "lock",
|
||||
"font_class": "lock",
|
||||
"unicode": "e6c3",
|
||||
"unicode_decimal": 59075
|
||||
},
|
||||
{
|
||||
"icon_id": "7712744",
|
||||
"name": "username",
|
||||
"font_class": "user",
|
||||
"unicode": "e73f",
|
||||
"unicode_decimal": 59199
|
||||
},
|
||||
{
|
||||
"icon_id": "33792800",
|
||||
"name": "logo",
|
||||
"font_class": "logo",
|
||||
"unicode": "e64a",
|
||||
"unicode_decimal": 58954
|
||||
},
|
||||
{
|
||||
"icon_id": "4936624",
|
||||
"name": "folder-open-fill",
|
||||
"font_class": "zy-folder",
|
||||
"unicode": "e85e",
|
||||
"unicode_decimal": 59486
|
||||
},
|
||||
{
|
||||
"icon_id": "6194670",
|
||||
"name": "编辑色块",
|
||||
"font_class": "j-ksap-bianji2",
|
||||
"unicode": "ec7c",
|
||||
"unicode_decimal": 60540
|
||||
},
|
||||
{
|
||||
"icon_id": "17990793",
|
||||
"name": "日志",
|
||||
"font_class": "x-ctgg-gonggulianxi",
|
||||
"unicode": "e626",
|
||||
"unicode_decimal": 58918
|
||||
},
|
||||
{
|
||||
"icon_id": "1546560",
|
||||
"name": "错误",
|
||||
"font_class": "h-sczy-cuowu",
|
||||
"unicode": "e68d",
|
||||
"unicode_decimal": 59021
|
||||
},
|
||||
{
|
||||
"icon_id": "12706085",
|
||||
"name": "完成",
|
||||
"font_class": "h-sczy-wancheng",
|
||||
"unicode": "e625",
|
||||
"unicode_decimal": 58917
|
||||
},
|
||||
{
|
||||
"icon_id": "151393",
|
||||
"name": "手机_填充",
|
||||
"font_class": "h-yhgl-shoujitianchong",
|
||||
"unicode": "e6b9",
|
||||
"unicode_decimal": 59065
|
||||
},
|
||||
{
|
||||
"icon_id": "741875",
|
||||
"name": "法人身份证",
|
||||
"font_class": "h-yhgl-farenshenfenzheng",
|
||||
"unicode": "e621",
|
||||
"unicode_decimal": 58913
|
||||
},
|
||||
{
|
||||
"icon_id": "1016750",
|
||||
"name": "性别",
|
||||
"font_class": "h-yhgl-gender",
|
||||
"unicode": "e6d7",
|
||||
"unicode_decimal": 59095
|
||||
},
|
||||
{
|
||||
"icon_id": "1189644",
|
||||
"name": "匹配职位-填充",
|
||||
"font_class": "h-yhgl-pipeizhiwei",
|
||||
"unicode": "e624",
|
||||
"unicode_decimal": 58916
|
||||
},
|
||||
{
|
||||
"icon_id": "1727361",
|
||||
"name": "24组织架构、接口",
|
||||
"font_class": "h-yhgl-zuzhijiagoujiekou",
|
||||
"unicode": "e89a",
|
||||
"unicode_decimal": 59546
|
||||
},
|
||||
{
|
||||
"icon_id": "3996231",
|
||||
"name": "我",
|
||||
"font_class": "h-yhgl-wo",
|
||||
"unicode": "e636",
|
||||
"unicode_decimal": 58934
|
||||
},
|
||||
{
|
||||
"icon_id": "7084886",
|
||||
"name": "邮箱",
|
||||
"font_class": "h-yhgl-youxiang",
|
||||
"unicode": "e62f",
|
||||
"unicode_decimal": 58927
|
||||
},
|
||||
{
|
||||
"icon_id": "139829",
|
||||
"name": "群组多人",
|
||||
"font_class": "h-jsgl-duoren",
|
||||
"unicode": "e6d6",
|
||||
"unicode_decimal": 59094
|
||||
},
|
||||
{
|
||||
"icon_id": "1305122",
|
||||
"name": "时间",
|
||||
"font_class": "x-wdkk-shijian",
|
||||
"unicode": "e638",
|
||||
"unicode_decimal": 58936
|
||||
},
|
||||
{
|
||||
"icon_id": "1615639",
|
||||
"name": "时间",
|
||||
"font_class": "x-wdkk-jxxx",
|
||||
"unicode": "e72d",
|
||||
"unicode_decimal": 59181
|
||||
},
|
||||
{
|
||||
"icon_id": "6548552",
|
||||
"name": "统计",
|
||||
"font_class": "x-wdkk-tongji",
|
||||
"unicode": "e65b",
|
||||
"unicode_decimal": 58971
|
||||
},
|
||||
{
|
||||
"icon_id": "7450609",
|
||||
"name": "讲师",
|
||||
"font_class": "x-wdkk-jiangshi",
|
||||
"unicode": "e660",
|
||||
"unicode_decimal": 58976
|
||||
},
|
||||
{
|
||||
"icon_id": "11490910",
|
||||
"name": "自主学习",
|
||||
"font_class": "x-wdkk-kaishixuexi",
|
||||
"unicode": "e64f",
|
||||
"unicode_decimal": 58959
|
||||
},
|
||||
{
|
||||
"icon_id": "167204",
|
||||
"name": "标记",
|
||||
"font_class": "x-kskk-biaoji",
|
||||
"unicode": "e672",
|
||||
"unicode_decimal": 58994
|
||||
},
|
||||
{
|
||||
"icon_id": "12791710",
|
||||
"name": "考试",
|
||||
"font_class": "x-zxks-canjiakaoshi",
|
||||
"unicode": "e61f",
|
||||
"unicode_decimal": 58911
|
||||
},
|
||||
{
|
||||
"icon_id": "11227034",
|
||||
"name": "5-左4",
|
||||
"font_class": "j-kcgl--zuo",
|
||||
"unicode": "e62a",
|
||||
"unicode_decimal": 58922
|
||||
},
|
||||
{
|
||||
"icon_id": "7594157",
|
||||
"name": "24gf-playCircle",
|
||||
"font_class": "j-hfzb--playCircle",
|
||||
"unicode": "ea82",
|
||||
"unicode_decimal": 60034
|
||||
},
|
||||
{
|
||||
"icon_id": "1159905",
|
||||
"name": "圆",
|
||||
"font_class": "j-jxzb-yuan",
|
||||
"unicode": "e629",
|
||||
"unicode_decimal": 58921
|
||||
},
|
||||
{
|
||||
"icon_id": "3207736",
|
||||
"name": "笔",
|
||||
"font_class": "j-jxzb-checkin",
|
||||
"unicode": "e61e",
|
||||
"unicode_decimal": 58910
|
||||
},
|
||||
{
|
||||
"icon_id": "4890393",
|
||||
"name": "文字",
|
||||
"font_class": "j-jxzb-wenzi",
|
||||
"unicode": "e6ed",
|
||||
"unicode_decimal": 59117
|
||||
},
|
||||
{
|
||||
"icon_id": "10048835",
|
||||
"name": "矩形",
|
||||
"font_class": "j-jxzb-juxing",
|
||||
"unicode": "e620",
|
||||
"unicode_decimal": 58912
|
||||
},
|
||||
{
|
||||
"icon_id": "11372693",
|
||||
"name": "删除",
|
||||
"font_class": "j-jxzb-shanchu",
|
||||
"unicode": "e8b6",
|
||||
"unicode_decimal": 59574
|
||||
},
|
||||
{
|
||||
"icon_id": "18863165",
|
||||
"name": "撤销",
|
||||
"font_class": "j-jxzb-chexiao",
|
||||
"unicode": "e641",
|
||||
"unicode_decimal": 58945
|
||||
},
|
||||
{
|
||||
"icon_id": "19378103",
|
||||
"name": "橡皮",
|
||||
"font_class": "j-jxzb-xiangpi",
|
||||
"unicode": "e622",
|
||||
"unicode_decimal": 58914
|
||||
},
|
||||
{
|
||||
"icon_id": "26525862",
|
||||
"name": "直线",
|
||||
"font_class": "j-jxzb-line",
|
||||
"unicode": "e6bb",
|
||||
"unicode_decimal": 59067
|
||||
},
|
||||
{
|
||||
"icon_id": "7533288",
|
||||
"name": "全屏",
|
||||
"font_class": "j-jxzb-quanping",
|
||||
"unicode": "e61c",
|
||||
"unicode_decimal": 58908
|
||||
},
|
||||
{
|
||||
"icon_id": "1297888",
|
||||
"name": "操作_氛围灯",
|
||||
"font_class": "j-jxzb-nuanchang",
|
||||
"unicode": "e666",
|
||||
"unicode_decimal": 58982
|
||||
},
|
||||
{
|
||||
"icon_id": "23344700",
|
||||
"name": "答题卡",
|
||||
"font_class": "j-jxzb-datika",
|
||||
"unicode": "e631",
|
||||
"unicode_decimal": 58929
|
||||
},
|
||||
{
|
||||
"icon_id": "1010",
|
||||
"name": "扬声器",
|
||||
"font_class": "j-jxzb-yangshengqi",
|
||||
"unicode": "e619",
|
||||
"unicode_decimal": 58905
|
||||
},
|
||||
{
|
||||
"icon_id": "715831",
|
||||
"name": "电脑",
|
||||
"font_class": "j-jxzb-diannao",
|
||||
"unicode": "e61b",
|
||||
"unicode_decimal": 58907
|
||||
},
|
||||
{
|
||||
"icon_id": "1464111",
|
||||
"name": "摄像头",
|
||||
"font_class": "j-jxzb--shiping",
|
||||
"unicode": "e62e",
|
||||
"unicode_decimal": 58926
|
||||
},
|
||||
{
|
||||
"icon_id": "2570115",
|
||||
"name": "麦克风",
|
||||
"font_class": "j-jxzb-maikefeng",
|
||||
"unicode": "e64c",
|
||||
"unicode_decimal": 58956
|
||||
},
|
||||
{
|
||||
"icon_id": "6526149",
|
||||
"name": "课件-填充",
|
||||
"font_class": "j-jxzb-kejian",
|
||||
"unicode": "e659",
|
||||
"unicode_decimal": 58969
|
||||
},
|
||||
{
|
||||
"icon_id": "13397099",
|
||||
"name": "白板",
|
||||
"font_class": "j-jxzb-baiban",
|
||||
"unicode": "e61d",
|
||||
"unicode_decimal": 58909
|
||||
},
|
||||
{
|
||||
"icon_id": "1249063",
|
||||
"name": "密码",
|
||||
"font_class": "mima",
|
||||
"unicode": "e617",
|
||||
"unicode_decimal": 58903
|
||||
},
|
||||
{
|
||||
"icon_id": "6129225",
|
||||
"name": "184会员",
|
||||
"font_class": "caidan",
|
||||
"unicode": "e7af",
|
||||
"unicode_decimal": 59311
|
||||
},
|
||||
{
|
||||
"icon_id": "2945759",
|
||||
"name": "菜单配置",
|
||||
"font_class": "zy-lb",
|
||||
"unicode": "e616",
|
||||
"unicode_decimal": 58902
|
||||
},
|
||||
{
|
||||
"icon_id": "29522599",
|
||||
"name": "10D菜单",
|
||||
"font_class": "zy-slt",
|
||||
"unicode": "e675",
|
||||
"unicode_decimal": 58997
|
||||
},
|
||||
{
|
||||
"icon_id": "33181176",
|
||||
"name": "time-asc",
|
||||
"font_class": "zy-sj-d",
|
||||
"unicode": "e647",
|
||||
"unicode_decimal": 58951
|
||||
},
|
||||
{
|
||||
"icon_id": "33181177",
|
||||
"name": "time",
|
||||
"font_class": "zy-sj",
|
||||
"unicode": "e648",
|
||||
"unicode_decimal": 58952
|
||||
},
|
||||
{
|
||||
"icon_id": "33181178",
|
||||
"name": "time-desc",
|
||||
"font_class": "zy-sj-u",
|
||||
"unicode": "e649",
|
||||
"unicode_decimal": 58953
|
||||
},
|
||||
{
|
||||
"icon_id": "16322580",
|
||||
"name": "关机",
|
||||
"font_class": "tb-tuichudenglu",
|
||||
"unicode": "e6ec",
|
||||
"unicode_decimal": 59116
|
||||
},
|
||||
{
|
||||
"icon_id": "33181099",
|
||||
"name": "size",
|
||||
"font_class": "zy-dx",
|
||||
"unicode": "e644",
|
||||
"unicode_decimal": 58948
|
||||
},
|
||||
{
|
||||
"icon_id": "33181100",
|
||||
"name": "size-asc",
|
||||
"font_class": "zy-dx-u",
|
||||
"unicode": "e645",
|
||||
"unicode_decimal": 58949
|
||||
},
|
||||
{
|
||||
"icon_id": "33181101",
|
||||
"name": "size-desc",
|
||||
"font_class": "zy-dx-d",
|
||||
"unicode": "e646",
|
||||
"unicode_decimal": 58950
|
||||
},
|
||||
{
|
||||
"icon_id": "11206682",
|
||||
"name": "回放",
|
||||
"font_class": "j-zblb-huifang",
|
||||
"unicode": "e618",
|
||||
"unicode_decimal": 58904
|
||||
},
|
||||
{
|
||||
"icon_id": "24859980",
|
||||
"name": "下载-文件下载-16",
|
||||
"font_class": "j-rypj-xiazai",
|
||||
"unicode": "e856",
|
||||
"unicode_decimal": 59478
|
||||
},
|
||||
{
|
||||
"icon_id": "3513169",
|
||||
"name": "未开始",
|
||||
"font_class": "j-rypj-kaishi",
|
||||
"unicode": "e614",
|
||||
"unicode_decimal": 58900
|
||||
},
|
||||
{
|
||||
"icon_id": "3640208",
|
||||
"name": "重新上报",
|
||||
"font_class": "j-rypj-zhongxin",
|
||||
"unicode": "e615",
|
||||
"unicode_decimal": 58901
|
||||
},
|
||||
{
|
||||
"icon_id": "4996801",
|
||||
"name": "详情",
|
||||
"font_class": "j-rgpj-xiangqing",
|
||||
"unicode": "e634",
|
||||
"unicode_decimal": 58932
|
||||
},
|
||||
{
|
||||
"icon_id": "854959",
|
||||
"name": "日历",
|
||||
"font_class": "j-fbks-rili",
|
||||
"unicode": "e73d",
|
||||
"unicode_decimal": 59197
|
||||
},
|
||||
{
|
||||
"icon_id": "1440924",
|
||||
"name": "预览",
|
||||
"font_class": "j-fbks-yulan",
|
||||
"unicode": "e642",
|
||||
"unicode_decimal": 58946
|
||||
},
|
||||
{
|
||||
"icon_id": "145719",
|
||||
"name": "删除_填充",
|
||||
"font_class": "j-ksap-shanchu",
|
||||
"unicode": "e68c",
|
||||
"unicode_decimal": 59020
|
||||
},
|
||||
{
|
||||
"icon_id": "297678",
|
||||
"name": "文本编辑_填充",
|
||||
"font_class": "j-ksap-bianji",
|
||||
"unicode": "e6d4",
|
||||
"unicode_decimal": 59092
|
||||
},
|
||||
{
|
||||
"icon_id": "13014641",
|
||||
"name": "人员",
|
||||
"font_class": "j-ksap-renyuan",
|
||||
"unicode": "e61a",
|
||||
"unicode_decimal": 58906
|
||||
},
|
||||
{
|
||||
"icon_id": "695134",
|
||||
"name": "复制",
|
||||
"font_class": "j-ksap-fuzhi",
|
||||
"unicode": "e632",
|
||||
"unicode_decimal": 58930
|
||||
},
|
||||
{
|
||||
"icon_id": "31953494",
|
||||
"name": "icon_评语填写",
|
||||
"font_class": "j-fbks-pingyu",
|
||||
"unicode": "e623",
|
||||
"unicode_decimal": 58915
|
||||
},
|
||||
{
|
||||
"icon_id": "7029937",
|
||||
"name": "添加",
|
||||
"font_class": "x-ktbj-tianjia",
|
||||
"unicode": "e630",
|
||||
"unicode_decimal": 58928
|
||||
},
|
||||
{
|
||||
"icon_id": "27468982",
|
||||
"name": "add-plus-circle",
|
||||
"font_class": "x-ktbj-add-plus-circle",
|
||||
"unicode": "e600",
|
||||
"unicode_decimal": 58880
|
||||
},
|
||||
{
|
||||
"icon_id": "27468984",
|
||||
"name": "close-circle",
|
||||
"font_class": "x-ktbj-close-circle",
|
||||
"unicode": "e601",
|
||||
"unicode_decimal": 58881
|
||||
},
|
||||
{
|
||||
"icon_id": "27468986",
|
||||
"name": "double-quotes-left",
|
||||
"font_class": "x-ktbj-double-quotes-left",
|
||||
"unicode": "e602",
|
||||
"unicode_decimal": 58882
|
||||
},
|
||||
{
|
||||
"icon_id": "27468997",
|
||||
"name": "clean",
|
||||
"font_class": "x-ktbj-clean",
|
||||
"unicode": "e603",
|
||||
"unicode_decimal": 58883
|
||||
},
|
||||
{
|
||||
"icon_id": "27469003",
|
||||
"name": "bold",
|
||||
"font_class": "x-ktbj-bold",
|
||||
"unicode": "e604",
|
||||
"unicode_decimal": 58884
|
||||
},
|
||||
{
|
||||
"icon_id": "27469006",
|
||||
"name": "image",
|
||||
"font_class": "x-ktbj-image",
|
||||
"unicode": "e605",
|
||||
"unicode_decimal": 58885
|
||||
},
|
||||
{
|
||||
"icon_id": "27469007",
|
||||
"name": "italic",
|
||||
"font_class": "x-ktbj-italic",
|
||||
"unicode": "e606",
|
||||
"unicode_decimal": 58886
|
||||
},
|
||||
{
|
||||
"icon_id": "27469023",
|
||||
"name": "paperclip-attechment-tilt",
|
||||
"font_class": "x-ktbj-paperclip-attechment-tilt",
|
||||
"unicode": "e607",
|
||||
"unicode_decimal": 58887
|
||||
},
|
||||
{
|
||||
"icon_id": "27469025",
|
||||
"name": "move-vertical",
|
||||
"font_class": "x-ktbj-move-vertical",
|
||||
"unicode": "e608",
|
||||
"unicode_decimal": 58888
|
||||
},
|
||||
{
|
||||
"icon_id": "27469030",
|
||||
"name": "redo",
|
||||
"font_class": "x-ktbj-redo",
|
||||
"unicode": "e609",
|
||||
"unicode_decimal": 58889
|
||||
},
|
||||
{
|
||||
"icon_id": "27469031",
|
||||
"name": "underline",
|
||||
"font_class": "x-ktbj-underline",
|
||||
"unicode": "e60a",
|
||||
"unicode_decimal": 58890
|
||||
},
|
||||
{
|
||||
"icon_id": "27469055",
|
||||
"name": "text-align-justify",
|
||||
"font_class": "x-ktbj-text-align-justify",
|
||||
"unicode": "e60b",
|
||||
"unicode_decimal": 58891
|
||||
},
|
||||
{
|
||||
"icon_id": "27469061",
|
||||
"name": "table-remove",
|
||||
"font_class": "x-ktbj-table-remove",
|
||||
"unicode": "e60c",
|
||||
"unicode_decimal": 58892
|
||||
},
|
||||
{
|
||||
"icon_id": "27469062",
|
||||
"name": "text-align-left",
|
||||
"font_class": "x-ktbj-text-align-left",
|
||||
"unicode": "e60d",
|
||||
"unicode_decimal": 58893
|
||||
},
|
||||
{
|
||||
"icon_id": "27469066",
|
||||
"name": "list-checked",
|
||||
"font_class": "x-ktbj-list-checked",
|
||||
"unicode": "e60e",
|
||||
"unicode_decimal": 58894
|
||||
},
|
||||
{
|
||||
"icon_id": "27469067",
|
||||
"name": "move-horizontal",
|
||||
"font_class": "x-ktbj-move-horizontal",
|
||||
"unicode": "e60f",
|
||||
"unicode_decimal": 58895
|
||||
},
|
||||
{
|
||||
"icon_id": "27469070",
|
||||
"name": "text-align-right",
|
||||
"font_class": "x-ktbj-text-align-right",
|
||||
"unicode": "e610",
|
||||
"unicode_decimal": 58896
|
||||
},
|
||||
{
|
||||
"icon_id": "27469082",
|
||||
"name": "bg-color",
|
||||
"font_class": "x-ktbj-bg-color",
|
||||
"unicode": "e611",
|
||||
"unicode_decimal": 58897
|
||||
},
|
||||
{
|
||||
"icon_id": "27469087",
|
||||
"name": "painter",
|
||||
"font_class": "x-ktbj-painter",
|
||||
"unicode": "e612",
|
||||
"unicode_decimal": 58898
|
||||
},
|
||||
{
|
||||
"icon_id": "27469094",
|
||||
"name": "font-color",
|
||||
"font_class": "x-ktbj-font-color",
|
||||
"unicode": "e613",
|
||||
"unicode_decimal": 58899
|
||||
}
|
||||
]
|
||||
}
|
||||
BIN
serve/tf/font/iconfont.ttf
Normal file
BIN
serve/tf/font/iconfont.ttf
Normal file
Binary file not shown.
Reference in New Issue
Block a user