diff --git a/config/routes/competitions.ts b/config/routes/competitions.ts index b97d1c692..8cd8745cc 100644 --- a/config/routes/competitions.ts +++ b/config/routes/competitions.ts @@ -26,7 +26,18 @@ export const Competitions = { { path: '/competitions/2026', component: '@/pages/2026/home', - } + },{ + path: '/competitions/2026/organization', + component: '@/pages/2026/organization', + }, + // { + // path: '/competitions/2026/track/:id', + // component: '@/pages/2026/track', + // }, + { + path: '/competitions/2026/information', + component: '@/pages/2026/information', + } ] }, { diff --git a/src/components/KFIcon/index.jsx b/src/components/KFIcon/index.jsx new file mode 100644 index 000000000..e9ce7ec5c --- /dev/null +++ b/src/components/KFIcon/index.jsx @@ -0,0 +1,20 @@ +import '../../styles/iconfont/iconfont.js'; +import { Icon } from 'antd'; +import React from 'react'; + +const IconFont = Icon.createFromIconfontCN({ + scriptUrl: '', +}); + + +/** 封装 iconfont 图标 */ +function KFIcon({ type, font = 15, color, className, style, ...rest }) { + const iconStyle = { + ...style, + fontSize: font, + color, + }; + return ; +} + +export default KFIcon; diff --git a/src/pages/2026/banner/index.jsx b/src/pages/2026/banner/index.jsx index 7d0718db8..0ece80d33 100644 --- a/src/pages/2026/banner/index.jsx +++ b/src/pages/2026/banner/index.jsx @@ -8,6 +8,9 @@ import BannerImg from '../img/1@2x.webp'; function Banner(props) { const location = useLocation(); const { mainInfo } = useModel('defaultConfig'); + const isMain = ()=>{ + return location.pathname === "/competitions/2026" + } const matchItem = (item) => { if(location.pathname.indexOf("/track/")>-1){ @@ -21,21 +24,20 @@ function Banner(props) { setDocumentTitle(mainInfo?.name); }) return( -
-
-
- -
-
    - { - menu && menu?.length > 0 && menu.map((i,k)=>{ - return( - {i.name} - ) - }) - } -
-
+
+
+ { isMain() && } +
+
    + {!isMain() && 第八届CCF开源创新大赛} + { + menu && menu?.length > 0 && menu.map((i,k)=>{ + return( + {i.name} + ) + }) + } +
{props.children} diff --git a/src/pages/2026/banner/index.less b/src/pages/2026/banner/index.less index 1025b6516..5b16927d1 100644 --- a/src/pages/2026/banner/index.less +++ b/src/pages/2026/banner/index.less @@ -18,16 +18,13 @@ a{ flex: 1; position: relative; - font-weight: bold; font-size: 20px; color: #fff; text-align: center; - &.active{ - } img{ margin-right: 18px; } - &:not(:last-child):before{ + &::after,&:first-child::before{ position: absolute; right: 0px; opacity:37%; @@ -36,28 +33,57 @@ top: 0px; content: ""; } + &:first-child::before{ + right: unset; + left: 0; + } } } } -.mainroot{ - background: url('../img/back.png') no-repeat; - background-size: 100% 100%; - .mainBanner{ - width: 100%; - .header { - width: 100%; - text-align: center; - color: #ffffff; - position: relative; - font-size: 15px; - width: 100%; - height: calc(100vh - 60px); - &>img{ - width: 100%; - height: 100%; - } - } - } + +.header { + width: 100%; + text-align: center; + color: #ffffff; + position: relative; + font-size: 15px; + width: 100%; + height: calc(100vh - 60px); + &>img{ + width: 100%; + height: 100%; + } +} +.fixedHeader{ + height:64px; + background:#050F54; + position:fixed; + top:0px; + left: 0px; + width: 100%; + z-index: 1000; + .bannerContent{ + background-image:url(../img/smallbanner.jpg); + height: 100%; + .banners{ + span{ + font-family:Douyin Sans; + font-weight:700; + color:#ffffff; + font-size:26px; + } + a{ + font-size:15px; + &::after{ + height: 16px; + top: 3px; + } + &::before,&:last-child:after{ + display: none; + } + } + } + } } @media screen and (max-width:1400px) { diff --git a/src/pages/2026/home/index.jsx b/src/pages/2026/home/index.jsx index 262e541f8..2ff335a8b 100644 --- a/src/pages/2026/home/index.jsx +++ b/src/pages/2026/home/index.jsx @@ -1,5 +1,5 @@ -import {useState, useEffect} from 'react'; +import {useState, useEffect,useRef} from 'react'; import { Link , useModel }from 'umi'; @@ -9,29 +9,54 @@ import { getCount } from '@/service/user'; import Left from '../img/left.png'; import Right from '../img/right.png'; import Arrow from '../img/arrow.png'; -import ArrowPurple from '../img/arrowPurple.png'; +import Plane from '../img/plane.png'; import Diamond from '../img/liu.png'; import Number6 from '../img/6@2x.webp'; import Number7 from '../img/7@2x.webp'; import Number8 from '../img/8@2x.webp'; import Team from '../img/team.png'; -import trackBack from '../img/track.png'; -import trackBack2 from '../img/track2.png'; +import Running from "../img/running.png"; +import Shine from "../img/shine.png"; +import trackBack1 from '../img/channel1.png'; +import trackBack2 from '../img/channel2.png'; +import trackBack3 from '../img/channel3.png'; +import trackBack4 from '../img/channel4.png'; import Dynamics from '../img/dynamics.png'; import Dynamicsicon from '../img/dynamicsicon.png'; +import { timeline } from '../info'; +import moment from 'moment'; function Home(){ const [ partner, setPartner ] = useState([]); const [newsList, setNewsList] = useState([]); const [ visits , setVisits ] = useState(0); - const [ counts , setCounts ] = useState({}); + const [ firstHover , setFirstHover ] = useState(0); + const [ show, setShow ] = useState(false) + const [ counts , setCounts]= useState(0); const { mainInfo } = useModel('defaultConfig'); + const countInterRef = useRef(); + const observer = new IntersectionObserver((entries) => { + entries.forEach(entry => { + if (entry.isIntersecting) { + setShow(true); + } else { + setShow(false); + } + }); + }, { + threshold: 1 //露出 100% 时触发 + }); useEffect(()=>{ getPartner(); getNewsList(); getCountForEdu(); getVisit(); + + const element = document.getElementById("joinRightnow"); // 获取你的元素 + if (element) { + observer.observe(element); + } },[]) const getVisit=()=>{ getDocDetail(656).then(res=>{ @@ -39,13 +64,11 @@ function Home(){ }).catch(console.error()) } - const getCountForEdu=()=>{ getCount().then(res=>{ }) } - const getPartner = () => { getPartnerList().then(res => { setPartner(res.rows); @@ -53,23 +76,61 @@ function Home(){ } const getNewsList = () => { gethomePageDocList().then(res => { - setNewsList(res.rows) + setNewsList(res.rows); + if(res && res.rows && res.rows.length>0){ + // 使用requestAnimationFrame实现更流畅的动画 + const dynamicsNews = document.querySelector('#dynamicsNews'); + const newsCards = document.querySelectorAll('#dynamicsNews li'); + const observer = new IntersectionObserver((entries) => { + entries.forEach((entry) => { + if (entry.isIntersecting) { + let currentIndex = 0; + let lastTime = 0; + + // 先移除所有active类 + newsCards.forEach((card) => { + card.classList.remove('active'); + }); + + // 从第一个li开始添加active类 + newsCards[currentIndex].classList.add('active'); + + // 动画函数 + const animate = (timestamp) => { + if (!lastTime) lastTime = timestamp; + const elapsed = timestamp - lastTime; + + if (elapsed >= 2000) { // 每2秒切换一次 + // 移除上一个active类 + newsCards[currentIndex].classList.remove('active'); + + // 计算下一个索引 + currentIndex = (currentIndex + 1) % newsCards.length; + + // 添加active类 + newsCards[currentIndex].classList.add('active'); + + lastTime = timestamp; + } + // 继续动画 + requestAnimationFrame(animate); + }; + // 开始动画 + requestAnimationFrame(animate); + // 停止监听 + observer.unobserve(entry.target); + } + }); + }, { + threshold: 0.3 // 露出30%时触发 + }); + if (dynamicsNews) { + observer.observe(dynamicsNews); + } + } }) } - -function formatMoney (value){ - if (value === 0) { - return value; - }; - if (value == '' || !value) { - return 0; - } - value = Number(value); - if (isNaN(value)) return ''; - - return value.toFixed(0).replace(/\B(?=(\d{3})+(?!\d))/g, ','); -} return(
@@ -78,25 +139,25 @@ function formatMoney (value){
面向产业互联网领域规格最高、规模最大、覆盖面最广的年度战略发布会,2019年至今已成功举办六届。大会致力于汇聚全球智慧洞察数字发展新机遇,描绘云、AI、大数据、安全等关键技术的发展蓝图,展示腾讯最新的研究成果、战略规划、技术产品、解决方案。大会还汇聚腾讯数字生态伙伴在助力推进产业数字化和数字产业化过程中沉淀的行业最佳实践,是政府、企业、合作伙伴、开发者以及社会大众了解腾讯全球数字生态的全景式界面。
2025年开源大会将于9月16日-17日举行,本届大会以“智·向远大”为主题,旨在探讨如何以自主创新技术,助力千行百业深挖智能化、国际化新机遇,让智能可用、创新可控,以高效数字化推动产业升级与可持续发展。通过1场主峰会、3场主题峰会以及50+主题专场,荟萃100+大咖嘉宾的智慧分享,解码全球科技、产业发展的新趋势,探索各行各业的最佳实践。通过50+产品功能发布、6000+平米展区,全面解码腾讯云最新能力、腾讯AI产品全新体验,带来前沿科技的真实体验。
    -
  • +
  • setFirstHover(0)}> 01

    权威主办

    我是大厂赛题的副文案内容占最多我是大厂赛题的副文案内容占最多2行

  • -
  • +
  • setFirstHover(1)}> 02

    大厂赛题

    我是大厂赛题的副文案内容占最多我是大厂赛题的副文案内容占最多2行

  • -
  • +
  • setFirstHover(2)}> 03

    高额奖金

    我是大厂赛题的副文案内容占最多我是大厂赛题的副文案内容占最多2行

  • -
  • +
  • setFirstHover(3)}> 04

    XXXXXX

    @@ -105,93 +166,124 @@ function formatMoney (value){
-
-

four tracks

-

两大方向四个赛道

- +
+
+

four tracks

+

两大方向四个赛道

+
+
    +
  • +
    + + 01direction +
    + + +
    +
    +

    AI方向

    +

    聚焦人工智能前沿技术与应用,探索大模型、智能算法在开源场景下的创新实践

    +
    +
  • +
  • +
    + + 02direction +
    + + +
    +
    +

    泛在操作系统方向

    +

    面向万物互联时代,研究跨设备、跨场景的操作系统技术与生态构建

    +
    +
  • +
+
    +
  • + +

    开源项目贡献赛道

    +

    向真实开源项目提交贡献,用代码质量和社区反馈衡量实力。

    +
  • +
  • + +

    开源人物挑战赛道

    +

    聚焦开源领域杰出贡献者,分享技术布道与生态建设的实践经验。

    +
  • +
  • + +

    开源案例教学赛道

    +

    提炼优秀开源项目实践经验,甄选优质开源实战案例,打造可复用的技术教学案例库。

    +
  • +
  • + +

    开源代码评注赛道

    +

    精读优秀代码,撰写详尽评注与技术分析,助力开发者掌握编程范式与工程实践精髓。

    +
  • +
+ + 立即参与 + + +
+
- +

four tracks

赛事日程抢先知晓

-
-
  • -
    -
    -

    泛在操作系统方向

    -

    面向万物互联时代,研究跨设备、跨场景的操作系统技术与生态构建

    -
    -
    -
  • -
    -
    -
  • - -
    -
    -

    开源项目贡献赛道

    -

    向真实开源项目提交贡献,用代码质量和社区反馈衡量实力。

    -
    - 立即参与 -
    -
  • -
  • - -
    -
    -

    开源人物挑战赛道

    -

    聚焦开源领域杰出贡献者,分享技术布道与生态建设的实践经验。

    -
    - 立即参与 -
    -
  • -
  • - -
    -
    -

    开源案例教学赛道

    -

    提炼优秀开源项目实践经验,甄选优质开源实战案例,打造可复用的技术教学案例库。

    -
    - 立即参与 -
    -
  • -
  • - -
    -
    -

    开源代码评注赛道

    -

    精读优秀代码,撰写详尽评注与技术分析,助力开发者掌握编程范式与工程实践精髓。

    -
    - 立即参与 -
    -
  • +
    + { + timeline && timeline.map((i,k)=>{ + const isRunning = moment().isBetween(i.begain, i.end ,null,'[]'); + return( +
    +
      +
    • {moment(i.begain).format("MM月DD日")}{i.end && `-${moment(i.end).format("MM月DD日")}`}{isRunning ? :"" }
    • +
    • {i.desc}
    • + {i.btn} +
    +
    + ) + }) + }
    -
    -

    Event Updates

    -

    赛事动态不容错过

    - { - newsList && newsList.length > 0 && -
    -
      - { newsList.map((i, k) => { - return k < 3 ? -
    • -

      { i.name }

      -

      - {i.publishTime} - 探索更多动态 -

      -
    • - : '' - })} -
    -
    - +
    +
    +

    Event Updates

    +

    赛事动态不容错过

    + { + newsList && newsList.length > 0 && +
    +
    +

    第七届CCF开源创新大赛赛题赞助征集公告

    +

    本系列课程从背景知识、使用方法、拓展领域、技术基础等方面介绍了软件工厂相关内容,方便广大用户更好地了解掌握和使用软件工厂!

    +
    + +
    +
    +
      + { newsList.map((i, k) => { + return k < 3 ? +
    • +
      + + + { i.name } + + +

      {i.summary}

      +
      + +
    • + : '' + })} +
    -
    - } - 不容错过 + } + 探索更多动态 +

    partner

    diff --git a/src/pages/2026/home/index.less b/src/pages/2026/home/index.less index 6cd84c57a..600cf143f 100644 --- a/src/pages/2026/home/index.less +++ b/src/pages/2026/home/index.less @@ -2,6 +2,74 @@ .part{ text-align: center; width: 1600px; + margin:auto; +} +.task-hide{ + overflow: hidden; + white-space: nowrap; + text-overflow: ellipsis; +} +.task-hide-2{ + overflow: hidden; + text-overflow: ellipsis; + display: -webkit-box; + -webkit-line-clamp: 2; + -webkit-box-orient: vertical; +} +.homeMaintitle{ + font-size: 48px; + position: relative; + margin: 0px auto; + width: fit-content; + height: 58px; + line-height: 58px; + margin-top: -15px; + font-family: DouyinSansBold; + img{ + width: 12px; + position: absolute; + &:first-child{ + left: -12px; + } + &:last-child{ + bottom: 0px; + } + } + span{ + margin:0px 16px; + font-weight:700; + color:#091221; + font-size:48px; + position: relative; + &:nth-child(2)::after{ + content: ""; + left: -21px; + top: 24px; + position: absolute; + width:10px; + height:10px; + background:#091221; + border-radius:2px; + } + } + text-align: center; +} +.homeSubtitle{ + text-align: center; + position: relative; + font-size: 28px; + font-family: alibabaPuhuiM; + color: rgba(9, 18, 33, 0.09); + text-transform: uppercase; + font-weight: 500; + margin-bottom: 0px; + padding-top: 90px; + img{ + margin-top: -4px; + &:first-child{ + margin-right: 2px; + } + } } .page.headpage { display: flex; @@ -18,61 +86,6 @@ // object-fit: cover; } } - .homeMaintitle{ - font-size: 48px; - position: relative; - margin: 0px auto; - width: fit-content; - height: 58px; - line-height: 58px; - margin-top: -15px; - font-family: DouyinSansBold; - img{ - width: 12px; - position: absolute; - &:first-child{ - left: -12px; - } - &:last-child{ - bottom: 0px; - } - } - span{ - margin:0px 16px; - font-weight:700; - color:#091221; - font-size:48px; - position: relative; - &:last-child::after{ - content: ""; - left: -21px; - top: 24px; - position: absolute; - width:10px; - height:10px; - background:#091221; - border-radius:2px; - } - } - text-align: center; - } - .homeSubtitle{ - text-align: center; - position: relative; - font-size: 28px; - font-family: alibabaPuhuiM; - color: rgba(9, 18, 33, 0.09); - text-transform: uppercase; - font-weight: 500; - margin-bottom: 0px; - margin-top: 90px; - img{ - margin-top: -4px; - &:first-child{ - margin-right: 2px; - } - } - } .homeDesc{ line-height: 40px; letter-spacing: 1px; @@ -83,21 +96,6 @@ color:#1d1e1f; font-size:17px; } - .applicationBtn{ - margin-top:20px; - height: 44px; - line-height: 44px; - background: linear-gradient( 103deg, #5950F3 0%, #6B16CA 100%); - border-radius: 5px 5px 5px 5px; - padding:0px 24px; - color: #fff; - font-weight: 400; - font-size: 20px; - display: inline-block; - img{ - margin:0px 0px 4px 15px; - } - } .numbersData{ display: flex; padding:50px 0px; @@ -182,71 +180,51 @@ color: #fff; text-align: left; position: relative; + transition-duration: 1s; &>span{ margin-bottom: auto; font-family:DingTalk JinBuTi; font-size:18px; } - &:nth-child(n){ - background:linear-gradient(180deg,#6058f5 0%,#6058f5 100%); - &::after{ - position: absolute; - width: 100%; - height: 100%; - content: ""; - left: 0; - top: 0; - background-image: url(../img/5@2x.webp); - background-position: right bottom; - background-repeat: no-repeat; - background-size: 100%; - } - } - &:nth-child(2n){ - background:linear-gradient(180deg,#1466ea 0%,#1466ea 100%); - &::after{ - position: absolute; - width: 100%; - height: 100%; - content: ""; - left: 0; - top: 0; - background-image: url(../img/5@2x.webp); - background-position: right; - background-image: url(../img/4@2x.webp); - background-position: right bottom; - background-repeat: no-repeat; - background-size: 100%; - } - } - &:nth-child(3n){ - background:linear-gradient(180deg,#6a51dd 0%,#6a51dd 100%); - &::after{ - position: absolute; - width: 100%; - height: 100%; - content: ""; - left: 0; - top: 0; - background-image: url(../img/2@2x.webp); - background-repeat: no-repeat; - background-position: right bottom; - background-size: 100%; - } - } - &:nth-child(4n){ - background:linear-gradient(180deg,#1349cb 0%,#0a5ced 100%); - &::after{ - position: absolute; - width: 100%; - height: 100%; - content: ""; - left: 0; - top: 0; - background-image: url(../img/3@2x.webp); + &::after{ + position: absolute; + width:100%; + height: 100%; + content: ""; + right: 0; + top: 0; background-position: right bottom; background-repeat: no-repeat; - background-size: 100%; + background-size: 100% 100%; + border-radius: 20px; + transition-duration: 1s; + } + &:nth-child(1){ + background:linear-gradient(180deg,#6058f5 0%,#6058f5 100%); + &::after{ + background-image: url(../img/5@2x.webp); + width:70%; + } + } + &:nth-child(2){ + background:linear-gradient(180deg,#1466ea 0%,#1466ea 100%); + &::after{ + background-image: url(../img/4@2x.webp); + width:100%; + } + } + &:nth-child(3){ + background:linear-gradient(180deg,#6a51dd 0%,#6a51dd 100%); + &::after{ + background-image: url(../img/2@2x.webp); + width:100%; + } + } + &:nth-child(4){ + background:linear-gradient(180deg,#1349cb 0%,#0a5ced 100%); + &::after{ + background-image: url(../img/3@2x.webp); + width:100%; } } &:last-child{ @@ -254,6 +232,12 @@ } &.hovered{ flex: 2 1; + &:nth-child(1)::after{ + width: 50%; + } + &:not(:nth-child(1))::after{ + width: 70%; + } } .t-title{ margin-bottom: 20px; @@ -287,6 +271,297 @@ } } } + .timelineList{ + height: 309px; + background-color: #fbfdff; + background-image: url(../img/49.png); + background-size: 100% 100%; + margin-top: 40px; + display: flex; + padding:59px 40px 59px 30px; + .timelineItem{ + text-align: left; + height: 100%; + flex:1; + font-size:16px; + margin-right: 67px; + color:#091221; + &:last-child{ + margin-right: 0; + } + ul{ + display: flex; + padding-left: 45px; + flex-direction: column; + justify-content: space-between; + position: relative; + height: 100%; + &::before{ + content: ""; + position: absolute; + left: 12px; + top:4px; + bottom: 4px; + border-left: 1px dashed rgba(9, 18, 33, 0.14); + z-index: 1; + } + &::after{ + content: ""; + position: absolute; + left: 0px; + top:0px; + width: 26px; + height: 26px; + background-image: url(../img/shine.png); + background-size: 100% 100%; + z-index: 2; + } + .l_time{ + font-weight:500; + font-size:22px; + } + .l_desc{ + line-height:32px; + } + .l_btn{ + height:50px; + line-height:48px; + border:1px solid #091221; + border-radius:26px; + padding:0 27px; + width: max-content; + color: #091221 !important; + cursor: default; + &.runningBtn{ + color: #fff!important; + background:#091221; + cursor: pointer; + } + } + } + } + } + .eventUpdating{ + width: 100%; + background-image: url(../img/event.png); + background-size: 100% 100%; + padding-bottom: 50px; + } + .directionPanel{ + background-image: url(../img/dir.png); + background-repeat: no-repeat; + background-size: 100% 100%; + padding:42px 0 0; + margin-top: 87px; + width: 100%; + text-align: center; + .homeSubtitle{ + margin-top: 0px; + } + .dirlistContent{ + margin-top: 49px; + background:linear-gradient(180deg,#e7edfd 0%,#eaf0fe 43.84%,#fafaff 100%); + border:1px solid #ffffff; + border-radius:30px; + padding:60px 30px 60px; + } + .directions{ + display: flex; + .direction-card{ + flex:2 1; + height: 200px; + border-radius:30px; + // background:linear-gradient(52.29deg,#ffffff 0%,#ffffff 68.54%,rgba(255, 255, 255, 0.45) 97.43%); + position: relative; + z-index: 10; + overflow: hidden; + padding: 3px; + &::before{ + z-index: -2; + position: absolute; + width: 100%; + height: 100%; + content: ""; + left: 0; + top: 0; + background: radial-gradient(circle at 20% 40%, #3b4379, transparent); + animation: buttonBorderSpin 7s linear infinite forwards; + } + .trackContent{ + color: #fff; + text-align: left; + color:#ffffff; + font-size:15px; + height: 100%; + border-radius:30px; + padding:30px; + position:relative; + } + .trackNum{ + font-weight:700; + color:#ffffff; + font-size:24px; + margin-bottom: 20px; + display: flex; + position: relative; + span:nth-child(1){ + background-image: linear-gradient(118.79deg,#81adff 6.6%,#fbb2fc 97.46%); + -webkit-background-clip: text; + color: transparent; + margin-right: 10px; + } + span:nth-child(2){ + opacity: 0.1; + font-family:Douyin Sans; + text-transform: uppercase; + } + .ringarrow{ + position: relative; + width: 32px; + height: 32px; + background-image: url(../img/ring.png); + background-size: 100% 100%; + margin-left: auto; + cursor: pointer; + overflow: hidden; + &:hover{ + img:first-child{ + opacity: 0; + } + img:last-child{ + opacity: 1; + } + } + img{ + position: absolute; + left: 8px; + top: 8px; + opacity: 1; + transition: 0.5s; + &:last-child{ + opacity: 0; + } + } + } + } + .tracktitle{ + font-family:DingTalk JinBuTi; + font-size:30px; + margin-bottom: 20px; + line-height:40px; + height:40px; + margin-top:0px; + } + .trackdesc{ + opacity: 0.8; + font-size: 15px; + margin:0px; + font-family:alibabaPuhuiM; + line-height:20px; + } + &:first-child{ + margin-right: 30px; + .trackContent{ + background-color:#0d2097 ; + background-image: url(../img/dir1.png); + background-size: 100% 100%; + } + } + &:nth-child(2){ + .trackContent{ + background-color: #040E29; + background-image: url(../img/dir2.png); + background-size: 100% 100%; + } + } + } + } + .applicationBtn{ + margin-top:30px; + height: 52px; + line-height: 50px; + min-width: 52px; + background: #091221; + border-radius:26px; + padding:0px 16px; + color: #fff; + font-weight: 400; + font-size: 20px; + display: inline-flex; + width: 54px; + transition: 0.5s; + transition-delay: 0.5s; + &.animationTime{ + width: 202px; + .max{ + opacity: 1; + } + .min{ + opacity: 0; + width: 0px; + } + } + .max{ + transition: 0.5s; + transition-delay: 0.8s; + width: 120px; + overflow: hidden; + display: block; + opacity: 0; + margin:0px auto; + img{ + margin:0px 0px 4px 15px; + } + } + .min{ + transition: 0.5s; + width: 22px; + opacity: 1; + transition-delay: 0.2s; + img{ + margin-top: -4px; + } + } + } + + .games{ + display: flex; + margin-top: 35px; + .dir-smaill-card{ + flex:1 1; + padding:0 24px 0px 24px ; + margin-right: 22px; + text-align: left; + position: relative; + &:not(:first-child)::before{ + top: 10px; + bottom: 20px; + content: ""; + position: absolute; + border-left: 1px dashed rgba(13, 32, 151, 0.17); + left: -11px; + } + &:last-child{ + margin-right: 0px; + } + .backimg{ + width: 36px; + margin-bottom: 12px; + } + .tracktitle{ + font-weight:700; + color:#091221; + font-size:18px; + margin-bottom: 19px; + } + .trackdesc{ + color:#091221; + font-size:16px; + line-height:28px; + } + } + } + } .track{ margin-top: 18px; display: flex; @@ -307,13 +582,8 @@ color: #FFFFFF; line-height: 28px; position: relative; - .backimg{ - position: absolute; - right: 0; - height: 100%; - z-index: 0; - width: 80%; - } + font-family:alibabaPuhuiM; + &:nth-child(2n){ margin-right: 0px; } @@ -348,29 +618,6 @@ font-size: 17px; } } - .tracktitle{ - font-weight: 400; - font-size: 22px; - color: #FFFFFF; - line-height: 38px; - height: 38px; - margin-bottom: 22px; - span{ - font-weight: bold; - font-size: 26px; - } - } - .applicationBtn{ - background: #fff; - color: #6233DE; - margin-left: 66px; - // display: none; - margin-top: 0px; - } - &:hover{ - .applicationBtn{display: block;} - .money{display: none;} - } } } } @@ -379,129 +626,174 @@ } .dynamics{ display: flex; - margin-top:60px; + margin-top:82px; + margin-bottom: 45px; justify-content: space-between; .dynamicsNews{ - width: 40%; - display: flex; - flex-direction: column; - justify-content: space-between; + width: 50%; + padding-left: 40px; + box-sizing: border-box; li{ - background: #F6F7FA; - box-shadow: 0px 0px 10px 1px rgba(7,70,165,0.11); - border-radius: 13px; - border: 2px solid #FFFFFF; - text-align: left; - padding:22px 12px 18px 38px; - .uper{ - font-weight: 400; - font-size: 16px; - color: #040E29; - line-height: 26px; - height: 48px; - overflow: hidden; - text-overflow: ellipsis; - display: -webkit-box; - -webkit-box-orient: vertical; - -webkit-line-clamp: 2; - img{ - margin-right: 10px; - float: left; - margin-top:3px ; + display: flex; + padding:30px 0px; + border-bottom:2px solid rgba(9, 18, 33, 0.06); + position: relative; + &.active{ + &::after{ + animation: lightWidth 1.2s linear; + } + .bannerNew{ + animation: shake 1s; } } - .under{ + &::after{ + transition: 1s ease-in-out; + transition-delay: 0.1s; + height: 2px; + width: 0; + opacity: 0; + bottom: -1px; + content: ""; + position: absolute; + left: 0px; + background:linear-gradient(89.7deg,#447af9 0%,#5f5bf6 103.09%); + } + .newinfos{ + flex: 1; display: flex; - align-items: center; - font-weight: 400; - font-size: 14px; - color: #040E29; - height: 20px; - margin-bottom: 0px; - .applicationBtn{ - height: 36px; - line-height: 36px; - font-weight: 400; - font-size: 15px; - padding:0px 11px; - margin-left: auto; - margin-top: 0px; + flex-direction: column; + text-align: left; + width: 0; + margin-right: 50px; + } + .newSummary{ + color:#091221; + font-size:16px; + margin-top: 20px; + } + .newName{ + font-weight:700; + color:#091221; + font-size:18px; + margin-top: 13px; + cursor: pointer; + text-align: justify; + img{ opacity: 0; - transition: 0.8s; + transition: 0.4s; + } + &:hover{ + color: #0d2097; img{ - margin-bottom: 2px; + opacity: 1; } } } - &:hover .applicationBtn{ - opacity: 1; + &:first-child{ + padding-top: 0px; } } } .dynamicsImg{ - width: calc( 60% - 32px); - img{ - width: 100%; - object-fit: cover; + width: 50%; + padding-right: 40px; + text-align: left; + .dynamicsTitle{ + font-weight:700; + color:#091221; + font-size:24px; + margin-bottom: 34px; + } + .dynamicsSubTitle{ + line-height:32px; + color:#091221; + font-size:16px; + margin-bottom: 34px; + } + .dynamicsBanner{ + padding:30px; + box-sizing: border-box; + background:linear-gradient(180deg,#f4f8ff 0%,rgba(255, 255, 255, 0.31) 100%); + border:1px solid #ffffff; + border-radius:16px; + margin:0px auto; + display: inline-block; + img{ + border-radius:16px; + height: 369px; + object-fit: cover; + } + } + } + } + .forsearch{ + font-weight:500; + color:#091221; + font-size:18px; + text-align:right; + display: flex; + align-items: center; + justify-content: center; + i{ + transition: 0.3s; + } + &:hover{ + color:#0d2097; + i{ + transform: translateX(10px); } - border-radius: 2px; } } .partner-content { - margin-top: 10px; - margin-bottom: 50px; + margin-top: 80px; .partner-type { - width:fit-content; + background:url(../img/parter1.png) no-repeat 100% 100%; + border-radius:26px; + margin-bottom: 38px; + padding:54px 0px 54px 30px; + &:nth-child(2){ + background:url(../img/parter2.png) no-repeat 100% 100%; + } .type-title { - line-height: 28px; - font-weight: bold; - font-size: 20px; - color: #151313; - letter-spacing: 5px; + line-height: 35px; margin-bottom: 30px; text-align: left; - span{ - position: relative; - &::before{ - position: absolute; - left: 0px; - height: 2px; - width: 32px; - content: ""; - bottom:-7px; - background: linear-gradient( 90deg, #5374B4 0%, #853CB8 100%); - } - } + font-family:Alibaba PuHuiTi; + font-weight:700; + color:#091221; + font-size:26px; } .type-content { display: flex; flex-wrap: wrap; + a{ + flex:5 1; + max-width: 25%; + } div { - margin-right: 42px; - padding: 6px; + margin-right: 22px; + padding: 10px; + box-sizing: border-box; background-color:#ffffff; - border-radius:4px; - box-shadow:0px 0px 6px rgba(28, 48, 175, 0.03); - height: 83px; - width: 163px; - line-height: 1; + border-radius:16px; + width: 290px; + height: 100px; display: flex; align-items: center; justify-content: center; - margin-bottom: 35px; - border:1px solid #fff; + margin-bottom: 25px; &:hover{ - border-color: #6233DE; + // border-color: #6233DE; } } a{ - &:nth-child(6n) div{ + &:nth-child(5n) div{ margin-right: 0px; } } img { - max-height: 55px; - max-width: 130px; + max-height: 90%; + max-width: 90%; } } } @@ -560,13 +852,6 @@ } } - .news-card-hover { - transition: all 0.3s ease; - &:hover { - transform: translateY(-5px); - box-shadow: 0px 5px 20px 1px rgba(7,70,165,0.2); - } - } .partner-hover { .partner-item { @@ -575,14 +860,6 @@ } - .direction-card { - transition: all 0.3s ease; - &:hover { - transform: translateY(-5px); - box-shadow: 0px 5px 20px 1px rgba(7,70,165,0.2); - } - } - .highlight-01, .highlight-02, .highlight-03, .highlight-04 { position: relative; padding-left: 30px; @@ -631,8 +908,49 @@ } } } +/* 动画效果 */ +@keyframes show { + 0% { + transform: translateX(-100%); + } + 100% { + transform: translateX(0); + } +} +@keyframes buttonBorderSpin { + to{ + transform: rotate(360deg); + } +} +@keyframes shake { + 0% { + transform: translateY(0); + } + 50% { + transform: translateY(10px); /* 回到原位 */ + } + 100% { + transform: translateY(0); /* 回到原位 */ + } +} +@keyframes lightWidth{ + 0% { + width: 0px; + opacity: 1; + } + 95% { + width: 100%; + opacity: 1; + } + 100%{ + opacity: 0; + } +} @media screen and (max-width:1600px) { .part{ width: 1400px; } + .page.headpage .partner-content .partner-type .type-content a{ + flex:4 1; + } } \ No newline at end of file diff --git a/src/pages/2026/img/1@2x.webp b/src/pages/2026/img/1@2x.webp index d3d63b80a..3f871c829 100644 Binary files a/src/pages/2026/img/1@2x.webp and b/src/pages/2026/img/1@2x.webp differ diff --git a/src/pages/2026/img/49@2x.webp b/src/pages/2026/img/49.png similarity index 100% rename from src/pages/2026/img/49@2x.webp rename to src/pages/2026/img/49.png diff --git a/src/pages/2026/img/52@2x.webp b/src/pages/2026/img/52@2x.webp deleted file mode 100644 index 7e2491750..000000000 Binary files a/src/pages/2026/img/52@2x.webp and /dev/null differ diff --git a/src/pages/2026/img/5@2x.webp b/src/pages/2026/img/5@2x.webp index 615b66476..a51e67cd1 100644 Binary files a/src/pages/2026/img/5@2x.webp and b/src/pages/2026/img/5@2x.webp differ diff --git a/src/pages/2026/img/announcement-banner1.png b/src/pages/2026/img/announcement-banner1.png new file mode 100644 index 000000000..27a22e976 Binary files /dev/null and b/src/pages/2026/img/announcement-banner1.png differ diff --git a/src/pages/2026/img/announcement-banner2.png b/src/pages/2026/img/announcement-banner2.png new file mode 100644 index 000000000..2a87be343 Binary files /dev/null and b/src/pages/2026/img/announcement-banner2.png differ diff --git a/src/pages/2026/img/announcement-banner3.png b/src/pages/2026/img/announcement-banner3.png new file mode 100644 index 000000000..9b745f65f Binary files /dev/null and b/src/pages/2026/img/announcement-banner3.png differ diff --git a/src/pages/2026/img/14@2x.webp b/src/pages/2026/img/bluearrow.png similarity index 100% rename from src/pages/2026/img/14@2x.webp rename to src/pages/2026/img/bluearrow.png diff --git a/src/pages/2026/img/22@2x.webp b/src/pages/2026/img/channel1.png similarity index 100% rename from src/pages/2026/img/22@2x.webp rename to src/pages/2026/img/channel1.png diff --git a/src/pages/2026/img/23@2x.webp b/src/pages/2026/img/channel2.png similarity index 100% rename from src/pages/2026/img/23@2x.webp rename to src/pages/2026/img/channel2.png diff --git a/src/pages/2026/img/24@2x.webp b/src/pages/2026/img/channel3.png similarity index 100% rename from src/pages/2026/img/24@2x.webp rename to src/pages/2026/img/channel3.png diff --git a/src/pages/2026/img/25@2x.webp b/src/pages/2026/img/channel4.png similarity index 100% rename from src/pages/2026/img/25@2x.webp rename to src/pages/2026/img/channel4.png diff --git a/src/pages/2026/img/17@2x.webp b/src/pages/2026/img/dir.png similarity index 100% rename from src/pages/2026/img/17@2x.webp rename to src/pages/2026/img/dir.png diff --git a/src/pages/2026/img/dir1.png b/src/pages/2026/img/dir1.png new file mode 100644 index 000000000..f800c2eeb Binary files /dev/null and b/src/pages/2026/img/dir1.png differ diff --git a/src/pages/2026/img/dir2.png b/src/pages/2026/img/dir2.png new file mode 100644 index 000000000..87a8069f7 Binary files /dev/null and b/src/pages/2026/img/dir2.png differ diff --git a/src/pages/2026/img/downRight.png b/src/pages/2026/img/downRight.png new file mode 100644 index 000000000..d616df300 Binary files /dev/null and b/src/pages/2026/img/downRight.png differ diff --git a/src/pages/2026/img/event.png b/src/pages/2026/img/event.png new file mode 100644 index 000000000..23600d243 Binary files /dev/null and b/src/pages/2026/img/event.png differ diff --git a/src/pages/2026/img/explain.png b/src/pages/2026/img/explain.png new file mode 100644 index 000000000..8abb9a09c Binary files /dev/null and b/src/pages/2026/img/explain.png differ diff --git a/src/pages/2026/img/gameStatus.png b/src/pages/2026/img/gameStatus.png new file mode 100644 index 000000000..7c1e6ae98 Binary files /dev/null and b/src/pages/2026/img/gameStatus.png differ diff --git a/src/pages/2026/img/infoBanner.png b/src/pages/2026/img/infoBanner.png new file mode 100644 index 000000000..54d5c3ddb Binary files /dev/null and b/src/pages/2026/img/infoBanner.png differ diff --git a/src/pages/2026/img/infoleftbanner.png b/src/pages/2026/img/infoleftbanner.png new file mode 100644 index 000000000..46260eecd Binary files /dev/null and b/src/pages/2026/img/infoleftbanner.png differ diff --git a/src/pages/2026/img/infosearch.png b/src/pages/2026/img/infosearch.png new file mode 100644 index 000000000..a3cefd7cf Binary files /dev/null and b/src/pages/2026/img/infosearch.png differ diff --git a/src/pages/2026/img/13@2x.webp b/src/pages/2026/img/new1.png similarity index 100% rename from src/pages/2026/img/13@2x.webp rename to src/pages/2026/img/new1.png diff --git a/src/pages/2026/img/15@2x.webp b/src/pages/2026/img/new2.png similarity index 100% rename from src/pages/2026/img/15@2x.webp rename to src/pages/2026/img/new2.png diff --git a/src/pages/2026/img/16@2x.webp b/src/pages/2026/img/new3.png similarity index 100% rename from src/pages/2026/img/16@2x.webp rename to src/pages/2026/img/new3.png diff --git a/src/pages/2026/img/newbanner1.png b/src/pages/2026/img/newbanner1.png new file mode 100644 index 000000000..e9757a6c7 Binary files /dev/null and b/src/pages/2026/img/newbanner1.png differ diff --git a/src/pages/2026/img/newbanner2.png b/src/pages/2026/img/newbanner2.png new file mode 100644 index 000000000..0a7b631e3 Binary files /dev/null and b/src/pages/2026/img/newbanner2.png differ diff --git a/src/pages/2026/img/newbanner3.png b/src/pages/2026/img/newbanner3.png new file mode 100644 index 000000000..ce7059690 Binary files /dev/null and b/src/pages/2026/img/newbanner3.png differ diff --git a/src/pages/2026/img/news.png b/src/pages/2026/img/news.png new file mode 100644 index 000000000..71967c6c5 Binary files /dev/null and b/src/pages/2026/img/news.png differ diff --git a/src/pages/2026/img/orzback.png b/src/pages/2026/img/orzback.png new file mode 100644 index 000000000..dfb769ac2 Binary files /dev/null and b/src/pages/2026/img/orzback.png differ diff --git a/src/pages/2026/img/orzitem.png b/src/pages/2026/img/orzitem.png new file mode 100644 index 000000000..00f61a9ed Binary files /dev/null and b/src/pages/2026/img/orzitem.png differ diff --git a/src/pages/2026/img/parter1.png b/src/pages/2026/img/parter1.png new file mode 100644 index 000000000..550dbeac2 Binary files /dev/null and b/src/pages/2026/img/parter1.png differ diff --git a/src/pages/2026/img/parter2.png b/src/pages/2026/img/parter2.png new file mode 100644 index 000000000..1d3a7e4a8 Binary files /dev/null and b/src/pages/2026/img/parter2.png differ diff --git a/src/pages/2026/img/plane.png b/src/pages/2026/img/plane.png new file mode 100644 index 000000000..89a393e7a Binary files /dev/null and b/src/pages/2026/img/plane.png differ diff --git a/src/pages/2026/img/ring.png b/src/pages/2026/img/ring.png new file mode 100644 index 000000000..92e038512 Binary files /dev/null and b/src/pages/2026/img/ring.png differ diff --git a/src/pages/2026/img/51@2x.webp b/src/pages/2026/img/running.png similarity index 100% rename from src/pages/2026/img/51@2x.webp rename to src/pages/2026/img/running.png diff --git a/src/pages/2026/img/searchBack.png b/src/pages/2026/img/searchBack.png new file mode 100644 index 000000000..7becfab1f Binary files /dev/null and b/src/pages/2026/img/searchBack.png differ diff --git a/src/pages/2026/img/50@2x.webp b/src/pages/2026/img/shine.png similarity index 100% rename from src/pages/2026/img/50@2x.webp rename to src/pages/2026/img/shine.png diff --git a/src/pages/2026/img/smallbanner.jpg b/src/pages/2026/img/smallbanner.jpg new file mode 100644 index 000000000..9192d96e7 Binary files /dev/null and b/src/pages/2026/img/smallbanner.jpg differ diff --git a/src/pages/2026/img/upRight.png b/src/pages/2026/img/upRight.png new file mode 100644 index 000000000..b1a06cc8f Binary files /dev/null and b/src/pages/2026/img/upRight.png differ diff --git a/src/pages/2026/info.js b/src/pages/2026/info.js index c02efa425..fd686c54f 100644 --- a/src/pages/2026/info.js +++ b/src/pages/2026/info.js @@ -58,5 +58,27 @@ export const menu = [ zoneKey:"KYDS7th", zoneId:11 } + export const timeline = [ + { + begain:"2026-3-20", + end:"2026-7-10", + desc:"3月20日赛题发布、报名开启,7月10日作品提交截止。", + btn:"报名招募期" + },{ + begain:"2026-7-11", + end:"2026-7-17", + desc:"7月11日-15日初赛线上评审,7月17日发布决赛入围通知。", + btn:"初赛评审期" + },{ + begain:"2026-8-4", + end:"2026-8-10", + desc:"3月20日赛题发布、报名开启,7月10日作品提交截止。", + btn:"决赛评审期" + },{ + begain:"2026-8-16", + desc:"3月20日赛题发布、报名开启,7月10日作品提交截止。", + btn:"颁奖典礼期" + }, + ] export const hidenMemberType = ['与会嘉宾', '院士嘉宾'] \ No newline at end of file diff --git a/src/pages/2026/information/index.jsx b/src/pages/2026/information/index.jsx index 4dbc77c6b..c1f5df2f8 100644 --- a/src/pages/2026/information/index.jsx +++ b/src/pages/2026/information/index.jsx @@ -3,12 +3,14 @@ import { Spin, Divider , Input } from 'antd'; import { useState , useEffect } from 'react'; import { information } from '../info'; import { getDocList } from '../api' -import empty from '../img/empty.png'; +// import empty from '../img/empty.png'; +import "../home/index.less"; import { useModel , Link } from 'umi'; import Left from '../img/left.png'; import Right from '../img/right.png'; -import SubBanner from '../img/subBanner.png'; -import Search from '../img/search.png'; +import Infoleftbanner from '../img/infoleftbanner.png'; +// import SubBanner from '../img/subBanner.png'; +import Search from '../img/infosearch.png'; import { throttle } from '@/utils/mettingUtil'; function Information() { @@ -20,9 +22,27 @@ function Information() { const [ showAnchor , setShowAnchor ] = useState(false); const[ title ,setTitle] = useState(undefined); const[ searchTitle ,setSearchTitle] = useState(undefined); - + const [ showNews , setShowNews] = useState(false); + useEffect(()=>{ - if (location.pathname === '/competitions/2024/information') { + const observer = new IntersectionObserver((entries) => { + entries.forEach(entry => { + if (entry.isIntersecting) { + setShowNews(true); + } else { + setShowNews(false); + } + }); + }, { + threshold: 0.3 //露出 30% 时触发 + }); + const element = document.getElementById("comparenews"); // 获取你的元素 + if (element) { + observer.observe(element); + } + },[]) + useEffect(()=>{ + if (location.pathname === '/competitions/2026/information') { window.addEventListener('scroll', throttleHandleScroll); return ComponentWillUnmount; } else { @@ -108,40 +128,111 @@ function Information() { } return
    - {/* { - information.category && -
    -
    - { - information.category.map((e, k) => { - return
    { scrollToAnchor(e.anchor);setTabKey(k) }} className={`tab-item ${k===tabKey?"active":""}`}>{ e.title }
    - }) - } - { setTitle(e.target.value) } } - onChange={ (e) => { setTitle(e.target.value) } } - onPressEnter={()=>{setSearchTitle(title)}} - placeholder="请搜索文章标题关键词" - suffix={} - style={{width:"213px"}} - /> -
    +
    +

    four tracks

    +

    赛事动态亮点剧透

    +
    + { setTitle(e.target.value) } } + onChange={ (e) => { setTitle(e.target.value) } } + onPressEnter={()=>{setSearchTitle(title)}} + placeholder="请搜索文章标题关键词" + suffix={} + /> +
    +
    +
    - } */} -
    - { setTitle(e.target.value) } } - onChange={ (e) => { setTitle(e.target.value) } } - onPressEnter={()=>{setSearchTitle(title)}} - placeholder="请搜索文章标题关键词" - suffix={} - style={{width:"213px"}} - />
    + + {/* 赛事公告模块 */} +
    +
    +

    four tracks

    +

    赛事公告

    + { + information.category.map((e) => { + return e.anchor === "forum" &&
    +
    +
    + { + informationList[e.anchor] && informationList[e.anchor].length > 0 ? informationList[e.anchor].map(( e, k ) => { + return k<3? +
    +
    赛事公告 Banner
    +
    + { e.name } +

    { e.summary }

    +
    +
    + :
    +
    + { e.name } +

    { e.summary }

    +
    +
    + }): + "" + } +
    +
    + }) + } +
    +
    + {/* 赛事解读 */} +
    +

    Interpretation

    +

    赛事解读

    + { + information.category.map((e) => { + return e.anchor === "guide" &&
    +
    +
    + { + informationList[e.anchor] && informationList[e.anchor].length > 0 ? informationList[e.anchor].map(( e, k ) => { + return
    +
    + { e.name } +

    { e.summary }

    +
    +
    + }): + "" + } +
    +
    + }) + } +
    + {/* 赛事新闻 */} +
    +

    Interpretation

    +

    赛事新闻

    + { + information.category.map((e) => { + return e.anchor === "notice" &&
    +
    +
    + { + informationList[e.anchor] && informationList[e.anchor].length > 0 ? informationList[e.anchor].map(( e, k ) => { + return
    +
    + { e.name } +

    { e.summary }

    +
    +
    + }): + "" + } +
    +
    + }) + } +
    + { information.category && showAnchor &&
    @@ -152,40 +243,31 @@ function Information() { }
    } - + {/* { information.category.map((e) => { - return
    + return
    - {/*
    -

    { e.title }

    -

    { e.eng }

    -
    */} -
    -

    { e.title }

    -

    { e.eng.toUpperCase() }

    -
    +

    {e.eng.toUpperCase()}

    +

    { e.title }

    { informationList[e.anchor] && informationList[e.anchor].length > 0 ? informationList[e.anchor].map(( e, k ) => { return
    -
    { e.date2 }
    -

    { e.date1 }

    - { e.name } -

    { e.summary }

    +

    { e.summary }

    阅读全文
    }): - + "" }
    }) } - + */}
    } diff --git a/src/pages/2026/information/index.less b/src/pages/2026/information/index.less index 8cf186bea..d1d4a90df 100644 --- a/src/pages/2026/information/index.less +++ b/src/pages/2026/information/index.less @@ -1,4 +1,8 @@ .information { + .informationBanner{ + background-image: url(../img/infoBanner.png); + background-size: 100% 100%; + } .anchorPart{ width: 115px; background-color: #fff; @@ -32,27 +36,6 @@ } } } - .homeMaintitle{ - font-size: 48px; - position: relative; - margin: 0px auto; - width: 224px; - img{ - width: 12px; - position: absolute; - &:first-child{ - left: -12px; - } - &:last-child{ - bottom: 0px; - } - } - span{ - margin:0px 22px; - font-family: YouSheBiaoTiHei; - } - text-align: center; - } .ant-spin-container { background: url('../img/back.png') no-repeat; background-size: 100% 100%; @@ -86,54 +69,200 @@ background-color:#ffffff; } .tabPanel{ - width: 1200px; display: flex; justify-content: center; align-items: center; - margin:35px auto 0px; + margin:10px auto 0px; + padding:18px 0px 46px; position: relative; - height: 32px; - .tab-item { - margin: 0 69px; - cursor: pointer; - height:62px; - line-height:62px; - position: relative; - font-size: 16px; - &.active::after{ - position: absolute; - width: 67px; - height: 2px; - background: linear-gradient( 103deg, #5950F3 0%, #6B16CA 100%); - border-radius: 0px 0px 0px 0px; - content: ""; - left: 50%; - margin-left: -33px; - bottom: 0px; - } - &.active,&:hover{ - color: #6233DE; + width: 660px; + background-image: url(../img/searchBack.png); + background-size: 100% 100%; + + .searchInput{ + margin:0px auto; + width:660px; + height:55px; + background:#fff; + border:1px solid transparent; + border-radius:28px; + .ant-input{ + background-color: transparent; + color:#2b3369; + font-size:15px; + margin:0px 29px; } } - .searchInput{ - position: absolute; - right: 0px; - background-color: #fff; - &:hover,&.ant-input-affix-wrapper:focus{ - border-color: #6233DE!important; - box-shadow: 0 0 0 2px rgba(98, 51, 222, 0.1)!important; - } + .ant-input-suffix{ + width:39px; + height:39px; + margin-top: 4px; + display: flex; + align-items: center; + justify-content: center; + background:#091221; + border-radius:50%; } } .anchor { position: absolute; top: -50px; } + + // 赛事公告模块样式 + .announcement-section { + width: 100%; + padding: 60px 0px 40px; + background-image: url(../img/gameStatus.png); + background-size: 100% 100%; + font-family: 'Douyin Sans'; + .announcement-container { + .announcements{ + display: flex; + margin-top: 53px; + } + .announcement-title { + font-size: 48px; + font-weight: 700; + color: #091221; + margin: 0 0 40px 0; + } + + .announcement-card { + width: 31%; + margin-right: 30px; + border-radius: 12px; + overflow: hidden; + &:nth-child(3){ + margin-right: 0px; + } + .annouceImg{ + border-radius: 18px; + overflow: hidden; + width: 100%; + img{ + width: 100%; + object-fit: cover; + } + } + .card-header { + padding:30px 10px; + position: relative; + font-family: alibabaPuhuiM; + .card-title { + font-weight:500; + color:#091221; + font-size:20px; + text-align: left; + display: block; + margin-bottom: 18px; + } + .card-date { + font-size: 16px; + color: #091221; + text-align: left; + display: block; + } + + .card-arrow { + position: absolute; + right: 35px; + top: 50%; + transform: translateY(-50%); + font-size: 24px; + color: #0D2097; + transition: transform 0.3s ease; + } + } + + .card-banner { + position: relative; + width: 100%; + height: 270px; + overflow: hidden; + + .banner-image { + width: 100%; + height: 100%; + object-fit: cover; + transition: transform 0.5s ease; + &:hover { + transform: scale(1.05); + } + } + + .banner-overlay { + position: absolute; + bottom: 0; + left: 0; + right: 0; + padding: 20px 35px; + background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%); + + .banner-text { + font-family: alibabaPuhuiM; + font-size: 18px; + color: #fff; + margin: 0; + line-height: 1.6; + } + } + } + &:hover { + .card-title{ + color: #0d2097; + } + } + } + } + } + + // 赛事解读 + .explainNews{ + background-image: url(../img/explain.png); + background-size: 100% 100%; + .content{ + background-color: #fff; + border-radius:30px; + padding:70px 0px; + margin-top: 45px; + } + .content-item{ + background-color: rgba(239, 243, 255, 0.7); + border-radius:24px; + border:none!important; + margin:0px auto 30px!important; + padding: 0px 35px; + box-sizing: border-box; + width: 45.5%!important; + &:nth-child(2n){ + margin-left: 0px!important; + } + } + } + + // 赛事新闻 + .comparenews{ + background-image: url(../img/news.png); + background-size: 100% 100%; + background-position-y: 60px; + transition: 1s; + &.active{ + width: 100%; + background-position-y: 0px; + } + .content{ + background-color: #fff; + border-radius:30px; + padding:30px; + margin-top: 50px; + } + } .content { - width: 1200px; margin: auto; position: relative; padding:50px 0px; + text-align: left; .content-title { width: 531px; height: 157px; @@ -157,9 +286,18 @@ } } .content-wrapper { + display: flex; + flex-wrap: wrap; .content-item { display: flex; margin-bottom: 10px; + width: 50%; + padding-right: 40px; + border-bottom: 1px dashed rgba(9, 18, 33, 0.15); + &:nth-child(2n){ + padding-left: 40px; + padding-right: 0px; + } .item-left { font-family: PingFang SC; font-weight: 700; @@ -170,6 +308,7 @@ } .item-right { flex: 1; + width: 0; .time { color: #5F6577; font-size: 14px; @@ -190,7 +329,6 @@ font-size: 16px; line-height: 32px; margin-top: 20px; - white-space: pre-wrap; } .read-more { float: right; @@ -258,23 +396,4 @@ } } } - - -} - -.homeSubtitle{ - margin-top: 12px; - text-align: center; - span{ - font-size: 16px; - font-family: YouSheBiaoTiHei; - background: -webkit-linear-gradient(76deg, rgba(24,163,168,0.77) 0%, #2E89FF 51%, rgba(158,3,127,0.77) 100%); - background: linear-gradient(76deg, rgba(24,163,168,0.77) 0%, #2E89FF 51%, rgba(158,3,127,0.77) 100%); - -webkit-background-clip: text; - background-clip: text; - -webkit-text-fill-color: transparent; /* 针对WebKit浏览器 */ - color: transparent; /* 兼容其他浏览器 */ - letter-spacing: 2px; - font-weight: 400; - } } \ No newline at end of file diff --git a/src/pages/2026/organization/index.jsx b/src/pages/2026/organization/index.jsx index 05defbaf9..48a25e958 100644 --- a/src/pages/2026/organization/index.jsx +++ b/src/pages/2026/organization/index.jsx @@ -1,48 +1,50 @@ import './index.less' -import { Spin } from 'antd'; +import { Spin , Collapse } from 'antd'; import React,{ useState , useEffect } from 'react'; import MemberItem from '../memberitem' +import Left from '../img/left.png'; +import Right from '../img/right.png'; +import "../home/index.less"; import { getOrganization , getPartnerList , getDocList , getDocDetail } from '../api.js'; import { hidenMemberType } from '../info'; import { Base64 } from 'js-base64'; import RenderHtml from '@/components/RenderHtml' import orz2 from '../img/orz2.png'; import Logo from '../img/logo.png'; -import Team from '../img/team.png'; -import Left from '../img/left.png'; -import Right from '../img/right.png'; +const { Panel } = Collapse; function Organization() { const [ isSpin , setIsSpin ] = useState(false); - const [ organization, setOrganization ] = useState([]) - const [ partner, setPartner ] = useState([]); + // const [ organization, setOrganization ] = useState([]) + // const [ partner, setPartner ] = useState([]); const [ orz , setOrz ] = useState([]); + const [activeKey, setActiveKey] = useState(["1"]); useEffect(()=>{ - getList(); - getPartner(); + // getList(); + // getPartner(); Init(); },[]) - const getPartner = () => { - getPartnerList().then(res => { - let rows = res?.rows.length > 0 ? res?.rows.filter(i=>i.typeName.includes("高校")):[]; - setPartner(rows); - }).catch(console.error()) - } + // const getPartner = () => { + // getPartnerList().then(res => { + // let rows = res?.rows.length > 0 ? res?.rows.filter(i=>i.typeName.includes("高校")):[]; + // setPartner(rows); + // }).catch(console.error()) + // } - const getList = () => { - setIsSpin(true); - getOrganization().then(res => { - let rows = res?.rows; - rows = rows.map(i=>{ - let members= i.zoneMemberList && i.zoneMemberList.length>0 ? i.zoneMemberList.filter(e=>e.memberLevel !== "主席"):i.zoneMemberList; - return {...i,unPresident:members.length>0?members.map(e=>{return e.name}):[]} - }) - setOrganization(rows); - setIsSpin(false); - }) - } + // const getList = () => { + // setIsSpin(true); + // getOrganization().then(res => { + // let rows = res?.rows; + // rows = rows.map(i=>{ + // let members= i.zoneMemberList && i.zoneMemberList.length>0 ? i.zoneMemberList.filter(e=>e.memberLevel !== "主席"):i.zoneMemberList; + // return {...i,unPresident:members.length>0?members.map(e=>{return e.name}):[]} + // }) + // setOrganization(rows); + // setIsSpin(false); + // }) + // } const Init=()=>{ getDocList(658).then(res => { @@ -67,50 +69,16 @@ function Organization() { }) } - return
    -
    - -
    - -
    - CCF开源发展委员会是一个致力于推动开源文化、技术、教育和产业发展的专业组织。重点聚焦共同打造开源、开放、中立的产学研协同开源创新服务平台,探索建立CCF开源项目孵化机制,培育原始开源创新项目,依托CCF联接科教资源、产业资源和社会资源等,形成产、教、研联动的开源创新模式,推动CCF开源品牌建设和开源社区运营,为CCF会员乃至全球开源创新实践者提供高水平的开源创新服务,助力我国开源生态建设的发展。 -
    -
    -
    -

    组织架构

    -

    ORGANIZARIONAL STRUCTURE

    +

    ORGANIZARIONAL STRUCTURE

    +

    组织架构四个文字

    {/* { - organization && organization.length > 0 && organization.map((i, k) => { - if (!hidenMemberType.includes(i.typeName)) { - return
    -

    { i.typeName }

    -

    {subtitle[k]}

    -

    { i.typeIntroduction }

    - { - i.zoneMemberList && i.zoneMemberList.length > 0 &&
    - { - i.zoneMemberList.map(( e, subK ) => { - return e.memberLevel === "主席" && - }) - } -
    - } - { - i.unPresident && i.unPresident.length>0 &&

    {i.typeName}委员:{ i.unPresident.join("、")}

    - } -
    - } - }) - } */} - { orz && orz.length > 0 && orz.map((i,k)=>{ let detail = i.detail; return( - <> -

    {detail.name}

    +

    {detail.name}

    { detail.content ? @@ -118,12 +86,30 @@ function Organization() { "" }
    - ) }) - } + } */} + + { + orz && orz.length>0 && orz.map((i,k)=>{ + let detail = i.detail; + return( + setActiveKey([k+1])}>{detail.name}
    } + > + { + detail.content ? + + : + "" + } + + ) + }) + } +
    - { + {/* { partner?.length > 0 ?

    合作高校

    @@ -142,7 +128,7 @@ function Organization() {
    :"" - } + } */}
    } diff --git a/src/pages/2026/organization/index.less b/src/pages/2026/organization/index.less index 651d149d1..f77aa519e 100644 --- a/src/pages/2026/organization/index.less +++ b/src/pages/2026/organization/index.less @@ -7,45 +7,50 @@ min-height: 100vh; position: relative; padding-bottom: 60px; + background-image: url(../img/orzback.png); + background-size: 100% 100%; + .orzCollapse{ + margin-top: 60px; + .ant-collapse-item{ + margin-bottom: 30px; + background: rgb(255, 255, 255); + border-radius: 2px; + border: none; + &.ant-collapse-item-active{ + background-image: url(../img/orzitem.png); + background-size: 100% 100%; + .markdown-body,.ant-collapse-header{ + color: #fff; + } + .ant-collapse-content-box{ + padding:26px 40px; + position: relative; + &::before{ + position: absolute; + left: 40px; + right: 40px; + height: 1px; + background-color: #fff; + content: ""; + top: 0px; + opacity: 0.49; + } + } + } + } + .ant-collapse-header{ + font-family:Douyin Sans; + font-weight:700; + color:#091221; + font-size:20px; + padding:0px 40px!important; + height: 100px; + line-height: 100px; + } + } .ant-spin-nested-loading { width: 1200px; } - .homeMaintitle{ - font-size: 48px; - position: relative; - margin-bottom: 0px; - img{ - width: 12px; - position: absolute; - &:first-child{ - left: -12px; - } - &:last-child{ - bottom: 0px; - } - } - span{ - margin:0px 22px; - font-family: YouSheBiaoTiHei; - } - text-align: center; - } - .homeSubtitle{ - margin-top: 12px; - text-align: center; - span{ - font-size: 16px; - font-family: YouSheBiaoTiHei; - background: -webkit-linear-gradient(76deg, rgba(24,163,168,0.77) 0%, #2E89FF 51%, rgba(158,3,127,0.77) 100%); - background: linear-gradient(76deg, rgba(24,163,168,0.77) 0%, #2E89FF 51%, rgba(158,3,127,0.77) 100%); - -webkit-background-clip: text; - background-clip: text; - -webkit-text-fill-color: transparent; /* 针对WebKit浏览器 */ - color: transparent; /* 兼容其他浏览器 */ - letter-spacing: 2px; - font-weight: 400; - } - } .back-img { width: 100%; img{ diff --git a/src/styles/iconfont/demo.css b/src/styles/iconfont/demo.css new file mode 100644 index 000000000..a67054a0a --- /dev/null +++ b/src/styles/iconfont/demo.css @@ -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; +} diff --git a/src/styles/iconfont/iconfont.css b/src/styles/iconfont/iconfont.css index 3674415e4..6952d754c 100644 --- a/src/styles/iconfont/iconfont.css +++ b/src/styles/iconfont/iconfont.css @@ -1,4151 +1,3915 @@ @font-face { - font-family: 'iconfont'; - src: url('fonts/iconfont.eot?1648463952234'); - src: url('fonts/iconfont.eot?1648463952234#iefix') format('embedded-opentype'), url('fonts/iconfont.ttf?1648463952234') format('truetype'), url('fonts/iconfont.woff?1648463952234') format('woff'), url('fonts/iconfont.svg?1648463952234#iconfont') format('svg'); - font-weight: normal; - font-style: normal; - font-display: block; + font-family: "iconfont"; /* Project id 2340181 */ + src: url('iconfont.woff2?t=1773813430342') format('woff2'), + url('iconfont.woff?t=1773813430342') format('woff'), + url('iconfont.ttf?t=1773813430342') format('truetype'); } -[class^="icon-"], -[class*=" icon-"] { - /* use !important to prevent issues with browser extensions that change fonts */ - font-family: 'iconfont' !important; - speak: never; - font-style: normal; - font-weight: normal; - font-variant: normal; - text-transform: none; - line-height: 1; - /* Better Font Rendering =========== */ - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; +.iconfont { + font-family: "iconfont" !important; + font-size: 16px; + font-style: normal; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; } -.icon-guanbizuoce:before { - content: "\ea00"; +.icon-yingyongmoban:before { + content: "\e9c8"; } -.icon-guanbizhankai:before { - content: "\ea01"; +.icon-zhuangtai:before { + content: "\e9c5"; } -.icon-guanbidanchuang:before { - content: "\e9ff"; +.icon-fuzhi-shanchu1:before { + content: "\e9c6"; } -.icon-hongsejingshi:before { - content: "\e9fe"; +.icon-mobanguanli:before { + content: "\e9c7"; } -.icon-qipaotishi:before { - content: "\e9fd"; +.icon-svg_jiantou1:before { + content: "\e9c3"; } -.icon-danchuang-guanbi:before { - content: "\e9fc"; +.icon-zuojiantou1:before { + content: "\e9c4"; } -.icon-zuoshangjiaofanhui:before { - content: "\e9fb"; +.icon-jiantou4:before { + content: "\e9c2"; } -.icon-shexiangtou:before { - content: "\e9fa"; +.icon-hezuohuoban:before { + content: "\e9bf"; } -.icon-renxingxian:before { - content: "\e9f9"; +.icon-xiangmugongxian:before { + content: "\e9c1"; } -.icon-piliangcaozuoicon1:before { - content: "\e9f8"; +.icon-sijiaoxing:before { + content: "\e9c0"; } -.icon-guochengjiantou:before { - content: "\e9f7"; +.icon-a-zu15512:before { + content: "\e9be"; } -.icon-dengdaishenhe:before { - content: "\e9f6"; +.icon-wendangbangong-01:before { + content: "\e9bd"; } -.icon-fasongtongzhi:before { - content: "\e9f5"; +.icon-wendangsousuo:before { + content: "\e9b7"; } -.icon-tongguo:before { - content: "\e9f2"; +.icon-jieyakelu:before { + content: "\e9b0"; } -.icon-weitongguo1:before { - content: "\e9f3"; +.icon-tuxingtuxiang1:before { + content: "\e9b6"; } -.icon-bianji8:before { - content: "\e9f4"; +.icon-xiazaigongju:before { + content: "\e9bc"; } -.icon-shoucang1:before { - content: "\e9f1"; +.icon-shipinchuli:before { + content: "\e9b2"; } -.icon-xinzeng:before { - content: "\e9e5"; +.icon-liulanqi:before { + content: "\e9b8"; } -.icon-shouqi1:before { - content: "\e9f0"; +.icon-shejiaoliaotian:before { + content: "\e9b9"; } -.icon-zhankai2:before { - content: "\e9ef"; +.icon-shurufa:before { + content: "\e9ba"; } -.icon-fenxiangketang:before { - content: "\e9ee"; +.icon-quanbuleibie:before { + content: "\e9bb"; } -.icon-xuanzewenjian:before { - content: "\e9ec"; +.icon-tuxingtuxiang:before { + content: "\e9af"; } -.icon-xuanzhong10:before { - content: "\e9ed"; +.icon-xitonggongju:before { + content: "\e9b1"; } -.icon-weixuanze1:before { - content: "\e9eb"; +.icon-wendangbangong:before { + content: "\e9b3"; } -.icon-guanbi7:before { - content: "\e9ea"; +.icon-zhuomiankongzhi:before { + content: "\e9b4"; } -.icon-xiala3:before { - content: "\e9e6"; +.icon-Npm:before { + content: "\e9ad"; } -.icon-sousuo8:before { - content: "\e9e9"; +.icon-Maven:before { + content: "\e9ac"; } -.icon-bianji7:before { - content: "\e9db"; +.icon-Python:before { + content: "\e9ae"; } -.icon-baocun:before { - content: "\e9dc"; +.icon-a-xiazai3:before { + content: "\e9ab"; } -.icon-chakansvg:before { - content: "\e9dd"; +.icon-xiala4:before { + content: "\e9a9"; } -.icon-daochubeifen:before { - content: "\e9de"; +.icon-tufaxingzhongdasuanlixuqiuyingjixiangying:before { + content: "\e9a0"; } -.icon-gantanhao:before { - content: "\e9df"; +.icon-kuazhongxinxietongkeyanjisuanrenwutiaodu:before { + content: "\e9a1"; } -.icon-guanliyuan:before { - content: "\e9e0"; +.icon-xingnengjizhunyupingce:before { + content: "\e9a8"; } -.icon-moban1:before { - content: "\e9e1"; +.icon-jiantou3:before { + content: "\e9a5"; } -.icon-piliangdaoru:before { - content: "\e9e2"; +.icon-jiantou21:before { + content: "\e9a6"; } -.icon-piliangshanchubeifen:before { - content: "\e9e3"; +.icon-a-xiazai1:before { + content: "\e9a7"; } -.icon-shangchuan1:before { - content: "\e9e4"; -} - -.icon-quxiao:before { - content: "\e9e7"; -} - -.icon-xuanze1:before { - content: "\e9e8"; -} - -.icon-biyeyaoqiu:before { - content: "\e9ce"; -} - -.icon-zhibiaopingjia:before { - content: "\e9cf"; -} - -.icon-dachengpinggu:before { - content: "\e9d0"; -} - -.icon-xueshengliebiao:before { - content: "\e9d1"; -} - -.icon-kechengtixi:before { - content: "\e9d2"; -} - -.icon-kechengjuzhen:before { - content: "\e9d3"; -} - -.icon-dachenggaijin:before { - content: "\e9d4"; -} - -.icon-biyejuzhen:before { - content: "\e9d5"; -} - -.icon-biyezhibiao:before { - content: "\e9d6"; -} - -.icon-kechengshezhi:before { - content: "\e9d7"; -} - -.icon-kechengliebiao:before { - content: "\e9d8"; -} - -.icon-jiaoshiliebiao:before { - content: "\e9d9"; -} - -.icon-kechengpingjia:before { - content: "\e9da"; -} - -.icon-peiyangfangan:before { - content: "\e9cd"; -} - -.icon-peiyangmubiao:before { - content: "\e9cc"; -} - -.icon-zhuanyeshezhi:before { - content: "\e9cb"; -} - -.icon-renzhengdaohang:before { - content: "\e9ca"; -} - -.icon-a-kehuduantishi1:before { - content: "\e9c9"; -} - -.icon-sheweigongkai2:before { - content: "\e9c8"; -} - -.icon-gengduozhishidian:before { - content: "\e9c7"; -} - -.icon-zongxiang:before { - content: "\e9c5"; -} - -.icon-hengxiang:before { - content: "\e9c6"; -} - -.icon-tiaozhengpaixu2:before { - content: "\e9c4"; -} - -.icon-piliangjiezhi2:before { - content: "\e9c1"; -} - -.icon-piliangshanchu2:before { - content: "\e9c2"; -} - -.icon-piliangcaozuoicon:before { - content: "\e9c3"; -} - -.icon-yidongmulu:before { - content: "\e9bf"; -} - -.icon-fabu5:before { - content: "\e9c0"; -} - -.icon-tianjiaxuesheng1:before { - content: "\e9a8"; -} - -.icon-shijian1:before { - content: "\e9be"; -} - -.icon-shenqingchengweizhujiao:before { - content: "\e9bd"; -} - -.icon-chengyuanguanli1:before { - content: "\e9bc"; -} - -.icon-xuanzeti21:before { - content: "\e9ba"; -} - -.icon-xuanzeti3:before { - content: "\e9bb"; -} - -.icon-a-hao:before { - content: "\e9b9"; -} - -.icon-gengduo4:before { - content: "\e9af"; -} - -.icon-chakanzuoye:before { - content: "\e9b0"; -} - -.icon-kaishixuexi:before { - content: "\e9b1"; -} - -.icon-piliangcaozuo1:before { - content: "\e9b2"; -} - -.icon-paixu2:before { - content: "\e9b3"; -} - -.icon-paixu11:before { - content: "\e9b4"; -} - -.icon-piliangcaozuo2:before { - content: "\e9b6"; -} - -.icon-shenqingchengweijiaoshi:before { - content: "\e9b7"; -} - -.icon-wanchengjindu:before { - content: "\e9b8"; -} - -.icon-icon_weishoucang:before { - content: "\e9ad"; -} - -.icon-icon_yishoucang1:before { - content: "\e9ae"; -} - -.icon-shanchu10:before { - content: "\e9ac"; -} - -.icon-xuexi:before { - content: "\e9ab"; -} - -.icon-tianjialaoshi1:before { - content: "\e9a7"; -} - -.icon-yishezhifabushijian1:before { - content: "\e9a9"; -} - -.icon-tianjiazhujiao1:before { - content: "\e9aa"; -} - -.icon-piliangjiezhi1:before { - content: "\e9a4"; -} - -.icon-tiaozhengpaixu1:before { - content: "\e9a1"; -} - -.icon-piliangfabu1:before { - content: "\e9a2"; -} - -.icon-sheweigongkai1:before { - content: "\e9a3"; -} - -.icon-yidongdaomulu1:before { - content: "\e9a5"; -} - -.icon-piliangshanchu1:before { - content: "\e9a6"; -} - -.icon-xuanzeti2:before { - content: "\e9a0"; -} - -.icon-a-weishoucangxingxing:before { - content: "\e99f"; -} - -.icon-a-shoucangxingxing:before { - content: "\e99e"; -} - -.icon-icon_shezhi:before { - content: "\e99d"; -} - -.icon-icon_yishoucang:before { - content: "\e99c"; -} - -.icon-icon_xuexitongji:before { - content: "\e99b"; -} - -.icon-icon_fasongzhi:before { - content: "\e99a"; -} - -.icon-tianjialaoshi:before { - content: "\e999"; -} - -.icon-tianjiazhujiao:before { - content: "\e997"; -} - -.icon-tianjiaxuesheng:before { - content: "\e998"; -} - -.icon-xinjianmulu1:before { - content: "\e993"; -} - -.icon-fabukejian:before { - content: "\e994"; -} - -.icon-yishezhifabushijian:before { - content: "\e995"; -} - -.icon-zhongmingmingmulu1:before { - content: "\e996"; -} - -.icon-shuaxinshijian:before { - content: "\e992"; -} - -.icon-jixufabu:before { - content: "\e990"; -} - -.icon-jiezhishiyan:before { - content: "\e991"; -} - -.icon-shengyushijian:before { - content: "\e98e"; -} - -.icon-lijifabu1:before { - content: "\e98f"; -} - -.icon-zhongmingmingmulu:before { - content: "\e98d"; -} - -.icon-yidongdaomulu:before { - content: "\e98c"; -} - -.icon-sheweigongkai:before { - content: "\e98b"; -} - -.icon-piliangjiezhi:before { - content: "\e987"; -} - -.icon-piliangfabu:before { - content: "\e988"; -} - -.icon-tiaozhengpaixu:before { - content: "\e989"; -} - -.icon-piliangshanchu:before { - content: "\e98a"; -} - -.icon-chuangjianshijian:before { - content: "\e97b"; -} - -.icon-xinjianmulu:before { - content: "\e985"; -} - -.icon-piliangcaozuo:before { - content: "\e986"; -} - -.icon-paixu:before { - content: "\e982"; -} - -.icon-shezhi6:before { - content: "\e983"; -} - -.icon-gengduo3:before { - content: "\e984"; -} - -.icon-a-08zhiliang-xianxing:before { - content: "\e977"; -} - -.icon-xiaopinglun:before { - content: "\e97f"; -} - -.icon-xiaodianzan2:before { - content: "\e980"; -} - -.icon-xiaopinglun2:before { - content: "\e981"; -} - -.icon-huifu21:before { - content: "\e97c"; -} - -.icon-huifu3:before { - content: "\e97d"; -} - -.icon-xiaodianzan:before { - content: "\e97e"; -} - -.icon-jingxuan:before { - content: "\e964"; -} - -.icon-guanfang:before { - content: "\e969"; -} - -.icon-xietijie:before { - content: "\e96a"; -} - -.icon-guanfang1:before { - content: "\e978"; -} - -.icon-jingxuan1:before { - content: "\e979"; -} - -.icon-xietijie2:before { - content: "\e97a"; -} - -.icon-paihangbang1:before { - content: "\e976"; -} - -.icon-zhanyongneicun:before { - content: "\e972"; -} - -.icon-pinglun11:before { - content: "\e971"; -} - -.icon-pinglun21:before { - content: "\e970"; -} - -.icon-shanchushipin:before { - content: "\e975"; -} - -.icon-shangchuanchenggong:before { - content: "\e973"; -} - -.icon-shangchuanshipin:before { - content: "\e974"; -} - -.icon-paihangbang:before { - content: "\e968"; -} - -.icon-zhankaitimu:before { - content: "\e967"; -} - -.icon-chakan21:before { - content: "\e96e"; -} - -.icon-dianzan22:before { - content: "\e96f"; -} - -.icon-yipingyue:before { - content: "\e96d"; -} - -.icon-weipingyue:before { - content: "\e96c"; -} - -.icon-dadianzan:before { - content: "\e96b"; -} - -.icon-chakan11:before { - content: "\e965"; -} - -.icon-dianzan12:before { - content: "\e966"; -} - -.icon-yunhangshijian:before { - content: "\e963"; -} - -.icon-queding:before { - content: "\e962"; -} - -.icon-diyiming:before { - content: "\e95f"; -} - -.icon-disanming:before { - content: "\e960"; -} - -.icon-dierming:before { - content: "\e961"; -} - -.icon-shipin3:before { - content: "\e92b"; -} - -.icon-sousuo7:before { - content: "\e946"; -} - -.icon-wo:before { - content: "\e95e"; -} - -.icon-tongji4:before { - content: "\e921"; -} - -.icon-a-bianzu14:before { - content: "\e913"; -} - -.icon-a-bianzu201:before { - content: "\e95c"; -} - -.icon-a-bianzu191:before { - content: "\e95d"; -} - -.icon-a-bianzu12:before { - content: "\e957"; -} - -.icon-a-bianzu161:before { - content: "\e958"; -} - -.icon-a-bianzu15:before { - content: "\e959"; -} - -.icon-a-bianzu19:before { - content: "\e95a"; -} - -.icon-a-bianzu20:before { - content: "\e95b"; -} - -.icon-guanbi6:before { - content: "\e941"; -} - -.icon-fangzuobi1:before { - content: "\e94f"; -} - -.icon-kaoshi:before { - content: "\e950"; -} - -.icon-yonghu1:before { - content: "\e951"; -} - -.icon-a-bianzu5beifen:before { - content: "\e952"; -} - -.icon-a-bianzu5beifen2:before { - content: "\e953"; -} - -.icon-shanchu9:before { - content: "\e954"; -} - -.icon-cuo:before { - content: "\e955"; -} - -.icon-dui:before { - content: "\e956"; -} - -.icon-a-bianzu5beifen17:before { - content: "\e93c"; -} - -.icon-xuanzhong8:before { - content: "\e933"; -} - -.icon-jinggao-3:before { - content: "\e934"; -} - -.icon-shizhong1:before { - content: "\e914"; -} - -.icon-wenjianjia-2:before { - content: "\e928"; -} - -.icon-a-wenjianjia1:before { - content: "\e94b"; -} - -.icon-timu:before { - content: "\e94c"; -} - -.icon-zongfen:before { - content: "\e94d"; -} - -.icon-wenjianjia4:before { - content: "\e94e"; -} - -.icon-yunhang1:before { - content: "\e94a"; -} - -.icon-tingzhizhihui:before { - content: "\e945"; -} - -.icon-huadongbiao:before { - content: "\e947"; -} - -.icon-yunhangzhihui:before { - content: "\e948"; -} - -.icon-tingzhi:before { - content: "\e949"; -} - -.icon-jinggao-2:before { - content: "\e942"; -} - -.icon-ku:before { - content: "\e943"; -} - -.icon-kongzhuangtai:before { - content: "\e944"; -} - -.icon-shuoming:before { - content: "\e93d"; -} - -.icon-fabu4:before { - content: "\e93b"; -} - -.icon-weifabu:before { - content: "\e93e"; -} - -.icon-you2:before { - content: "\e93f"; -} - -.icon-zuo2:before { - content: "\e940"; -} - -.icon-sousuo6:before { - content: "\e93a"; -} - -.icon-a-bianzu2:before { - content: "\e936"; -} - -.icon-a-bianzu5:before { - content: "\e937"; -} - -.icon-a-bianzu3:before { - content: "\e938"; -} - -.icon-huodong1:before { - content: "\e939"; -} - -.icon-weixuanze:before { - content: "\e92c"; -} - -.icon-xuanzhong7:before { - content: "\e92d"; -} - -.icon-zhankai1:before { - content: "\e92e"; -} - -.icon-guanbi5:before { - content: "\e92f"; -} - -.icon-xiayi4:before { - content: "\e930"; -} - -.icon-shangyi4:before { - content: "\e931"; -} - -.icon-tishi8:before { - content: "\e932"; -} - -.icon-Rectanglebeifen:before { - content: "\e935"; -} - -.icon-jinggao3:before { - content: "\e929"; -} - -.icon-guanbi4:before { - content: "\e92a"; -} - -.icon-a-1:before { - content: "\e90d"; -} - -.icon-xiangxiahui:before { - content: "\e927"; -} - -.icon-a-bianzu12beifen:before { - content: "\e90c"; -} - -.icon-a-bianzu16:before { - content: "\e90e"; -} - -.icon-a-bianzu12beifen1:before { - content: "\e90f"; -} - -.icon-jingshi:before { - content: "\e910"; -} - -.icon-qipao:before { - content: "\e911"; -} - -.icon-guanbi3:before { - content: "\e912"; -} - -.icon-xiangshang1:before { - content: "\e915"; -} - -.icon-a-2:before { - content: "\e916"; -} - -.icon-xialajiantou1:before { - content: "\e917"; -} - -.icon-timu-1:before { - content: "\e918"; -} - -.icon-xialajiantoubeifen:before { - content: "\e919"; -} - -.icon-a-wenhaobeifen2:before { - content: "\e91a"; -} - -.icon-a-3:before { - content: "\e91b"; -} - -.icon-kaochamendian:before { - content: "\e91c"; -} - -.icon-a-xuanzebeifen2:before { - content: "\e91d"; -} - -.icon-xiangshang11:before { - content: "\e91e"; -} - -.icon-wenjian5:before { - content: "\e91f"; -} - -.icon-xiangshanghui:before { - content: "\e920"; -} - -.icon-xiangxia-1:before { - content: "\e922"; -} - -.icon-xinrenkecheng:before { - content: "\e923"; -} - -.icon-wenjianjia3:before { - content: "\e924"; -} - -.icon-defen-2:before { - content: "\e925"; -} - -.icon-xuanzhong6:before { - content: "\e926"; -} - -.icon-daimachazhong2:before { - content: "\e906"; -} - -.icon-piliangdahui:before { - content: "\e907"; -} - -.icon-daochu1:before { - content: "\e908"; -} - -.icon-wenhao1:before { - content: "\e909"; -} - -.icon-sousuo5:before { - content: "\e90a"; -} - -.icon-yijiandianping1:before { - content: "\e90b"; -} - -.icon-yiwancheng3:before { - content: "\e905"; -} - -.icon-xuexirenshu1:before { - content: "\e903"; -} - -.icon-guankashu1:before { - content: "\e904"; -} - -.icon-daochushiti:before { - content: "\e902"; -} - -.icon-qingchu:before { - content: "\e8f7"; -} - -.icon-shangyi3:before { - content: "\e8f8"; -} - -.icon-shiti:before { - content: "\e8f9"; -} - -.icon-shangxiabiao:before { - content: "\e8fa"; -} - -.icon-sousuo4:before { - content: "\e8fb"; -} - -.icon-xinjianfenzu1:before { - content: "\e8fc"; -} - -.icon-xiajiantou1:before { - content: "\e8fd"; -} - -.icon-wenjianjia2:before { - content: "\e8fe"; -} - -.icon-zhankaijiantou:before { - content: "\e8ff"; -} - -.icon-xinzengshiti1:before { - content: "\e900"; -} - -.icon-xiayi3:before { - content: "\e901"; -} - -.icon-yiwancheng2:before { - content: "\e8f5"; -} - -.icon-shuaxin2:before { - content: "\e8f6"; -} - -.icon-dianji:before { - content: "\e8f4"; -} - -.icon-pingtaijieshao:before { - content: "\e8ef"; -} - -.icon-zaixiankefu:before { - content: "\e8f0"; -} - -.icon-shixunkecheng:before { - content: "\e8f1"; -} - -.icon-bangzhushouce:before { - content: "\e8f2"; -} - -.icon-jiaoxueketang:before { - content: "\e8f3"; -} - -.icon-jiantou2:before { - content: "\e8ee"; -} - -.icon-chenggong1:before { - content: "\e8e8"; -} - -.icon-monikaoshi:before { - content: "\e8ec"; -} - -.icon-biaoji:before { - content: "\e8eb"; -} - -.icon-tishi7:before { - content: "\e8ed"; -} - -.icon-jiaruketang1:before { - content: "\e8e9"; -} - -.icon-xinjianketang:before { - content: "\e8ea"; -} - -.icon-xinshouzhiyin:before { - content: "\e8e4"; -} - -.icon-xinjianxiangmu:before { - content: "\e8e6"; -} - -.icon-xinjiankecheng:before { - content: "\e8e7"; -} - -.icon-panduan:before { - content: "\e8de"; -} - -.icon-shixun3:before { - content: "\e8df"; -} - -.icon-tiankongti:before { - content: "\e8e2"; -} - -.icon-biancheng1:before { - content: "\e8e5"; -} - -.icon-duoxuan:before { - content: "\e8e0"; -} - -.icon-danxuan:before { - content: "\e8e1"; -} - -.icon-jianda:before { - content: "\e8e3"; -} - -.icon-lanzi:before { - content: "\e8dd"; -} - -.icon-kemuguanli:before { - content: "\e8d4"; -} - -.icon-shijuanguanli:before { - content: "\e8d5"; -} - -.icon-kaoshiguanli:before { - content: "\e8d8"; -} - -.icon-shitiguanli:before { - content: "\e8d9"; -} - -.icon-yonghuguanli:before { - content: "\e8da"; -} - -.icon-xiala2:before { - content: "\e8d6"; +.icon-binghangjisuankuangjia:before { + content: "\e9aa"; } .icon-shouqi:before { - content: "\e8d7"; + content: "\e99f"; } -.icon-xitongguanli:before { - content: "\e8db"; +.icon-zhankai1:before { + content: "\e9a2"; } -.icon-xuesheng:before { - content: "\e687"; +.icon-renwutiaoduguanli:before { + content: "\e9a3"; } -.icon-laoshi:before { - content: "\e628"; +.icon-yigoushujuku:before { + content: "\e9a4"; } -.icon-a-shanchu:before { - content: "\e8dc"; +.icon-shequissue:before { + content: "\e99c"; } -.icon-tishi6:before { - content: "\e8d3"; +.icon-shequ-xuanzhong:before { + content: "\e99d"; } -.icon-guanbi2:before { - content: "\e8d2"; +.icon-shequ1:before { + content: "\e99e"; } -.icon-wanchengdu-weiwancheng:before { - content: "\e8d0"; +.icon-huanjingbianliang:before { + content: "\e99b"; } -.icon-a-wanchengdu100:before { - content: "\e8d1"; +.icon-liuliangkongzhi:before { + content: "\e991"; } -.icon-wendajiqirenyiji:before { - content: "\e8cf"; +.icon-tingzhi:before { + content: "\e993"; } -.icon-wendajiqiren-yiji:before { - content: "\e8cb"; +.icon-qiangzhitingzhi:before { + content: "\e995"; } -.icon-shouye:before { - content: "\e8cc"; +.icon-zanting1:before { + content: "\e99a"; } -.icon-zhishichouqu:before { - content: "\e8cd"; +.icon-qidong1:before { + content: "\e996"; } -.icon-zhishironghe:before { - content: "\e8ce"; +.icon-guanlianpeizhi:before { + content: "\e994"; } -.icon-dianzixinxi:before { - content: "\e8c9"; +.icon-shanchu9:before { + content: "\e997"; } -.icon-suanfasheji:before { - content: "\e8ca"; +.icon-bianjipeizhi:before { + content: "\e998"; } -.icon-huore:before { - content: "\e8c8"; +.icon-shilizhuce:before { + content: "\e999"; } -.icon-shuaxin1:before { - content: "\e8c7"; +.icon-wangguanguanli:before { + content: "\e98d"; } -.icon-duiwoyouyong:before { - content: "\e8c6"; +.icon-xiazaiYAML:before { + content: "\e98f"; } -.icon-xuanzhong5:before { - content: "\e8c5"; +.icon-huifu2:before { + content: "\e990"; } -.icon-butaidong:before { - content: "\e8b8"; +.icon-zhongqi:before { + content: "\e992"; } -.icon-dashuju:before { - content: "\e8b9"; +.icon-lianluzhuizong1:before { + content: "\e98e"; } -.icon-jisuanjijichu:before { - content: "\e8ba"; +.icon-yincang3:before { + content: "\e986"; } -.icon-rengongzhineng:before { - content: "\e8bb"; +.icon-shoujihao:before { + content: "\e987"; } -.icon-qukuailian:before { - content: "\e8bc"; +.icon-xianshi1:before { + content: "\e988"; } -.icon-ruanjiangongcheng:before { - content: "\e8bd"; +.icon-mima:before { + content: "\e989"; } -.icon-chengxushejiyuyan:before { - content: "\e8be"; +.icon-paixu:before { + content: "\e98a"; } -.icon-jisuanjixitongnengli:before { - content: "\e8bf"; +.icon-jiantou_xiangyou:before { + content: "\e98b"; } -.icon-xuexilujing:before { - content: "\e8c0"; -} - -.icon-qita:before { - content: "\e8c1"; -} - -.icon-shujuku:before { - content: "\e8c2"; -} - -.icon-wangluoanquan:before { - content: "\e8c3"; -} - -.icon-Webkaifa:before { - content: "\e8c4"; -} - -.icon-zhidinggongkai1:before { - content: "\e8b6"; -} - -.icon-xuanzhong4:before { - content: "\e8b7"; -} - -.icon-rili2:before { - content: "\e8af"; -} - -.icon-fanwei:before { - content: "\e8b5"; -} - -.icon-danwei:before { - content: "\e8a7"; -} - -.icon-daibanshixiang:before { - content: "\e8a8"; -} - -.icon-fuke:before { - content: "\e8a9"; -} - -.icon-dizhi:before { - content: "\e8aa"; -} - -.icon-gailan:before { - content: "\e8ab"; -} - -.icon-nan:before { - content: "\e8ac"; -} - -.icon-nv:before { - content: "\e8ad"; -} - -.icon-gongzuoliu1:before { - content: "\e8ae"; -} - -.icon-xiala1:before { - content: "\e8b0"; -} - -.icon-shujutongji:before { - content: "\e8b1"; -} - -.icon-youxiang:before { - content: "\e8b2"; -} - -.icon-xiangmu:before { - content: "\e8b3"; -} - -.icon-zuzhi:before { - content: "\e8b4"; -} - -.icon-liebiaofenbu:before { - content: "\e8a3"; -} - -.icon-juxingfenbu:before { - content: "\e8a4"; -} - -.icon-xuanzhong3:before { - content: "\e8a5"; -} - -.icon-tianjiaxuanze:before { - content: "\e8a6"; -} - -.icon-fenxiang1:before { - content: "\e89c"; -} - -.icon-huidaodingbu1:before { - content: "\e89d"; -} - -.icon-weibo1:before { - content: "\e89e"; -} - -.icon-QQ2:before { - content: "\e89f"; -} - -.icon-bangzhu:before { - content: "\e8a0"; -} - -.icon-qqkongjian:before { - content: "\e8a1"; -} - -.icon-weixin1:before { - content: "\e8a2"; -} - -.icon-zuoyouzhankai:before { - content: "\e89b"; -} - -.icon-fuwu:before { - content: "\e89a"; -} - -.icon-weixin2:before { - content: "\e603"; -} - -.icon-shoucang:before { - content: "\e899"; -} - -.icon-chakan1:before { - content: "\e897"; -} - -.icon-fuzhi7:before { - content: "\e898"; -} - -.icon-daimachazhong1:before { - content: "\e896"; -} - -.icon-hebing1:before { - content: "\e895"; -} - -.icon-fanhui2:before { - content: "\e893"; -} - -.icon-xuanxiang:before { - content: "\e894"; -} - -.icon-chuangjianshujuji:before { - content: "\e88d"; -} - -.icon-gerenzhongxin:before { - content: "\e88e"; -} - -.icon-zhuye2:before { - content: "\e88f"; -} - -.icon-shuaxin:before { - content: "\e890"; -} - -.icon-gongkai1:before { - content: "\e891"; -} - -.icon-siyou:before { - content: "\e892"; -} - -.icon-cela:before { - content: "\e88c"; -} - -.icon-QQ1:before { - content: "\e88b"; -} - -.icon-tuichu:before { - content: "\e889"; -} - -.icon-tuichuquanping2:before { - content: "\e88a"; -} - -.icon-shiyongzhinan:before { - content: "\e838"; -} - -.icon-tishi5:before { - content: "\e887"; -} - -.icon-quanping2:before { - content: "\e888"; -} - -.icon-QQ:before { - content: "\e7c3"; -} - -.icon-weixin:before { - content: "\e886"; -} - -.icon-wenjian4:before { - content: "\e885"; -} - -.icon-shujuji2:before { - content: "\e884"; -} - -.icon-tishi4:before { - content: "\e883"; -} - -.icon-shanchu8:before { - content: "\e87e"; -} - -.icon-fenxiang:before { - content: "\e87f"; -} - -.icon-fuzhi6:before { - content: "\e880"; -} - -.icon-xiazai3:before { - content: "\e881"; -} - -.icon-zhongmingming:before { - content: "\e882"; -} - -.icon-shujuji:before { - content: "\e87d"; -} - -.icon-yiwancheng1:before { - content: "\e87c"; -} - -.icon-chexiaofabu2:before { - content: "\e877"; -} - -.icon-jixutiaozhan:before { - content: "\e87a"; -} - -.icon-chexiaoshenqinggongkai:before { - content: "\e87b"; -} - -.icon-jinbi1:before { - content: "\e875"; -} - -.icon-jinbi1-copy:before { - content: "\f1d8"; -} - -.icon-fasongzhi1:before { - content: "\e873"; -} - -.icon-fabu3:before { - content: "\e874"; -} - -.icon-shenqinggongkai1:before { - content: "\e876"; -} - -.icon-yiguanbi3:before { - content: "\e878"; -} - -.icon-pingfen2:before { - content: "\e879"; -} - -.icon-xiugai3:before { - content: "\e869"; -} - -.icon-weimingmingbiaoti1:before { - content: "\e86a"; -} - -.icon-kechengjieshao:before { - content: "\e86b"; -} - -.icon-SPOCketang:before { - content: "\e86c"; -} - -.icon-shipin2:before { - content: "\e86e"; -} - -.icon-shixunti2:before { - content: "\e86f"; -} - -.icon-kejian1:before { - content: "\e870"; -} - -.icon-kechengxuzhi:before { - content: "\e871"; -} - -.icon-jiaoxuetuandui:before { - content: "\e872"; -} - -.icon-jiantou1:before { - content: "\e868"; -} - -.icon-sanjiaoxing:before { - content: "\e867"; -} - -.icon-lujing:before { - content: "\e862"; -} - -.icon-yiwancheng:before { - content: "\e861"; -} - -.icon-xiugai2:before { - content: "\e85f"; -} - -.icon-weimingmingbiaoti:before { - content: "\e85c"; -} - -.icon-kejian:before { - content: "\e85d"; -} - -.icon-dianzan4:before { - content: "\e863"; -} - -.icon-shanchu7:before { - content: "\e864"; -} - -.icon-pinglun2:before { - content: "\e865"; -} - -.icon-zhiding2:before { - content: "\e866"; -} - -.icon-shixun1:before { - content: "\e85e"; -} - -.icon-shipin1:before { - content: "\e860"; -} - -.icon-quanping1:before { - content: "\e85a"; -} - -.icon-tuichuquanping1:before { - content: "\e85b"; -} - -.icon-zhongzhidaimacangku:before { - content: "\e859"; -} - -.icon-gengduo2:before { - content: "\e857"; -} - -.icon-daimacangku2:before { - content: "\e858"; -} - -.icon-xuanzeti11:before { - content: "\e851"; -} - -.icon-shixunti1:before { - content: "\e852"; -} - -.icon-shangyi2:before { - content: "\e853"; -} - -.icon-tianjiatimu:before { - content: "\e854"; -} - -.icon-xiaoxiugai:before { - content: "\e855"; -} - -.icon-xiayi2:before { - content: "\e856"; -} - -.icon-yishanchu:before { - content: "\e84f"; -} - -.icon-yiguanbi2:before { - content: "\e850"; -} - -.icon-changjianwenti:before { - content: "\e828"; -} - -.icon-chexiaofabu1:before { - content: "\e829"; -} - -.icon-fasongzhi:before { - content: "\e82a"; -} - -.icon-chexiaogongkai1:before { - content: "\e82b"; -} - -.icon-fabu2:before { - content: "\e82c"; -} - -.icon-daimacangku:before { - content: "\e82d"; -} - -.icon-erweima1:before { - content: "\e82e"; -} - -.icon-Fock:before { - content: "\e82f"; -} - -.icon-fuzhilianjie:before { - content: "\e830"; -} - -.icon-huidaodingbu:before { - content: "\e831"; -} - -.icon-jibenxinxi1:before { - content: "\e832"; -} - -.icon-pingfen-yibanfen:before { - content: "\e833"; -} - -.icon-guankashu:before { - content: "\e834"; -} - -.icon-shanchu6:before { - content: "\e835"; -} - -.icon-pingfen1:before { - content: "\e836"; -} - -.icon-shezhi5:before { - content: "\e837"; -} - -.icon-shoucangerji:before { - content: "\e839"; -} - -.icon-shoucangyiji:before { - content: "\e83a"; -} - -.icon-shixunshu:before { - content: "\e83b"; -} - -.icon-shanchu23:before { - content: "\e83c"; -} - -.icon-hezuochengyuan:before { - content: "\e83d"; -} - -.icon-shixunti:before { - content: "\e83e"; -} - -.icon-xiaowenhao:before { - content: "\e83f"; -} - -.icon-wenjian3:before { - content: "\e840"; -} - -.icon-xiugai1:before { - content: "\e841"; -} - -.icon-shiyanhuanjing:before { - content: "\e842"; -} - -.icon-wenjian11:before { - content: "\e843"; -} - -.icon-sousuo3:before { - content: "\e844"; -} - -.icon-suoshukecheng:before { - content: "\e845"; -} - -.icon-shenqinggongkai:before { - content: "\e846"; -} - -.icon-shijianshezhi:before { - content: "\e847"; -} - -.icon-renwuguanka:before { - content: "\e848"; -} - -.icon-xuanzeti1:before { - content: "\e849"; -} - -.icon-yijianfankui1:before { - content: "\e84a"; -} - -.icon-tuijianshixun:before { - content: "\e84b"; -} - -.icon-xiala:before { - content: "\e84c"; -} - -.icon-xuexirenshu:before { - content: "\e84d"; -} - -.icon-xuexijindu:before { - content: "\e84e"; -} - -.icon-kongbai:before { - content: "\e827"; -} - -.icon-lajitong1:before { - content: "\e826"; -} - -.icon-wenjian2:before { - content: "\e825"; -} - -.icon-ren:before { - content: "\e824"; -} - -.icon-shanchu5:before { - content: "\e823"; -} - -.icon-chakan:before { - content: "\e822"; -} - -.icon-jiaoxueanli:before { - content: "\e821"; -} - -.icon-kechengxuexi:before { - content: "\e820"; -} - -.icon-shixunfabu:before { - content: "\e81e"; -} - -.icon-shijiankechengfabu:before { - content: "\e81f"; -} - -.icon-IP:before { - content: "\e81c"; -} - -.icon-IPbangding:before { - content: "\e81d"; -} - -.icon-guge:before { - content: "\e81a"; -} - -.icon-huohu:before { - content: "\e81b"; -} - -.icon-fanhuishijuan:before { - content: "\e819"; -} - -.icon-kaoshishichang:before { - content: "\e818"; -} - -.icon-sousuo1:before { - content: "\e817"; -} - -.icon-xinzengshiti:before { - content: "\e809"; -} - -.icon-xiugai:before { - content: "\e80a"; -} - -.icon-shanchu4:before { - content: "\e80b"; -} - -.icon-xinjianfenzu:before { - content: "\e80c"; -} - -.icon-xuanzhong2:before { - content: "\e80d"; -} - -.icon-fabu1:before { - content: "\e80e"; -} - -.icon-xuanyong:before { - content: "\e80f"; -} - -.icon-chexiaofenzu1:before { - content: "\e810"; -} - -.icon-shanchu22:before { - content: "\e811"; -} - -.icon-chexiaogongkai:before { - content: "\e812"; -} - -.icon-jiexi1:before { - content: "\e813"; -} - -.icon-chexiaogongxiang1:before { - content: "\e814"; -} - -.icon-chexiaofabu:before { - content: "\e815"; -} - -.icon-bianji21:before { - content: "\e816"; -} - -.icon-guanbi1:before { - content: "\e806"; -} - -.icon-kaiqishexiangtou:before { - content: "\e807"; -} - -.icon-kaiqifangqieping:before { - content: "\e808"; -} - -.icon-jingsaihuodong1:before { - content: "\e805"; -} - -.icon-you1:before { - content: "\e802"; -} - -.icon-xialajiantou:before { - content: "\e803"; -} - -.icon-zuo1:before { - content: "\e804"; -} - -.icon-quntibiaozhu:before { - content: "\e7ee"; -} - -.icon-biaozhuyindao:before { - content: "\e7f1"; -} - -.icon-fankuixiuzheng:before { - content: "\e7f3"; -} - -.icon-taishiganzhi:before { - content: "\e7f6"; -} - -.icon-duoweipinggu:before { - content: "\e7f7"; -} - -.icon-daimatuoguan:before { - content: "\e7f8"; -} - -.icon-jiaoliushequ:before { - content: "\e7fa"; -} - -.icon-duoguanlianyufankui:before { - content: "\e7fb"; -} - -.icon-xiangmuguanli:before { - content: "\e7fc"; -} - -.icon-ziyuanpaihanghetuijian:before { - content: "\e7ff"; -} - -.icon-zhiliangjiance:before { - content: "\e801"; -} - -.icon-zuoyechazhong1:before { - content: "\e7ef"; -} - -.icon-gongchengjiaoyu1:before { - content: "\e7f0"; -} - -.icon-fanzhuanketang1:before { - content: "\e7f4"; -} - -.icon-shixunkecheng1:before { - content: "\e7f5"; -} - -.icon-tishi3:before { - content: "\e7ed"; -} - -.icon-fanhui1:before { - content: "\e7ec"; -} - -.icon-rili1:before { - content: "\e7eb"; -} - -.icon-tupian1:before { - content: "\e7ea"; -} - -.icon-chengguorongyu:before { - content: "\e7e9"; -} - -.icon-tianxiedisanfangmuke:before { - content: "\e7e8"; -} - -.icon-zhuye1:before { - content: "\e7e4"; -} - -.icon-xiangmujianjie:before { - content: "\e7e7"; -} - -.icon-canyuchengyuan:before { - content: "\e7e6"; -} - -.icon-shiyongwendang:before { - content: "\e7e5"; -} - -.icon-daimaku:before { - content: "\e7d9"; -} - -.icon-forc:before { - content: "\e7da"; -} - -.icon-dianzan3:before { - content: "\e7dd"; -} - -.icon-lichengbei:before { - content: "\e7de"; -} - -.icon-quxiaodianzan:before { - content: "\e7df"; -} - -.icon-fork2:before { - content: "\e7e0"; -} - -.icon-hebingqingqiu1:before { - content: "\e7e1"; -} - -.icon-renwu:before { - content: "\e7e2"; -} - -.icon-tongzhi:before { - content: "\e7e3"; -} - -.icon-jinbi:before { - content: "\e7c5"; -} - -.icon-weikaishexiangtou1:before { - content: "\e7d8"; -} - -.icon-guankacaidan:before { - content: "\e7ce"; -} - -.icon-zhongzhishixun:before { - content: "\e7d5"; -} - -.icon-fuzhiniantie:before { - content: "\e7d6"; -} - -.icon-gongxiangzhuomian:before { - content: "\e7d7"; -} - -.icon-tuichuquanping:before { - content: "\e7d4"; -} - -.icon-quanping:before { - content: "\e7d2"; -} - -.icon-fuzhibanbenkudizhi1:before { - content: "\e7d3"; -} - -.icon-shiyanhuanjingdaojishi:before { - content: "\e7d1"; -} - -.icon-vncshixunjiemian-gongjulan:before { - content: "\e7d0"; -} - -.icon-vncshixunjiemian-zhankai:before { - content: "\e7cf"; -} - -.icon-vncshixunjiemian-shouqi:before { - content: "\e7cd"; -} - -.icon-chexiaofenzu:before { - content: "\e7ca"; -} - -.icon-chexiaogongxiang:before { - content: "\e7cb"; -} - -.icon-xuanzhong1:before { - content: "\e7cc"; -} - -.icon-jingshi1:before { - content: "\e7c9"; -} - -.icon-shanchu21:before { - content: "\e7c8"; -} - -.icon-shoucang3:before { - content: "\e7c7"; -} - -.icon-sousuo2:before { - content: "\e7c6"; -} - -.icon-guangbiao:before { - content: "\e7c4"; -} - -.icon-yonghu:before { - content: "\e7c2"; -} - -.icon-oschina:before { - content: "\e7c1"; -} - -.icon-you:before { - content: "\e7bf"; -} - -.icon-zuo:before { - content: "\e7c0"; -} - -.icon-bianchengyuyan:before { - content: "\e7bd"; -} - -.icon-jiantou:before { - content: "\e7bc"; -} - -.icon-ziyongshijuan:before { - content: "\e7b3"; -} - -.icon-yigongkaishijuan:before { - content: "\e7bb"; -} - -.icon-shipin:before { - content: "\e7b4"; -} - -.icon-shixun2:before { - content: "\e7be"; -} - -.icon-fangda2:before { - content: "\e7ba"; -} - -.icon-fangzuobi:before { - content: "\e7b9"; -} - -.icon-shizhong:before { - content: "\e7b8"; -} - -.icon-shangchuanshipin1:before { - content: "\e7b7"; -} - -.icon-duigou1:before { - content: "\e7b2"; -} - -.icon-lianjie1:before { - content: "\e7b5"; -} - -.icon-zhangjie:before { - content: "\e7b6"; -} - -.icon-mobanguanli2:before { - content: "\e7b1"; -} - -.icon-fenzuzuoye2:before { - content: "\e7b0"; -} - -.icon-biyezuoye1:before { - content: "\e7af"; -} - -.icon-tongji3:before { - content: "\e7ae"; -} - -.icon-qiandao1:before { - content: "\e7ad"; -} - -.icon-fenban2:before { - content: "\e7ac"; -} - -.icon-taolun2:before { - content: "\e7ab"; -} - -.icon-shipinzhibo1:before { - content: "\e7aa"; -} - -.icon-kaoshishijuan1:before { - content: "\e7a9"; -} - -.icon-kaoshiwenjuan1:before { - content: "\e7a7"; -} - -.icon-xuexiziyuan1:before { - content: "\e7a8"; -} - -.icon-putongzuoye1:before { - content: "\e782"; -} - -.icon-shixunzuoye1:before { - content: "\e7a6"; -} - -.icon-Lastupdated:before { - content: "\e7a5"; -} - -.icon-CONTACTS:before { - content: "\e7a4"; -} - -.icon-SPONSORS:before { - content: "\e7a3"; -} - -.icon-FINALREPORTS:before { - content: "\e7a2"; -} - -.icon-STEERINGCOMMITTEE:before { - content: "\e7a1"; -} - -.icon-ORGANIZINGICSE-MOU:before { - content: "\e7a0"; -} - -.icon-INFLUENTIALPAPERS:before { - content: "\e79f"; -} - -.icon-BIBLIOGRAPHIES:before { - content: "\e79e"; -} - -.icon-PROCEEDINGS:before { - content: "\e79d"; -} - -.icon-HISTORY:before { - content: "\e79c"; -} - -.icon-CONDUCTSAFETY:before { - content: "\e79b"; -} - -.icon-EDISTATEMENT:before { - content: "\e79a"; -} - -.icon-MAILINGLIST:before { - content: "\e799"; -} - -.icon-HOME:before { - content: "\e798"; -} - -.icon-zhunbeizhong:before { - content: "\e797"; -} - -.icon-yunhangzhong:before { - content: "\e796"; -} - -.icon-yitongguo:before { - content: "\e795"; -} - -.icon-weitongguo:before { - content: "\e794"; -} - -.icon-gongzuoliu:before { - content: "\e793"; -} - -.icon-gengxinchengji:before { - content: "\e790"; -} - -.icon-wenjian1:before { - content: "\e78e"; -} - -.icon-bianji6:before { - content: "\e78d"; -} - -.icon-tongji2:before { - content: "\e78c"; -} - -.icon-qiandao:before { - content: "\e78b"; -} - -.icon-fenban1:before { - content: "\e78a"; -} - -.icon-taolun1:before { - content: "\e789"; -} - -.icon-shipinzhibo:before { - content: "\e788"; -} - -.icon-xuexiziyuan:before { - content: "\e787"; -} - -.icon-kaoshiwenjuan:before { - content: "\e786"; -} - -.icon-kaoshishijuan:before { - content: "\e785"; -} - -.icon-biyezuoye:before { - content: "\e784"; -} - -.icon-fenzuzuoye1:before { - content: "\e783"; -} - -.icon-shixunzuoye:before { - content: "\e781"; -} - -.icon-gonggaolan:before { - content: "\e780"; -} - -.icon-zuzhixiangmu:before { - content: "\e77f"; -} - -.icon-zuzhichengyuan:before { - content: "\e774"; -} - -.icon-hebingqingqiu:before { - content: "\e7f2"; -} - -.icon-shixunxiangqing:before { - content: "\e775"; -} - -.icon-lijifabu:before { - content: "\e776"; -} - -.icon-kaiqizhong:before { - content: "\e777"; -} - -.icon-daochu:before { - content: "\e778"; -} - -.icon-yijiandianping:before { - content: "\e779"; -} - -.icon-chakanshixunbaogao:before { - content: "\e77a"; -} - -.icon-tijiaozongjie:before { - content: "\e77b"; -} - -.icon-daimachazhong:before { - content: "\e77c"; -} - -.icon-bianjizuoye:before { - content: "\e77d"; -} - -.icon-lijijiezhi:before { - content: "\e77e"; -} - -.icon-jingxiang:before { - content: "\e773"; -} - -.icon-xinjian1:before { - content: "\e772"; -} - -.icon-leftarrow:before { - content: "\e771"; -} - -.icon-zhongqingdianxinicon10:before { - content: "\e770"; -} - -.icon-huabanfuben:before { - content: "\eb7b"; -} - -.icon-check-square-fill3x:before { - content: "\e76e"; -} - -.icon-play-square-fill3x:before { - content: "\e76f"; -} - -.icon-xuanzhongkuang:before { - content: "\e76c"; -} - -.icon-weixuankuang:before { - content: "\e76d"; -} - -.icon-daochu3x:before { - content: "\e75f"; -} - -.icon-lijijiezhi3x:before { - content: "\e760"; -} - -.icon-bianjishijuan3x:before { - content: "\e761"; -} - -.icon-dahuizhongzuo3x:before { - content: "\e762"; -} - -.icon-filedone2X:before { - content: "\e764"; -} - -.icon-filesync3x:before { - content: "\e766"; -} - -.icon-bianzu19xia3x:before { - content: "\e767"; -} - -.icon-bianzu193x:before { - content: "\e768"; -} - -.icon-Search3x:before { - content: "\e769"; -} - -.icon-bianzu19:before { - content: "\e76a"; -} - -.icon-TAR:before { - content: "\e75e"; -} - -.icon-ZIP:before { - content: "\e75d"; -} - -.icon-wenjianjia1:before { - content: "\e75c"; -} - -.icon-wenjia:before { - content: "\e75b"; -} - -.icon-xiazai2:before { - content: "\e75a"; -} - -.icon-fuzhi5:before { - content: "\e759"; -} - -.icon-cangku:before { - content: "\e758"; -} - -.icon-gongxianzhe:before { - content: "\e757"; -} - -.icon-fahangban:before { - content: "\e755"; -} - -.icon-biaoqian3:before { - content: "\e754"; -} - -.icon-fenzhi1:before { - content: "\e753"; -} - -.icon-xiangmuleibie:before { - content: "\e751"; -} - -.icon-ziyuan1:before { - content: "\e752"; -} - -.icon-xiangmuleixing:before { - content: "\e750"; -} - -.icon-xuanzhong:before { - content: "\e74b"; -} - -.icon-weixuanzhong:before { - content: "\e74d"; -} - -.icon-fuzhi4:before { - content: "\e74a"; -} - -.icon-shezhi4:before { - content: "\e74e"; -} - -.icon-bianji2X:before { - content: "\e749"; -} - -.icon-duohanggongshi:before { - content: "\e748"; -} - -.icon-hangneigongshi:before { - content: "\e747"; -} - -.icon-quxiaozhiding:before { - content: "\e746"; -} - -.icon-zhiding1:before { - content: "\e745"; -} - -.icon-xinjianjianliwodejianli:before { - content: "\e744"; -} - -.icon-huifu:before { - content: "\e743"; -} - -.icon-tupian:before { - content: "\e742"; -} - -.icon-wentiliebiao:before { - content: "\e741"; -} - -.icon-zhicheng:before { - content: "\e73f"; -} - -.icon-upload:before { - content: "\e76b"; -} - -.icon-fabuzhiwei:before { - content: "\e73e"; -} - -.icon-zhiweiyaoqiu:before { - content: "\e73d"; -} - -.icon-gongsijieshao:before { - content: "\e73c"; -} - -.icon-gongsidizhi:before { - content: "\e73b"; -} - -.icon-jubushuaxinjiantou:before { - content: "\e73a"; -} - -.icon-fanhui:before { - content: "\e739"; -} - -.icon-tongji1:before { - content: "\e738"; -} - -.icon-qiandao-1:before { - content: "\e736"; -} - -.icon-xiajiantou2:before { - content: "\e737"; -} - -.icon-qiandao-:before { - content: "\e735"; -} - -.icon-yidong:before { - content: "\e734"; -} - -.icon-xiayi1:before { - content: "\e732"; -} - -.icon-shangyi1:before { - content: "\e731"; -} - -.icon-xiayi:before { - content: "\e730"; -} - -.icon-shangyi:before { - content: "\e72f"; -} - -.icon-bianji5:before { - content: "\e72e"; -} - -.icon-shanchu3:before { - content: "\e72d"; -} - -.icon-xuanze:before { - content: "\e72c"; -} - -.icon-bianji4:before { - content: "\e72a"; -} - -.icon-bangding:before { - content: "\e72b"; -} - -.icon-bofang2:before { - content: "\e729"; -} - -.icon-weibiaoti1:before { - content: "\e728"; -} - -.icon-jinggao2:before { - content: "\e721"; -} - -.icon-lubiaosignpost3:before { - content: "\e722"; -} - -.icon-rili:before { - content: "\e756"; -} - -.icon-bianji3:before { - content: "\e723"; -} - -.icon-yiguanbi:before { - content: "\e724"; -} - -.icon-yiguanbi1:before { - content: "\e725"; -} - -.icon-lajitong:before { - content: "\e726"; -} - -.icon-dianjiliang:before { - content: "\e71f"; -} - -.icon-bofang1:before { - content: "\e720"; -} - -.icon-chushihua:before { - content: "\e71c"; -} - -.icon-ceshiji:before { - content: "\e71e"; -} - -.icon-guolvqi:before { - content: "\e71b"; -} - -.icon-jiashang1:before { - content: "\e719"; -} - -.icon-jianqu1:before { - content: "\e718"; -} - -.icon-jiashang:before { - content: "\e717"; -} - -.icon-jianqu:before { - content: "\e716"; -} - -.icon-shanchu2:before { - content: "\e715"; -} - -.icon-shijuan1:before { - content: "\e714"; -} - -.icon-zuoyoutuodong:before { - content: "\e712"; -} - -.icon-shangxiatuodong:before { - content: "\e713"; -} - -.icon-bianzu2:before { - content: "\e711"; -} - -.icon-fuzhi3:before { - content: "\e710"; -} - -.icon-jianhao:before { - content: "\e70f"; -} - -.icon-shitilan:before { - content: "\e70e"; -} - -.icon-shanchu1:before { - content: "\e70d"; -} - -.icon-jiexi:before { - content: "\e70c"; -} - -.icon-gongkai:before { - content: "\e70b"; -} - -.icon-bianji2:before { - content: "\e709"; -} - -.icon-fangda:before { - content: "\e707"; -} - -.icon-suoxiao2:before { - content: "\e701"; -} - -.icon-jiantou9:before { - content: "\e700"; -} - -.icon-changyongtubiao-xianxingdaochu-zhuanqu-:before { - content: "\e74c"; -} - -.icon-wenti:before { - content: "\e7dc"; -} - -.icon-chuangjianzhe1:before { - content: "\e6da"; -} - -.icon-shu1:before { - content: "\e6dc"; -} - -.icon-biaoqian2:before { - content: "\e6dd"; -} - -.icon-jilu1:before { - content: "\e6de"; -} - -.icon-tuijian1:before { - content: "\e6df"; -} - -.icon-jinggao1:before { - content: "\e6e0"; -} - -.icon-dianzan2:before { - content: "\e6e1"; -} - -.icon-pinglun1:before { - content: "\e6e2"; -} - -.icon-duigou:before { - content: "\e6e3"; -} - -.icon-tishi2:before { - content: "\e6e4"; -} - -.icon-bianji_Hover:before { - content: "\e6e5"; -} - -.icon-shangyi_Hover:before { - content: "\e6e6"; -} - -.icon-shanchu_moren:before { - content: "\e6e7"; -} - -.icon-xiayi_Hover:before { - content: "\e6e8"; -} - -.icon-shanchu_Hover:before { - content: "\e6e9"; -} - -.icon-xiayi_moren:before { - content: "\e6ea"; -} - -.icon-bianji_moren:before { - content: "\e6eb"; -} - -.icon-huifuchushidaima:before { - content: "\e6ec"; -} - -.icon-zaicizairu:before { - content: "\e6ed"; -} - -.icon-kaiguan:before { - content: "\e6ef"; -} - -.icon-mulu:before { - content: "\e6f0"; -} - -.icon-suoxiao1:before { - content: "\e6f2"; -} - -.icon-kuoda:before { - content: "\e6f3"; -} - -.icon-shezhi3:before { - content: "\e6f4"; -} - -.icon-yincang2:before { - content: "\e6f5"; -} - -.icon-xiaoxi11:before { - content: "\e6f6"; -} - -.icon-bianzu1:before { - content: "\e6f7"; -} - -.icon-xianshimima:before { - content: "\e6f9"; -} - -.icon-yincangmima:before { - content: "\e6fa"; -} - -.icon-fuzhi2:before { - content: "\e6fb"; -} - -.icon-xingzhuangjiehe:before { - content: "\e6fc"; -} - -.icon-xingzhuangjiehebeifen:before { - content: "\e6fd"; -} - -.icon-shangchuan:before { - content: "\e6fe"; -} - -.icon-tiaozhan:before { - content: "\e6ff"; -} - -.icon-youhua:before { - content: "\e702"; -} - -.icon-jiesuo:before { - content: "\e703"; -} - -.icon-suo1:before { - content: "\e704"; -} - -.icon-bianzu11:before { - content: "\e706"; -} - -.icon-biji:before { - content: "\e70a"; -} - -.icon-zhiding:before { - content: "\e6d9"; -} - -.icon-leixing:before { - content: "\e6d5"; -} - -.icon-biaoqianjiantou:before { - content: "\e6d7"; -} - -.icon-jiazaishibai1:before { - content: "\e6d6"; -} - -.icon-qiyezhanghao:before { - content: "\e6cc"; -} - -.icon-gerenzhanghao:before { - content: "\e6cd"; -} - -.icon-shenglvehao:before { - content: "\e708"; -} - -.icon-shangjiantou-tianchong:before { - content: "\e733"; -} - -.icon-wancheng1:before { - content: "\e6cb"; -} - -.icon-jinzhi:before { - content: "\e6d4"; -} - -.icon-biaoqian1:before { - content: "\e6ce"; -} - -.icon-jilu:before { - content: "\e6cf"; -} - -.icon-shu:before { - content: "\e6d0"; -} - -.icon-tuijian:before { - content: "\e6d1"; -} - -.icon-chuangjianzhe:before { - content: "\e6d2"; -} - -.icon-bangdingshoujihao:before { - content: "\e6ca"; -} - -.icon-liulan:before { - content: "\e6c7"; -} - -.icon-pinglun:before { - content: "\e6c8"; -} - -.icon-bokeyuan:before { - content: "\e6c6"; -} - -.icon-weibiaoti105:before { - content: "\e6c0"; -} - -.icon-guanzhu:before { - content: "\e6c5"; -} - -.icon-tongji:before { - content: "\e6bf"; -} - -.icon-zhuye:before { - content: "\e6d3"; -} - -.icon-fuzhi1:before { - content: "\e800"; -} - -.icon-projectx:before { - content: "\e6c4"; -} - -.icon-hostingx2:before { - content: "\e6c3"; -} - -.icon-communityx:before { - content: "\e6c2"; -} - -.icon-detectionx:before { - content: "\e6c1"; -} - -.icon-lianjie:before { - content: "\e7db"; -} - -.icon-nenghaofenxix:before { - content: "\e6be"; -} - -.icon-healthmode:before { - content: "\e60e"; -} - -.icon-shequ:before { - content: "\e6bc"; -} - -.icon-gongcheng:before { - content: "\e60f"; -} - -.icon-danxuanxuanzhong1:before { - content: "\e6bd"; -} - -.icon-huodong:before { - content: "\e6bb"; -} - -.icon-menu_voucher:before { - content: "\e6b8"; -} - -.icon-menu_events:before { - content: "\e6b9"; -} - -.icon-menu_map:before { - content: "\e6ba"; -} - -.icon-menu_people:before { - content: "\e6b7"; -} - -.icon-menu_date:before { - content: "\e6a9"; -} - -.icon-yunweijiankong:before { - content: "\e6a3"; -} - -.icon-gongyiliucheng:before { - content: "\e6a5"; -} - -.icon-zhiliangkongzhi:before { - content: "\e6a6"; -} - -.icon-shebeiguanli:before { - content: "\e6a7"; -} - -.icon-shengmingzhouqi:before { - content: "\e6a8"; -} - -.icon-wuquanxian:before { - content: "\e6a2"; -} - -.icon-xuexizhongxin:before { - content: "\e6b6"; -} - -.icon-kecheng:before { - content: "\e60a"; -} - -.icon-yemian:before { - content: "\e6b1"; -} - -.icon-bianzu:before { - content: "\e6b5"; -} - -.icon-Page-1:before { - content: "\e6ae"; -} - -.icon-Page-3:before { - content: "\e6af"; -} - -.icon-Page:before { - content: "\e6b0"; -} - -.icon-xiaoxi1:before { - content: "\e6a4"; -} - -.icon-bianji1:before { - content: "\e6a1"; -} - -.icon-renzhengshangjia:before { - content: "\e6ab"; -} - -.icon-shenfenzhenghaomaguizheng:before { - content: "\e6ad"; -} - -.icon-yonghujiaose_wushuju:before { - content: "\e69e"; -} - -.icon-paixu1:before { - content: "\e6aa"; -} - -.icon-kong:before { - content: "\e69f"; -} - -.icon-shouji:before { - content: "\e69d"; -} - -.icon-yinhangqia1:before { - content: "\e697"; -} - -.icon-shezhi2:before { - content: "\e698"; -} - -.icon-mingpian:before { - content: "\e69b"; -} - -.icon-jinggao:before { - content: "\e696"; -} - -.icon-yincang1:before { - content: "\e9b5"; -} - -.icon-laba:before { - content: "\e608"; -} - -.icon-kehuliuyan:before { - content: "\e71a"; -} - -.icon-cuban2shangchuanyunduan:before { - content: "\e86d"; -} - -.icon-yincang:before { - content: "\e6a0"; -} - -.icon-xianshi:before { - content: "\e695"; -} - -.icon-renzhengxinxi:before { - content: "\e693"; -} - -.icon-jibenxinxi:before { - content: "\e694"; -} - -.icon-anquanshezhi:before { - content: "\e606"; -} - -.icon-moban:before { - content: "\e692"; -} - -.icon-xiazai1:before { - content: "\e6ac"; -} - -.icon-edit:before { - content: "\e691"; -} - -.icon-tianjiachengyuan:before { - content: "\e69a"; -} - -.icon-tishi1:before { - content: "\e690"; -} - -.icon-biaoqian:before { - content: "\e74f"; -} - -.icon-sandian:before { - content: "\e6f8"; -} - -.icon-fuzhi:before { - content: "\e68f"; -} - -.icon-zhangjie1:before { - content: "\e68e"; -} - -.icon-tianjiadaohang:before { - content: "\e604"; -} - -.icon-shangchuantupian1:before { - content: "\e7fd"; -} - -.icon-pdf:before { - content: "\e740"; -} - -.icon-shezhi1:before { - content: "\e71d"; -} - -.icon-zhiliangfenxi:before { - content: "\e68d"; -} - -.icon-shixundaibeijing:before { - content: "\e68c"; -} - -.icon-chenggong:before { - content: "\e68b"; -} - -.icon-trustie:before { - content: "\e681"; -} - -.icon-congshulianjie:before { - content: "\e6ee"; -} - -.icon-zhongzhi2:before { - content: "\e68a"; -} - -.icon-shijian:before { - content: "\e69c"; -} - -.icon-csdn:before { - content: "\e602"; -} - -.icon-weibo:before { - content: "\e688"; -} - -.icon-StackOverflow:before { - content: "\e689"; -} - -.icon-linkedin:before { - content: "\e60c"; -} - -.icon-github:before { - content: "\e763"; -} - -.icon-net:before { - content: "\e607"; -} - -.icon-mstest:before { - content: "\e686"; -} - -.icon-vs:before { - content: "\e682"; -} - -.icon-base:before { - content: "\e683"; -} - -.icon-dengluIpjiankong:before { - content: "\e684"; -} - -.icon-itsm-liuchengguanli:before { - content: "\e685"; -} - -.icon-reset:before { - content: "\e7fe"; -} - -.icon-zhongzhi1:before { - content: "\e609"; -} - -.icon-default:before { - content: "\e67f"; -} - -.icon-timefill:before { - content: "\e679"; -} - -.icon-daimapeizhir:before { - content: "\e727"; -} - -.icon-luyou:before { - content: "\e677"; -} - -.icon-zhinengjiankongtixi:before { - content: "\e6b4"; -} - -.icon-phpkaifa:before { - content: "\e67e"; -} - -.icon-SQLserver:before { - content: "\e705"; -} - -.icon-mongodb1:before { - content: "\e60b"; -} - -.icon-css3:before { - content: "\ea8b"; -} - -.icon-html5:before { - content: "\eb10"; -} - -.icon-linux:before { - content: "\e765"; -} - -.icon-dashujucunchu:before { - content: "\e678"; -} - -.icon-VPN:before { - content: "\e601"; -} - -.icon-jquery:before { - content: "\e67a"; -} - -.icon-docker:before { - content: "\e67b"; -} - -.icon-python:before { - content: "\e67c"; -} - -.icon-php:before { - content: "\e67d"; -} - -.icon-java:before { - content: "\f1d7"; -} - -.icon-mysql:before { - content: "\ec6d"; -} - -.icon-weizhi:before { - content: "\e676"; -} - -.icon-fork:before { - content: "\e6b3"; -} - -.icon-jia:before { - content: "\e605"; -} - -.icon-gengduo1:before { - content: "\e7f9"; -} - -.icon-yinhangqia:before { - content: "\e675"; -} - -.icon-zuobiao:before { - content: "\e674"; -} - -.icon-roundclose:before { - content: "\e673"; -} - -.icon-roundaddfill:before { - content: "\e6d8"; -} - -.icon-tianjia:before { - content: "\e672"; -} - -.icon-triangle:before { - content: "\e600"; -} - -.icon-suo:before { - content: "\e6c9"; -} - -.icon-biyezhuanhuan:before { - content: "\e6f1"; -} - -.icon-weibiaoti12:before { - content: "\e671"; -} - -.icon-wenhao:before { - content: "\e680"; -} - -.icon-31:before { - content: "\e6b2"; -} - -.icon-qizhi:before { - content: "\e699"; -} - -.icon-fujian:before { - content: "\e670"; -} - -.icon-shezhi:before { - content: "\e66f"; -} - -.icon-wanchenggouxuan:before { - content: "\e66e"; -} - -.icon-xinzengtishi:before { - content: "\e66c"; -} - -.icon-htmal5icon19:before { - content: "\e66b"; -} - -.icon-xiazai18:before { - content: "\e627"; -} - -.icon-mail:before { - content: "\e66a"; -} - -.icon-weibiaoti-:before { - content: "\e60d"; -} - -.icon-sanjiaoxing-down:before { - content: "\e791"; -} - -.icon-sanjiaoxing-up:before { - content: "\e78f"; -} - -.icon-youjiang:before { - content: "\e792"; -} - -.icon-xiajiang:before { - content: "\e669"; -} - -.icon-shixing:before { - content: "\e668"; -} - -.icon-kongxing:before { - content: "\e667"; -} - -.icon-xueyuanguanliyuan:before { - content: "\e666"; -} - -.icon-gengduo:before { - content: "\e665"; -} - -.icon-xiangxiayi:before { - content: "\e663"; -} - -.icon-xiangshangyi:before { - content: "\e664"; -} - -.icon-chengyuanguanli:before { - content: "\e662"; -} - -.icon-caidan:before { - content: "\e661"; -} - -.icon-shijuan:before { - content: "\e65b"; -} - -.icon-dongtai:before { - content: "\e660"; -} - -.icon-wenjuan:before { - content: "\e659"; -} - -.icon-taolun:before { - content: "\e65a"; -} - -.icon-fenban:before { - content: "\e65f"; -} - -.icon-putongzuoye:before { - content: "\e65c"; -} - -.icon-fenzuzuoye:before { - content: "\e65d"; -} - -.icon-bianjidaibeijing:before { - content: "\e655"; -} - -.icon-bofang:before { - content: "\e656"; -} - -.icon-wancheng:before { - content: "\e658"; -} - -.icon-zuojiantou:before { - content: "\e652"; -} - -.icon-youjiantou:before { - content: "\e653"; -} - -.icon-shangjiantou:before { - content: "\e654"; -} - -.icon-zhankai:before { - content: "\e650"; -} - -.icon-shousuo:before { - content: "\e651"; -} - -.icon-gonggao:before { - content: "\e63b"; -} - -.icon-wenjian:before { - content: "\e64f"; -} - -.icon-huifu1:before { - content: "\e64e"; -} - -.icon-fenzhi:before { - content: "\e610"; -} - -.icon-wangzhikelong:before { - content: "\e612"; -} - -.icon-xiazai:before { - content: "\e613"; -} - -.icon-daima:before { - content: "\e615"; -} - -.icon-tijiaojilu:before { - content: "\e616"; -} - -.icon-xuanzeti:before { - content: "\e617"; -} - -.icon-bianji:before { - content: "\e618"; -} - -.icon-xiangshang:before { - content: "\e61a"; -} - -.icon-shanchudiao:before { - content: "\e620"; -} - -.icon-shangshengpaixu:before { - content: "\e621"; -} - -.icon-banbenku:before { - content: "\e622"; -} - -.icon-issue:before { - content: "\e623"; -} - -.icon-shangchuantupian:before { - content: "\e625"; -} - -.icon-ceping:before { - content: "\e626"; -} - -.icon-erweima:before { - content: "\e629"; -} - -.icon-yijianfankui:before { - content: "\e62a"; -} - -.icon-youxiangrenzheng:before { - content: "\e62b"; -} - -.icon-shoujirenzheng:before { - content: "\e62c"; -} - -.icon-zhiyerenzheng:before { - content: "\e62d"; -} - -.icon-shenfenrenzheng:before { - content: "\e62e"; -} - -.icon-pingfen:before { - content: "\e62f"; -} - -.icon-pingfen-xian:before { - content: "\e630"; -} - -.icon-zuoye:before { - content: "\e631"; -} - -.icon-tishicuowu:before { - content: "\e632"; -} - -.icon-ziyuan:before { - content: "\e633"; -} - -.icon-tishi:before { - content: "\e636"; -} - -.icon-chengyuan:before { - content: "\e63a"; -} - -.icon-xuanzhuan:before { - content: "\e63d"; -} - -.icon-shixun:before { - content: "\e63e"; -} - -.icon-suoxiao:before { - content: "\e63f"; -} - -.icon-xiajiantou:before { - content: "\e642"; -} - -.icon-gouxuan:before { - content: "\e644"; -} - -.icon-liulanyan:before { - content: "\e646"; -} - -.icon-jingyan:before { - content: "\e647"; -} - -.icon-shixunguanqia:before { - content: "\e648"; -} - -.icon-fabu:before { - content: "\e64a"; -} - -.icon-xiangxiayidong:before { - content: "\e64b"; -} - -.icon-xiangshangyidong:before { - content: "\e64c"; -} - -.icon-guanbi:before { - content: "\e64d"; -} - -.icon-xinjian:before { - content: "\e619"; -} - -.icon-xiaoxilingdang:before { - content: "\e641"; -} - -.icon-sousuo:before { - content: "\e643"; -} - -.icon-tianjiafangda:before { - content: "\e645"; -} - -.icon-jiangli:before { - content: "\e61b"; -} - -.icon-shanchu:before { - content: "\e61c"; -} - -.icon-yincangbiyan:before { - content: "\e61d"; -} - -.icon-kaisuo:before { - content: "\e61e"; -} - -.icon-guansuo:before { - content: "\e61f"; -} - -.icon-tpixiaoxitixing:before { - content: "\e624"; -} - -.icon-dianzan:before { - content: "\e634"; -} - -.icon-dianzan-xian:before { - content: "\e635"; -} - -.icon-fanhuishangcidaima:before { - content: "\e637"; -} - -.icon-zhongzhi:before { - content: "\e638"; -} - -.icon-zhengyan:before { - content: "\e649"; -} - -.icon-expand:before { - content: "\e6db"; -} - -.icon-compress:before { - content: "\e65e"; -} - -.icon-liwu:before { - content: "\e611"; +.icon-a-fork1:before { + content: "\e98c"; } .icon-dianzan1:before { - content: "\e639"; + content: "\e983"; } -.icon-dianzan11:before { - content: "\e66d"; +.icon-yonghuming:before { + content: "\e984"; } -.icon-gift:before { - content: "\e63c"; +.icon-youxiang2:before { + content: "\e985"; } -.icon-xiaoxi:before { - content: "\e614"; +.icon-tongzhi1:before { + content: "\e981"; +} + +.icon-xinzeng:before { + content: "\e982"; +} + +.icon-a-fenzhi1:before { + content: "\e980"; +} + +.icon-yunxiazai:before { + content: "\e97b"; +} + +.icon-lunwen1:before { + content: "\e97c"; +} + +.icon-zhuanli2:before { + content: "\e97d"; +} + +.icon-jiantou2:before { + content: "\e97e"; +} + +.icon-jiantou-you-cuxiantiao:before { + content: "\e97f"; +} + +.icon-gongxianquequan:before { + content: "\e979"; +} + +.icon-xuanzhong5:before { + content: "\e97a"; +} + +.icon-big-circle:before { + content: "\e978"; +} + +.icon-gitee:before { + content: "\e974"; +} + +.icon-gitea:before { + content: "\e975"; +} + +.icon-coding:before { + content: "\e976"; +} + +.icon-github1:before { + content: "\e977"; +} + +.icon-gitlab:before { + content: "\e973"; +} + +.icon-a-lianhe6:before { + content: "\e972"; +} + +.icon-a-22ziliaoshouce-xianxing:before { + content: "\e971"; +} + +.icon-changjiantou:before { + content: "\e970"; +} + +.icon-bangzhuzhongxinicon2:before { + content: "\e96f"; +} + +.icon-liulan1:before { + content: "\e96e"; +} + +.icon-a-zu2044:before { + content: "\e96d"; +} + +.icon-cuo:before { + content: "\e96c"; +} + +.icon-dui:before { + content: "\e96b"; +} + +.icon-zanting:before { + content: "\e96a"; +} + +.icon-cangkuyuyanicon:before { + content: "\e962"; +} + +.icon-dongtaiicon1:before { + content: "\e963"; +} + +.icon-jingxuanxiangmu:before { + content: "\e964"; +} + +.icon-zuzhichengyuan1:before { + content: "\e965"; +} + +.icon-zuzhijieshao:before { + content: "\e966"; +} + +.icon-zuzhituandui:before { + content: "\e967"; +} + +.icon-shezhi6:before { + content: "\e968"; +} + +.icon-zidingyi:before { + content: "\e969"; +} + +.icon-a-zu37:before { + content: "\e961"; +} + +.icon-guanzhuicon:before { + content: "\e95b"; +} + +.icon-yidianzan_icon:before { + content: "\e95c"; +} + +.icon-morenfuke_icon1:before { + content: "\e95d"; +} + +.icon-yiguanzhuicon:before { + content: "\e95e"; +} + +.icon-yifuke_icon:before { + content: "\e95f"; +} + +.icon-xingzhuang:before { + content: "\e960"; +} + +.icon-kaiqi:before { + content: "\e95a"; +} + +.icon-a-31shijian:before { + content: "\e944"; +} + +.icon-chengyuan2:before { + content: "\e945"; +} + +.icon-a-bianji12:before { + content: "\e946"; +} + +.icon-fuzhi-shanchu:before { + content: "\e947"; +} + +.icon-chuangjianqianbao:before { + content: "\e948"; +} + +.icon-biaoji2:before { + content: "\e949"; +} + +.icon-lichengbeiicon1:before { + content: "\e94a"; +} + +.icon-biaoji:before { + content: "\e94b"; +} + +.icon-fenzhi3:before { + content: "\e94c"; +} + +.icon-riqi:before { + content: "\e94d"; +} + +.icon-ruliriqixiao:before { + content: "\e94e"; +} + +.icon-shanchu8:before { + content: "\e94f"; +} + +.icon-sousuo6:before { + content: "\e950"; +} + +.icon-quanxian:before { + content: "\e951"; +} + +.icon-lichengbeiicon2:before { + content: "\e952"; +} + +.icon-xinjian3:before { + content: "\e953"; +} + +.icon-xuanzhong4:before { + content: "\e954"; +} + +.icon-youxian:before { + content: "\e955"; +} + +.icon-a-xiaoxi1:before { + content: "\e956"; +} + +.icon-yixiuicon2:before { + content: "\e957"; +} + +.icon-xiugaibaobiaomoban:before { + content: "\e958"; +} + +.icon-a-zu1614:before { + content: "\e959"; +} + +.icon-BOTpeizhi:before { + content: "\e942"; +} + +.icon-kaifabot:before { + content: "\e943"; +} + +.icon-jiqiren:before { + content: "\e940"; +} + +.icon-a-jiqirenzhineng-02:before { + content: "\e941"; +} + +.icon-yuyue-lishi-shijian:before { + content: "\e93f"; +} + +.icon-a-duobianxing1:before { + content: "\e93c"; +} + +.icon-a-duobianxing2:before { + content: "\e93d"; +} + +.icon-sousuo5:before { + content: "\e93e"; +} + +.icon-baogaoppt:before { + content: "\e93b"; +} + +.icon-gailan2:before { + content: "\e93a"; +} + +.icon-bianji7:before { + content: "\e939"; +} + +.icon-ROBOT:before { + content: "\e937"; +} + +.icon-a-zu1404:before { + content: "\e938"; +} + +.icon-tuichuicon:before { + content: "\e936"; +} + +.icon-bangzhuzhongxinicon1:before { + content: "\e935"; +} + +.icon-ketixiangqingicon:before { + content: "\e92b"; +} + +.icon-bianjiicon:before { + content: "\e92c"; +} + +.icon-baomingxiangqingicon:before { + content: "\e92d"; +} + +.icon-sousuo4:before { + content: "\e92e"; +} + +.icon-quxiaoshenqingicon:before { + content: "\e92f"; +} + +.icon-xiala3:before { + content: "\e930"; +} + +.icon-tianjia_tianchong:before { + content: "\e931"; +} + +.icon-a-shanchu2:before { + content: "\e932"; +} + +.icon-shanchuicon3:before { + content: "\e933"; +} + +.icon-shenqingketiicon:before { + content: "\e934"; +} + +.icon-weixin:before { + content: "\e92a"; +} + +.icon-zanwushuju:before { + content: "\e928"; +} + +.icon-fuwuicon:before { + content: "\e929"; +} + +.icon-personal-center:before { + content: "\e927"; +} + +.icon-bangzhuzhongxinicon:before { + content: "\e926"; +} + +.icon-kaiyuanxiangmu:before { + content: "\e91d"; +} + +.icon-luntanjiaoliu:before { + content: "\e91e"; +} + +.icon-wangzhanpeizhi:before { + content: "\e91f"; +} + +.icon-weixuanze-chuangkekongjian:before { + content: "\e920"; +} + +.icon-tubiao:before { + content: "\e921"; +} + +.icon-gonggaofabu:before { + content: "\e922"; +} + +.icon-jingsaihuodong:before { + content: "\e923"; +} + +.icon-yonghuguanli:before { + content: "\e924"; +} + +.icon-shenpi:before { + content: "\e925"; +} + +.icon-zhuanli1:before { + content: "\e918"; +} + +.icon-daimaicon:before { + content: "\e91c"; +} + +.icon-jiangxiangicon:before { + content: "\e916"; +} + +.icon-shuju:before { + content: "\e917"; +} + +.icon-wendang:before { + content: "\e919"; +} + +.icon-lunwen:before { + content: "\e91a"; +} + +.icon-zhuanli:before { + content: "\e91b"; +} + +.icon-gailan1:before { + content: "\e914"; +} + +.icon-tuandui:before { + content: "\e915"; +} + +.icon-icon2:before { + content: "\e912"; +} + +.icon-a-21:before { + content: "\e913"; +} + +.icon-a-2:before { + content: "\e90f"; +} + +.icon-a-3:before { + content: "\e910"; +} + +.icon-icon1:before { + content: "\e911"; +} + +.icon-ioon:before { + content: "\e90e"; +} + +.icon-shanchu_important:before { + content: "\f1d8"; +} + +.icon-shanchu_tc_icon1:before { + content: "\e90c"; +} + +.icon-zhuanjiaicon:before { + content: "\e90d"; +} + +.icon-shengming:before { + content: "\e90b"; +} + +.icon-chenggong1:before { + content: "\e907"; +} + +.icon-a-bitian2x1:before { + content: "\e908"; +} + +.icon-xiala1:before { + content: "\e909"; +} + +.icon-xiala2:before { + content: "\e90a"; +} + +.icon-jiantou1:before { + content: "\e905"; +} + +.icon-zhangjieicon:before { + content: "\e8fe"; +} + +.icon-chengyuan1:before { + content: "\e903"; +} + +.icon-a-shangchuan2x:before { + content: "\e8f9"; +} + +.icon-shanchu7:before { + content: "\e8fa"; +} + +.icon-zuohuabeifen:before { + content: "\e8fb"; +} + +.icon-a-bianji11:before { + content: "\e8f4"; +} + +.icon-a-bitian2x:before { + content: "\e8f5"; +} + +.icon-a-zuohua2x:before { + content: "\e8f7"; +} + +.icon-lianjie3:before { + content: "\e8f8"; +} + +.icon-zhishitupu:before { + content: "\e8fc"; +} + +.icon-jisuanji1:before { + content: "\e8fd"; +} + +.icon-dianzi1:before { + content: "\e8ff"; +} + +.icon-junshililun1:before { + content: "\e900"; +} + +.icon-ruanjiangongcheng1:before { + content: "\e901"; +} + +.icon-yixue1:before { + content: "\e902"; +} + +.icon-tongxin1:before { + content: "\e904"; +} + +.icon-zhengcefagui1:before { + content: "\e906"; +} + +.icon-dashuju:before { + content: "\e8f3"; +} + +.icon-rengongzhineng:before { + content: "\e8f6"; +} + +.icon-a-shuangyinhao12x:before { + content: "\e8f2"; +} + +.icon-dingbu:before { + content: "\e8ee"; +} + +.icon-bangzhu1:before { + content: "\e8ef"; +} + +.icon-yijianfankui2:before { + content: "\e8f0"; +} + +.icon-fenxiang:before { + content: "\e8f1"; +} + +.icon-dizhi:before { + content: "\e8eb"; +} + +.icon-youxiang1:before { + content: "\e8ec"; +} + +.icon-dianhuaicon:before { + content: "\e8ed"; +} + +.icon-tianjiaicon:before { + content: "\e8e8"; +} + +.icon-lingshengicon:before { + content: "\e8ea"; +} + +.icon-gengduoicon:before { + content: "\e8e5"; +} + +.icon-shijianicon:before { + content: "\e8e7"; +} + +.icon-mimaicon:before { + content: "\e8e1"; +} + +.icon-gouicon:before { + content: "\e8e2"; +} + +.icon-zhankaiicon:before { + content: "\e8e3"; +} + +.icon-wenjian7:before { + content: "\e8e0"; +} + +.icon-xiangyoujiantou:before { + content: "\e8de"; +} + +.icon-xiangzuojiantou:before { + content: "\e8df"; +} + +.icon-a-liulanicon2x:before { + content: "\e8dd"; +} + +.icon-wenjianicon:before { + content: "\e8dc"; +} + +.icon-a-yuanquan2x:before { + content: "\e8db"; +} + +.icon-xiangmubiaoqian:before { + content: "\e8da"; +} + +.icon-icon:before { + content: "\e8ce"; +} + +.icon-tar:before { + content: "\e8cf"; +} + +.icon-a-fuzhi2:before { + content: "\e8d0"; +} + +.icon-fujian1:before { + content: "\e8d1"; +} + +.icon-a-bianji1:before { + content: "\e8d2"; +} + +.icon-banbenicon:before { + content: "\e8d3"; +} + +.icon-shanchuicon2:before { + content: "\e8d4"; +} + +.icon-a-lajitong_icon3x:before { + content: "\e8d5"; +} + +.icon-xialaanniu2:before { + content: "\e8d6"; +} + +.icon-xiazai-icon:before { + content: "\e8d7"; +} + +.icon-master_icon1:before { + content: "\e8d8"; +} + +.icon-shangchuanicon:before { + content: "\e8d9"; +} + +.icon-gerenziliao1:before { + content: "\e8c7"; +} + +.icon-lichengbeiicon:before { + content: "\e885"; +} + +.icon-cangkushezhiicon:before { + content: "\e889"; +} + +.icon-dongtaiicon:before { + content: "\e88a"; +} + +.icon-gongzuoliuicon:before { + content: "\e88b"; +} + +.icon-yixiuicon1:before { + content: "\e89b"; +} + +.icon-a-wikiicon1:before { + content: "\e8c6"; +} + +.icon-daimakuicon1:before { + content: "\e8c5"; +} + +.icon-wodetongzhi:before { + content: "\e8c8"; +} + +.icon-tongzhiguanli:before { + content: "\e8c9"; +} + +.icon-xuanzhong3:before { + content: "\e8ca"; +} + +.icon-xitongtongzhiicon:before { + content: "\e8cb"; +} + +.icon-xiaoxi2:before { + content: "\e8cc"; +} + +.icon-sshmiyue:before { + content: "\e8cd"; +} + +.icon-gerenziliao:before { + content: "\e8c4"; +} + +.icon-xinshouzhiyin:before { + content: "\e8e4"; +} + +.icon-xinjianxiangmu:before { + content: "\e8e6"; +} + +.icon-jiaruketang1:before { + content: "\e8e9"; +} + +.icon-xiangmugonggao:before { + content: "\e8c2"; +} + +.icon-chengguo:before { + content: "\e8c3"; +} + +.icon-chengjiaogonggao:before { + content: "\e8c0"; +} + +.icon-jishuzichan:before { + content: "\e8c1"; +} + +.icon-feibiaogonggao:before { + content: "\e8bc"; +} + +.icon-zhongbiaogonggao:before { + content: "\e8bd"; +} + +.icon-gengzhenggonggao:before { + content: "\e8be"; +} + +.icon-zhaobiaogonggao:before { + content: "\e8bf"; +} + +.icon-wenjian6:before { + content: "\e8ba"; +} + +.icon-wenjianjia4:before { + content: "\e8bb"; +} + +.icon-quxiaoguanzhu:before { + content: "\e89a"; +} + +.icon-dianzan_icon:before { + content: "\e8a2"; +} + +.icon-wenjian5:before { + content: "\e896"; +} + +.icon-wenjianjia3:before { + content: "\e8a9"; +} + +.icon-fuzhiicon:before { + content: "\e886"; +} + +.icon-zhuye-fill:before { + content: "\e876"; +} + +.icon-daimakuicon:before { + content: "\e884"; +} + +.icon-xinjian2:before { + content: "\e8b0"; +} + +.icon-xieyiicon:before { + content: "\e870"; +} + +.icon-neicunicon:before { + content: "\e891"; +} + +.icon-zishuwenjian_icon:before { + content: "\e8a6"; +} + +.icon-biaoqianicon:before { + content: "\e882"; +} + +.icon-a-bianji:before { + content: "\e883"; +} + +.icon-lianjieicon:before { + content: "\e887"; +} + +.icon-hebingqingqiuicon:before { + content: "\e888"; +} + +.icon-morendianzan_icon:before { + content: "\e88e"; +} + +.icon-muluicon:before { + content: "\e894"; +} + +.icon-a-shezhi:before { + content: "\e899"; +} + +.icon-tijiaoicon:before { + content: "\e89e"; +} + +.icon-morenguanzhu_ICON:before { + content: "\e89f"; +} + +.icon-xialaanniu1:before { + content: "\e8a4"; +} + +.icon-zuohuaicon:before { + content: "\e8b5"; +} + +.icon-master_icon:before { + content: "\e8b6"; +} + +.icon-morenfuke_icon:before { + content: "\e8b7"; +} + +.icon-a-wikiicon:before { + content: "\e8b8"; +} + +.icon-yixiuicon:before { + content: "\e8b9"; +} + +.icon-suofang:before { + content: "\e87f"; +} + +.icon-fangdaicon:before { + content: "\e881"; +} + +.icon-sousuo_icon1:before { + content: "\e873"; +} + +.icon-huanying_icon:before { + content: "\e878"; +} + +.icon-wenjianjia2:before { + content: "\e879"; +} + +.icon-shanchuicon1:before { + content: "\e87a"; +} + +.icon-qingqiuicon:before { + content: "\e871"; +} + +.icon-xiangyingicon:before { + content: "\e87c"; +} + +.icon-duoxuanxuanzhong:before { + content: "\e88f"; +} + +.icon-cuowuicon:before { + content: "\e890"; +} + +.icon-chenggongicon:before { + content: "\e892"; +} + +.icon-weixuanzhongxiangyingicon:before { + content: "\e893"; +} + +.icon-bitianicon:before { + content: "\e895"; +} + +.icon-weixuanzhongxiangmubiaoqianicon:before { + content: "\e897"; +} + +.icon-liebiaoicon:before { + content: "\e898"; +} + +.icon-xiezuozheguanliicon:before { + content: "\e8a1"; +} + +.icon-xuanzhongfenzhiicon:before { + content: "\e8a3"; +} + +.icon-xuanzhongjibenshezhiicon:before { + content: "\e8a5"; +} + +.icon-xuanzhongxiangmubiaoqianicon:before { + content: "\e8aa"; +} + +.icon-a-xuanzhongwebhookicon:before { + content: "\e8af"; +} + +.icon-shanchu_tc_icon:before { + content: "\e88c"; +} + +.icon-wiki_icon:before { + content: "\e88d"; +} + +.icon-daorumoban_icon:before { + content: "\e86f"; +} + +.icon-cuowu:before { + content: "\e872"; +} + +.icon-gengduo_icon:before { + content: "\e874"; +} + +.icon-fucengguanbi_icon:before { + content: "\e875"; +} + +.icon-shanchuicon:before { + content: "\e877"; +} + +.icon-sousuo_shanchuicon:before { + content: "\e87b"; +} + +.icon-sousuo_icon:before { + content: "\e87d"; +} + +.icon-wendangyulan_icon:before { + content: "\e87e"; +} + +.icon-xialaanniu:before { + content: "\e880"; +} + +.icon-erciqueren_icon:before { + content: "\e867"; +} + +.icon-xuanzhongssh_icon:before { + content: "\e868"; +} + +.icon-weixuanzhonganquanshezhi_icon:before { + content: "\e869"; +} + +.icon-weixuanzhongssh_icon:before { + content: "\e86a"; +} + +.icon-xuanzhonganquanshezhi_icon:before { + content: "\e86b"; +} + +.icon-shanchu_icon:before { + content: "\e86c"; +} + +.icon-liebiaossh_icon:before { + content: "\e86e"; +} + +.icon-file-submodule:before { + content: "\e866"; +} + +.icon-nv1:before { + content: "\e864"; +} + +.icon-nan1:before { + content: "\e865"; +} + +.icon-youxiang:before { + content: "\e8b2"; +} + +.icon-danwei:before { + content: "\e8a7"; +} + +.icon-daibanshixiang:before { + content: "\e8a8"; +} + +.icon-gailan:before { + content: "\e8ab"; +} + +.icon-nan:before { + content: "\e8ac"; +} + +.icon-nv:before { + content: "\e8ad"; +} + +.icon-gongzuoliu1:before { + content: "\e8ae"; +} + +.icon-shujutongji:before { + content: "\e8b1"; +} + +.icon-xiangmu:before { + content: "\e8b3"; +} + +.icon-zuzhi:before { + content: "\e8b4"; +} + +.icon-arrowRight:before { + content: "\e863"; +} + +.icon-jiantouloukong-zuo:before { + content: "\e861"; +} + +.icon-jiantouloukong-you:before { + content: "\e862"; +} + +.icon-fenxiang1:before { + content: "\e89c"; +} + +.icon-huidaodingbu1:before { + content: "\e89d"; +} + +.icon-bangzhu:before { + content: "\e8a0"; +} + +.icon-tijiao:before { + content: "\e860"; +} + +.icon-dataBase:before { + content: "\e85a"; +} + +.icon-wenjian4:before { + content: "\e85b"; +} + +.icon-lianjie2:before { + content: "\e85c"; +} + +.icon-fenzhi2:before { + content: "\e85d"; +} + +.icon-fenzhi-3:before { + content: "\e85e"; +} + +.icon-tianping:before { + content: "\e85f"; } .icon-chexiao:before { - content: "\e657"; + content: "\e657"; +} + +.icon-shanchu_Hover:before { + content: "\e6e9"; +} + +.icon-duoguanlianyufankui:before { + content: "\e7fb"; } .icon-wenjianjia:before { - content: "\e640"; -} \ No newline at end of file + content: "\e640"; +} + +.icon-xiayi_moren:before { + content: "\e6ea"; +} + +.icon-xiangmuguanli:before { + content: "\e7fc"; +} + +.icon-expand:before { + content: "\e6db"; +} + +.icon-bianji_moren:before { + content: "\e6eb"; +} + +.icon-ziyuanpaihanghetuijian:before { + content: "\e7ff"; +} + +.icon-compress:before { + content: "\e65e"; +} + +.icon-huifuchushidaima:before { + content: "\e6ec"; +} + +.icon-zhiliangjiance:before { + content: "\e801"; +} + +.icon-yincangbiyan:before { + content: "\e61d"; +} + +.icon-zaicizairu:before { + content: "\e6ed"; +} + +.icon-you1:before { + content: "\e802"; +} + +.icon-kaisuo:before { + content: "\e61e"; +} + +.icon-kaiguan:before { + content: "\e6ef"; +} + +.icon-xialajiantou:before { + content: "\e803"; +} + +.icon-guansuo:before { + content: "\e61f"; +} + +.icon-mulu:before { + content: "\e6f0"; +} + +.icon-zuo1:before { + content: "\e804"; +} + +.icon-tpixiaoxitixing:before { + content: "\e624"; +} + +.icon-suoxiao1:before { + content: "\e6f2"; +} + +.icon-jingsaihuodong1:before { + content: "\e805"; +} + +.icon-dianzan:before { + content: "\e634"; +} + +.icon-kuoda:before { + content: "\e6f3"; +} + +.icon-guanbi1:before { + content: "\e806"; +} + +.icon-dianzan-xian:before { + content: "\e635"; +} + +.icon-shezhi3:before { + content: "\e6f4"; +} + +.icon-kaiqishexiangtou:before { + content: "\e807"; +} + +.icon-fanhuishangcidaima:before { + content: "\e637"; +} + +.icon-yincang2:before { + content: "\e6f5"; +} + +.icon-kaiqifangqieping:before { + content: "\e808"; +} + +.icon-zhongzhi:before { + content: "\e638"; +} + +.icon-xiaoxi11:before { + content: "\e6f6"; +} + +.icon-xiugai:before { + content: "\e80a"; +} + +.icon-zhengyan:before { + content: "\e649"; +} + +.icon-bianzu1:before { + content: "\e6f7"; +} + +.icon-shanchu4:before { + content: "\e80b"; +} + +.icon-shanchu:before { + content: "\e61c"; +} + +.icon-xianshimima:before { + content: "\e6f9"; +} + +.icon-xinjianfenzu:before { + content: "\e80c"; +} + +.icon-jiangli:before { + content: "\e61b"; +} + +.icon-yincangmima:before { + content: "\e6fa"; +} + +.icon-xuanzhong2:before { + content: "\e80d"; +} + +.icon-xinjian:before { + content: "\e619"; +} + +.icon-fuzhi2:before { + content: "\e6fb"; +} + +.icon-fabu1:before { + content: "\e80e"; +} + +.icon-xiaoxilingdang:before { + content: "\e641"; +} + +.icon-xingzhuangjiehe:before { + content: "\e6fc"; +} + +.icon-xuanyong:before { + content: "\e80f"; +} + +.icon-sousuo:before { + content: "\e643"; +} + +.icon-xingzhuangjiehebeifen:before { + content: "\e6fd"; +} + +.icon-chexiaofenzu1:before { + content: "\e810"; +} + +.icon-tianjiafangda:before { + content: "\e645"; +} + +.icon-shangchuan:before { + content: "\e6fe"; +} + +.icon-shanchu22:before { + content: "\e811"; +} + +.icon-fenzhi:before { + content: "\e610"; +} + +.icon-tiaozhan:before { + content: "\e6ff"; +} + +.icon-chexiaogongkai:before { + content: "\e812"; +} + +.icon-wangzhikelong:before { + content: "\e612"; +} + +.icon-youhua:before { + content: "\e702"; +} + +.icon-jiexi1:before { + content: "\e813"; +} + +.icon-xiazai:before { + content: "\e613"; +} + +.icon-jiesuo:before { + content: "\e703"; +} + +.icon-chexiaogongxiang1:before { + content: "\e814"; +} + +.icon-daima:before { + content: "\e615"; +} + +.icon-suo1:before { + content: "\e704"; +} + +.icon-chexiaofabu:before { + content: "\e815"; +} + +.icon-tijiaojilu:before { + content: "\e616"; +} + +.icon-bianzu11:before { + content: "\e706"; +} + +.icon-bianji21:before { + content: "\e816"; +} + +.icon-xuanzeti:before { + content: "\e617"; +} + +.icon-biji:before { + content: "\e70a"; +} + +.icon-xinzengshiti:before { + content: "\e809"; +} + +.icon-bianji:before { + content: "\e618"; +} + +.icon-jiantou9:before { + content: "\e700"; +} + +.icon-sousuo1:before { + content: "\e817"; +} + +.icon-xiangshang:before { + content: "\e61a"; +} + +.icon-changyongtubiao-xianxingdaochu-zhuanqu-:before { + content: "\e74c"; +} + +.icon-kaoshishichang:before { + content: "\e818"; +} + +.icon-shanchudiao:before { + content: "\e620"; +} + +.icon-suoxiao2:before { + content: "\e701"; +} + +.icon-fanhuishijuan:before { + content: "\e819"; +} + +.icon-shangshengpaixu:before { + content: "\e621"; +} + +.icon-fangda:before { + content: "\e707"; +} + +.icon-guge:before { + content: "\e81a"; +} + +.icon-banbenku:before { + content: "\e622"; +} + +.icon-bianji2:before { + content: "\e709"; +} + +.icon-huohu:before { + content: "\e81b"; +} + +.icon-issue:before { + content: "\e623"; +} + +.icon-gongkai:before { + content: "\e70b"; +} + +.icon-IP:before { + content: "\e81c"; +} + +.icon-shangchuantupian:before { + content: "\e625"; +} + +.icon-jiexi:before { + content: "\e70c"; +} + +.icon-IPbangding:before { + content: "\e81d"; +} + +.icon-ceping:before { + content: "\e626"; +} + +.icon-shanchu1:before { + content: "\e70d"; +} + +.icon-shixunfabu:before { + content: "\e81e"; +} + +.icon-qqzaixianzixun:before { + content: "\e628"; +} + +.icon-shitilan:before { + content: "\e70e"; +} + +.icon-shijiankechengfabu:before { + content: "\e81f"; +} + +.icon-erweima:before { + content: "\e629"; +} + +.icon-jianhao:before { + content: "\e70f"; +} + +.icon-kechengxuexi:before { + content: "\e820"; +} + +.icon-yijianfankui:before { + content: "\e62a"; +} + +.icon-fuzhi3:before { + content: "\e710"; +} + +.icon-jiaoxueanli:before { + content: "\e821"; +} + +.icon-youxiangrenzheng:before { + content: "\e62b"; +} + +.icon-bianzu2:before { + content: "\e711"; +} + +.icon-chakan:before { + content: "\e822"; +} + +.icon-shoujirenzheng:before { + content: "\e62c"; +} + +.icon-zuoyoutuodong:before { + content: "\e712"; +} + +.icon-shanchu5:before { + content: "\e823"; +} + +.icon-zhiyerenzheng:before { + content: "\e62d"; +} + +.icon-shangxiatuodong:before { + content: "\e713"; +} + +.icon-ren:before { + content: "\e824"; +} + +.icon-shenfenrenzheng:before { + content: "\e62e"; +} + +.icon-shijuan1:before { + content: "\e714"; +} + +.icon-wenjian2:before { + content: "\e825"; +} + +.icon-pingfen:before { + content: "\e62f"; +} + +.icon-shanchu2:before { + content: "\e715"; +} + +.icon-lajitong1:before { + content: "\e826"; +} + +.icon-pingfen-xian:before { + content: "\e630"; +} + +.icon-jianqu:before { + content: "\e716"; +} + +.icon-kongbai:before { + content: "\e827"; +} + +.icon-zuoye:before { + content: "\e631"; +} + +.icon-jiashang:before { + content: "\e717"; +} + +.icon-changjianwenti:before { + content: "\e828"; +} + +.icon-tishicuowu:before { + content: "\e632"; +} + +.icon-jianqu1:before { + content: "\e718"; +} + +.icon-chexiaofabu1:before { + content: "\e829"; +} + +.icon-ziyuan:before { + content: "\e633"; +} + +.icon-jiashang1:before { + content: "\e719"; +} + +.icon-fasongzhi:before { + content: "\e82a"; +} + +.icon-tishi:before { + content: "\e636"; +} + +.icon-guolvqi:before { + content: "\e71b"; +} + +.icon-chexiaogongkai1:before { + content: "\e82b"; +} + +.icon-chengyuan:before { + content: "\e63a"; +} + +.icon-chushihua:before { + content: "\e71c"; +} + +.icon-fabu2:before { + content: "\e82c"; +} + +.icon-xuanzhuan:before { + content: "\e63d"; +} + +.icon-ceshiji:before { + content: "\e71e"; +} + +.icon-daimacangku:before { + content: "\e82d"; +} + +.icon-shixun:before { + content: "\e63e"; +} + +.icon-dianjiliang:before { + content: "\e71f"; +} + +.icon-erweima1:before { + content: "\e82e"; +} + +.icon-suoxiao:before { + content: "\e63f"; +} + +.icon-bofang1:before { + content: "\e720"; +} + +.icon-Fock:before { + content: "\e82f"; +} + +.icon-xiajiantou:before { + content: "\e642"; +} + +.icon-jinggao2:before { + content: "\e721"; +} + +.icon-fuzhilianjie:before { + content: "\e830"; +} + +.icon-gouxuan:before { + content: "\e644"; +} + +.icon-lubiaosignpost3:before { + content: "\e722"; +} + +.icon-huidaodingbu:before { + content: "\e831"; +} + +.icon-liulanyan:before { + content: "\e646"; +} + +.icon-rili:before { + content: "\e756"; +} + +.icon-jibenxinxi1:before { + content: "\e832"; +} + +.icon-jingyan:before { + content: "\e647"; +} + +.icon-bianji3:before { + content: "\e723"; +} + +.icon-pingfen-yibanfen:before { + content: "\e833"; +} + +.icon-shixunguanqia:before { + content: "\e648"; +} + +.icon-yiguanbi:before { + content: "\e724"; +} + +.icon-guankashu:before { + content: "\e834"; +} + +.icon-fabu:before { + content: "\e64a"; +} + +.icon-yiguanbi1:before { + content: "\e725"; +} + +.icon-shanchu6:before { + content: "\e835"; +} + +.icon-xiangxiayidong:before { + content: "\e64b"; +} + +.icon-lajitong:before { + content: "\e726"; +} + +.icon-pingfen1:before { + content: "\e836"; +} + +.icon-xiangshangyidong:before { + content: "\e64c"; +} + +.icon-weibiaoti1:before { + content: "\e728"; +} + +.icon-shezhi5:before { + content: "\e837"; +} + +.icon-guanbi:before { + content: "\e64d"; +} + +.icon-bofang2:before { + content: "\e729"; +} + +.icon-QQ1:before { + content: "\e838"; +} + +.icon-huifu1:before { + content: "\e64e"; +} + +.icon-bianji4:before { + content: "\e72a"; +} + +.icon-shoucangerji:before { + content: "\e839"; +} + +.icon-wenjian:before { + content: "\e64f"; +} + +.icon-bangding:before { + content: "\e72b"; +} + +.icon-shoucangyiji:before { + content: "\e83a"; +} + +.icon-gonggao:before { + content: "\e63b"; +} + +.icon-xuanze:before { + content: "\e72c"; +} + +.icon-shixunshu:before { + content: "\e83b"; +} + +.icon-zhankai:before { + content: "\e650"; +} + +.icon-shanchu3:before { + content: "\e72d"; +} + +.icon-shanchu23:before { + content: "\e83c"; +} + +.icon-shousuo:before { + content: "\e651"; +} + +.icon-bianji5:before { + content: "\e72e"; +} + +.icon-hezuochengyuan:before { + content: "\e83d"; +} + +.icon-zuojiantou:before { + content: "\e652"; +} + +.icon-shangyi:before { + content: "\e72f"; +} + +.icon-shixunti:before { + content: "\e83e"; +} + +.icon-youjiantou:before { + content: "\e653"; +} + +.icon-xiayi:before { + content: "\e730"; +} + +.icon-xiaowenhao:before { + content: "\e83f"; +} + +.icon-shangjiantou:before { + content: "\e654"; +} + +.icon-shangyi1:before { + content: "\e731"; +} + +.icon-wenjian3:before { + content: "\e840"; +} + +.icon-bianjidaibeijing:before { + content: "\e655"; +} + +.icon-xiayi1:before { + content: "\e732"; +} + +.icon-xiugai1:before { + content: "\e841"; +} + +.icon-bofang:before { + content: "\e656"; +} + +.icon-yidong:before { + content: "\e734"; +} + +.icon-shiyanhuanjing:before { + content: "\e842"; +} + +.icon-wancheng:before { + content: "\e658"; +} + +.icon-qiandao-:before { + content: "\e735"; +} + +.icon-wenjian11:before { + content: "\e843"; +} + +.icon-fenzuzuoye:before { + content: "\e65d"; +} + +.icon-xiajiantou2:before { + content: "\e737"; +} + +.icon-sousuo3:before { + content: "\e844"; +} + +.icon-putongzuoye:before { + content: "\e65c"; +} + +.icon-qiandao-1:before { + content: "\e736"; +} + +.icon-suoshukecheng:before { + content: "\e845"; +} + +.icon-wenjuan:before { + content: "\e659"; +} + +.icon-tongji1:before { + content: "\e738"; +} + +.icon-shenqinggongkai:before { + content: "\e846"; +} + +.icon-taolun:before { + content: "\e65a"; +} + +.icon-fanhui:before { + content: "\e739"; +} + +.icon-shijianshezhi:before { + content: "\e847"; +} + +.icon-fenban:before { + content: "\e65f"; +} + +.icon-jubushuaxinjiantou:before { + content: "\e73a"; +} + +.icon-renwuguanka:before { + content: "\e848"; +} + +.icon-dongtai:before { + content: "\e660"; +} + +.icon-gongsidizhi:before { + content: "\e73b"; +} + +.icon-xuanzeti1:before { + content: "\e849"; +} + +.icon-shijuan:before { + content: "\e65b"; +} + +.icon-gongsijieshao:before { + content: "\e73c"; +} + +.icon-yijianfankui1:before { + content: "\e84a"; +} + +.icon-caidan:before { + content: "\e661"; +} + +.icon-zhiweiyaoqiu:before { + content: "\e73d"; +} + +.icon-tuijianshixun:before { + content: "\e84b"; +} + +.icon-chengyuanguanli:before { + content: "\e662"; +} + +.icon-fabuzhiwei:before { + content: "\e73e"; +} + +.icon-xiala:before { + content: "\e84c"; +} + +.icon-xiangxiayi:before { + content: "\e663"; +} + +.icon-upload:before { + content: "\e76b"; +} + +.icon-xuexirenshu:before { + content: "\e84d"; +} + +.icon-xiangshangyi:before { + content: "\e664"; +} + +.icon-zhicheng:before { + content: "\e73f"; +} + +.icon-xuexijindu:before { + content: "\e84e"; +} + +.icon-gengduo:before { + content: "\e665"; +} + +.icon-wentiliebiao:before { + content: "\e741"; +} + +.icon-editUnder:before { + content: "\e84f"; +} + +.icon-xueyuanguanliyuan:before { + content: "\e666"; +} + +.icon-tupian:before { + content: "\e742"; +} + +.icon-structure:before { + content: "\e850"; +} + +.icon-kongxing:before { + content: "\e667"; +} + +.icon-huifu:before { + content: "\e743"; +} + +.icon-arrange:before { + content: "\e851"; +} + +.icon-shixing:before { + content: "\e668"; +} + +.icon-xinjianjianliwodejianli:before { + content: "\e744"; +} + +.icon-initialize:before { + content: "\e852"; +} + +.icon-xiajiang:before { + content: "\e669"; +} + +.icon-zhiding1:before { + content: "\e745"; +} + +.icon-unit:before { + content: "\e853"; +} + +.icon-sanjiaoxing-up:before { + content: "\e78f"; +} + +.icon-quxiaozhiding:before { + content: "\e746"; +} + +.icon-model:before { + content: "\e854"; +} + +.icon-sanjiaoxing-down:before { + content: "\e791"; +} + +.icon-hangneigongshi:before { + content: "\e747"; +} + +.icon-sure:before { + content: "\e855"; +} + +.icon-xiazai18:before { + content: "\e627"; +} + +.icon-duohanggongshi:before { + content: "\e748"; +} + +.icon-add:before { + content: "\e856"; +} + +.icon-mail:before { + content: "\e66a"; +} + +.icon-bianji2X:before { + content: "\e749"; +} + +.icon-newStage:before { + content: "\e857"; +} + +.icon-weibiaoti-:before { + content: "\e60d"; +} + +.icon-shezhi4:before { + content: "\e74e"; +} + +.icon-zaibianji:before { + content: "\e858"; +} + +.icon-htmal5icon19:before { + content: "\e66b"; +} + +.icon-fuzhi4:before { + content: "\e74a"; +} + +.icon-yunhang:before { + content: "\e859"; +} + +.icon-xinzengtishi:before { + content: "\e66c"; +} + +.icon-xuanzhong:before { + content: "\e74b"; +} + +.icon-wanchenggouxuan:before { + content: "\e66e"; +} + +.icon-weixuanzhong:before { + content: "\e74d"; +} + +.icon-shezhi:before { + content: "\e66f"; +} + +.icon-xiangmuleixing:before { + content: "\e750"; +} + +.icon-youjiang:before { + content: "\e792"; +} + +.icon-xiangmuleibie:before { + content: "\e751"; +} + +.icon-fujian:before { + content: "\e670"; +} + +.icon-ziyuan1:before { + content: "\e752"; +} + +.icon-qizhi:before { + content: "\e699"; +} + +.icon-fenzhi1:before { + content: "\e753"; +} + +.icon-31:before { + content: "\e6b2"; +} + +.icon-biaoqian3:before { + content: "\e754"; +} + +.icon-wenhao:before { + content: "\e680"; +} + +.icon-fahangban:before { + content: "\e755"; +} + +.icon-weibiaoti12:before { + content: "\e671"; +} + +.icon-gongxianzhe:before { + content: "\e757"; +} + +.icon-biyezhuanhuan:before { + content: "\e6f1"; +} + +.icon-cangku:before { + content: "\e758"; +} + +.icon-suo:before { + content: "\e6c9"; +} + +.icon-fuzhi5:before { + content: "\e759"; +} + +.icon-triangle:before { + content: "\e600"; +} + +.icon-xiazai2:before { + content: "\e75a"; +} + +.icon-tianjia:before { + content: "\e672"; +} + +.icon-wenjia:before { + content: "\e75b"; +} + +.icon-roundaddfill:before { + content: "\e6d8"; +} + +.icon-wenjianjia1:before { + content: "\e75c"; +} + +.icon-roundclose:before { + content: "\e673"; +} + +.icon-ZIP:before { + content: "\e75d"; +} + +.icon-zuobiao:before { + content: "\e674"; +} + +.icon-TAR:before { + content: "\e75e"; +} + +.icon-yinhangqia:before { + content: "\e675"; +} + +.icon-daochu3x:before { + content: "\e75f"; +} + +.icon-gengduo1:before { + content: "\e7f9"; +} + +.icon-lijijiezhi3x:before { + content: "\e760"; +} + +.icon-jia:before { + content: "\e605"; +} + +.icon-bianjishijuan3x:before { + content: "\e761"; +} + +.icon-weizhi:before { + content: "\e676"; +} + +.icon-dahuizhongzuo3x:before { + content: "\e762"; +} + +.icon-fork:before { + content: "\e6b3"; +} + +.icon-filedone2X:before { + content: "\e764"; +} + +.icon-css3:before { + content: "\ea8b"; +} + +.icon-filesync3x:before { + content: "\e766"; +} + +.icon-html5:before { + content: "\eb10"; +} + +.icon-bianzu19xia3x:before { + content: "\e767"; +} + +.icon-linux:before { + content: "\e765"; +} + +.icon-bianzu193x:before { + content: "\e768"; +} + +.icon-dashujucunchu:before { + content: "\e678"; +} + +.icon-Search3x:before { + content: "\e769"; +} + +.icon-VPN:before { + content: "\e601"; +} + +.icon-bianzu19:before { + content: "\e76a"; +} + +.icon-jquery:before { + content: "\e67a"; +} + +.icon-xuanzhongkuang:before { + content: "\e76c"; +} + +.icon-docker:before { + content: "\e67b"; +} + +.icon-weixuankuang:before { + content: "\e76d"; +} + +.icon-python:before { + content: "\e67c"; +} + +.icon-check-square-fill3x:before { + content: "\e76e"; +} + +.icon-php:before { + content: "\e67d"; +} + +.icon-play-square-fill3x:before { + content: "\e76f"; +} + +.icon-java:before { + content: "\f1d7"; +} + +.icon-huabanfuben:before { + content: "\eb7b"; +} + +.icon-mysql:before { + content: "\ec6d"; +} + +.icon-zhongqingdianxinicon10:before { + content: "\e770"; +} + +.icon-phpkaifa:before { + content: "\e67e"; +} + +.icon-leftarrow:before { + content: "\e771"; +} + +.icon-SQLserver:before { + content: "\e705"; +} + +.icon-xinjian1:before { + content: "\e772"; +} + +.icon-mongodb1:before { + content: "\e60b"; +} + +.icon-jingxiang:before { + content: "\e773"; +} + +.icon-luyou:before { + content: "\e677"; +} + +.icon-shixunxiangqing:before { + content: "\e775"; +} + +.icon-zhinengjiankongtixi:before { + content: "\e6b4"; +} + +.icon-lijifabu:before { + content: "\e776"; +} + +.icon-daimapeizhir:before { + content: "\e727"; +} + +.icon-kaiqizhong:before { + content: "\e777"; +} + +.icon-timefill:before { + content: "\e679"; +} + +.icon-daochu:before { + content: "\e778"; +} + +.icon-default:before { + content: "\e67f"; +} + +.icon-yijiandianping:before { + content: "\e779"; +} + +.icon-zhongzhi1:before { + content: "\e609"; +} + +.icon-chakanshixunbaogao:before { + content: "\e77a"; +} + +.icon-reset:before { + content: "\e7fe"; +} + +.icon-tijiaozongjie:before { + content: "\e77b"; +} + +.icon-vs:before { + content: "\e682"; +} + +.icon-daimachazhong:before { + content: "\e77c"; +} + +.icon-base:before { + content: "\e683"; +} + +.icon-bianjizuoye:before { + content: "\e77d"; +} + +.icon-dengluIpjiankong:before { + content: "\e684"; +} + +.icon-lijijiezhi:before { + content: "\e77e"; +} + +.icon-itsm-liuchengguanli:before { + content: "\e685"; +} + +.icon-hebingqingqiu:before { + content: "\e7f2"; +} + +.icon-net:before { + content: "\e607"; +} + +.icon-zuzhichengyuan:before { + content: "\e774"; +} + +.icon-mstest:before { + content: "\e686"; +} + +.icon-zuzhixiangmu:before { + content: "\e77f"; +} + +.icon-qq:before { + content: "\e687"; +} + +.icon-gonggaolan:before { + content: "\e780"; +} + +.icon-csdn:before { + content: "\e602"; +} + +.icon-shixunzuoye:before { + content: "\e781"; +} + +.icon-weibo:before { + content: "\e688"; +} + +.icon-fenzuzuoye1:before { + content: "\e783"; +} + +.icon-weixin2:before { + content: "\e603"; +} + +.icon-biyezuoye:before { + content: "\e784"; +} + +.icon-StackOverflow:before { + content: "\e689"; +} + +.icon-kaoshishijuan:before { + content: "\e785"; +} + +.icon-linkedin:before { + content: "\e60c"; +} + +.icon-kaoshiwenjuan:before { + content: "\e786"; +} + +.icon-github:before { + content: "\e763"; +} + +.icon-xuexiziyuan:before { + content: "\e787"; +} + +.icon-shijian:before { + content: "\e69c"; +} + +.icon-shipinzhibo:before { + content: "\e788"; +} + +.icon-zhongzhi2:before { + content: "\e68a"; +} + +.icon-taolun1:before { + content: "\e789"; +} + +.icon-congshulianjie:before { + content: "\e6ee"; +} + +.icon-fenban1:before { + content: "\e78a"; +} + +.icon-trustie:before { + content: "\e681"; +} + +.icon-qiandao:before { + content: "\e78b"; +} + +.icon-chenggong:before { + content: "\e68b"; +} + +.icon-tongji2:before { + content: "\e78c"; +} + +.icon-shixundaibeijing:before { + content: "\e68c"; +} + +.icon-bianji6:before { + content: "\e78d"; +} + +.icon-zhiliangfenxi:before { + content: "\e68d"; +} + +.icon-wenjian1:before { + content: "\e78e"; +} + +.icon-shezhi1:before { + content: "\e71d"; +} + +.icon-gengxinchengji:before { + content: "\e790"; +} + +.icon-pdf:before { + content: "\e740"; +} + +.icon-gongzuoliu:before { + content: "\e793"; +} + +.icon-shangchuantupian1:before { + content: "\e7fd"; +} + +.icon-weitongguo:before { + content: "\e794"; +} + +.icon-tianjiadaohang:before { + content: "\e604"; +} + +.icon-yitongguo:before { + content: "\e795"; +} + +.icon-zhangjie1:before { + content: "\e68e"; +} + +.icon-yunhangzhong:before { + content: "\e796"; +} + +.icon-fuzhi:before { + content: "\e68f"; +} + +.icon-zhunbeizhong:before { + content: "\e797"; +} + +.icon-sandian:before { + content: "\e6f8"; +} + +.icon-HOME:before { + content: "\e798"; +} + +.icon-biaoqian:before { + content: "\e74f"; +} + +.icon-MAILINGLIST:before { + content: "\e799"; +} + +.icon-tishi1:before { + content: "\e690"; +} + +.icon-EDISTATEMENT:before { + content: "\e79a"; +} + +.icon-tianjiachengyuan:before { + content: "\e69a"; +} + +.icon-CONDUCTSAFETY:before { + content: "\e79b"; +} + +.icon-edit:before { + content: "\e691"; +} + +.icon-HISTORY:before { + content: "\e79c"; +} + +.icon-xiazai1:before { + content: "\e6ac"; +} + +.icon-PROCEEDINGS:before { + content: "\e79d"; +} + +.icon-moban:before { + content: "\e692"; +} + +.icon-BIBLIOGRAPHIES:before { + content: "\e79e"; +} + +.icon-renzhengxinxi:before { + content: "\e693"; +} + +.icon-INFLUENTIALPAPERS:before { + content: "\e79f"; +} + +.icon-jibenxinxi:before { + content: "\e694"; +} + +.icon-ORGANIZINGICSE-MOU:before { + content: "\e7a0"; +} + +.icon-anquanshezhi:before { + content: "\e606"; +} + +.icon-STEERINGCOMMITTEE:before { + content: "\e7a1"; +} + +.icon-xianshi:before { + content: "\e695"; +} + +.icon-FINALREPORTS:before { + content: "\e7a2"; +} + +.icon-yincang:before { + content: "\e6a0"; +} + +.icon-SPONSORS:before { + content: "\e7a3"; +} + +.icon-cuban2shangchuanyunduan:before { + content: "\e86d"; +} + +.icon-CONTACTS:before { + content: "\e7a4"; +} + +.icon-kehuliuyan:before { + content: "\e71a"; +} + +.icon-Lastupdated:before { + content: "\e7a5"; +} + +.icon-laba:before { + content: "\e608"; +} + +.icon-shixunzuoye1:before { + content: "\e7a6"; +} + +.icon-yincang1:before { + content: "\e9b5"; +} + +.icon-putongzuoye1:before { + content: "\e782"; +} + +.icon-jinggao:before { + content: "\e696"; +} + +.icon-xuexiziyuan1:before { + content: "\e7a8"; +} + +.icon-yinhangqia1:before { + content: "\e697"; +} + +.icon-kaoshiwenjuan1:before { + content: "\e7a7"; +} + +.icon-shezhi2:before { + content: "\e698"; +} + +.icon-kaoshishijuan1:before { + content: "\e7a9"; +} + +.icon-mingpian:before { + content: "\e69b"; +} + +.icon-shipinzhibo1:before { + content: "\e7aa"; +} + +.icon-shouji:before { + content: "\e69d"; +} + +.icon-taolun2:before { + content: "\e7ab"; +} + +.icon-kong:before { + content: "\e69f"; +} + +.icon-fenban2:before { + content: "\e7ac"; +} + +.icon-paixu1:before { + content: "\e6aa"; +} + +.icon-qiandao1:before { + content: "\e7ad"; +} + +.icon-yonghujiaose_wushuju:before { + content: "\e69e"; +} + +.icon-tongji3:before { + content: "\e7ae"; +} + +.icon-renzhengshangjia:before { + content: "\e6ab"; +} + +.icon-biyezuoye1:before { + content: "\e7af"; +} + +.icon-shenfenzhenghaomaguizheng:before { + content: "\e6ad"; +} + +.icon-fenzuzuoye2:before { + content: "\e7b0"; +} + +.icon-bianji1:before { + content: "\e6a1"; +} + +.icon-mobanguanli2:before { + content: "\e7b1"; +} + +.icon-xiaoxi1:before { + content: "\e6a4"; +} + +.icon-duigou1:before { + content: "\e7b2"; +} + +.icon-Page-1:before { + content: "\e6ae"; +} + +.icon-lianjie1:before { + content: "\e7b5"; +} + +.icon-Page-3:before { + content: "\e6af"; +} + +.icon-zhangjie:before { + content: "\e7b6"; +} + +.icon-Page:before { + content: "\e6b0"; +} + +.icon-shangchuanshipin1:before { + content: "\e7b7"; +} + +.icon-yemian:before { + content: "\e6b1"; +} + +.icon-shizhong:before { + content: "\e7b8"; +} + +.icon-bianzu:before { + content: "\e6b5"; +} + +.icon-fangzuobi:before { + content: "\e7b9"; +} + +.icon-kecheng:before { + content: "\e60a"; +} + +.icon-fangda2:before { + content: "\e7ba"; +} + +.icon-xuexizhongxin:before { + content: "\e6b6"; +} + +.icon-shipin:before { + content: "\e7b4"; +} + +.icon-wuquanxian:before { + content: "\e6a2"; +} + +.icon-shixun2:before { + content: "\e7be"; +} + +.icon-yunweijiankong:before { + content: "\e6a3"; +} + +.icon-ziyongshijuan:before { + content: "\e7b3"; +} + +.icon-gongyiliucheng:before { + content: "\e6a5"; +} + +.icon-yigongkaishijuan:before { + content: "\e7bb"; +} + +.icon-zhiliangkongzhi:before { + content: "\e6a6"; +} + +.icon-jiantou:before { + content: "\e7bc"; +} + +.icon-shebeiguanli:before { + content: "\e6a7"; +} + +.icon-bianchengyuyan:before { + content: "\e7bd"; +} + +.icon-shengmingzhouqi:before { + content: "\e6a8"; +} + +.icon-you:before { + content: "\e7bf"; +} + +.icon-menu_date:before { + content: "\e6a9"; +} + +.icon-zuo:before { + content: "\e7c0"; +} + +.icon-menu_people:before { + content: "\e6b7"; +} + +.icon-oschina:before { + content: "\e7c1"; +} + +.icon-menu_voucher:before { + content: "\e6b8"; +} + +.icon-yonghu:before { + content: "\e7c2"; +} + +.icon-menu_events:before { + content: "\e6b9"; +} + +.icon-QQ:before { + content: "\e7c3"; +} + +.icon-menu_map:before { + content: "\e6ba"; +} + +.icon-guangbiao:before { + content: "\e7c4"; +} + +.icon-huodong:before { + content: "\e6bb"; +} + +.icon-sousuo2:before { + content: "\e7c6"; +} + +.icon-danxuanxuanzhong1:before { + content: "\e6bd"; +} + +.icon-shoucang3:before { + content: "\e7c7"; +} + +.icon-gongcheng:before { + content: "\e60f"; +} + +.icon-shanchu21:before { + content: "\e7c8"; +} + +.icon-shequ:before { + content: "\e6bc"; +} + +.icon-jingshi1:before { + content: "\e7c9"; +} + +.icon-healthmode:before { + content: "\e60e"; +} + +.icon-chexiaofenzu:before { + content: "\e7ca"; +} + +.icon-nenghaofenxix:before { + content: "\e6be"; +} + +.icon-chexiaogongxiang:before { + content: "\e7cb"; +} + +.icon-lianjie:before { + content: "\e7db"; +} + +.icon-xuanzhong1:before { + content: "\e7cc"; +} + +.icon-detectionx:before { + content: "\e6c1"; +} + +.icon-vncshixunjiemian-shouqi:before { + content: "\e7cd"; +} + +.icon-communityx:before { + content: "\e6c2"; +} + +.icon-vncshixunjiemian-zhankai:before { + content: "\e7cf"; +} + +.icon-hostingx2:before { + content: "\e6c3"; +} + +.icon-vncshixunjiemian-gongjulan:before { + content: "\e7d0"; +} + +.icon-projectx:before { + content: "\e6c4"; +} + +.icon-shiyanhuanjingdaojishi:before { + content: "\e7d1"; +} + +.icon-fuzhi1:before { + content: "\e800"; +} + +.icon-fuzhibanbenkudizhi1:before { + content: "\e7d3"; +} + +.icon-zhuye:before { + content: "\e6d3"; +} + +.icon-quanping:before { + content: "\e7d2"; +} + +.icon-tongji:before { + content: "\e6bf"; +} + +.icon-tuichuquanping:before { + content: "\e7d4"; +} + +.icon-weibiaoti105:before { + content: "\e6c0"; +} + +.icon-zhongzhishixun:before { + content: "\e7d5"; +} + +.icon-guanzhu:before { + content: "\e6c5"; +} + +.icon-fuzhiniantie:before { + content: "\e7d6"; +} + +.icon-bokeyuan:before { + content: "\e6c6"; +} + +.icon-gongxiangzhuomian:before { + content: "\e7d7"; +} + +.icon-liulan:before { + content: "\e6c7"; +} + +.icon-guankacaidan:before { + content: "\e7ce"; +} + +.icon-pinglun:before { + content: "\e6c8"; +} + +.icon-weikaishexiangtou1:before { + content: "\e7d8"; +} + +.icon-bangdingshoujihao:before { + content: "\e6ca"; +} + +.icon-jinbi:before { + content: "\e7c5"; +} + +.icon-biaoqian1:before { + content: "\e6ce"; +} + +.icon-daimaku:before { + content: "\e7d9"; +} + +.icon-jilu:before { + content: "\e6cf"; +} + +.icon-forc:before { + content: "\e7da"; +} + +.icon-shu:before { + content: "\e6d0"; +} + +.icon-dianzan3:before { + content: "\e7dd"; +} + +.icon-tuijian:before { + content: "\e6d1"; +} + +.icon-lichengbei:before { + content: "\e7de"; +} + +.icon-chuangjianzhe:before { + content: "\e6d2"; +} + +.icon-quxiaodianzan:before { + content: "\e7df"; +} + +.icon-jinzhi:before { + content: "\e6d4"; +} + +.icon-fork2:before { + content: "\e7e0"; +} + +.icon-wancheng1:before { + content: "\e6cb"; +} + +.icon-hebingqingqiu1:before { + content: "\e7e1"; +} + +.icon-shangjiantou-tianchong:before { + content: "\e733"; +} + +.icon-renwu:before { + content: "\e7e2"; +} + +.icon-shenglvehao:before { + content: "\e708"; +} + +.icon-tongzhi:before { + content: "\e7e3"; +} + +.icon-qiyezhanghao:before { + content: "\e6cc"; +} + +.icon-shiyongwendang:before { + content: "\e7e5"; +} + +.icon-gerenzhanghao:before { + content: "\e6cd"; +} + +.icon-canyuchengyuan:before { + content: "\e7e6"; +} + +.icon-jiazaishibai1:before { + content: "\e6d6"; +} + +.icon-xiangmujianjie:before { + content: "\e7e7"; +} + +.icon-leixing:before { + content: "\e6d5"; +} + +.icon-zhuye1:before { + content: "\e7e4"; +} + +.icon-biaoqianjiantou:before { + content: "\e6d7"; +} + +.icon-tianxiedisanfangmuke:before { + content: "\e7e8"; +} + +.icon-zhiding:before { + content: "\e6d9"; +} + +.icon-chengguorongyu:before { + content: "\e7e9"; +} + +.icon-wenti:before { + content: "\e7dc"; +} + +.icon-tupian1:before { + content: "\e7ea"; +} + +.icon-chuangjianzhe1:before { + content: "\e6da"; +} + +.icon-rili1:before { + content: "\e7eb"; +} + +.icon-shu1:before { + content: "\e6dc"; +} + +.icon-fanhui1:before { + content: "\e7ec"; +} + +.icon-biaoqian2:before { + content: "\e6dd"; +} + +.icon-tishi3:before { + content: "\e7ed"; +} + +.icon-jilu1:before { + content: "\e6de"; +} + +.icon-zuoyechazhong1:before { + content: "\e7ef"; +} + +.icon-tuijian1:before { + content: "\e6df"; +} + +.icon-gongchengjiaoyu1:before { + content: "\e7f0"; +} + +.icon-jinggao1:before { + content: "\e6e0"; +} + +.icon-fanzhuanketang1:before { + content: "\e7f4"; +} + +.icon-dianzan2:before { + content: "\e6e1"; +} + +.icon-shixunkecheng1:before { + content: "\e7f5"; +} + +.icon-pinglun1:before { + content: "\e6e2"; +} + +.icon-quntibiaozhu:before { + content: "\e7ee"; +} + +.icon-duigou:before { + content: "\e6e3"; +} + +.icon-biaozhuyindao:before { + content: "\e7f1"; +} + +.icon-liwu:before { + content: "\e611"; +} + +.icon-tishi2:before { + content: "\e6e4"; +} + +.icon-fankuixiuzheng:before { + content: "\e7f3"; +} + +.icon-dianzaned:before { + content: "\e639"; +} + +.icon-bianji_Hover:before { + content: "\e6e5"; +} + +.icon-taishiganzhi:before { + content: "\e7f6"; +} + +.icon-dianzan11:before { + content: "\e66d"; +} + +.icon-shangyi_Hover:before { + content: "\e6e6"; +} + +.icon-duoweipinggu:before { + content: "\e7f7"; +} + +.icon-gift:before { + content: "\e63c"; +} + +.icon-shanchu_moren:before { + content: "\e6e7"; +} + +.icon-daimatuoguan:before { + content: "\e7f8"; +} + +.icon-xiaoxi:before { + content: "\e614"; +} + +.icon-xiayi_Hover:before { + content: "\e6e8"; +} + +.icon-jiaoliushequ:before { + content: "\e7fa"; +} + diff --git a/src/styles/iconfont/iconfont.js b/src/styles/iconfont/iconfont.js new file mode 100644 index 000000000..1de00a059 --- /dev/null +++ b/src/styles/iconfont/iconfont.js @@ -0,0 +1 @@ +window._iconfont_svg_string_2340181='',(c=>{var a=(l=(l=document.getElementsByTagName("script"))[l.length-1]).getAttribute("data-injectcss"),l=l.getAttribute("data-disable-injectsvg");if(!l){var h,i,o,z,t,p=function(a,l){l.parentNode.insertBefore(a,l)};if(a&&!c.__iconfont__svg__cssinject__){c.__iconfont__svg__cssinject__=!0;try{document.write("")}catch(a){console&&console.log(a)}}h=function(){var a,l=document.createElement("div");l.innerHTML=c._iconfont_svg_string_2340181,(l=l.getElementsByTagName("svg")[0])&&(l.setAttribute("aria-hidden","true"),l.style.position="absolute",l.style.width=0,l.style.height=0,l.style.overflow="hidden",l=l,(a=document.body).firstChild?p(l,a.firstChild):a.appendChild(l))},document.addEventListener?~["complete","loaded","interactive"].indexOf(document.readyState)?setTimeout(h,0):(i=function(){document.removeEventListener("DOMContentLoaded",i,!1),h()},document.addEventListener("DOMContentLoaded",i,!1)):document.attachEvent&&(o=h,z=c.document,t=!1,m(),z.onreadystatechange=function(){"complete"==z.readyState&&(z.onreadystatechange=null,v())})}function v(){t||(t=!0,o())}function m(){try{z.documentElement.doScroll("left")}catch(a){return void setTimeout(m,50)}v()}})(window); \ No newline at end of file diff --git a/src/styles/iconfont/iconfont.json b/src/styles/iconfont/iconfont.json new file mode 100644 index 000000000..26feb20dd --- /dev/null +++ b/src/styles/iconfont/iconfont.json @@ -0,0 +1,6834 @@ +{ + "id": "2340181", + "name": "newForge", + "font_family": "iconfont", + "css_prefix_text": "icon-", + "description": "", + "glyphs": [ + { + "icon_id": "46808654", + "name": "应用模板", + "font_class": "yingyongmoban", + "unicode": "e9c8", + "unicode_decimal": 59848 + }, + { + "icon_id": "46593376", + "name": "状态", + "font_class": "zhuangtai", + "unicode": "e9c5", + "unicode_decimal": 59845 + }, + { + "icon_id": "46593375", + "name": "复制-删除", + "font_class": "fuzhi-shanchu1", + "unicode": "e9c6", + "unicode_decimal": 59846 + }, + { + "icon_id": "46593374", + "name": "模版管理", + "font_class": "mobanguanli", + "unicode": "e9c7", + "unicode_decimal": 59847 + }, + { + "icon_id": "46370299", + "name": "svg_箭头1", + "font_class": "svg_jiantou1", + "unicode": "e9c3", + "unicode_decimal": 59843 + }, + { + "icon_id": "46370300", + "name": "左箭头", + "font_class": "zuojiantou1", + "unicode": "e9c4", + "unicode_decimal": 59844 + }, + { + "icon_id": "46329189", + "name": "箭头", + "font_class": "jiantou4", + "unicode": "e9c2", + "unicode_decimal": 59842 + }, + { + "icon_id": "46248622", + "name": "合作伙伴", + "font_class": "hezuohuoban", + "unicode": "e9bf", + "unicode_decimal": 59839 + }, + { + "icon_id": "46248621", + "name": "项目贡献", + "font_class": "xiangmugongxian", + "unicode": "e9c1", + "unicode_decimal": 59841 + }, + { + "icon_id": "46245203", + "name": "四角星", + "font_class": "sijiaoxing", + "unicode": "e9c0", + "unicode_decimal": 59840 + }, + { + "icon_id": "46244977", + "name": "组 15512", + "font_class": "a-zu15512", + "unicode": "e9be", + "unicode_decimal": 59838 + }, + { + "icon_id": "46034062", + "name": "文档办公-01", + "font_class": "wendangbangong-01", + "unicode": "e9bd", + "unicode_decimal": 59837 + }, + { + "icon_id": "46033728", + "name": "文档搜索", + "font_class": "wendangsousuo", + "unicode": "e9b7", + "unicode_decimal": 59831 + }, + { + "icon_id": "46033639", + "name": "解压刻录", + "font_class": "jieyakelu", + "unicode": "e9b0", + "unicode_decimal": 59824 + }, + { + "icon_id": "46033573", + "name": "图形图像", + "font_class": "tuxingtuxiang1", + "unicode": "e9b6", + "unicode_decimal": 59830 + }, + { + "icon_id": "46033572", + "name": "下载工具", + "font_class": "xiazaigongju", + "unicode": "e9bc", + "unicode_decimal": 59836 + }, + { + "icon_id": "46033597", + "name": "视频处理", + "font_class": "shipinchuli", + "unicode": "e9b2", + "unicode_decimal": 59826 + }, + { + "icon_id": "46033165", + "name": "浏览器", + "font_class": "liulanqi", + "unicode": "e9b8", + "unicode_decimal": 59832 + }, + { + "icon_id": "46033154", + "name": "社交聊天", + "font_class": "shejiaoliaotian", + "unicode": "e9b9", + "unicode_decimal": 59833 + }, + { + "icon_id": "46033153", + "name": "输入法", + "font_class": "shurufa", + "unicode": "e9ba", + "unicode_decimal": 59834 + }, + { + "icon_id": "46032783", + "name": "全部类别", + "font_class": "quanbuleibie", + "unicode": "e9bb", + "unicode_decimal": 59835 + }, + { + "icon_id": "46032622", + "name": "图形图像", + "font_class": "tuxingtuxiang", + "unicode": "e9af", + "unicode_decimal": 59823 + }, + { + "icon_id": "46032621", + "name": "系统工具", + "font_class": "xitonggongju", + "unicode": "e9b1", + "unicode_decimal": 59825 + }, + { + "icon_id": "46032619", + "name": "文档办公", + "font_class": "wendangbangong", + "unicode": "e9b3", + "unicode_decimal": 59827 + }, + { + "icon_id": "46032616", + "name": "桌面控制", + "font_class": "zhuomiankongzhi", + "unicode": "e9b4", + "unicode_decimal": 59828 + }, + { + "icon_id": "46032217", + "name": "Npm", + "font_class": "Npm", + "unicode": "e9ad", + "unicode_decimal": 59821 + }, + { + "icon_id": "46032121", + "name": "Maven", + "font_class": "Maven", + "unicode": "e9ac", + "unicode_decimal": 59820 + }, + { + "icon_id": "46032118", + "name": "Python", + "font_class": "Python", + "unicode": "e9ae", + "unicode_decimal": 59822 + }, + { + "icon_id": "46031753", + "name": "下载 (3)", + "font_class": "a-xiazai3", + "unicode": "e9ab", + "unicode_decimal": 59819 + }, + { + "icon_id": "46031290", + "name": "下拉", + "font_class": "xiala4", + "unicode": "e9a9", + "unicode_decimal": 59817 + }, + { + "icon_id": "45509718", + "name": "突发性重大算力需求应急响应", + "font_class": "tufaxingzhongdasuanlixuqiuyingjixiangying", + "unicode": "e9a0", + "unicode_decimal": 59808 + }, + { + "icon_id": "45509716", + "name": "跨中心协同科研计算任务调度", + "font_class": "kuazhongxinxietongkeyanjisuanrenwutiaodu", + "unicode": "e9a1", + "unicode_decimal": 59809 + }, + { + "icon_id": "45509717", + "name": "性能基准与评测", + "font_class": "xingnengjizhunyupingce", + "unicode": "e9a8", + "unicode_decimal": 59816 + }, + { + "icon_id": "45509657", + "name": "箭头", + "font_class": "jiantou3", + "unicode": "e9a5", + "unicode_decimal": 59813 + }, + { + "icon_id": "45509658", + "name": "箭头2", + "font_class": "jiantou21", + "unicode": "e9a6", + "unicode_decimal": 59814 + }, + { + "icon_id": "45509659", + "name": "下载 (1)", + "font_class": "a-xiazai1", + "unicode": "e9a7", + "unicode_decimal": 59815 + }, + { + "icon_id": "45509654", + "name": "并行计算框架", + "font_class": "binghangjisuankuangjia", + "unicode": "e9aa", + "unicode_decimal": 59818 + }, + { + "icon_id": "45509663", + "name": "收起", + "font_class": "shouqi", + "unicode": "e99f", + "unicode_decimal": 59807 + }, + { + "icon_id": "45509660", + "name": "展开", + "font_class": "zhankai1", + "unicode": "e9a2", + "unicode_decimal": 59810 + }, + { + "icon_id": "45509661", + "name": "任务调度管理", + "font_class": "renwutiaoduguanli", + "unicode": "e9a3", + "unicode_decimal": 59811 + }, + { + "icon_id": "45509664", + "name": "异构数据库", + "font_class": "yigoushujuku", + "unicode": "e9a4", + "unicode_decimal": 59812 + }, + { + "icon_id": "45229517", + "name": "社区issue", + "font_class": "shequissue", + "unicode": "e99c", + "unicode_decimal": 59804 + }, + { + "icon_id": "45229516", + "name": "社区-选中", + "font_class": "shequ-xuanzhong", + "unicode": "e99d", + "unicode_decimal": 59805 + }, + { + "icon_id": "45229515", + "name": "社区", + "font_class": "shequ1", + "unicode": "e99e", + "unicode_decimal": 59806 + }, + { + "icon_id": "44951992", + "name": "环境变量", + "font_class": "huanjingbianliang", + "unicode": "e99b", + "unicode_decimal": 59803 + }, + { + "icon_id": "44779010", + "name": "流量控制", + "font_class": "liuliangkongzhi", + "unicode": "e991", + "unicode_decimal": 59793 + }, + { + "icon_id": "44779009", + "name": "停止", + "font_class": "tingzhi", + "unicode": "e993", + "unicode_decimal": 59795 + }, + { + "icon_id": "44779008", + "name": "强制停止", + "font_class": "qiangzhitingzhi", + "unicode": "e995", + "unicode_decimal": 59797 + }, + { + "icon_id": "44779007", + "name": "暂停", + "font_class": "zanting1", + "unicode": "e99a", + "unicode_decimal": 59802 + }, + { + "icon_id": "44778800", + "name": "启动", + "font_class": "qidong1", + "unicode": "e996", + "unicode_decimal": 59798 + }, + { + "icon_id": "44778675", + "name": "关联配置", + "font_class": "guanlianpeizhi", + "unicode": "e994", + "unicode_decimal": 59796 + }, + { + "icon_id": "44778677", + "name": "删除", + "font_class": "shanchu9", + "unicode": "e997", + "unicode_decimal": 59799 + }, + { + "icon_id": "44778671", + "name": "编辑配置", + "font_class": "bianjipeizhi", + "unicode": "e998", + "unicode_decimal": 59800 + }, + { + "icon_id": "44778674", + "name": "实例注册", + "font_class": "shilizhuce", + "unicode": "e999", + "unicode_decimal": 59801 + }, + { + "icon_id": "44778684", + "name": "网关管理", + "font_class": "wangguanguanli", + "unicode": "e98d", + "unicode_decimal": 59789 + }, + { + "icon_id": "44778683", + "name": "下载YAML", + "font_class": "xiazaiYAML", + "unicode": "e98f", + "unicode_decimal": 59791 + }, + { + "icon_id": "44778682", + "name": "恢复", + "font_class": "huifu2", + "unicode": "e990", + "unicode_decimal": 59792 + }, + { + "icon_id": "44778681", + "name": "重启", + "font_class": "zhongqi", + "unicode": "e992", + "unicode_decimal": 59794 + }, + { + "icon_id": "44778292", + "name": "链路追踪", + "font_class": "lianluzhuizong1", + "unicode": "e98e", + "unicode_decimal": 59790 + }, + { + "icon_id": "43884585", + "name": "隐藏", + "font_class": "yincang3", + "unicode": "e986", + "unicode_decimal": 59782 + }, + { + "icon_id": "43884586", + "name": "手机号", + "font_class": "shoujihao", + "unicode": "e987", + "unicode_decimal": 59783 + }, + { + "icon_id": "43884583", + "name": "显示", + "font_class": "xianshi1", + "unicode": "e988", + "unicode_decimal": 59784 + }, + { + "icon_id": "43884584", + "name": "密码", + "font_class": "mima", + "unicode": "e989", + "unicode_decimal": 59785 + }, + { + "icon_id": "43884582", + "name": "排序", + "font_class": "paixu", + "unicode": "e98a", + "unicode_decimal": 59786 + }, + { + "icon_id": "43884581", + "name": "箭头_向右", + "font_class": "jiantou_xiangyou", + "unicode": "e98b", + "unicode_decimal": 59787 + }, + { + "icon_id": "43884580", + "name": "fork (1)", + "font_class": "a-fork1", + "unicode": "e98c", + "unicode_decimal": 59788 + }, + { + "icon_id": "43884589", + "name": "点赞", + "font_class": "dianzan1", + "unicode": "e983", + "unicode_decimal": 59779 + }, + { + "icon_id": "43884587", + "name": "用户名", + "font_class": "yonghuming", + "unicode": "e984", + "unicode_decimal": 59780 + }, + { + "icon_id": "43884588", + "name": "邮箱", + "font_class": "youxiang2", + "unicode": "e985", + "unicode_decimal": 59781 + }, + { + "icon_id": "43788877", + "name": "通知", + "font_class": "tongzhi1", + "unicode": "e981", + "unicode_decimal": 59777 + }, + { + "icon_id": "43788876", + "name": "新增", + "font_class": "xinzeng", + "unicode": "e982", + "unicode_decimal": 59778 + }, + { + "icon_id": "39410543", + "name": "分支 (1)", + "font_class": "a-fenzhi1", + "unicode": "e980", + "unicode_decimal": 59776 + }, + { + "icon_id": "42234576", + "name": "云下载", + "font_class": "yunxiazai", + "unicode": "e97b", + "unicode_decimal": 59771 + }, + { + "icon_id": "42234575", + "name": "论文", + "font_class": "lunwen1", + "unicode": "e97c", + "unicode_decimal": 59772 + }, + { + "icon_id": "42234574", + "name": "专利", + "font_class": "zhuanli2", + "unicode": "e97d", + "unicode_decimal": 59773 + }, + { + "icon_id": "42234573", + "name": "箭头", + "font_class": "jiantou2", + "unicode": "e97e", + "unicode_decimal": 59774 + }, + { + "icon_id": "42234572", + "name": "箭头-右-粗线条", + "font_class": "jiantou-you-cuxiantiao", + "unicode": "e97f", + "unicode_decimal": 59775 + }, + { + "icon_id": "41876673", + "name": "贡献确权", + "font_class": "gongxianquequan", + "unicode": "e979", + "unicode_decimal": 59769 + }, + { + "icon_id": "657556", + "name": "分期-选中", + "font_class": "xuanzhong5", + "unicode": "e97a", + "unicode_decimal": 59770 + }, + { + "icon_id": "157771", + "name": "细圆", + "font_class": "big-circle", + "unicode": "e978", + "unicode_decimal": 59768 + }, + { + "icon_id": "41539674", + "name": "gitee", + "font_class": "gitee", + "unicode": "e974", + "unicode_decimal": 59764 + }, + { + "icon_id": "41539676", + "name": "gitea", + "font_class": "gitea", + "unicode": "e975", + "unicode_decimal": 59765 + }, + { + "icon_id": "41539677", + "name": "coding", + "font_class": "coding", + "unicode": "e976", + "unicode_decimal": 59766 + }, + { + "icon_id": "41539675", + "name": "github", + "font_class": "github1", + "unicode": "e977", + "unicode_decimal": 59767 + }, + { + "icon_id": "41539679", + "name": "gitlab", + "font_class": "gitlab", + "unicode": "e973", + "unicode_decimal": 59763 + }, + { + "icon_id": "41195024", + "name": "联合 6", + "font_class": "a-lianhe6", + "unicode": "e972", + "unicode_decimal": 59762 + }, + { + "icon_id": "40333433", + "name": "使用手册", + "font_class": "a-22ziliaoshouce-xianxing", + "unicode": "e971", + "unicode_decimal": 59761 + }, + { + "icon_id": "40172194", + "name": "长箭头", + "font_class": "changjiantou", + "unicode": "e970", + "unicode_decimal": 59760 + }, + { + "icon_id": "37836900", + "name": "帮助中心icon", + "font_class": "bangzhuzhongxinicon2", + "unicode": "e96f", + "unicode_decimal": 59759 + }, + { + "icon_id": "36898536", + "name": "浏览", + "font_class": "liulan1", + "unicode": "e96e", + "unicode_decimal": 59758 + }, + { + "icon_id": "36020261", + "name": "组 2044", + "font_class": "a-zu2044", + "unicode": "e96d", + "unicode_decimal": 59757 + }, + { + "icon_id": "5287658", + "name": "错", + "font_class": "cuo", + "unicode": "e96c", + "unicode_decimal": 59756 + }, + { + "icon_id": "8802648", + "name": "对", + "font_class": "dui", + "unicode": "e96b", + "unicode_decimal": 59755 + }, + { + "icon_id": "887857", + "name": "暂停", + "font_class": "zanting", + "unicode": "e96a", + "unicode_decimal": 59754 + }, + { + "icon_id": "34965902", + "name": "仓库语言icon", + "font_class": "cangkuyuyanicon", + "unicode": "e962", + "unicode_decimal": 59746 + }, + { + "icon_id": "34965903", + "name": "动态icon", + "font_class": "dongtaiicon1", + "unicode": "e963", + "unicode_decimal": 59747 + }, + { + "icon_id": "34965904", + "name": "精选项目", + "font_class": "jingxuanxiangmu", + "unicode": "e964", + "unicode_decimal": 59748 + }, + { + "icon_id": "34965905", + "name": "组织成员", + "font_class": "zuzhichengyuan1", + "unicode": "e965", + "unicode_decimal": 59749 + }, + { + "icon_id": "34965906", + "name": "组织介绍", + "font_class": "zuzhijieshao", + "unicode": "e966", + "unicode_decimal": 59750 + }, + { + "icon_id": "34965907", + "name": "组织团队", + "font_class": "zuzhituandui", + "unicode": "e967", + "unicode_decimal": 59751 + }, + { + "icon_id": "34965908", + "name": "设置", + "font_class": "shezhi6", + "unicode": "e968", + "unicode_decimal": 59752 + }, + { + "icon_id": "34965909", + "name": "自定义", + "font_class": "zidingyi", + "unicode": "e969", + "unicode_decimal": 59753 + }, + { + "icon_id": "34875122", + "name": "组 37", + "font_class": "a-zu37", + "unicode": "e961", + "unicode_decimal": 59745 + }, + { + "icon_id": "34819652", + "name": "关注icon", + "font_class": "guanzhuicon", + "unicode": "e95b", + "unicode_decimal": 59739 + }, + { + "icon_id": "34819653", + "name": "已点赞_icon", + "font_class": "yidianzan_icon", + "unicode": "e95c", + "unicode_decimal": 59740 + }, + { + "icon_id": "34819654", + "name": "默认复刻_icon", + "font_class": "morenfuke_icon1", + "unicode": "e95d", + "unicode_decimal": 59741 + }, + { + "icon_id": "34819655", + "name": "已关注icon", + "font_class": "yiguanzhuicon", + "unicode": "e95e", + "unicode_decimal": 59742 + }, + { + "icon_id": "34819656", + "name": "已复刻_icon", + "font_class": "yifuke_icon", + "unicode": "e95f", + "unicode_decimal": 59743 + }, + { + "icon_id": "34820092", + "name": "形状", + "font_class": "xingzhuang", + "unicode": "e960", + "unicode_decimal": 59744 + }, + { + "icon_id": "34197190", + "name": "开启", + "font_class": "kaiqi", + "unicode": "e95a", + "unicode_decimal": 59738 + }, + { + "icon_id": "33949760", + "name": "3.1 时间", + "font_class": "a-31shijian", + "unicode": "e944", + "unicode_decimal": 59716 + }, + { + "icon_id": "33949761", + "name": "成员", + "font_class": "chengyuan2", + "unicode": "e945", + "unicode_decimal": 59717 + }, + { + "icon_id": "33949762", + "name": "编辑 (1)", + "font_class": "a-bianji12", + "unicode": "e946", + "unicode_decimal": 59718 + }, + { + "icon_id": "33949763", + "name": "复制-删除", + "font_class": "fuzhi-shanchu", + "unicode": "e947", + "unicode_decimal": 59719 + }, + { + "icon_id": "33949764", + "name": "创建钱包", + "font_class": "chuangjianqianbao", + "unicode": "e948", + "unicode_decimal": 59720 + }, + { + "icon_id": "33949765", + "name": "标记2", + "font_class": "biaoji2", + "unicode": "e949", + "unicode_decimal": 59721 + }, + { + "icon_id": "33949766", + "name": "里程碑icon", + "font_class": "lichengbeiicon1", + "unicode": "e94a", + "unicode_decimal": 59722 + }, + { + "icon_id": "33949767", + "name": "标记", + "font_class": "biaoji", + "unicode": "e94b", + "unicode_decimal": 59723 + }, + { + "icon_id": "33949768", + "name": "分支", + "font_class": "fenzhi3", + "unicode": "e94c", + "unicode_decimal": 59724 + }, + { + "icon_id": "33949769", + "name": "日期", + "font_class": "riqi", + "unicode": "e94d", + "unicode_decimal": 59725 + }, + { + "icon_id": "33949770", + "name": "入离日期小", + "font_class": "ruliriqixiao", + "unicode": "e94e", + "unicode_decimal": 59726 + }, + { + "icon_id": "33949771", + "name": "删除", + "font_class": "shanchu8", + "unicode": "e94f", + "unicode_decimal": 59727 + }, + { + "icon_id": "33949772", + "name": "搜索", + "font_class": "sousuo6", + "unicode": "e950", + "unicode_decimal": 59728 + }, + { + "icon_id": "33949773", + "name": "权限", + "font_class": "quanxian", + "unicode": "e951", + "unicode_decimal": 59729 + }, + { + "icon_id": "33949774", + "name": "里程碑icon2", + "font_class": "lichengbeiicon2", + "unicode": "e952", + "unicode_decimal": 59730 + }, + { + "icon_id": "33949775", + "name": "新建", + "font_class": "xinjian3", + "unicode": "e953", + "unicode_decimal": 59731 + }, + { + "icon_id": "33949776", + "name": "选中", + "font_class": "xuanzhong4", + "unicode": "e954", + "unicode_decimal": 59732 + }, + { + "icon_id": "33949777", + "name": "优先", + "font_class": "youxian", + "unicode": "e955", + "unicode_decimal": 59733 + }, + { + "icon_id": "33949778", + "name": "消息 (1)", + "font_class": "a-xiaoxi1", + "unicode": "e956", + "unicode_decimal": 59734 + }, + { + "icon_id": "33949779", + "name": "易修icon", + "font_class": "yixiuicon2", + "unicode": "e957", + "unicode_decimal": 59735 + }, + { + "icon_id": "33949780", + "name": "修改报表模版", + "font_class": "xiugaibaobiaomoban", + "unicode": "e958", + "unicode_decimal": 59736 + }, + { + "icon_id": "33949781", + "name": "组 1614", + "font_class": "a-zu1614", + "unicode": "e959", + "unicode_decimal": 59737 + }, + { + "icon_id": "33731642", + "name": "BOT配置", + "font_class": "BOTpeizhi", + "unicode": "e942", + "unicode_decimal": 59714 + }, + { + "icon_id": "33731643", + "name": "开发bot", + "font_class": "kaifabot", + "unicode": "e943", + "unicode_decimal": 59715 + }, + { + "icon_id": "19591156", + "name": "机器人", + "font_class": "jiqiren", + "unicode": "e940", + "unicode_decimal": 59712 + }, + { + "icon_id": "25885545", + "name": "机器人、智能-02", + "font_class": "a-jiqirenzhineng-02", + "unicode": "e941", + "unicode_decimal": 59713 + }, + { + "icon_id": "6978097", + "name": "预约-历史-时间", + "font_class": "yuyue-lishi-shijian", + "unicode": "e93f", + "unicode_decimal": 59711 + }, + { + "icon_id": "31659662", + "name": "多边形 1", + "font_class": "a-duobianxing1", + "unicode": "e93c", + "unicode_decimal": 59708 + }, + { + "icon_id": "31659664", + "name": "多边形 2", + "font_class": "a-duobianxing2", + "unicode": "e93d", + "unicode_decimal": 59709 + }, + { + "icon_id": "31659665", + "name": "搜索", + "font_class": "sousuo5", + "unicode": "e93e", + "unicode_decimal": 59710 + }, + { + "icon_id": "31424249", + "name": "报告ppt", + "font_class": "baogaoppt", + "unicode": "e93b", + "unicode_decimal": 59707 + }, + { + "icon_id": "31318120", + "name": "概览", + "font_class": "gailan2", + "unicode": "e93a", + "unicode_decimal": 59706 + }, + { + "icon_id": "31275425", + "name": "编辑", + "font_class": "bianji7", + "unicode": "e939", + "unicode_decimal": 59705 + }, + { + "icon_id": "30382389", + "name": "ROBOT", + "font_class": "ROBOT", + "unicode": "e937", + "unicode_decimal": 59703 + }, + { + "icon_id": "30382697", + "name": "组 1404", + "font_class": "a-zu1404", + "unicode": "e938", + "unicode_decimal": 59704 + }, + { + "icon_id": "29934961", + "name": "退出icon", + "font_class": "tuichuicon", + "unicode": "e936", + "unicode_decimal": 59702 + }, + { + "icon_id": "29811507", + "name": "帮助中心icon", + "font_class": "bangzhuzhongxinicon1", + "unicode": "e935", + "unicode_decimal": 59701 + }, + { + "icon_id": "29701613", + "name": "课题详情icon", + "font_class": "ketixiangqingicon", + "unicode": "e92b", + "unicode_decimal": 59691 + }, + { + "icon_id": "29701614", + "name": "编辑icon", + "font_class": "bianjiicon", + "unicode": "e92c", + "unicode_decimal": 59692 + }, + { + "icon_id": "29701615", + "name": "报名详情icon", + "font_class": "baomingxiangqingicon", + "unicode": "e92d", + "unicode_decimal": 59693 + }, + { + "icon_id": "29701616", + "name": "搜索", + "font_class": "sousuo4", + "unicode": "e92e", + "unicode_decimal": 59694 + }, + { + "icon_id": "29701617", + "name": "取消申请icon", + "font_class": "quxiaoshenqingicon", + "unicode": "e92f", + "unicode_decimal": 59695 + }, + { + "icon_id": "29701618", + "name": "下拉", + "font_class": "xiala3", + "unicode": "e930", + "unicode_decimal": 59696 + }, + { + "icon_id": "29701619", + "name": "添加_填充", + "font_class": "tianjia_tianchong", + "unicode": "e931", + "unicode_decimal": 59697 + }, + { + "icon_id": "29701620", + "name": "删除 (2)", + "font_class": "a-shanchu2", + "unicode": "e932", + "unicode_decimal": 59698 + }, + { + "icon_id": "29701621", + "name": "删除icon", + "font_class": "shanchuicon3", + "unicode": "e933", + "unicode_decimal": 59699 + }, + { + "icon_id": "29701622", + "name": "申请课题icon", + "font_class": "shenqingketiicon", + "unicode": "e934", + "unicode_decimal": 59700 + }, + { + "icon_id": "29665762", + "name": "微信", + "font_class": "weixin", + "unicode": "e92a", + "unicode_decimal": 59690 + }, + { + "icon_id": "29467269", + "name": "暂无数据", + "font_class": "zanwushuju", + "unicode": "e928", + "unicode_decimal": 59688 + }, + { + "icon_id": "29467272", + "name": "服务icon", + "font_class": "fuwuicon", + "unicode": "e929", + "unicode_decimal": 59689 + }, + { + "icon_id": "29206429", + "name": "personal-center", + "font_class": "personal-center", + "unicode": "e927", + "unicode_decimal": 59687 + }, + { + "icon_id": "28888753", + "name": "帮助中心icon", + "font_class": "bangzhuzhongxinicon", + "unicode": "e926", + "unicode_decimal": 59686 + }, + { + "icon_id": "28163416", + "name": "开源项目", + "font_class": "kaiyuanxiangmu", + "unicode": "e91d", + "unicode_decimal": 59677 + }, + { + "icon_id": "28163417", + "name": "论坛交流", + "font_class": "luntanjiaoliu", + "unicode": "e91e", + "unicode_decimal": 59678 + }, + { + "icon_id": "28163418", + "name": "网站配置", + "font_class": "wangzhanpeizhi", + "unicode": "e91f", + "unicode_decimal": 59679 + }, + { + "icon_id": "28163419", + "name": "未选择-创客空间", + "font_class": "weixuanze-chuangkekongjian", + "unicode": "e920", + "unicode_decimal": 59680 + }, + { + "icon_id": "28163420", + "name": "图标", + "font_class": "tubiao", + "unicode": "e921", + "unicode_decimal": 59681 + }, + { + "icon_id": "28163421", + "name": "公告发布", + "font_class": "gonggaofabu", + "unicode": "e922", + "unicode_decimal": 59682 + }, + { + "icon_id": "28163422", + "name": "竞赛活动", + "font_class": "jingsaihuodong", + "unicode": "e923", + "unicode_decimal": 59683 + }, + { + "icon_id": "28163423", + "name": "用户管理", + "font_class": "yonghuguanli", + "unicode": "e924", + "unicode_decimal": 59684 + }, + { + "icon_id": "28163424", + "name": "审批", + "font_class": "shenpi", + "unicode": "e925", + "unicode_decimal": 59685 + }, + { + "icon_id": "22773568", + "name": "专利", + "font_class": "zhuanli1", + "unicode": "e918", + "unicode_decimal": 59672 + }, + { + "icon_id": "27680124", + "name": "代码icon", + "font_class": "daimaicon", + "unicode": "e91c", + "unicode_decimal": 59676 + }, + { + "icon_id": "27664463", + "name": "奖项icon", + "font_class": "jiangxiangicon", + "unicode": "e916", + "unicode_decimal": 59670 + }, + { + "icon_id": "27664464", + "name": "数据", + "font_class": "shuju", + "unicode": "e917", + "unicode_decimal": 59671 + }, + { + "icon_id": "27664466", + "name": "文档", + "font_class": "wendang", + "unicode": "e919", + "unicode_decimal": 59673 + }, + { + "icon_id": "27664467", + "name": "论文", + "font_class": "lunwen", + "unicode": "e91a", + "unicode_decimal": 59674 + }, + { + "icon_id": "27664468", + "name": "专利", + "font_class": "zhuanli", + "unicode": "e91b", + "unicode_decimal": 59675 + }, + { + "icon_id": "27664392", + "name": "概览", + "font_class": "gailan1", + "unicode": "e914", + "unicode_decimal": 59668 + }, + { + "icon_id": "27664393", + "name": "团队", + "font_class": "tuandui", + "unicode": "e915", + "unicode_decimal": 59669 + }, + { + "icon_id": "27299393", + "name": "icon", + "font_class": "icon2", + "unicode": "e912", + "unicode_decimal": 59666 + }, + { + "icon_id": "27299394", + "name": "2", + "font_class": "a-21", + "unicode": "e913", + "unicode_decimal": 59667 + }, + { + "icon_id": "27200759", + "name": "2", + "font_class": "a-2", + "unicode": "e90f", + "unicode_decimal": 59663 + }, + { + "icon_id": "27200760", + "name": "3", + "font_class": "a-3", + "unicode": "e910", + "unicode_decimal": 59664 + }, + { + "icon_id": "27200761", + "name": "icon", + "font_class": "icon1", + "unicode": "e911", + "unicode_decimal": 59665 + }, + { + "icon_id": "27041503", + "name": "ioon", + "font_class": "ioon", + "unicode": "e90e", + "unicode_decimal": 59662 + }, + { + "icon_id": "41976790", + "name": "shanchu_tc_icon-copy", + "font_class": "shanchu_important", + "unicode": "f1d8", + "unicode_decimal": 61912 + }, + { + "icon_id": "26470602", + "name": "shanchu_tc_icon", + "font_class": "shanchu_tc_icon1", + "unicode": "e90c", + "unicode_decimal": 59660 + }, + { + "icon_id": "26470603", + "name": "专家icon", + "font_class": "zhuanjiaicon", + "unicode": "e90d", + "unicode_decimal": 59661 + }, + { + "icon_id": "12505154", + "name": "声明", + "font_class": "shengming", + "unicode": "e90b", + "unicode_decimal": 59659 + }, + { + "icon_id": "26470597", + "name": "成功", + "font_class": "chenggong1", + "unicode": "e907", + "unicode_decimal": 59655 + }, + { + "icon_id": "26470599", + "name": "必填@2x", + "font_class": "a-bitian2x1", + "unicode": "e908", + "unicode_decimal": 59656 + }, + { + "icon_id": "26470600", + "name": "下拉", + "font_class": "xiala1", + "unicode": "e909", + "unicode_decimal": 59657 + }, + { + "icon_id": "26470601", + "name": "下拉2", + "font_class": "xiala2", + "unicode": "e90a", + "unicode_decimal": 59658 + }, + { + "icon_id": "26363219", + "name": "箭头", + "font_class": "jiantou1", + "unicode": "e905", + "unicode_decimal": 59653 + }, + { + "icon_id": "26359564", + "name": "章节icon ", + "font_class": "zhangjieicon", + "unicode": "e8fe", + "unicode_decimal": 59646 + }, + { + "icon_id": "26359565", + "name": "成员", + "font_class": "chengyuan1", + "unicode": "e903", + "unicode_decimal": 59651 + }, + { + "icon_id": "26325702", + "name": "上传@2x", + "font_class": "a-shangchuan2x", + "unicode": "e8f9", + "unicode_decimal": 59641 + }, + { + "icon_id": "26325703", + "name": "删除 ", + "font_class": "shanchu7", + "unicode": "e8fa", + "unicode_decimal": 59642 + }, + { + "icon_id": "26325704", + "name": "左滑备份", + "font_class": "zuohuabeifen", + "unicode": "e8fb", + "unicode_decimal": 59643 + }, + { + "icon_id": "26325698", + "name": "编辑 (1)", + "font_class": "a-bianji11", + "unicode": "e8f4", + "unicode_decimal": 59636 + }, + { + "icon_id": "26325699", + "name": "必填@2x", + "font_class": "a-bitian2x", + "unicode": "e8f5", + "unicode_decimal": 59637 + }, + { + "icon_id": "26325700", + "name": "左滑@2x", + "font_class": "a-zuohua2x", + "unicode": "e8f7", + "unicode_decimal": 59639 + }, + { + "icon_id": "26325701", + "name": "链接", + "font_class": "lianjie3", + "unicode": "e8f8", + "unicode_decimal": 59640 + }, + { + "icon_id": "25748537", + "name": "知识图谱", + "font_class": "zhishitupu", + "unicode": "e8fc", + "unicode_decimal": 59644 + }, + { + "icon_id": "25748551", + "name": "计算机", + "font_class": "jisuanji1", + "unicode": "e8fd", + "unicode_decimal": 59645 + }, + { + "icon_id": "25748553", + "name": "电子", + "font_class": "dianzi1", + "unicode": "e8ff", + "unicode_decimal": 59647 + }, + { + "icon_id": "25748554", + "name": "军事理论", + "font_class": "junshililun1", + "unicode": "e900", + "unicode_decimal": 59648 + }, + { + "icon_id": "25748555", + "name": "软件工程", + "font_class": "ruanjiangongcheng1", + "unicode": "e901", + "unicode_decimal": 59649 + }, + { + "icon_id": "25748556", + "name": "医学", + "font_class": "yixue1", + "unicode": "e902", + "unicode_decimal": 59650 + }, + { + "icon_id": "25748558", + "name": "通信", + "font_class": "tongxin1", + "unicode": "e904", + "unicode_decimal": 59652 + }, + { + "icon_id": "25748560", + "name": "政策法规", + "font_class": "zhengcefagui1", + "unicode": "e906", + "unicode_decimal": 59654 + }, + { + "icon_id": "25748528", + "name": "大数据", + "font_class": "dashuju", + "unicode": "e8f3", + "unicode_decimal": 59635 + }, + { + "icon_id": "25748531", + "name": "人工智能", + "font_class": "rengongzhineng", + "unicode": "e8f6", + "unicode_decimal": 59638 + }, + { + "icon_id": "25733167", + "name": "双引号(1)@2x", + "font_class": "a-shuangyinhao12x", + "unicode": "e8f2", + "unicode_decimal": 59634 + }, + { + "icon_id": "25701947", + "name": "顶部", + "font_class": "dingbu", + "unicode": "e8ee", + "unicode_decimal": 59630 + }, + { + "icon_id": "25701948", + "name": "帮助", + "font_class": "bangzhu1", + "unicode": "e8ef", + "unicode_decimal": 59631 + }, + { + "icon_id": "25701949", + "name": "意见反馈", + "font_class": "yijianfankui2", + "unicode": "e8f0", + "unicode_decimal": 59632 + }, + { + "icon_id": "25701950", + "name": "分享", + "font_class": "fenxiang", + "unicode": "e8f1", + "unicode_decimal": 59633 + }, + { + "icon_id": "25580217", + "name": "地址", + "font_class": "dizhi", + "unicode": "e8eb", + "unicode_decimal": 59627 + }, + { + "icon_id": "25580218", + "name": "邮箱", + "font_class": "youxiang1", + "unicode": "e8ec", + "unicode_decimal": 59628 + }, + { + "icon_id": "25580219", + "name": "电话icon", + "font_class": "dianhuaicon", + "unicode": "e8ed", + "unicode_decimal": 59629 + }, + { + "icon_id": "25284174", + "name": "添加icon", + "font_class": "tianjiaicon", + "unicode": "e8e8", + "unicode_decimal": 59624 + }, + { + "icon_id": "25284175", + "name": "铃声icon", + "font_class": "lingshengicon", + "unicode": "e8ea", + "unicode_decimal": 59626 + }, + { + "icon_id": "25204490", + "name": "更多icon", + "font_class": "gengduoicon", + "unicode": "e8e5", + "unicode_decimal": 59621 + }, + { + "icon_id": "25204491", + "name": "时间icon", + "font_class": "shijianicon", + "unicode": "e8e7", + "unicode_decimal": 59623 + }, + { + "icon_id": "25188228", + "name": "密码icon", + "font_class": "mimaicon", + "unicode": "e8e1", + "unicode_decimal": 59617 + }, + { + "icon_id": "25188229", + "name": "钩icon", + "font_class": "gouicon", + "unicode": "e8e2", + "unicode_decimal": 59618 + }, + { + "icon_id": "25188230", + "name": "展开icon", + "font_class": "zhankaiicon", + "unicode": "e8e3", + "unicode_decimal": 59619 + }, + { + "icon_id": "24656750", + "name": "文件", + "font_class": "wenjian7", + "unicode": "e8e0", + "unicode_decimal": 59616 + }, + { + "icon_id": "630094", + "name": "向右箭头", + "font_class": "xiangyoujiantou", + "unicode": "e8de", + "unicode_decimal": 59614 + }, + { + "icon_id": "630095", + "name": "向左箭头", + "font_class": "xiangzuojiantou", + "unicode": "e8df", + "unicode_decimal": 59615 + }, + { + "icon_id": "24600282", + "name": "浏览icon@2x", + "font_class": "a-liulanicon2x", + "unicode": "e8dd", + "unicode_decimal": 59613 + }, + { + "icon_id": "24567893", + "name": "文件icon", + "font_class": "wenjianicon", + "unicode": "e8dc", + "unicode_decimal": 59612 + }, + { + "icon_id": "24527422", + "name": "圆圈@2x", + "font_class": "a-yuanquan2x", + "unicode": "e8db", + "unicode_decimal": 59611 + }, + { + "icon_id": "24378423", + "name": "项目标签", + "font_class": "xiangmubiaoqian", + "unicode": "e8da", + "unicode_decimal": 59610 + }, + { + "icon_id": "24368060", + "name": "icon", + "font_class": "icon", + "unicode": "e8ce", + "unicode_decimal": 59598 + }, + { + "icon_id": "24368061", + "name": "tar", + "font_class": "tar", + "unicode": "e8cf", + "unicode_decimal": 59599 + }, + { + "icon_id": "24289113", + "name": "复制 (2)", + "font_class": "a-fuzhi2", + "unicode": "e8d0", + "unicode_decimal": 59600 + }, + { + "icon_id": "24289114", + "name": "附件", + "font_class": "fujian1", + "unicode": "e8d1", + "unicode_decimal": 59601 + }, + { + "icon_id": "24289115", + "name": "编 辑", + "font_class": "a-bianji1", + "unicode": "e8d2", + "unicode_decimal": 59602 + }, + { + "icon_id": "24289116", + "name": "版本icon", + "font_class": "banbenicon", + "unicode": "e8d3", + "unicode_decimal": 59603 + }, + { + "icon_id": "24289117", + "name": "删除icon", + "font_class": "shanchuicon2", + "unicode": "e8d4", + "unicode_decimal": 59604 + }, + { + "icon_id": "24289118", + "name": "垃圾桶_icon@3x", + "font_class": "a-lajitong_icon3x", + "unicode": "e8d5", + "unicode_decimal": 59605 + }, + { + "icon_id": "24289119", + "name": "下拉按钮", + "font_class": "xialaanniu2", + "unicode": "e8d6", + "unicode_decimal": 59606 + }, + { + "icon_id": "24289120", + "name": "下载-icon", + "font_class": "xiazai-icon", + "unicode": "e8d7", + "unicode_decimal": 59607 + }, + { + "icon_id": "24289121", + "name": "master_icon", + "font_class": "master_icon1", + "unicode": "e8d8", + "unicode_decimal": 59608 + }, + { + "icon_id": "24289122", + "name": "上传icon", + "font_class": "shangchuanicon", + "unicode": "e8d9", + "unicode_decimal": 59609 + }, + { + "icon_id": "24059956", + "name": "个人资料", + "font_class": "gerenziliao1", + "unicode": "e8c7", + "unicode_decimal": 59591 + }, + { + "icon_id": "24059409", + "name": "里程碑icon", + "font_class": "lichengbeiicon", + "unicode": "e885", + "unicode_decimal": 59525 + }, + { + "icon_id": "24059410", + "name": "仓库设置icon", + "font_class": "cangkushezhiicon", + "unicode": "e889", + "unicode_decimal": 59529 + }, + { + "icon_id": "24059411", + "name": "动态icon", + "font_class": "dongtaiicon", + "unicode": "e88a", + "unicode_decimal": 59530 + }, + { + "icon_id": "24059412", + "name": "工作流icon", + "font_class": "gongzuoliuicon", + "unicode": "e88b", + "unicode_decimal": 59531 + }, + { + "icon_id": "24059413", + "name": "易修icon", + "font_class": "yixiuicon1", + "unicode": "e89b", + "unicode_decimal": 59547 + }, + { + "icon_id": "24059414", + "name": "wiki icon", + "font_class": "a-wikiicon1", + "unicode": "e8c6", + "unicode_decimal": 59590 + }, + { + "icon_id": "24047186", + "name": "代码库icon", + "font_class": "daimakuicon1", + "unicode": "e8c5", + "unicode_decimal": 59589 + }, + { + "icon_id": "24047189", + "name": "我的通知", + "font_class": "wodetongzhi", + "unicode": "e8c8", + "unicode_decimal": 59592 + }, + { + "icon_id": "24047190", + "name": "通知管理", + "font_class": "tongzhiguanli", + "unicode": "e8c9", + "unicode_decimal": 59593 + }, + { + "icon_id": "24047191", + "name": "选中", + "font_class": "xuanzhong3", + "unicode": "e8ca", + "unicode_decimal": 59594 + }, + { + "icon_id": "24047192", + "name": "系统通知icon", + "font_class": "xitongtongzhiicon", + "unicode": "e8cb", + "unicode_decimal": 59595 + }, + { + "icon_id": "24047193", + "name": "消息", + "font_class": "xiaoxi2", + "unicode": "e8cc", + "unicode_decimal": 59596 + }, + { + "icon_id": "24047194", + "name": "ssh密钥", + "font_class": "sshmiyue", + "unicode": "e8cd", + "unicode_decimal": 59597 + }, + { + "icon_id": "24014152", + "name": "个人资料", + "font_class": "gerenziliao", + "unicode": "e8c4", + "unicode_decimal": 59588 + }, + { + "icon_id": "23655968", + "name": "新手指引", + "font_class": "xinshouzhiyin", + "unicode": "e8e4", + "unicode_decimal": 59620 + }, + { + "icon_id": "23655969", + "name": "新建项目", + "font_class": "xinjianxiangmu", + "unicode": "e8e6", + "unicode_decimal": 59622 + }, + { + "icon_id": "23658111", + "name": "加入课堂", + "font_class": "jiaruketang1", + "unicode": "e8e9", + "unicode_decimal": 59625 + }, + { + "icon_id": "23791639", + "name": "项目公告", + "font_class": "xiangmugonggao", + "unicode": "e8c2", + "unicode_decimal": 59586 + }, + { + "icon_id": "23791640", + "name": "成果", + "font_class": "chengguo", + "unicode": "e8c3", + "unicode_decimal": 59587 + }, + { + "icon_id": "23791410", + "name": "成交公告", + "font_class": "chengjiaogonggao", + "unicode": "e8c0", + "unicode_decimal": 59584 + }, + { + "icon_id": "23791411", + "name": "技术资产", + "font_class": "jishuzichan", + "unicode": "e8c1", + "unicode_decimal": 59585 + }, + { + "icon_id": "23790928", + "name": "废标公告", + "font_class": "feibiaogonggao", + "unicode": "e8bc", + "unicode_decimal": 59580 + }, + { + "icon_id": "23790929", + "name": "中标公告", + "font_class": "zhongbiaogonggao", + "unicode": "e8bd", + "unicode_decimal": 59581 + }, + { + "icon_id": "23790930", + "name": "更正公告", + "font_class": "gengzhenggonggao", + "unicode": "e8be", + "unicode_decimal": 59582 + }, + { + "icon_id": "23790931", + "name": "招标公告", + "font_class": "zhaobiaogonggao", + "unicode": "e8bf", + "unicode_decimal": 59583 + }, + { + "icon_id": "23732532", + "name": "文件", + "font_class": "wenjian6", + "unicode": "e8ba", + "unicode_decimal": 59578 + }, + { + "icon_id": "23732533", + "name": "文件夹", + "font_class": "wenjianjia4", + "unicode": "e8bb", + "unicode_decimal": 59579 + }, + { + "icon_id": "23642443", + "name": "取消关注", + "font_class": "quxiaoguanzhu", + "unicode": "e89a", + "unicode_decimal": 59546 + }, + { + "icon_id": "23642444", + "name": "点赞_icon", + "font_class": "dianzan_icon", + "unicode": "e8a2", + "unicode_decimal": 59554 + }, + { + "icon_id": "23639530", + "name": "文件", + "font_class": "wenjian5", + "unicode": "e896", + "unicode_decimal": 59542 + }, + { + "icon_id": "23639533", + "name": "文件夹", + "font_class": "wenjianjia3", + "unicode": "e8a9", + "unicode_decimal": 59561 + }, + { + "icon_id": "23639440", + "name": "复制icon", + "font_class": "fuzhiicon", + "unicode": "e886", + "unicode_decimal": 59526 + }, + { + "icon_id": "23639422", + "name": "主页-fill", + "font_class": "zhuye-fill", + "unicode": "e876", + "unicode_decimal": 59510 + }, + { + "icon_id": "23639423", + "name": "代码库icon", + "font_class": "daimakuicon", + "unicode": "e884", + "unicode_decimal": 59524 + }, + { + "icon_id": "23572260", + "name": "新建", + "font_class": "xinjian2", + "unicode": "e8b0", + "unicode_decimal": 59568 + }, + { + "icon_id": "23567674", + "name": "协议icon", + "font_class": "xieyiicon", + "unicode": "e870", + "unicode_decimal": 59504 + }, + { + "icon_id": "23567675", + "name": "内存icon", + "font_class": "neicunicon", + "unicode": "e891", + "unicode_decimal": 59537 + }, + { + "icon_id": "23567676", + "name": "自述文件_icon", + "font_class": "zishuwenjian_icon", + "unicode": "e8a6", + "unicode_decimal": 59558 + }, + { + "icon_id": "23472253", + "name": "标签icon", + "font_class": "biaoqianicon", + "unicode": "e882", + "unicode_decimal": 59522 + }, + { + "icon_id": "23472254", + "name": "编 辑", + "font_class": "a-bianji", + "unicode": "e883", + "unicode_decimal": 59523 + }, + { + "icon_id": "23472258", + "name": "链接icon", + "font_class": "lianjieicon", + "unicode": "e887", + "unicode_decimal": 59527 + }, + { + "icon_id": "23472259", + "name": "合并请求icon", + "font_class": "hebingqingqiuicon", + "unicode": "e888", + "unicode_decimal": 59528 + }, + { + "icon_id": "23472263", + "name": "默认点赞_icon", + "font_class": "morendianzan_icon", + "unicode": "e88e", + "unicode_decimal": 59534 + }, + { + "icon_id": "23472265", + "name": "目录icon", + "font_class": "muluicon", + "unicode": "e894", + "unicode_decimal": 59540 + }, + { + "icon_id": "23472267", + "name": "设 置", + "font_class": "a-shezhi", + "unicode": "e899", + "unicode_decimal": 59545 + }, + { + "icon_id": "23472269", + "name": "提交icon", + "font_class": "tijiaoicon", + "unicode": "e89e", + "unicode_decimal": 59550 + }, + { + "icon_id": "23472270", + "name": "默认关注_ICON", + "font_class": "morenguanzhu_ICON", + "unicode": "e89f", + "unicode_decimal": 59551 + }, + { + "icon_id": "23472272", + "name": "下拉按钮", + "font_class": "xialaanniu1", + "unicode": "e8a4", + "unicode_decimal": 59556 + }, + { + "icon_id": "23472276", + "name": "左滑icon", + "font_class": "zuohuaicon", + "unicode": "e8b5", + "unicode_decimal": 59573 + }, + { + "icon_id": "23472277", + "name": "master_icon", + "font_class": "master_icon", + "unicode": "e8b6", + "unicode_decimal": 59574 + }, + { + "icon_id": "23472278", + "name": "默认复刻_icon", + "font_class": "morenfuke_icon", + "unicode": "e8b7", + "unicode_decimal": 59575 + }, + { + "icon_id": "23472279", + "name": "wiki icon", + "font_class": "a-wikiicon", + "unicode": "e8b8", + "unicode_decimal": 59576 + }, + { + "icon_id": "23472280", + "name": "易修icon", + "font_class": "yixiuicon", + "unicode": "e8b9", + "unicode_decimal": 59577 + }, + { + "icon_id": "23436350", + "name": "缩放", + "font_class": "suofang", + "unicode": "e87f", + "unicode_decimal": 59519 + }, + { + "icon_id": "23436351", + "name": "放大icon", + "font_class": "fangdaicon", + "unicode": "e881", + "unicode_decimal": 59521 + }, + { + "icon_id": "23384231", + "name": "搜索_icon", + "font_class": "sousuo_icon1", + "unicode": "e873", + "unicode_decimal": 59507 + }, + { + "icon_id": "23384232", + "name": "欢迎_icon", + "font_class": "huanying_icon", + "unicode": "e878", + "unicode_decimal": 59512 + }, + { + "icon_id": "23384233", + "name": "文件夹", + "font_class": "wenjianjia2", + "unicode": "e879", + "unicode_decimal": 59513 + }, + { + "icon_id": "23384234", + "name": "删除icon", + "font_class": "shanchuicon1", + "unicode": "e87a", + "unicode_decimal": 59514 + }, + { + "icon_id": "23261798", + "name": "请求icon", + "font_class": "qingqiuicon", + "unicode": "e871", + "unicode_decimal": 59505 + }, + { + "icon_id": "23261799", + "name": "响应icon", + "font_class": "xiangyingicon", + "unicode": "e87c", + "unicode_decimal": 59516 + }, + { + "icon_id": "23144143", + "name": "多选选中", + "font_class": "duoxuanxuanzhong", + "unicode": "e88f", + "unicode_decimal": 59535 + }, + { + "icon_id": "23144144", + "name": "错误icon", + "font_class": "cuowuicon", + "unicode": "e890", + "unicode_decimal": 59536 + }, + { + "icon_id": "23144146", + "name": "成功icon", + "font_class": "chenggongicon", + "unicode": "e892", + "unicode_decimal": 59538 + }, + { + "icon_id": "23144147", + "name": "未选中响应icon", + "font_class": "weixuanzhongxiangyingicon", + "unicode": "e893", + "unicode_decimal": 59539 + }, + { + "icon_id": "23144149", + "name": "必填icon", + "font_class": "bitianicon", + "unicode": "e895", + "unicode_decimal": 59541 + }, + { + "icon_id": "23144151", + "name": "未选中项目标签icon", + "font_class": "weixuanzhongxiangmubiaoqianicon", + "unicode": "e897", + "unicode_decimal": 59543 + }, + { + "icon_id": "23144152", + "name": "列表icon", + "font_class": "liebiaoicon", + "unicode": "e898", + "unicode_decimal": 59544 + }, + { + "icon_id": "23144158", + "name": "协作者管理icon", + "font_class": "xiezuozheguanliicon", + "unicode": "e8a1", + "unicode_decimal": 59553 + }, + { + "icon_id": "23144160", + "name": "选中分支icon", + "font_class": "xuanzhongfenzhiicon", + "unicode": "e8a3", + "unicode_decimal": 59555 + }, + { + "icon_id": "23144162", + "name": "选中基本设置icon", + "font_class": "xuanzhongjibenshezhiicon", + "unicode": "e8a5", + "unicode_decimal": 59557 + }, + { + "icon_id": "23144165", + "name": "选中项目标签icon", + "font_class": "xuanzhongxiangmubiaoqianicon", + "unicode": "e8aa", + "unicode_decimal": 59562 + }, + { + "icon_id": "23144167", + "name": "选中webhook icon", + "font_class": "a-xuanzhongwebhookicon", + "unicode": "e8af", + "unicode_decimal": 59567 + }, + { + "icon_id": "23046290", + "name": "shanchu_tc_icon", + "font_class": "shanchu_tc_icon", + "unicode": "e88c", + "unicode_decimal": 59532 + }, + { + "icon_id": "23046293", + "name": "wiki_icon", + "font_class": "wiki_icon", + "unicode": "e88d", + "unicode_decimal": 59533 + }, + { + "icon_id": "23046244", + "name": "导入模版_icon", + "font_class": "daorumoban_icon", + "unicode": "e86f", + "unicode_decimal": 59503 + }, + { + "icon_id": "23046252", + "name": "错误", + "font_class": "cuowu", + "unicode": "e872", + "unicode_decimal": 59506 + }, + { + "icon_id": "23046255", + "name": "更多_icon", + "font_class": "gengduo_icon", + "unicode": "e874", + "unicode_decimal": 59508 + }, + { + "icon_id": "23046258", + "name": "复层关闭_icon", + "font_class": "fucengguanbi_icon", + "unicode": "e875", + "unicode_decimal": 59509 + }, + { + "icon_id": "23046268", + "name": "删除icon", + "font_class": "shanchuicon", + "unicode": "e877", + "unicode_decimal": 59511 + }, + { + "icon_id": "23046273", + "name": "搜索_删除icon", + "font_class": "sousuo_shanchuicon", + "unicode": "e87b", + "unicode_decimal": 59515 + }, + { + "icon_id": "23046275", + "name": "搜索_icon", + "font_class": "sousuo_icon", + "unicode": "e87d", + "unicode_decimal": 59517 + }, + { + "icon_id": "23046276", + "name": "文档预览_icon", + "font_class": "wendangyulan_icon", + "unicode": "e87e", + "unicode_decimal": 59518 + }, + { + "icon_id": "23046278", + "name": "下拉按钮", + "font_class": "xialaanniu", + "unicode": "e880", + "unicode_decimal": 59520 + }, + { + "icon_id": "22906287", + "name": "二次确认_icon", + "font_class": "erciqueren_icon", + "unicode": "e867", + "unicode_decimal": 59495 + }, + { + "icon_id": "22906288", + "name": "选中ssh_icon", + "font_class": "xuanzhongssh_icon", + "unicode": "e868", + "unicode_decimal": 59496 + }, + { + "icon_id": "22906289", + "name": "未选中安全设置_icon", + "font_class": "weixuanzhonganquanshezhi_icon", + "unicode": "e869", + "unicode_decimal": 59497 + }, + { + "icon_id": "22906290", + "name": "未选中ssh_icon", + "font_class": "weixuanzhongssh_icon", + "unicode": "e86a", + "unicode_decimal": 59498 + }, + { + "icon_id": "22906291", + "name": "选中安全设置_icon", + "font_class": "xuanzhonganquanshezhi_icon", + "unicode": "e86b", + "unicode_decimal": 59499 + }, + { + "icon_id": "22906292", + "name": "删除_icon", + "font_class": "shanchu_icon", + "unicode": "e86c", + "unicode_decimal": 59500 + }, + { + "icon_id": "22906293", + "name": "列表ssh_icon", + "font_class": "liebiaossh_icon", + "unicode": "e86e", + "unicode_decimal": 59502 + }, + { + "icon_id": "17575494", + "name": "file-submodule", + "font_class": "file-submodule", + "unicode": "e866", + "unicode_decimal": 59494 + }, + { + "icon_id": "7539612", + "name": "nv", + "font_class": "nv1", + "unicode": "e864", + "unicode_decimal": 59492 + }, + { + "icon_id": "7539613", + "name": "nan", + "font_class": "nan1", + "unicode": "e865", + "unicode_decimal": 59493 + }, + { + "icon_id": "21936935", + "name": "邮箱", + "font_class": "youxiang", + "unicode": "e8b2", + "unicode_decimal": 59570 + }, + { + "icon_id": "21936924", + "name": "单位", + "font_class": "danwei", + "unicode": "e8a7", + "unicode_decimal": 59559 + }, + { + "icon_id": "21936925", + "name": "待办事项", + "font_class": "daibanshixiang", + "unicode": "e8a8", + "unicode_decimal": 59560 + }, + { + "icon_id": "21936928", + "name": "概览", + "font_class": "gailan", + "unicode": "e8ab", + "unicode_decimal": 59563 + }, + { + "icon_id": "21936929", + "name": "男", + "font_class": "nan", + "unicode": "e8ac", + "unicode_decimal": 59564 + }, + { + "icon_id": "21936930", + "name": "女", + "font_class": "nv", + "unicode": "e8ad", + "unicode_decimal": 59565 + }, + { + "icon_id": "21936931", + "name": "工作流", + "font_class": "gongzuoliu1", + "unicode": "e8ae", + "unicode_decimal": 59566 + }, + { + "icon_id": "21936934", + "name": "数据统计", + "font_class": "shujutongji", + "unicode": "e8b1", + "unicode_decimal": 59569 + }, + { + "icon_id": "21936936", + "name": "项目", + "font_class": "xiangmu", + "unicode": "e8b3", + "unicode_decimal": 59571 + }, + { + "icon_id": "21936937", + "name": "组织", + "font_class": "zuzhi", + "unicode": "e8b4", + "unicode_decimal": 59572 + }, + { + "icon_id": "14835599", + "name": "右箭头", + "font_class": "arrowRight", + "unicode": "e863", + "unicode_decimal": 59491 + }, + { + "icon_id": "21151489", + "name": "箭头镂空-左", + "font_class": "jiantouloukong-zuo", + "unicode": "e861", + "unicode_decimal": 59489 + }, + { + "icon_id": "21151557", + "name": "箭头镂空-右", + "font_class": "jiantouloukong-you", + "unicode": "e862", + "unicode_decimal": 59490 + }, + { + "icon_id": "21568989", + "name": "分享", + "font_class": "fenxiang1", + "unicode": "e89c", + "unicode_decimal": 59548 + }, + { + "icon_id": "21568990", + "name": "回到顶部", + "font_class": "huidaodingbu1", + "unicode": "e89d", + "unicode_decimal": 59549 + }, + { + "icon_id": "21568993", + "name": "帮助", + "font_class": "bangzhu", + "unicode": "e8a0", + "unicode_decimal": 59552 + }, + { + "icon_id": "991344", + "name": "提交", + "font_class": "tijiao", + "unicode": "e860", + "unicode_decimal": 59488 + }, + { + "icon_id": "1852052", + "name": "数据库", + "font_class": "dataBase", + "unicode": "e85a", + "unicode_decimal": 59482 + }, + { + "icon_id": "4165948", + "name": "文件", + "font_class": "wenjian4", + "unicode": "e85b", + "unicode_decimal": 59483 + }, + { + "icon_id": "17165148", + "name": "链接", + "font_class": "lianjie2", + "unicode": "e85c", + "unicode_decimal": 59484 + }, + { + "icon_id": "17463741", + "name": "分支", + "font_class": "fenzhi2", + "unicode": "e85d", + "unicode_decimal": 59485 + }, + { + "icon_id": "17972521", + "name": "分支-3", + "font_class": "fenzhi-3", + "unicode": "e85e", + "unicode_decimal": 59486 + }, + { + "icon_id": "18682391", + "name": "天平", + "font_class": "tianping", + "unicode": "e85f", + "unicode_decimal": 59487 + }, + { + "icon_id": "1770896", + "name": "撤销", + "font_class": "chexiao", + "unicode": "e657", + "unicode_decimal": 58967 + }, + { + "icon_id": "12039527", + "name": "删除_Hover", + "font_class": "shanchu_Hover", + "unicode": "e6e9", + "unicode_decimal": 59113 + }, + { + "icon_id": "17756499", + "name": "多关联与反馈", + "font_class": "duoguanlianyufankui", + "unicode": "e7fb", + "unicode_decimal": 59387 + }, + { + "icon_id": "4187234", + "name": "文件夹", + "font_class": "wenjianjia", + "unicode": "e640", + "unicode_decimal": 58944 + }, + { + "icon_id": "12039528", + "name": "下移_默认", + "font_class": "xiayi_moren", + "unicode": "e6ea", + "unicode_decimal": 59114 + }, + { + "icon_id": "17756500", + "name": "项目管理", + "font_class": "xiangmuguanli", + "unicode": "e7fc", + "unicode_decimal": 59388 + }, + { + "icon_id": "929277", + "name": "expand", + "font_class": "expand", + "unicode": "e6db", + "unicode_decimal": 59099 + }, + { + "icon_id": "12039529", + "name": "编辑_默认", + "font_class": "bianji_moren", + "unicode": "e6eb", + "unicode_decimal": 59115 + }, + { + "icon_id": "17756816", + "name": "资源排行和推荐", + "font_class": "ziyuanpaihanghetuijian", + "unicode": "e7ff", + "unicode_decimal": 59391 + }, + { + "icon_id": "1261493", + "name": "compress", + "font_class": "compress", + "unicode": "e65e", + "unicode_decimal": 58974 + }, + { + "icon_id": "12040163", + "name": "恢复初始代码", + "font_class": "huifuchushidaima", + "unicode": "e6ec", + "unicode_decimal": 59116 + }, + { + "icon_id": "17756817", + "name": "质量检测", + "font_class": "zhiliangjiance", + "unicode": "e801", + "unicode_decimal": 59393 + }, + { + "icon_id": "4734950", + "name": "隐藏闭眼", + "font_class": "yincangbiyan", + "unicode": "e61d", + "unicode_decimal": 58909 + }, + { + "icon_id": "12040164", + "name": "再次载入", + "font_class": "zaicizairu", + "unicode": "e6ed", + "unicode_decimal": 59117 + }, + { + "icon_id": "17758698", + "name": "右", + "font_class": "you1", + "unicode": "e802", + "unicode_decimal": 59394 + }, + { + "icon_id": "4734951", + "name": "开锁", + "font_class": "kaisuo", + "unicode": "e61e", + "unicode_decimal": 58910 + }, + { + "icon_id": "12040165", + "name": "开关", + "font_class": "kaiguan", + "unicode": "e6ef", + "unicode_decimal": 59119 + }, + { + "icon_id": "17758699", + "name": "下拉箭头", + "font_class": "xialajiantou", + "unicode": "e803", + "unicode_decimal": 59395 + }, + { + "icon_id": "4734952", + "name": "关锁", + "font_class": "guansuo", + "unicode": "e61f", + "unicode_decimal": 58911 + }, + { + "icon_id": "12040167", + "name": "目录", + "font_class": "mulu", + "unicode": "e6f0", + "unicode_decimal": 59120 + }, + { + "icon_id": "17758700", + "name": "左", + "font_class": "zuo1", + "unicode": "e804", + "unicode_decimal": 59396 + }, + { + "icon_id": "4734957", + "name": "tpi消息提醒", + "font_class": "tpixiaoxitixing", + "unicode": "e624", + "unicode_decimal": 58916 + }, + { + "icon_id": "12040168", + "name": "缩小", + "font_class": "suoxiao1", + "unicode": "e6f2", + "unicode_decimal": 59122 + }, + { + "icon_id": "17760202", + "name": "竞赛活动1", + "font_class": "jingsaihuodong1", + "unicode": "e805", + "unicode_decimal": 59397 + }, + { + "icon_id": "4734973", + "name": "点赞", + "font_class": "dianzan", + "unicode": "e634", + "unicode_decimal": 58932 + }, + { + "icon_id": "12040169", + "name": "扩大", + "font_class": "kuoda", + "unicode": "e6f3", + "unicode_decimal": 59123 + }, + { + "icon_id": "17896710", + "name": "关闭", + "font_class": "guanbi1", + "unicode": "e806", + "unicode_decimal": 59398 + }, + { + "icon_id": "4734974", + "name": "点赞-线", + "font_class": "dianzan-xian", + "unicode": "e635", + "unicode_decimal": 58933 + }, + { + "icon_id": "12040170", + "name": "设置", + "font_class": "shezhi3", + "unicode": "e6f4", + "unicode_decimal": 59124 + }, + { + "icon_id": "17896711", + "name": "开启摄像头", + "font_class": "kaiqishexiangtou", + "unicode": "e807", + "unicode_decimal": 59399 + }, + { + "icon_id": "4734976", + "name": "返回上次代码", + "font_class": "fanhuishangcidaima", + "unicode": "e637", + "unicode_decimal": 58935 + }, + { + "icon_id": "12053135", + "name": "隐藏", + "font_class": "yincang2", + "unicode": "e6f5", + "unicode_decimal": 59125 + }, + { + "icon_id": "17896712", + "name": "开启防切屏", + "font_class": "kaiqifangqieping", + "unicode": "e808", + "unicode_decimal": 59400 + }, + { + "icon_id": "4734977", + "name": "重置", + "font_class": "zhongzhi", + "unicode": "e638", + "unicode_decimal": 58936 + }, + { + "icon_id": "12074711", + "name": "消息", + "font_class": "xiaoxi11", + "unicode": "e6f6", + "unicode_decimal": 59126 + }, + { + "icon_id": "17905055", + "name": "修改", + "font_class": "xiugai", + "unicode": "e80a", + "unicode_decimal": 59402 + }, + { + "icon_id": "4738423", + "name": "睁眼", + "font_class": "zhengyan", + "unicode": "e649", + "unicode_decimal": 58953 + }, + { + "icon_id": "12098941", + "name": "金币", + "font_class": "bianzu1", + "unicode": "e6f7", + "unicode_decimal": 59127 + }, + { + "icon_id": "17905056", + "name": "删除", + "font_class": "shanchu4", + "unicode": "e80b", + "unicode_decimal": 59403 + }, + { + "icon_id": "4734949", + "name": "删除", + "font_class": "shanchu", + "unicode": "e61c", + "unicode_decimal": 58908 + }, + { + "icon_id": "12107631", + "name": "显示密码", + "font_class": "xianshimima", + "unicode": "e6f9", + "unicode_decimal": 59129 + }, + { + "icon_id": "17905057", + "name": "新建分组", + "font_class": "xinjianfenzu", + "unicode": "e80c", + "unicode_decimal": 59404 + }, + { + "icon_id": "4734948", + "name": "奖励", + "font_class": "jiangli", + "unicode": "e61b", + "unicode_decimal": 58907 + }, + { + "icon_id": "12107632", + "name": "隐藏密码", + "font_class": "yincangmima", + "unicode": "e6fa", + "unicode_decimal": 59130 + }, + { + "icon_id": "17905058", + "name": "选中", + "font_class": "xuanzhong2", + "unicode": "e80d", + "unicode_decimal": 59405 + }, + { + "icon_id": "4734946", + "name": "新建", + "font_class": "xinjian", + "unicode": "e619", + "unicode_decimal": 58905 + }, + { + "icon_id": "12107887", + "name": "复制", + "font_class": "fuzhi2", + "unicode": "e6fb", + "unicode_decimal": 59131 + }, + { + "icon_id": "17905059", + "name": "发布", + "font_class": "fabu1", + "unicode": "e80e", + "unicode_decimal": 59406 + }, + { + "icon_id": "4734986", + "name": "消息铃铛", + "font_class": "xiaoxilingdang", + "unicode": "e641", + "unicode_decimal": 58945 + }, + { + "icon_id": "12108608", + "name": "文件", + "font_class": "xingzhuangjiehe", + "unicode": "e6fc", + "unicode_decimal": 59132 + }, + { + "icon_id": "17905060", + "name": "选用", + "font_class": "xuanyong", + "unicode": "e80f", + "unicode_decimal": 59407 + }, + { + "icon_id": "4734988", + "name": "搜索", + "font_class": "sousuo", + "unicode": "e643", + "unicode_decimal": 58947 + }, + { + "icon_id": "12108609", + "name": "文件夹", + "font_class": "xingzhuangjiehebeifen", + "unicode": "e6fd", + "unicode_decimal": 59133 + }, + { + "icon_id": "17905061", + "name": "撤销分组", + "font_class": "chexiaofenzu1", + "unicode": "e810", + "unicode_decimal": 59408 + }, + { + "icon_id": "4734990", + "name": "添加 放大", + "font_class": "tianjiafangda", + "unicode": "e645", + "unicode_decimal": 58949 + }, + { + "icon_id": "12108648", + "name": "上传", + "font_class": "shangchuan", + "unicode": "e6fe", + "unicode_decimal": 59134 + }, + { + "icon_id": "17905062", + "name": "删除2", + "font_class": "shanchu22", + "unicode": "e811", + "unicode_decimal": 59409 + }, + { + "icon_id": "4734937", + "name": "分支", + "font_class": "fenzhi", + "unicode": "e610", + "unicode_decimal": 58896 + }, + { + "icon_id": "12126798", + "name": "挑战", + "font_class": "tiaozhan", + "unicode": "e6ff", + "unicode_decimal": 59135 + }, + { + "icon_id": "17905063", + "name": "撤销公开", + "font_class": "chexiaogongkai", + "unicode": "e812", + "unicode_decimal": 59410 + }, + { + "icon_id": "4734938", + "name": "网址克隆", + "font_class": "wangzhikelong", + "unicode": "e612", + "unicode_decimal": 58898 + }, + { + "icon_id": "12300795", + "name": "右滑", + "font_class": "youhua", + "unicode": "e702", + "unicode_decimal": 59138 + }, + { + "icon_id": "17905064", + "name": "解析", + "font_class": "jiexi1", + "unicode": "e813", + "unicode_decimal": 59411 + }, + { + "icon_id": "4734939", + "name": "下载", + "font_class": "xiazai", + "unicode": "e613", + "unicode_decimal": 58899 + }, + { + "icon_id": "12300843", + "name": "解锁", + "font_class": "jiesuo", + "unicode": "e703", + "unicode_decimal": 59139 + }, + { + "icon_id": "17905065", + "name": "撤销共享", + "font_class": "chexiaogongxiang1", + "unicode": "e814", + "unicode_decimal": 59412 + }, + { + "icon_id": "4734940", + "name": "代码", + "font_class": "daima", + "unicode": "e615", + "unicode_decimal": 58901 + }, + { + "icon_id": "12300844", + "name": "锁", + "font_class": "suo1", + "unicode": "e704", + "unicode_decimal": 59140 + }, + { + "icon_id": "17905066", + "name": "撤销发布", + "font_class": "chexiaofabu", + "unicode": "e815", + "unicode_decimal": 59413 + }, + { + "icon_id": "4734941", + "name": "提交记录", + "font_class": "tijiaojilu", + "unicode": "e616", + "unicode_decimal": 58902 + }, + { + "icon_id": "12319671", + "name": "搜索", + "font_class": "bianzu11", + "unicode": "e706", + "unicode_decimal": 59142 + }, + { + "icon_id": "17905068", + "name": "编辑2", + "font_class": "bianji21", + "unicode": "e816", + "unicode_decimal": 59414 + }, + { + "icon_id": "4734942", + "name": "选择题", + "font_class": "xuanzeti", + "unicode": "e617", + "unicode_decimal": 58903 + }, + { + "icon_id": "12364938", + "name": "笔记", + "font_class": "biji", + "unicode": "e70a", + "unicode_decimal": 59146 + }, + { + "icon_id": "17920060", + "name": "新增试题", + "font_class": "xinzengshiti", + "unicode": "e809", + "unicode_decimal": 59401 + }, + { + "icon_id": "4734943", + "name": "编辑", + "font_class": "bianji", + "unicode": "e618", + "unicode_decimal": 58904 + }, + { + "icon_id": "1110411", + "name": "下箭头", + "font_class": "jiantou9", + "unicode": "e700", + "unicode_decimal": 59136 + }, + { + "icon_id": "17926467", + "name": "搜索", + "font_class": "sousuo1", + "unicode": "e817", + "unicode_decimal": 59415 + }, + { + "icon_id": "4734944", + "name": "向上", + "font_class": "xiangshang", + "unicode": "e61a", + "unicode_decimal": 58906 + }, + { + "icon_id": "10809887", + "name": "向上 箭头", + "font_class": "changyongtubiao-xianxingdaochu-zhuanqu-", + "unicode": "e74c", + "unicode_decimal": 59212 + }, + { + "icon_id": "17930472", + "name": "考试时长", + "font_class": "kaoshishichang", + "unicode": "e818", + "unicode_decimal": 59416 + }, + { + "icon_id": "4734945", + "name": "删除掉", + "font_class": "shanchudiao", + "unicode": "e620", + "unicode_decimal": 58912 + }, + { + "icon_id": "12403050", + "name": "缩小", + "font_class": "suoxiao2", + "unicode": "e701", + "unicode_decimal": 59137 + }, + { + "icon_id": "17930476", + "name": "返回试卷", + "font_class": "fanhuishijuan", + "unicode": "e819", + "unicode_decimal": 59417 + }, + { + "icon_id": "4734947", + "name": "上升排序", + "font_class": "shangshengpaixu", + "unicode": "e621", + "unicode_decimal": 58913 + }, + { + "icon_id": "12403054", + "name": "放大", + "font_class": "fangda", + "unicode": "e707", + "unicode_decimal": 59143 + }, + { + "icon_id": "18072709", + "name": "谷歌", + "font_class": "guge", + "unicode": "e81a", + "unicode_decimal": 59418 + }, + { + "icon_id": "4734953", + "name": "版本库", + "font_class": "banbenku", + "unicode": "e622", + "unicode_decimal": 58914 + }, + { + "icon_id": "12491363", + "name": "编辑", + "font_class": "bianji2", + "unicode": "e709", + "unicode_decimal": 59145 + }, + { + "icon_id": "18072710", + "name": "火狐", + "font_class": "huohu", + "unicode": "e81b", + "unicode_decimal": 59419 + }, + { + "icon_id": "4734954", + "name": "issue", + "font_class": "issue", + "unicode": "e623", + "unicode_decimal": 58915 + }, + { + "icon_id": "12491366", + "name": "公开", + "font_class": "gongkai", + "unicode": "e70b", + "unicode_decimal": 59147 + }, + { + "icon_id": "18136646", + "name": "IP", + "font_class": "IP", + "unicode": "e81c", + "unicode_decimal": 59420 + }, + { + "icon_id": "4734955", + "name": "上传图片", + "font_class": "shangchuantupian", + "unicode": "e625", + "unicode_decimal": 58917 + }, + { + "icon_id": "12491369", + "name": "解析", + "font_class": "jiexi", + "unicode": "e70c", + "unicode_decimal": 59148 + }, + { + "icon_id": "18136647", + "name": "IP绑定", + "font_class": "IPbangding", + "unicode": "e81d", + "unicode_decimal": 59421 + }, + { + "icon_id": "4734956", + "name": "测评", + "font_class": "ceping", + "unicode": "e626", + "unicode_decimal": 58918 + }, + { + "icon_id": "12491370", + "name": "删除", + "font_class": "shanchu1", + "unicode": "e70d", + "unicode_decimal": 59149 + }, + { + "icon_id": "18684753", + "name": "实训发布", + "font_class": "shixunfabu", + "unicode": "e81e", + "unicode_decimal": 59422 + }, + { + "icon_id": "4734958", + "name": "qq在线咨询", + "font_class": "qqzaixianzixun", + "unicode": "e628", + "unicode_decimal": 58920 + }, + { + "icon_id": "12491850", + "name": "试题栏", + "font_class": "shitilan", + "unicode": "e70e", + "unicode_decimal": 59150 + }, + { + "icon_id": "18684754", + "name": "实践课程发布", + "font_class": "shijiankechengfabu", + "unicode": "e81f", + "unicode_decimal": 59423 + }, + { + "icon_id": "4734959", + "name": "二维码", + "font_class": "erweima", + "unicode": "e629", + "unicode_decimal": 58921 + }, + { + "icon_id": "7556166", + "name": "减号", + "font_class": "jianhao", + "unicode": "e70f", + "unicode_decimal": 59151 + }, + { + "icon_id": "18686772", + "name": "课程学习", + "font_class": "kechengxuexi", + "unicode": "e820", + "unicode_decimal": 59424 + }, + { + "icon_id": "4734960", + "name": "意见反馈", + "font_class": "yijianfankui", + "unicode": "e62a", + "unicode_decimal": 58922 + }, + { + "icon_id": "12568379", + "name": "复制", + "font_class": "fuzhi3", + "unicode": "e710", + "unicode_decimal": 59152 + }, + { + "icon_id": "18708737", + "name": "教学案例", + "font_class": "jiaoxueanli", + "unicode": "e821", + "unicode_decimal": 59425 + }, + { + "icon_id": "4734961", + "name": "邮箱认证", + "font_class": "youxiangrenzheng", + "unicode": "e62b", + "unicode_decimal": 58923 + }, + { + "icon_id": "12608142", + "name": "编组", + "font_class": "bianzu2", + "unicode": "e711", + "unicode_decimal": 59153 + }, + { + "icon_id": "18767154", + "name": "查看", + "font_class": "chakan", + "unicode": "e822", + "unicode_decimal": 59426 + }, + { + "icon_id": "4734962", + "name": "手机认证", + "font_class": "shoujirenzheng", + "unicode": "e62c", + "unicode_decimal": 58924 + }, + { + "icon_id": "12608146", + "name": "左右拖动", + "font_class": "zuoyoutuodong", + "unicode": "e712", + "unicode_decimal": 59154 + }, + { + "icon_id": "18767308", + "name": "删除", + "font_class": "shanchu5", + "unicode": "e823", + "unicode_decimal": 59427 + }, + { + "icon_id": "4734963", + "name": "职业认证", + "font_class": "zhiyerenzheng", + "unicode": "e62d", + "unicode_decimal": 58925 + }, + { + "icon_id": "12608147", + "name": "上下拖动", + "font_class": "shangxiatuodong", + "unicode": "e713", + "unicode_decimal": 59155 + }, + { + "icon_id": "18767311", + "name": "人", + "font_class": "ren", + "unicode": "e824", + "unicode_decimal": 59428 + }, + { + "icon_id": "4734964", + "name": "身份认证", + "font_class": "shenfenrenzheng", + "unicode": "e62e", + "unicode_decimal": 58926 + }, + { + "icon_id": "12621166", + "name": "试卷", + "font_class": "shijuan1", + "unicode": "e714", + "unicode_decimal": 59156 + }, + { + "icon_id": "18767317", + "name": "文件", + "font_class": "wenjian2", + "unicode": "e825", + "unicode_decimal": 59429 + }, + { + "icon_id": "4734965", + "name": "评分", + "font_class": "pingfen", + "unicode": "e62f", + "unicode_decimal": 58927 + }, + { + "icon_id": "12621173", + "name": "删除", + "font_class": "shanchu2", + "unicode": "e715", + "unicode_decimal": 59157 + }, + { + "icon_id": "18767336", + "name": "垃圾桶", + "font_class": "lajitong1", + "unicode": "e826", + "unicode_decimal": 59430 + }, + { + "icon_id": "4734966", + "name": "评分-线", + "font_class": "pingfen-xian", + "unicode": "e630", + "unicode_decimal": 58928 + }, + { + "icon_id": "12621174", + "name": "减去", + "font_class": "jianqu", + "unicode": "e716", + "unicode_decimal": 59158 + }, + { + "icon_id": "18961342", + "name": "空白", + "font_class": "kongbai", + "unicode": "e827", + "unicode_decimal": 59431 + }, + { + "icon_id": "4734967", + "name": "作业", + "font_class": "zuoye", + "unicode": "e631", + "unicode_decimal": 58929 + }, + { + "icon_id": "12621177", + "name": "加上", + "font_class": "jiashang", + "unicode": "e717", + "unicode_decimal": 59159 + }, + { + "icon_id": "19190157", + "name": "changjianwenti", + "font_class": "changjianwenti", + "unicode": "e828", + "unicode_decimal": 59432 + }, + { + "icon_id": "4734968", + "name": "提示错误", + "font_class": "tishicuowu", + "unicode": "e632", + "unicode_decimal": 58930 + }, + { + "icon_id": "12621395", + "name": "减去2", + "font_class": "jianqu1", + "unicode": "e718", + "unicode_decimal": 59160 + }, + { + "icon_id": "19190158", + "name": "chexiaofabu", + "font_class": "chexiaofabu1", + "unicode": "e829", + "unicode_decimal": 59433 + }, + { + "icon_id": "4734969", + "name": "资源", + "font_class": "ziyuan", + "unicode": "e633", + "unicode_decimal": 58931 + }, + { + "icon_id": "12621396", + "name": "加上2", + "font_class": "jiashang1", + "unicode": "e719", + "unicode_decimal": 59161 + }, + { + "icon_id": "19190159", + "name": "fasongzhi", + "font_class": "fasongzhi", + "unicode": "e82a", + "unicode_decimal": 59434 + }, + { + "icon_id": "4734970", + "name": "提示", + "font_class": "tishi", + "unicode": "e636", + "unicode_decimal": 58934 + }, + { + "icon_id": "5327531", + "name": "过滤器", + "font_class": "guolvqi", + "unicode": "e71b", + "unicode_decimal": 59163 + }, + { + "icon_id": "19190160", + "name": "chexiaogongkai", + "font_class": "chexiaogongkai1", + "unicode": "e82b", + "unicode_decimal": 59435 + }, + { + "icon_id": "4734971", + "name": "成员", + "font_class": "chengyuan", + "unicode": "e63a", + "unicode_decimal": 58938 + }, + { + "icon_id": "12826208", + "name": "初始化", + "font_class": "chushihua", + "unicode": "e71c", + "unicode_decimal": 59164 + }, + { + "icon_id": "19190161", + "name": "fabu", + "font_class": "fabu2", + "unicode": "e82c", + "unicode_decimal": 59436 + }, + { + "icon_id": "4734978", + "name": "旋转", + "font_class": "xuanzhuan", + "unicode": "e63d", + "unicode_decimal": 58941 + }, + { + "icon_id": "12826211", + "name": "测试集", + "font_class": "ceshiji", + "unicode": "e71e", + "unicode_decimal": 59166 + }, + { + "icon_id": "19190162", + "name": "daimacangku", + "font_class": "daimacangku", + "unicode": "e82d", + "unicode_decimal": 59437 + }, + { + "icon_id": "4734979", + "name": "实训", + "font_class": "shixun", + "unicode": "e63e", + "unicode_decimal": 58942 + }, + { + "icon_id": "12958915", + "name": "点击量", + "font_class": "dianjiliang", + "unicode": "e71f", + "unicode_decimal": 59167 + }, + { + "icon_id": "19190163", + "name": "erweima", + "font_class": "erweima1", + "unicode": "e82e", + "unicode_decimal": 59438 + }, + { + "icon_id": "4734981", + "name": "缩小", + "font_class": "suoxiao", + "unicode": "e63f", + "unicode_decimal": 58943 + }, + { + "icon_id": "12958937", + "name": "播放", + "font_class": "bofang1", + "unicode": "e720", + "unicode_decimal": 59168 + }, + { + "icon_id": "19190164", + "name": "Fock", + "font_class": "Fock", + "unicode": "e82f", + "unicode_decimal": 59439 + }, + { + "icon_id": "4734982", + "name": "下箭头", + "font_class": "xiajiantou", + "unicode": "e642", + "unicode_decimal": 58946 + }, + { + "icon_id": "347633", + "name": "警告", + "font_class": "jinggao2", + "unicode": "e721", + "unicode_decimal": 59169 + }, + { + "icon_id": "19190165", + "name": "fuzhilianjie", + "font_class": "fuzhilianjie", + "unicode": "e830", + "unicode_decimal": 59440 + }, + { + "icon_id": "4734983", + "name": "勾选", + "font_class": "gouxuan", + "unicode": "e644", + "unicode_decimal": 58948 + }, + { + "icon_id": "609479", + "name": "路标", + "font_class": "lubiaosignpost3", + "unicode": "e722", + "unicode_decimal": 59170 + }, + { + "icon_id": "19190166", + "name": "huidaodingbu", + "font_class": "huidaodingbu", + "unicode": "e831", + "unicode_decimal": 59441 + }, + { + "icon_id": "4734984", + "name": "浏览眼", + "font_class": "liulanyan", + "unicode": "e646", + "unicode_decimal": 58950 + }, + { + "icon_id": "1654853", + "name": "日历", + "font_class": "rili", + "unicode": "e756", + "unicode_decimal": 59222 + }, + { + "icon_id": "19190167", + "name": "jibenxinxi", + "font_class": "jibenxinxi1", + "unicode": "e832", + "unicode_decimal": 59442 + }, + { + "icon_id": "4734985", + "name": "经验", + "font_class": "jingyan", + "unicode": "e647", + "unicode_decimal": 58951 + }, + { + "icon_id": "7212156", + "name": "编辑", + "font_class": "bianji3", + "unicode": "e723", + "unicode_decimal": 59171 + }, + { + "icon_id": "19190168", + "name": "pingfen-yibanfen", + "font_class": "pingfen-yibanfen", + "unicode": "e833", + "unicode_decimal": 59443 + }, + { + "icon_id": "4734987", + "name": "实训关卡", + "font_class": "shixunguanqia", + "unicode": "e648", + "unicode_decimal": 58952 + }, + { + "icon_id": "8453350", + "name": "已关闭", + "font_class": "yiguanbi", + "unicode": "e724", + "unicode_decimal": 59172 + }, + { + "icon_id": "19190169", + "name": "guankashu", + "font_class": "guankashu", + "unicode": "e834", + "unicode_decimal": 59444 + }, + { + "icon_id": "4734989", + "name": "发布", + "font_class": "fabu", + "unicode": "e64a", + "unicode_decimal": 58954 + }, + { + "icon_id": "10730535", + "name": "已关闭", + "font_class": "yiguanbi1", + "unicode": "e725", + "unicode_decimal": 59173 + }, + { + "icon_id": "19190170", + "name": "shanchu", + "font_class": "shanchu6", + "unicode": "e835", + "unicode_decimal": 59445 + }, + { + "icon_id": "4734991", + "name": "向下移动", + "font_class": "xiangxiayidong", + "unicode": "e64b", + "unicode_decimal": 58955 + }, + { + "icon_id": "12770896", + "name": "垃圾桶", + "font_class": "lajitong", + "unicode": "e726", + "unicode_decimal": 59174 + }, + { + "icon_id": "19190171", + "name": "pingfen", + "font_class": "pingfen1", + "unicode": "e836", + "unicode_decimal": 59446 + }, + { + "icon_id": "4734992", + "name": "向上移动", + "font_class": "xiangshangyidong", + "unicode": "e64c", + "unicode_decimal": 58956 + }, + { + "icon_id": "98473", + "name": "笔", + "font_class": "weibiaoti1", + "unicode": "e728", + "unicode_decimal": 59176 + }, + { + "icon_id": "19190172", + "name": "shezhi", + "font_class": "shezhi5", + "unicode": "e837", + "unicode_decimal": 59447 + }, + { + "icon_id": "4734994", + "name": "关闭", + "font_class": "guanbi", + "unicode": "e64d", + "unicode_decimal": 58957 + }, + { + "icon_id": "13097093", + "name": "播放", + "font_class": "bofang2", + "unicode": "e729", + "unicode_decimal": 59177 + }, + { + "icon_id": "19190173", + "name": "QQ", + "font_class": "QQ1", + "unicode": "e838", + "unicode_decimal": 59448 + }, + { + "icon_id": "4769329", + "name": "回复", + "font_class": "huifu1", + "unicode": "e64e", + "unicode_decimal": 58958 + }, + { + "icon_id": "2077714", + "name": "编辑", + "font_class": "bianji4", + "unicode": "e72a", + "unicode_decimal": 59178 + }, + { + "icon_id": "19190174", + "name": "shoucangerji", + "font_class": "shoucangerji", + "unicode": "e839", + "unicode_decimal": 59449 + }, + { + "icon_id": "4779517", + "name": "文件", + "font_class": "wenjian", + "unicode": "e64f", + "unicode_decimal": 58959 + }, + { + "icon_id": "10199180", + "name": "绑定", + "font_class": "bangding", + "unicode": "e72b", + "unicode_decimal": 59179 + }, + { + "icon_id": "19190175", + "name": "shoucangyiji", + "font_class": "shoucangyiji", + "unicode": "e83a", + "unicode_decimal": 59450 + }, + { + "icon_id": "4734972", + "name": "公告", + "font_class": "gonggao", + "unicode": "e63b", + "unicode_decimal": 58939 + }, + { + "icon_id": "13183780", + "name": "选择", + "font_class": "xuanze", + "unicode": "e72c", + "unicode_decimal": 59180 + }, + { + "icon_id": "19190176", + "name": "shixunshu", + "font_class": "shixunshu", + "unicode": "e83b", + "unicode_decimal": 59451 + }, + { + "icon_id": "4780701", + "name": "展开", + "font_class": "zhankai", + "unicode": "e650", + "unicode_decimal": 58960 + }, + { + "icon_id": "13247168", + "name": "删除", + "font_class": "shanchu3", + "unicode": "e72d", + "unicode_decimal": 59181 + }, + { + "icon_id": "19190177", + "name": "shanchu2", + "font_class": "shanchu23", + "unicode": "e83c", + "unicode_decimal": 59452 + }, + { + "icon_id": "4780702", + "name": "收缩", + "font_class": "shousuo", + "unicode": "e651", + "unicode_decimal": 58961 + }, + { + "icon_id": "13247173", + "name": "编辑", + "font_class": "bianji5", + "unicode": "e72e", + "unicode_decimal": 59182 + }, + { + "icon_id": "19190178", + "name": "hezuochengyuan", + "font_class": "hezuochengyuan", + "unicode": "e83d", + "unicode_decimal": 59453 + }, + { + "icon_id": "4807118", + "name": "左键头", + "font_class": "zuojiantou", + "unicode": "e652", + "unicode_decimal": 58962 + }, + { + "icon_id": "13247175", + "name": "上移", + "font_class": "shangyi", + "unicode": "e72f", + "unicode_decimal": 59183 + }, + { + "icon_id": "19190179", + "name": "shixunti", + "font_class": "shixunti", + "unicode": "e83e", + "unicode_decimal": 59454 + }, + { + "icon_id": "4807119", + "name": "右键头", + "font_class": "youjiantou", + "unicode": "e653", + "unicode_decimal": 58963 + }, + { + "icon_id": "13247178", + "name": "下移", + "font_class": "xiayi", + "unicode": "e730", + "unicode_decimal": 59184 + }, + { + "icon_id": "19190180", + "name": "xiaowenhao", + "font_class": "xiaowenhao", + "unicode": "e83f", + "unicode_decimal": 59455 + }, + { + "icon_id": "4807120", + "name": "上键头", + "font_class": "shangjiantou", + "unicode": "e654", + "unicode_decimal": 58964 + }, + { + "icon_id": "13247261", + "name": "上移2", + "font_class": "shangyi1", + "unicode": "e731", + "unicode_decimal": 59185 + }, + { + "icon_id": "19190181", + "name": "wenjian", + "font_class": "wenjian3", + "unicode": "e840", + "unicode_decimal": 59456 + }, + { + "icon_id": "4835183", + "name": "编辑带背景", + "font_class": "bianjidaibeijing", + "unicode": "e655", + "unicode_decimal": 58965 + }, + { + "icon_id": "13247262", + "name": "下移2", + "font_class": "xiayi1", + "unicode": "e732", + "unicode_decimal": 59186 + }, + { + "icon_id": "19190182", + "name": "xiugai1", + "font_class": "xiugai1", + "unicode": "e841", + "unicode_decimal": 59457 + }, + { + "icon_id": "4835184", + "name": "播放", + "font_class": "bofang", + "unicode": "e656", + "unicode_decimal": 58966 + }, + { + "icon_id": "13353315", + "name": "移动", + "font_class": "yidong", + "unicode": "e734", + "unicode_decimal": 59188 + }, + { + "icon_id": "19190183", + "name": "shiyanhuanjing", + "font_class": "shiyanhuanjing", + "unicode": "e842", + "unicode_decimal": 59458 + }, + { + "icon_id": "4835185", + "name": "完成", + "font_class": "wancheng", + "unicode": "e658", + "unicode_decimal": 58968 + }, + { + "icon_id": "13427273", + "name": "签到-01", + "font_class": "qiandao-", + "unicode": "e735", + "unicode_decimal": 59189 + }, + { + "icon_id": "19190184", + "name": "wenjian1", + "font_class": "wenjian11", + "unicode": "e843", + "unicode_decimal": 59459 + }, + { + "icon_id": "5030348", + "name": "分组作业", + "font_class": "fenzuzuoye", + "unicode": "e65d", + "unicode_decimal": 58973 + }, + { + "icon_id": "13428658", + "name": "下箭头", + "font_class": "xiajiantou2", + "unicode": "e737", + "unicode_decimal": 59191 + }, + { + "icon_id": "19190185", + "name": "sousuo", + "font_class": "sousuo3", + "unicode": "e844", + "unicode_decimal": 59460 + }, + { + "icon_id": "5030654", + "name": "普通作业", + "font_class": "putongzuoye", + "unicode": "e65c", + "unicode_decimal": 58972 + }, + { + "icon_id": "13428689", + "name": "签到-02", + "font_class": "qiandao-1", + "unicode": "e736", + "unicode_decimal": 59190 + }, + { + "icon_id": "19190186", + "name": "suoshukecheng", + "font_class": "suoshukecheng", + "unicode": "e845", + "unicode_decimal": 59461 + }, + { + "icon_id": "5044767", + "name": "问卷", + "font_class": "wenjuan", + "unicode": "e659", + "unicode_decimal": 58969 + }, + { + "icon_id": "13458287", + "name": "统计", + "font_class": "tongji1", + "unicode": "e738", + "unicode_decimal": 59192 + }, + { + "icon_id": "19190187", + "name": "shenqinggongkai", + "font_class": "shenqinggongkai", + "unicode": "e846", + "unicode_decimal": 59462 + }, + { + "icon_id": "5044768", + "name": "讨论", + "font_class": "taolun", + "unicode": "e65a", + "unicode_decimal": 58970 + }, + { + "icon_id": "13458315", + "name": "返回", + "font_class": "fanhui", + "unicode": "e739", + "unicode_decimal": 59193 + }, + { + "icon_id": "19190188", + "name": "shijianshezhi", + "font_class": "shijianshezhi", + "unicode": "e847", + "unicode_decimal": 59463 + }, + { + "icon_id": "5044770", + "name": "分班", + "font_class": "fenban", + "unicode": "e65f", + "unicode_decimal": 58975 + }, + { + "icon_id": "13515025", + "name": "局部刷新键头", + "font_class": "jubushuaxinjiantou", + "unicode": "e73a", + "unicode_decimal": 59194 + }, + { + "icon_id": "19190189", + "name": "renwuguanka", + "font_class": "renwuguanka", + "unicode": "e848", + "unicode_decimal": 59464 + }, + { + "icon_id": "5044775", + "name": "动态", + "font_class": "dongtai", + "unicode": "e660", + "unicode_decimal": 58976 + }, + { + "icon_id": "13839888", + "name": "公司地址", + "font_class": "gongsidizhi", + "unicode": "e73b", + "unicode_decimal": 59195 + }, + { + "icon_id": "19190190", + "name": "xuanzeti", + "font_class": "xuanzeti1", + "unicode": "e849", + "unicode_decimal": 59465 + }, + { + "icon_id": "5045030", + "name": "试卷", + "font_class": "shijuan", + "unicode": "e65b", + "unicode_decimal": 58971 + }, + { + "icon_id": "13839892", + "name": "公司介绍", + "font_class": "gongsijieshao", + "unicode": "e73c", + "unicode_decimal": 59196 + }, + { + "icon_id": "19190191", + "name": "yijianfankui", + "font_class": "yijianfankui1", + "unicode": "e84a", + "unicode_decimal": 59466 + }, + { + "icon_id": "5051277", + "name": "菜单", + "font_class": "caidan", + "unicode": "e661", + "unicode_decimal": 58977 + }, + { + "icon_id": "13839895", + "name": "职位要求", + "font_class": "zhiweiyaoqiu", + "unicode": "e73d", + "unicode_decimal": 59197 + }, + { + "icon_id": "19190192", + "name": "tuijianshixun", + "font_class": "tuijianshixun", + "unicode": "e84b", + "unicode_decimal": 59467 + }, + { + "icon_id": "5052642", + "name": "成员管理", + "font_class": "chengyuanguanli", + "unicode": "e662", + "unicode_decimal": 58978 + }, + { + "icon_id": "13839898", + "name": "发布职位", + "font_class": "fabuzhiwei", + "unicode": "e73e", + "unicode_decimal": 59198 + }, + { + "icon_id": "19190193", + "name": "xiala", + "font_class": "xiala", + "unicode": "e84c", + "unicode_decimal": 59468 + }, + { + "icon_id": "5068519", + "name": "向下移", + "font_class": "xiangxiayi", + "unicode": "e663", + "unicode_decimal": 58979 + }, + { + "icon_id": "11488156", + "name": "upload", + "font_class": "upload", + "unicode": "e76b", + "unicode_decimal": 59243 + }, + { + "icon_id": "19190194", + "name": "xuexirenshu", + "font_class": "xuexirenshu", + "unicode": "e84d", + "unicode_decimal": 59469 + }, + { + "icon_id": "5068520", + "name": "向上移", + "font_class": "xiangshangyi", + "unicode": "e664", + "unicode_decimal": 58980 + }, + { + "icon_id": "14101755", + "name": "职称", + "font_class": "zhicheng", + "unicode": "e73f", + "unicode_decimal": 59199 + }, + { + "icon_id": "19190195", + "name": "xuexijindu", + "font_class": "xuexijindu", + "unicode": "e84e", + "unicode_decimal": 59470 + }, + { + "icon_id": "5111347", + "name": "更多", + "font_class": "gengduo", + "unicode": "e665", + "unicode_decimal": 58981 + }, + { + "icon_id": "14102400", + "name": "问题列表", + "font_class": "wentiliebiao", + "unicode": "e741", + "unicode_decimal": 59201 + }, + { + "icon_id": "19235590", + "name": "编辑", + "font_class": "editUnder", + "unicode": "e84f", + "unicode_decimal": 59471 + }, + { + "icon_id": "5148158", + "name": "学院管理员", + "font_class": "xueyuanguanliyuan", + "unicode": "e666", + "unicode_decimal": 58982 + }, + { + "icon_id": "14102491", + "name": "图片", + "font_class": "tupian", + "unicode": "e742", + "unicode_decimal": 59202 + }, + { + "icon_id": "19235659", + "name": "structure", + "font_class": "structure", + "unicode": "e850", + "unicode_decimal": 59472 + }, + { + "icon_id": "5196483", + "name": "空星", + "font_class": "kongxing", + "unicode": "e667", + "unicode_decimal": 58983 + }, + { + "icon_id": "14108259", + "name": "回复", + "font_class": "huifu", + "unicode": "e743", + "unicode_decimal": 59203 + }, + { + "icon_id": "19235756", + "name": "部署-01", + "font_class": "arrange", + "unicode": "e851", + "unicode_decimal": 59473 + }, + { + "icon_id": "5196487", + "name": "实星", + "font_class": "shixing", + "unicode": "e668", + "unicode_decimal": 58984 + }, + { + "icon_id": "14240818", + "name": "新建简历、我的简历", + "font_class": "xinjianjianliwodejianli", + "unicode": "e744", + "unicode_decimal": 59204 + }, + { + "icon_id": "19235771", + "name": " initialize", + "font_class": "initialize", + "unicode": "e852", + "unicode_decimal": 59474 + }, + { + "icon_id": "5242367", + "name": "下降", + "font_class": "xiajiang", + "unicode": "e669", + "unicode_decimal": 58985 + }, + { + "icon_id": "14269490", + "name": "置顶", + "font_class": "zhiding1", + "unicode": "e745", + "unicode_decimal": 59205 + }, + { + "icon_id": "19235869", + "name": "unit", + "font_class": "unit", + "unicode": "e853", + "unicode_decimal": 59475 + }, + { + "icon_id": "1113422", + "name": "三角形-up", + "font_class": "sanjiaoxing-up", + "unicode": "e78f", + "unicode_decimal": 59279 + }, + { + "icon_id": "14269491", + "name": "取消置顶", + "font_class": "quxiaozhiding", + "unicode": "e746", + "unicode_decimal": 59206 + }, + { + "icon_id": "19235920", + "name": "model", + "font_class": "model", + "unicode": "e854", + "unicode_decimal": 59476 + }, + { + "icon_id": "1113424", + "name": "三角形-down", + "font_class": "sanjiaoxing-down", + "unicode": "e791", + "unicode_decimal": 59281 + }, + { + "icon_id": "14364804", + "name": "行内公式", + "font_class": "hangneigongshi", + "unicode": "e747", + "unicode_decimal": 59207 + }, + { + "icon_id": "19235935", + "name": "确认-01", + "font_class": "sure", + "unicode": "e855", + "unicode_decimal": 59477 + }, + { + "icon_id": "720976", + "name": "坐标", + "font_class": "xiazai18", + "unicode": "e627", + "unicode_decimal": 58919 + }, + { + "icon_id": "14364807", + "name": "多行公式", + "font_class": "duohanggongshi", + "unicode": "e748", + "unicode_decimal": 59208 + }, + { + "icon_id": "19235976", + "name": "添加", + "font_class": "add", + "unicode": "e856", + "unicode_decimal": 59478 + }, + { + "icon_id": "1241465", + "name": "邮件", + "font_class": "mail", + "unicode": "e66a", + "unicode_decimal": 58986 + }, + { + "icon_id": "14476133", + "name": "编辑-优化icon", + "font_class": "bianji2X", + "unicode": "e749", + "unicode_decimal": 59209 + }, + { + "icon_id": "19235993", + "name": "newstage", + "font_class": "newStage", + "unicode": "e857", + "unicode_decimal": 59479 + }, + { + "icon_id": "3764006", + "name": "电话", + "font_class": "weibiaoti-", + "unicode": "e60d", + "unicode_decimal": 58893 + }, + { + "icon_id": "14484287", + "name": "设置", + "font_class": "shezhi4", + "unicode": "e74e", + "unicode_decimal": 59214 + }, + { + "icon_id": "19248283", + "name": "再编辑", + "font_class": "zaibianji", + "unicode": "e858", + "unicode_decimal": 59480 + }, + { + "icon_id": "400088", + "name": "关闭", + "font_class": "htmal5icon19", + "unicode": "e66b", + "unicode_decimal": 58987 + }, + { + "icon_id": "14484580", + "name": "复制", + "font_class": "fuzhi4", + "unicode": "e74a", + "unicode_decimal": 59210 + }, + { + "icon_id": "19248301", + "name": "运行", + "font_class": "yunhang", + "unicode": "e859", + "unicode_decimal": 59481 + }, + { + "icon_id": "5480167", + "name": "新增提示", + "font_class": "xinzengtishi", + "unicode": "e66c", + "unicode_decimal": 58988 + }, + { + "icon_id": "14514445", + "name": "选中", + "font_class": "xuanzhong", + "unicode": "e74b", + "unicode_decimal": 59211 + }, + { + "icon_id": "5480235", + "name": "完成勾选", + "font_class": "wanchenggouxuan", + "unicode": "e66e", + "unicode_decimal": 58990 + }, + { + "icon_id": "14514446", + "name": "未选中", + "font_class": "weixuanzhong", + "unicode": "e74d", + "unicode_decimal": 59213 + }, + { + "icon_id": "715974", + "name": "设置", + "font_class": "shezhi", + "unicode": "e66f", + "unicode_decimal": 58991 + }, + { + "icon_id": "14599229", + "name": "项目类型", + "font_class": "xiangmuleixing", + "unicode": "e750", + "unicode_decimal": 59216 + }, + { + "icon_id": "5669524", + "name": "下降", + "font_class": "youjiang", + "unicode": "e792", + "unicode_decimal": 59282 + }, + { + "icon_id": "14599181", + "name": "项目类别", + "font_class": "xiangmuleibie", + "unicode": "e751", + "unicode_decimal": 59217 + }, + { + "icon_id": "826201", + "name": "附件", + "font_class": "fujian", + "unicode": "e670", + "unicode_decimal": 58992 + }, + { + "icon_id": "1687276", + "name": "点赞", + "font_class": "ziyuan1", + "unicode": "e752", + "unicode_decimal": 59218 + }, + { + "icon_id": "2367774", + "name": "旗帜", + "font_class": "qizhi", + "unicode": "e699", + "unicode_decimal": 59033 + }, + { + "icon_id": "14706413", + "name": "分支", + "font_class": "fenzhi1", + "unicode": "e753", + "unicode_decimal": 59219 + }, + { + "icon_id": "392172", + "name": "钻石", + "font_class": "31", + "unicode": "e6b2", + "unicode_decimal": 59058 + }, + { + "icon_id": "14706416", + "name": "标签", + "font_class": "biaoqian3", + "unicode": "e754", + "unicode_decimal": 59220 + }, + { + "icon_id": "845852", + "name": "问号", + "font_class": "wenhao", + "unicode": "e680", + "unicode_decimal": 59008 + }, + { + "icon_id": "14706420", + "name": "发行版", + "font_class": "fahangban", + "unicode": "e755", + "unicode_decimal": 59221 + }, + { + "icon_id": "593484", + "name": "菜单", + "font_class": "weibiaoti12", + "unicode": "e671", + "unicode_decimal": 58993 + }, + { + "icon_id": "14706421", + "name": "贡献者", + "font_class": "gongxianzhe", + "unicode": "e757", + "unicode_decimal": 59223 + }, + { + "icon_id": "4736792", + "name": "毕业 [转换]", + "font_class": "biyezhuanhuan", + "unicode": "e6f1", + "unicode_decimal": 59121 + }, + { + "icon_id": "14706430", + "name": "仓库", + "font_class": "cangku", + "unicode": "e758", + "unicode_decimal": 59224 + }, + { + "icon_id": "1606757", + "name": "锁", + "font_class": "suo", + "unicode": "e6c9", + "unicode_decimal": 59081 + }, + { + "icon_id": "14706480", + "name": "复制", + "font_class": "fuzhi5", + "unicode": "e759", + "unicode_decimal": 59225 + }, + { + "icon_id": "2365578", + "name": "三角形", + "font_class": "triangle", + "unicode": "e600", + "unicode_decimal": 58880 + }, + { + "icon_id": "14706484", + "name": "下载", + "font_class": "xiazai2", + "unicode": "e75a", + "unicode_decimal": 59226 + }, + { + "icon_id": "5057140", + "name": "添加", + "font_class": "tianjia", + "unicode": "e672", + "unicode_decimal": 58994 + }, + { + "icon_id": "14706563", + "name": "文件", + "font_class": "wenjia", + "unicode": "e75b", + "unicode_decimal": 59227 + }, + { + "icon_id": "38744", + "name": "round_add_fill", + "font_class": "roundaddfill", + "unicode": "e6d8", + "unicode_decimal": 59096 + }, + { + "icon_id": "14706564", + "name": "文件夹", + "font_class": "wenjianjia1", + "unicode": "e75c", + "unicode_decimal": 59228 + }, + { + "icon_id": "29944", + "name": "round_close", + "font_class": "roundclose", + "unicode": "e673", + "unicode_decimal": 58995 + }, + { + "icon_id": "14776044", + "name": "ZIP", + "font_class": "ZIP", + "unicode": "e75d", + "unicode_decimal": 59229 + }, + { + "icon_id": "913780", + "name": "坐标", + "font_class": "zuobiao", + "unicode": "e674", + "unicode_decimal": 58996 + }, + { + "icon_id": "14776069", + "name": "TAR", + "font_class": "TAR", + "unicode": "e75e", + "unicode_decimal": 59230 + }, + { + "icon_id": "4019861", + "name": "银行卡", + "font_class": "yinhangqia", + "unicode": "e675", + "unicode_decimal": 58997 + }, + { + "icon_id": "14775518", + "name": "导出", + "font_class": "daochu3x", + "unicode": "e75f", + "unicode_decimal": 59231 + }, + { + "icon_id": "5291605", + "name": "更多", + "font_class": "gengduo1", + "unicode": "e7f9", + "unicode_decimal": 59385 + }, + { + "icon_id": "14775519", + "name": "立即截止", + "font_class": "lijijiezhi3x", + "unicode": "e760", + "unicode_decimal": 59232 + }, + { + "icon_id": "2629328", + "name": "加 ", + "font_class": "jia", + "unicode": "e605", + "unicode_decimal": 58885 + }, + { + "icon_id": "14775520", + "name": "编辑试卷", + "font_class": "bianjishijuan3x", + "unicode": "e761", + "unicode_decimal": 59233 + }, + { + "icon_id": "3866700", + "name": "位置", + "font_class": "weizhi", + "unicode": "e676", + "unicode_decimal": 58998 + }, + { + "icon_id": "14775521", + "name": "打回重做", + "font_class": "dahuizhongzuo3x", + "unicode": "e762", + "unicode_decimal": 59234 + }, + { + "icon_id": "5872571", + "name": "fork", + "font_class": "fork", + "unicode": "e6b3", + "unicode_decimal": 59059 + }, + { + "icon_id": "14775567", + "name": "集中批量批阅", + "font_class": "filedone2X", + "unicode": "e764", + "unicode_decimal": 59236 + }, + { + "icon_id": "348426", + "name": "css3", + "font_class": "css3", + "unicode": "ea8b", + "unicode_decimal": 60043 + }, + { + "icon_id": "14775587", + "name": "组内顺序批阅", + "font_class": "filesync3x", + "unicode": "e766", + "unicode_decimal": 59238 + }, + { + "icon_id": "348560", + "name": "html5", + "font_class": "html5", + "unicode": "eb10", + "unicode_decimal": 60176 + }, + { + "icon_id": "14775664", + "name": "筛选-下", + "font_class": "bianzu19xia3x", + "unicode": "e767", + "unicode_decimal": 59239 + }, + { + "icon_id": "836716", + "name": "linux", + "font_class": "linux", + "unicode": "e765", + "unicode_decimal": 59237 + }, + { + "icon_id": "14775724", + "name": "筛选-上", + "font_class": "bianzu193x", + "unicode": "e768", + "unicode_decimal": 59240 + }, + { + "icon_id": "1881547", + "name": "大数据存储", + "font_class": "dashujucunchu", + "unicode": "e678", + "unicode_decimal": 59000 + }, + { + "icon_id": "14776461", + "name": "搜索", + "font_class": "Search3x", + "unicode": "e769", + "unicode_decimal": 59241 + }, + { + "icon_id": "2584358", + "name": "VPN", + "font_class": "VPN", + "unicode": "e601", + "unicode_decimal": 58881 + }, + { + "icon_id": "14788714", + "name": "筛选-默认", + "font_class": "bianzu19", + "unicode": "e76a", + "unicode_decimal": 59242 + }, + { + "icon_id": "3876414", + "name": "jquery", + "font_class": "jquery", + "unicode": "e67a", + "unicode_decimal": 59002 + }, + { + "icon_id": "14812518", + "name": "选中框", + "font_class": "xuanzhongkuang", + "unicode": "e76c", + "unicode_decimal": 59244 + }, + { + "icon_id": "3876424", + "name": "docker", + "font_class": "docker", + "unicode": "e67b", + "unicode_decimal": 59003 + }, + { + "icon_id": "14812519", + "name": "未选框", + "font_class": "weixuankuang", + "unicode": "e76d", + "unicode_decimal": 59245 + }, + { + "icon_id": "3876458", + "name": "python", + "font_class": "python", + "unicode": "e67c", + "unicode_decimal": 59004 + }, + { + "icon_id": "14818827", + "name": "选中购", + "font_class": "check-square-fill3x", + "unicode": "e76e", + "unicode_decimal": 59246 + }, + { + "icon_id": "3876486", + "name": "php", + "font_class": "php", + "unicode": "e67d", + "unicode_decimal": 59005 + }, + { + "icon_id": "14818833", + "name": "展开", + "font_class": "play-square-fill3x", + "unicode": "e76f", + "unicode_decimal": 59247 + }, + { + "icon_id": "5634728", + "name": "java", + "font_class": "java", + "unicode": "f1d7", + "unicode_decimal": 61911 + }, + { + "icon_id": "12099623", + "name": "设置", + "font_class": "huabanfuben", + "unicode": "eb7b", + "unicode_decimal": 60283 + }, + { + "icon_id": "5961392", + "name": "mysql", + "font_class": "mysql", + "unicode": "ec6d", + "unicode_decimal": 60525 + }, + { + "icon_id": "338692", + "name": "显示器", + "font_class": "zhongqingdianxinicon10", + "unicode": "e770", + "unicode_decimal": 59248 + }, + { + "icon_id": "776044", + "name": "PHP开发", + "font_class": "phpkaifa", + "unicode": "e67e", + "unicode_decimal": 59006 + }, + { + "icon_id": "11488063", + "name": "left arrow", + "font_class": "leftarrow", + "unicode": "e771", + "unicode_decimal": 59249 + }, + { + "icon_id": "4239271", + "name": "SQL server", + "font_class": "SQLserver", + "unicode": "e705", + "unicode_decimal": 59141 + }, + { + "icon_id": "15097291", + "name": "新建", + "font_class": "xinjian1", + "unicode": "e772", + "unicode_decimal": 59250 + }, + { + "icon_id": "6359951", + "name": "mongodb", + "font_class": "mongodb1", + "unicode": "e60b", + "unicode_decimal": 58891 + }, + { + "icon_id": "15115208", + "name": "镜像", + "font_class": "jingxiang", + "unicode": "e773", + "unicode_decimal": 59251 + }, + { + "icon_id": "986702", + "name": "路由", + "font_class": "luyou", + "unicode": "e677", + "unicode_decimal": 58999 + }, + { + "icon_id": "15226856", + "name": "实训详情", + "font_class": "shixunxiangqing", + "unicode": "e775", + "unicode_decimal": 59253 + }, + { + "icon_id": "5430942", + "name": "智能监控体系", + "font_class": "zhinengjiankongtixi", + "unicode": "e6b4", + "unicode_decimal": 59060 + }, + { + "icon_id": "15226857", + "name": "立即发布", + "font_class": "lijifabu", + "unicode": "e776", + "unicode_decimal": 59254 + }, + { + "icon_id": "1283976", + "name": "代码配置r", + "font_class": "daimapeizhir", + "unicode": "e727", + "unicode_decimal": 59175 + }, + { + "icon_id": "15226858", + "name": "开启中", + "font_class": "kaiqizhong", + "unicode": "e777", + "unicode_decimal": 59255 + }, + { + "icon_id": "29949", + "name": "time_fill", + "font_class": "timefill", + "unicode": "e679", + "unicode_decimal": 59001 + }, + { + "icon_id": "15226859", + "name": "导出", + "font_class": "daochu", + "unicode": "e778", + "unicode_decimal": 59256 + }, + { + "icon_id": "1679994", + "name": "减", + "font_class": "default", + "unicode": "e67f", + "unicode_decimal": 59007 + }, + { + "icon_id": "15226860", + "name": "一键点评", + "font_class": "yijiandianping", + "unicode": "e779", + "unicode_decimal": 59257 + }, + { + "icon_id": "959394", + "name": "重置", + "font_class": "zhongzhi1", + "unicode": "e609", + "unicode_decimal": 58889 + }, + { + "icon_id": "15226861", + "name": "查看实训报告", + "font_class": "chakanshixunbaogao", + "unicode": "e77a", + "unicode_decimal": 59258 + }, + { + "icon_id": "5127482", + "name": "reset", + "font_class": "reset", + "unicode": "e7fe", + "unicode_decimal": 59390 + }, + { + "icon_id": "15226862", + "name": "提交总结", + "font_class": "tijiaozongjie", + "unicode": "e77b", + "unicode_decimal": 59259 + }, + { + "icon_id": "562997", + "name": "vs", + "font_class": "vs", + "unicode": "e682", + "unicode_decimal": 59010 + }, + { + "icon_id": "15226863", + "name": "代码查重", + "font_class": "daimachazhong", + "unicode": "e77c", + "unicode_decimal": 59260 + }, + { + "icon_id": "3330922", + "name": "base", + "font_class": "base", + "unicode": "e683", + "unicode_decimal": 59011 + }, + { + "icon_id": "15226864", + "name": "编辑作业", + "font_class": "bianjizuoye", + "unicode": "e77d", + "unicode_decimal": 59261 + }, + { + "icon_id": "4479935", + "name": "登录Ip监控", + "font_class": "dengluIpjiankong", + "unicode": "e684", + "unicode_decimal": 59012 + }, + { + "icon_id": "15226865", + "name": "立即截止", + "font_class": "lijijiezhi", + "unicode": "e77e", + "unicode_decimal": 59262 + }, + { + "icon_id": "4489857", + "name": "itsm3-流程管理", + "font_class": "itsm-liuchengguanli", + "unicode": "e685", + "unicode_decimal": 59013 + }, + { + "icon_id": "14332762", + "name": "合并请求", + "font_class": "hebingqingqiu", + "unicode": "e7f2", + "unicode_decimal": 59378 + }, + { + "icon_id": "1328121", + "name": "net", + "font_class": "net", + "unicode": "e607", + "unicode_decimal": 58887 + }, + { + "icon_id": "15465923", + "name": "组织成员", + "font_class": "zuzhichengyuan", + "unicode": "e774", + "unicode_decimal": 59252 + }, + { + "icon_id": "1966078", + "name": "mstest", + "font_class": "mstest", + "unicode": "e686", + "unicode_decimal": 59014 + }, + { + "icon_id": "15465934", + "name": "组织项目", + "font_class": "zuzhixiangmu", + "unicode": "e77f", + "unicode_decimal": 59263 + }, + { + "icon_id": "1792712", + "name": "qq", + "font_class": "qq", + "unicode": "e687", + "unicode_decimal": 59015 + }, + { + "icon_id": "15590860", + "name": "公告栏", + "font_class": "gonggaolan", + "unicode": "e780", + "unicode_decimal": 59264 + }, + { + "icon_id": "2405900", + "name": "CSDN", + "font_class": "csdn", + "unicode": "e602", + "unicode_decimal": 58882 + }, + { + "icon_id": "15590913", + "name": "实训作业", + "font_class": "shixunzuoye", + "unicode": "e781", + "unicode_decimal": 59265 + }, + { + "icon_id": "2709989", + "name": "微博", + "font_class": "weibo", + "unicode": "e688", + "unicode_decimal": 59016 + }, + { + "icon_id": "15590919", + "name": "分组作业", + "font_class": "fenzuzuoye1", + "unicode": "e783", + "unicode_decimal": 59267 + }, + { + "icon_id": "3471155", + "name": "微信", + "font_class": "weixin2", + "unicode": "e603", + "unicode_decimal": 58883 + }, + { + "icon_id": "15590922", + "name": "毕业作业", + "font_class": "biyezuoye", + "unicode": "e784", + "unicode_decimal": 59268 + }, + { + "icon_id": "3580617", + "name": "Stack Overflow", + "font_class": "StackOverflow", + "unicode": "e689", + "unicode_decimal": 59017 + }, + { + "icon_id": "15590984", + "name": "考试试卷", + "font_class": "kaoshishijuan", + "unicode": "e785", + "unicode_decimal": 59269 + }, + { + "icon_id": "4058832", + "name": "linkedin", + "font_class": "linkedin", + "unicode": "e60c", + "unicode_decimal": 58892 + }, + { + "icon_id": "15591132", + "name": "考试问卷", + "font_class": "kaoshiwenjuan", + "unicode": "e786", + "unicode_decimal": 59270 + }, + { + "icon_id": "6252982", + "name": "github", + "font_class": "github", + "unicode": "e763", + "unicode_decimal": 59235 + }, + { + "icon_id": "15591155", + "name": "学习资源", + "font_class": "xuexiziyuan", + "unicode": "e787", + "unicode_decimal": 59271 + }, + { + "icon_id": "712283", + "name": "时间", + "font_class": "shijian", + "unicode": "e69c", + "unicode_decimal": 59036 + }, + { + "icon_id": "15591161", + "name": "视频直播", + "font_class": "shipinzhibo", + "unicode": "e788", + "unicode_decimal": 59272 + }, + { + "icon_id": "3592482", + "name": "重置", + "font_class": "zhongzhi2", + "unicode": "e68a", + "unicode_decimal": 59018 + }, + { + "icon_id": "15591163", + "name": "讨论", + "font_class": "taolun1", + "unicode": "e789", + "unicode_decimal": 59273 + }, + { + "icon_id": "5379378", + "name": "20从属连接", + "font_class": "congshulianjie", + "unicode": "e6ee", + "unicode_decimal": 59118 + }, + { + "icon_id": "15591165", + "name": "分班", + "font_class": "fenban1", + "unicode": "e78a", + "unicode_decimal": 59274 + }, + { + "icon_id": "6879322", + "name": "trustie", + "font_class": "trustie", + "unicode": "e681", + "unicode_decimal": 59009 + }, + { + "icon_id": "15591167", + "name": "签到", + "font_class": "qiandao", + "unicode": "e78b", + "unicode_decimal": 59275 + }, + { + "icon_id": "3216521", + "name": "成功", + "font_class": "chenggong", + "unicode": "e68b", + "unicode_decimal": 59019 + }, + { + "icon_id": "15591171", + "name": "统计", + "font_class": "tongji2", + "unicode": "e78c", + "unicode_decimal": 59276 + }, + { + "icon_id": "7395703", + "name": "实训带背景", + "font_class": "shixundaibeijing", + "unicode": "e68c", + "unicode_decimal": 59020 + }, + { + "icon_id": "15605133", + "name": "编辑", + "font_class": "bianji6", + "unicode": "e78d", + "unicode_decimal": 59277 + }, + { + "icon_id": "4320360", + "name": "质量分析", + "font_class": "zhiliangfenxi", + "unicode": "e68d", + "unicode_decimal": 59021 + }, + { + "icon_id": "15605136", + "name": "文件", + "font_class": "wenjian1", + "unicode": "e78e", + "unicode_decimal": 59278 + }, + { + "icon_id": "3182660", + "name": "设置", + "font_class": "shezhi1", + "unicode": "e71d", + "unicode_decimal": 59165 + }, + { + "icon_id": "15689245", + "name": "更新成绩", + "font_class": "gengxinchengji", + "unicode": "e790", + "unicode_decimal": 59280 + }, + { + "icon_id": "622431", + "name": "pdf", + "font_class": "pdf", + "unicode": "e740", + "unicode_decimal": 59200 + }, + { + "icon_id": "15762732", + "name": "工作流", + "font_class": "gongzuoliu", + "unicode": "e793", + "unicode_decimal": 59283 + }, + { + "icon_id": "4333787", + "name": "上传图片", + "font_class": "shangchuantupian1", + "unicode": "e7fd", + "unicode_decimal": 59389 + }, + { + "icon_id": "15792796", + "name": "未通过", + "font_class": "weitongguo", + "unicode": "e794", + "unicode_decimal": 59284 + }, + { + "icon_id": "7913929", + "name": "添加导航", + "font_class": "tianjiadaohang", + "unicode": "e604", + "unicode_decimal": 58884 + }, + { + "icon_id": "15792803", + "name": "已通过", + "font_class": "yitongguo", + "unicode": "e795", + "unicode_decimal": 59285 + }, + { + "icon_id": "394097", + "name": "章节", + "font_class": "zhangjie1", + "unicode": "e68e", + "unicode_decimal": 59022 + }, + { + "icon_id": "15792805", + "name": "运行中", + "font_class": "yunhangzhong", + "unicode": "e796", + "unicode_decimal": 59286 + }, + { + "icon_id": "1025289", + "name": "复制", + "font_class": "fuzhi", + "unicode": "e68f", + "unicode_decimal": 59023 + }, + { + "icon_id": "15792809", + "name": "准备中", + "font_class": "zhunbeizhong", + "unicode": "e797", + "unicode_decimal": 59287 + }, + { + "icon_id": "3250316", + "name": "三点", + "font_class": "sandian", + "unicode": "e6f8", + "unicode_decimal": 59128 + }, + { + "icon_id": "15852665", + "name": "HOME", + "font_class": "HOME", + "unicode": "e798", + "unicode_decimal": 59288 + }, + { + "icon_id": "1820861", + "name": "标签", + "font_class": "biaoqian", + "unicode": "e74f", + "unicode_decimal": 59215 + }, + { + "icon_id": "15852666", + "name": "MAILING LIST", + "font_class": "MAILINGLIST", + "unicode": "e799", + "unicode_decimal": 59289 + }, + { + "icon_id": "1301376", + "name": "提示", + "font_class": "tishi1", + "unicode": "e690", + "unicode_decimal": 59024 + }, + { + "icon_id": "15852667", + "name": "EDI STATEMENT", + "font_class": "EDISTATEMENT", + "unicode": "e79a", + "unicode_decimal": 59290 + }, + { + "icon_id": "2065962", + "name": "添加成员", + "font_class": "tianjiachengyuan", + "unicode": "e69a", + "unicode_decimal": 59034 + }, + { + "icon_id": "15852669", + "name": "CONDUCT & SAFETY", + "font_class": "CONDUCTSAFETY", + "unicode": "e79b", + "unicode_decimal": 59291 + }, + { + "icon_id": "1471592", + "name": "edit", + "font_class": "edit", + "unicode": "e691", + "unicode_decimal": 59025 + }, + { + "icon_id": "15852670", + "name": "HISTORY", + "font_class": "HISTORY", + "unicode": "e79c", + "unicode_decimal": 59292 + }, + { + "icon_id": "1770008", + "name": "下载", + "font_class": "xiazai1", + "unicode": "e6ac", + "unicode_decimal": 59052 + }, + { + "icon_id": "15852671", + "name": "PROCEEDINGS", + "font_class": "PROCEEDINGS", + "unicode": "e79d", + "unicode_decimal": 59293 + }, + { + "icon_id": "2471377", + "name": "模板", + "font_class": "moban", + "unicode": "e692", + "unicode_decimal": 59026 + }, + { + "icon_id": "15852672", + "name": "BIBLIOGRAPHIES", + "font_class": "BIBLIOGRAPHIES", + "unicode": "e79e", + "unicode_decimal": 59294 + }, + { + "icon_id": "1118044", + "name": "认证信息", + "font_class": "renzhengxinxi", + "unicode": "e693", + "unicode_decimal": 59027 + }, + { + "icon_id": "15852673", + "name": "INFLUENTIAL PAPERS", + "font_class": "INFLUENTIALPAPERS", + "unicode": "e79f", + "unicode_decimal": 59295 + }, + { + "icon_id": "3295983", + "name": "gs-beixiao-icon-基本信息", + "font_class": "jibenxinxi", + "unicode": "e694", + "unicode_decimal": 59028 + }, + { + "icon_id": "15852674", + "name": "ORGANIZING ICSE - MOU", + "font_class": "ORGANIZINGICSE-MOU", + "unicode": "e7a0", + "unicode_decimal": 59296 + }, + { + "icon_id": "6576426", + "name": "安全设置", + "font_class": "anquanshezhi", + "unicode": "e606", + "unicode_decimal": 58886 + }, + { + "icon_id": "15852675", + "name": "STEERING COMMITTEE", + "font_class": "STEERINGCOMMITTEE", + "unicode": "e7a1", + "unicode_decimal": 59297 + }, + { + "icon_id": "1472537", + "name": "显示", + "font_class": "xianshi", + "unicode": "e695", + "unicode_decimal": 59029 + }, + { + "icon_id": "15852676", + "name": "FINAL REPORTS", + "font_class": "FINALREPORTS", + "unicode": "e7a2", + "unicode_decimal": 59298 + }, + { + "icon_id": "3738942", + "name": "隐藏", + "font_class": "yincang", + "unicode": "e6a0", + "unicode_decimal": 59040 + }, + { + "icon_id": "15852677", + "name": "SPONSORS", + "font_class": "SPONSORS", + "unicode": "e7a3", + "unicode_decimal": 59299 + }, + { + "icon_id": "209734", + "name": "粗版2_上传云端", + "font_class": "cuban2shangchuanyunduan", + "unicode": "e86d", + "unicode_decimal": 59501 + }, + { + "icon_id": "15852678", + "name": "CONTACTS", + "font_class": "CONTACTS", + "unicode": "e7a4", + "unicode_decimal": 59300 + }, + { + "icon_id": "6018156", + "name": "客户留言", + "font_class": "kehuliuyan", + "unicode": "e71a", + "unicode_decimal": 59162 + }, + { + "icon_id": "15852679", + "name": "Last updated", + "font_class": "Lastupdated", + "unicode": "e7a5", + "unicode_decimal": 59301 + }, + { + "icon_id": "1941293", + "name": "喇叭", + "font_class": "laba", + "unicode": "e608", + "unicode_decimal": 58888 + }, + { + "icon_id": "16766394", + "name": "实训作业", + "font_class": "shixunzuoye1", + "unicode": "e7a6", + "unicode_decimal": 59302 + }, + { + "icon_id": "2323314", + "name": "隐藏", + "font_class": "yincang1", + "unicode": "e9b5", + "unicode_decimal": 59829 + }, + { + "icon_id": "16767292", + "name": "普通作业", + "font_class": "putongzuoye1", + "unicode": "e782", + "unicode_decimal": 59266 + }, + { + "icon_id": "7637642", + "name": "警告", + "font_class": "jinggao", + "unicode": "e696", + "unicode_decimal": 59030 + }, + { + "icon_id": "16768917", + "name": "学习资源", + "font_class": "xuexiziyuan1", + "unicode": "e7a8", + "unicode_decimal": 59304 + }, + { + "icon_id": "2668434", + "name": "银行卡", + "font_class": "yinhangqia1", + "unicode": "e697", + "unicode_decimal": 59031 + }, + { + "icon_id": "16771320", + "name": "考试问卷", + "font_class": "kaoshiwenjuan1", + "unicode": "e7a7", + "unicode_decimal": 59303 + }, + { + "icon_id": "5037778", + "name": "设置", + "font_class": "shezhi2", + "unicode": "e698", + "unicode_decimal": 59032 + }, + { + "icon_id": "16771321", + "name": "考试试卷", + "font_class": "kaoshishijuan1", + "unicode": "e7a9", + "unicode_decimal": 59305 + }, + { + "icon_id": "5921996", + "name": "名片", + "font_class": "mingpian", + "unicode": "e69b", + "unicode_decimal": 59035 + }, + { + "icon_id": "16771324", + "name": "视频直播", + "font_class": "shipinzhibo1", + "unicode": "e7aa", + "unicode_decimal": 59306 + }, + { + "icon_id": "5383113", + "name": "手机", + "font_class": "shouji", + "unicode": "e69d", + "unicode_decimal": 59037 + }, + { + "icon_id": "16771329", + "name": "讨论", + "font_class": "taolun2", + "unicode": "e7ab", + "unicode_decimal": 59307 + }, + { + "icon_id": "2800857", + "name": "无", + "font_class": "kong", + "unicode": "e69f", + "unicode_decimal": 59039 + }, + { + "icon_id": "16771338", + "name": "分班", + "font_class": "fenban2", + "unicode": "e7ac", + "unicode_decimal": 59308 + }, + { + "icon_id": "9977539", + "name": "排序", + "font_class": "paixu1", + "unicode": "e6aa", + "unicode_decimal": 59050 + }, + { + "icon_id": "16771339", + "name": "签到", + "font_class": "qiandao1", + "unicode": "e7ad", + "unicode_decimal": 59309 + }, + { + "icon_id": "2423301", + "name": "用户、角色_无数据", + "font_class": "yonghujiaose_wushuju", + "unicode": "e69e", + "unicode_decimal": 59038 + }, + { + "icon_id": "16771343", + "name": "统计", + "font_class": "tongji3", + "unicode": "e7ae", + "unicode_decimal": 59310 + }, + { + "icon_id": "10371563", + "name": "职业认证", + "font_class": "renzhengshangjia", + "unicode": "e6ab", + "unicode_decimal": 59051 + }, + { + "icon_id": "16771344", + "name": "毕业作业", + "font_class": "biyezuoye1", + "unicode": "e7af", + "unicode_decimal": 59311 + }, + { + "icon_id": "10371564", + "name": "实名认证", + "font_class": "shenfenzhenghaomaguizheng", + "unicode": "e6ad", + "unicode_decimal": 59053 + }, + { + "icon_id": "16771348", + "name": "分组作业", + "font_class": "fenzuzuoye2", + "unicode": "e7b0", + "unicode_decimal": 59312 + }, + { + "icon_id": "9751215", + "name": "编辑", + "font_class": "bianji1", + "unicode": "e6a1", + "unicode_decimal": 59041 + }, + { + "icon_id": "16771382", + "name": "模版管理2", + "font_class": "mobanguanli2", + "unicode": "e7b1", + "unicode_decimal": 59313 + }, + { + "icon_id": "1703520", + "name": "消息", + "font_class": "xiaoxi1", + "unicode": "e6a4", + "unicode_decimal": 59044 + }, + { + "icon_id": "16922942", + "name": "对勾", + "font_class": "duigou1", + "unicode": "e7b2", + "unicode_decimal": 59314 + }, + { + "icon_id": "10383001", + "name": "Page-1 (2)", + "font_class": "Page-1", + "unicode": "e6ae", + "unicode_decimal": 59054 + }, + { + "icon_id": "16922946", + "name": "链接 (1)", + "font_class": "lianjie1", + "unicode": "e7b5", + "unicode_decimal": 59317 + }, + { + "icon_id": "10383218", + "name": "Page-3", + "font_class": "Page-3", + "unicode": "e6af", + "unicode_decimal": 59055 + }, + { + "icon_id": "16922947", + "name": "章节", + "font_class": "zhangjie", + "unicode": "e7b6", + "unicode_decimal": 59318 + }, + { + "icon_id": "10383219", + "name": "Page2", + "font_class": "Page", + "unicode": "e6b0", + "unicode_decimal": 59056 + }, + { + "icon_id": "16923000", + "name": "上传视频 (1)", + "font_class": "shangchuanshipin1", + "unicode": "e7b7", + "unicode_decimal": 59319 + }, + { + "icon_id": "10440637", + "name": "身份认证", + "font_class": "yemian", + "unicode": "e6b1", + "unicode_decimal": 59057 + }, + { + "icon_id": "17027771", + "name": "闹钟", + "font_class": "shizhong", + "unicode": "e7b8", + "unicode_decimal": 59320 + }, + { + "icon_id": "10440717", + "name": "实名认证", + "font_class": "bianzu", + "unicode": "e6b5", + "unicode_decimal": 59061 + }, + { + "icon_id": "17060439", + "name": "开启防作弊", + "font_class": "fangzuobi", + "unicode": "e7b9", + "unicode_decimal": 59321 + }, + { + "icon_id": "2959158", + "name": "课程", + "font_class": "kecheng", + "unicode": "e60a", + "unicode_decimal": 58890 + }, + { + "icon_id": "17060498", + "name": "放大", + "font_class": "fangda2", + "unicode": "e7ba", + "unicode_decimal": 59322 + }, + { + "icon_id": "10484724", + "name": "学习中心", + "font_class": "xuexizhongxin", + "unicode": "e6b6", + "unicode_decimal": 59062 + }, + { + "icon_id": "17077771", + "name": "视频", + "font_class": "shipin", + "unicode": "e7b4", + "unicode_decimal": 59316 + }, + { + "icon_id": "6897671", + "name": "无权限", + "font_class": "wuquanxian", + "unicode": "e6a2", + "unicode_decimal": 59042 + }, + { + "icon_id": "17077772", + "name": "实训", + "font_class": "shixun2", + "unicode": "e7be", + "unicode_decimal": 59326 + }, + { + "icon_id": "9219273", + "name": "yunweijiankong", + "font_class": "yunweijiankong", + "unicode": "e6a3", + "unicode_decimal": 59043 + }, + { + "icon_id": "17078373", + "name": "自用试卷", + "font_class": "ziyongshijuan", + "unicode": "e7b3", + "unicode_decimal": 59315 + }, + { + "icon_id": "9238635", + "name": "gongyiliucheng", + "font_class": "gongyiliucheng", + "unicode": "e6a5", + "unicode_decimal": 59045 + }, + { + "icon_id": "17078374", + "name": "已公开试卷", + "font_class": "yigongkaishijuan", + "unicode": "e7bb", + "unicode_decimal": 59323 + }, + { + "icon_id": "9247438", + "name": "zhiliangkongzhi", + "font_class": "zhiliangkongzhi", + "unicode": "e6a6", + "unicode_decimal": 59046 + }, + { + "icon_id": "4550494", + "name": "箭头", + "font_class": "jiantou", + "unicode": "e7bc", + "unicode_decimal": 59324 + }, + { + "icon_id": "9247680", + "name": "shebeiguanli", + "font_class": "shebeiguanli", + "unicode": "e6a7", + "unicode_decimal": 59047 + }, + { + "icon_id": "17126010", + "name": "编程语言", + "font_class": "bianchengyuyan", + "unicode": "e7bd", + "unicode_decimal": 59325 + }, + { + "icon_id": "9255551", + "name": "shengmingzhouqi", + "font_class": "shengmingzhouqi", + "unicode": "e6a8", + "unicode_decimal": 59048 + }, + { + "icon_id": "17189615", + "name": "右", + "font_class": "you", + "unicode": "e7bf", + "unicode_decimal": 59327 + }, + { + "icon_id": "10610561", + "name": "menu_5date1", + "font_class": "menu_date", + "unicode": "e6a9", + "unicode_decimal": 59049 + }, + { + "icon_id": "17189616", + "name": "左", + "font_class": "zuo", + "unicode": "e7c0", + "unicode_decimal": 59328 + }, + { + "icon_id": "10610574", + "name": "menu_people1", + "font_class": "menu_people", + "unicode": "e6b7", + "unicode_decimal": 59063 + }, + { + "icon_id": "12703761", + "name": "oschina", + "font_class": "oschina", + "unicode": "e7c1", + "unicode_decimal": 59329 + }, + { + "icon_id": "10610051", + "name": "menu_3voucher", + "font_class": "menu_voucher", + "unicode": "e6b8", + "unicode_decimal": 59064 + }, + { + "icon_id": "675739", + "name": "用户", + "font_class": "yonghu", + "unicode": "e7c2", + "unicode_decimal": 59330 + }, + { + "icon_id": "10610055", + "name": "menu_3events", + "font_class": "menu_events", + "unicode": "e6b9", + "unicode_decimal": 59065 + }, + { + "icon_id": "17215358", + "name": "QQ", + "font_class": "QQ", + "unicode": "e7c3", + "unicode_decimal": 59331 + }, + { + "icon_id": "10610061", + "name": "menu_4map", + "font_class": "menu_map", + "unicode": "e6ba", + "unicode_decimal": 59066 + }, + { + "icon_id": "17272329", + "name": "光标", + "font_class": "guangbiao", + "unicode": "e7c4", + "unicode_decimal": 59332 + }, + { + "icon_id": "3634968", + "name": "活动", + "font_class": "huodong", + "unicode": "e6bb", + "unicode_decimal": 59067 + }, + { + "icon_id": "17320656", + "name": "搜索", + "font_class": "sousuo2", + "unicode": "e7c6", + "unicode_decimal": 59334 + }, + { + "icon_id": "695129", + "name": "单选 选中", + "font_class": "danxuanxuanzhong1", + "unicode": "e6bd", + "unicode_decimal": 59069 + }, + { + "icon_id": "17338062", + "name": "收藏", + "font_class": "shoucang3", + "unicode": "e7c7", + "unicode_decimal": 59335 + }, + { + "icon_id": "7587940", + "name": "工程", + "font_class": "gongcheng", + "unicode": "e60f", + "unicode_decimal": 58895 + }, + { + "icon_id": "17338109", + "name": "删除", + "font_class": "shanchu21", + "unicode": "e7c8", + "unicode_decimal": 59336 + }, + { + "icon_id": "425651", + "name": "社区", + "font_class": "shequ", + "unicode": "e6bc", + "unicode_decimal": 59068 + }, + { + "icon_id": "17347836", + "name": "警示", + "font_class": "jingshi1", + "unicode": "e7c9", + "unicode_decimal": 59337 + }, + { + "icon_id": "11222372", + "name": "healthmode", + "font_class": "healthmode", + "unicode": "e60e", + "unicode_decimal": 58894 + }, + { + "icon_id": "17393121", + "name": "撤销分组", + "font_class": "chexiaofenzu", + "unicode": "e7ca", + "unicode_decimal": 59338 + }, + { + "icon_id": "11230822", + "name": "nenghaofenxi@1x", + "font_class": "nenghaofenxix", + "unicode": "e6be", + "unicode_decimal": 59070 + }, + { + "icon_id": "17393122", + "name": "撤销共享", + "font_class": "chexiaogongxiang", + "unicode": "e7cb", + "unicode_decimal": 59339 + }, + { + "icon_id": "4553727", + "name": "链接", + "font_class": "lianjie", + "unicode": "e7db", + "unicode_decimal": 59355 + }, + { + "icon_id": "17393123", + "name": "选中", + "font_class": "xuanzhong1", + "unicode": "e7cc", + "unicode_decimal": 59340 + }, + { + "icon_id": "11408531", + "name": "detection@1x", + "font_class": "detectionx", + "unicode": "e6c1", + "unicode_decimal": 59073 + }, + { + "icon_id": "17399289", + "name": "vnc实训界面-收起", + "font_class": "vncshixunjiemian-shouqi", + "unicode": "e7cd", + "unicode_decimal": 59341 + }, + { + "icon_id": "11409495", + "name": "community@1x", + "font_class": "communityx", + "unicode": "e6c2", + "unicode_decimal": 59074 + }, + { + "icon_id": "17399816", + "name": "vnc实训界面-展开", + "font_class": "vncshixunjiemian-zhankai", + "unicode": "e7cf", + "unicode_decimal": 59343 + }, + { + "icon_id": "11409771", + "name": "hosting@1x", + "font_class": "hostingx2", + "unicode": "e6c3", + "unicode_decimal": 59075 + }, + { + "icon_id": "17399931", + "name": "vnc实训界面-工具栏", + "font_class": "vncshixunjiemian-gongjulan", + "unicode": "e7d0", + "unicode_decimal": 59344 + }, + { + "icon_id": "11410432", + "name": "project@1x", + "font_class": "projectx", + "unicode": "e6c4", + "unicode_decimal": 59076 + }, + { + "icon_id": "17400088", + "name": "实验环境倒计时", + "font_class": "shiyanhuanjingdaojishi", + "unicode": "e7d1", + "unicode_decimal": 59345 + }, + { + "icon_id": "5255211", + "name": "复制", + "font_class": "fuzhi1", + "unicode": "e800", + "unicode_decimal": 59392 + }, + { + "icon_id": "17415080", + "name": "复制版本库地址", + "font_class": "fuzhibanbenkudizhi1", + "unicode": "e7d3", + "unicode_decimal": 59347 + }, + { + "icon_id": "8361866", + "name": "主页", + "font_class": "zhuye", + "unicode": "e6d3", + "unicode_decimal": 59091 + }, + { + "icon_id": "17415856", + "name": "全屏", + "font_class": "quanping", + "unicode": "e7d2", + "unicode_decimal": 59346 + }, + { + "icon_id": "10527626", + "name": "统计", + "font_class": "tongji", + "unicode": "e6bf", + "unicode_decimal": 59071 + }, + { + "icon_id": "17415865", + "name": "退出全屏", + "font_class": "tuichuquanping", + "unicode": "e7d4", + "unicode_decimal": 59348 + }, + { + "icon_id": "1214792", + "name": "关注", + "font_class": "weibiaoti105", + "unicode": "e6c0", + "unicode_decimal": 59072 + }, + { + "icon_id": "17416333", + "name": "重置实训", + "font_class": "zhongzhishixun", + "unicode": "e7d5", + "unicode_decimal": 59349 + }, + { + "icon_id": "1901672", + "name": "关注", + "font_class": "guanzhu", + "unicode": "e6c5", + "unicode_decimal": 59077 + }, + { + "icon_id": "17416337", + "name": "复制粘贴", + "font_class": "fuzhiniantie", + "unicode": "e7d6", + "unicode_decimal": 59350 + }, + { + "icon_id": "3315084", + "name": "博客园", + "font_class": "bokeyuan", + "unicode": "e6c6", + "unicode_decimal": 59078 + }, + { + "icon_id": "17416342", + "name": "共享桌面", + "font_class": "gongxiangzhuomian", + "unicode": "e7d7", + "unicode_decimal": 59351 + }, + { + "icon_id": "978358", + "name": "浏览", + "font_class": "liulan", + "unicode": "e6c7", + "unicode_decimal": 59079 + }, + { + "icon_id": "17435144", + "name": "关卡菜单", + "font_class": "guankacaidan", + "unicode": "e7ce", + "unicode_decimal": 59342 + }, + { + "icon_id": "7501072", + "name": "评论", + "font_class": "pinglun", + "unicode": "e6c8", + "unicode_decimal": 59080 + }, + { + "icon_id": "17468131", + "name": "未开摄像头", + "font_class": "weikaishexiangtou1", + "unicode": "e7d8", + "unicode_decimal": 59352 + }, + { + "icon_id": "11965901", + "name": "绑定手机号", + "font_class": "bangdingshoujihao", + "unicode": "e6ca", + "unicode_decimal": 59082 + }, + { + "icon_id": "17481990", + "name": "金币", + "font_class": "jinbi", + "unicode": "e7c5", + "unicode_decimal": 59333 + }, + { + "icon_id": "12028723", + "name": "标签", + "font_class": "biaoqian1", + "unicode": "e6ce", + "unicode_decimal": 59086 + }, + { + "icon_id": "17541348", + "name": "代码库", + "font_class": "daimaku", + "unicode": "e7d9", + "unicode_decimal": 59353 + }, + { + "icon_id": "12028724", + "name": "记录", + "font_class": "jilu", + "unicode": "e6cf", + "unicode_decimal": 59087 + }, + { + "icon_id": "17541349", + "name": "forc", + "font_class": "forc", + "unicode": "e7da", + "unicode_decimal": 59354 + }, + { + "icon_id": "12028725", + "name": "书", + "font_class": "shu", + "unicode": "e6d0", + "unicode_decimal": 59088 + }, + { + "icon_id": "17541350", + "name": "点赞", + "font_class": "dianzan3", + "unicode": "e7dd", + "unicode_decimal": 59357 + }, + { + "icon_id": "12028726", + "name": "推荐", + "font_class": "tuijian", + "unicode": "e6d1", + "unicode_decimal": 59089 + }, + { + "icon_id": "17541351", + "name": "里程碑", + "font_class": "lichengbei", + "unicode": "e7de", + "unicode_decimal": 59358 + }, + { + "icon_id": "12028727", + "name": "创建者", + "font_class": "chuangjianzhe", + "unicode": "e6d2", + "unicode_decimal": 59090 + }, + { + "icon_id": "17541352", + "name": "取消点赞", + "font_class": "quxiaodianzan", + "unicode": "e7df", + "unicode_decimal": 59359 + }, + { + "icon_id": "496400", + "name": "禁止", + "font_class": "jinzhi", + "unicode": "e6d4", + "unicode_decimal": 59092 + }, + { + "icon_id": "17541353", + "name": "fork2", + "font_class": "fork2", + "unicode": "e7e0", + "unicode_decimal": 59360 + }, + { + "icon_id": "12126824", + "name": "完成", + "font_class": "wancheng1", + "unicode": "e6cb", + "unicode_decimal": 59083 + }, + { + "icon_id": "17541354", + "name": "合并请求", + "font_class": "hebingqingqiu1", + "unicode": "e7e1", + "unicode_decimal": 59361 + }, + { + "icon_id": "8349119", + "name": "上箭头-填充", + "font_class": "shangjiantou-tianchong", + "unicode": "e733", + "unicode_decimal": 59187 + }, + { + "icon_id": "17541355", + "name": "任务", + "font_class": "renwu", + "unicode": "e7e2", + "unicode_decimal": 59362 + }, + { + "icon_id": "9974429", + "name": "省略号", + "font_class": "shenglvehao", + "unicode": "e708", + "unicode_decimal": 59144 + }, + { + "icon_id": "17541356", + "name": "通知", + "font_class": "tongzhi", + "unicode": "e7e3", + "unicode_decimal": 59363 + }, + { + "icon_id": "12300755", + "name": "企业账号", + "font_class": "qiyezhanghao", + "unicode": "e6cc", + "unicode_decimal": 59084 + }, + { + "icon_id": "17542253", + "name": "使用文档", + "font_class": "shiyongwendang", + "unicode": "e7e5", + "unicode_decimal": 59365 + }, + { + "icon_id": "12300756", + "name": "个人账号", + "font_class": "gerenzhanghao", + "unicode": "e6cd", + "unicode_decimal": 59085 + }, + { + "icon_id": "17542254", + "name": "参与成员", + "font_class": "canyuchengyuan", + "unicode": "e7e6", + "unicode_decimal": 59366 + }, + { + "icon_id": "12301512", + "name": "加载失败", + "font_class": "jiazaishibai1", + "unicode": "e6d6", + "unicode_decimal": 59094 + }, + { + "icon_id": "17542255", + "name": "项目简介", + "font_class": "xiangmujianjie", + "unicode": "e7e7", + "unicode_decimal": 59367 + }, + { + "icon_id": "12345165", + "name": "类型", + "font_class": "leixing", + "unicode": "e6d5", + "unicode_decimal": 59093 + }, + { + "icon_id": "17567215", + "name": "主页", + "font_class": "zhuye1", + "unicode": "e7e4", + "unicode_decimal": 59364 + }, + { + "icon_id": "12345541", + "name": "标签尖头", + "font_class": "biaoqianjiantou", + "unicode": "e6d7", + "unicode_decimal": 59095 + }, + { + "icon_id": "17574366", + "name": "填写第三方慕课", + "font_class": "tianxiedisanfangmuke", + "unicode": "e7e8", + "unicode_decimal": 59368 + }, + { + "icon_id": "12371179", + "name": "置顶", + "font_class": "zhiding", + "unicode": "e6d9", + "unicode_decimal": 59097 + }, + { + "icon_id": "17586904", + "name": "成果荣誉", + "font_class": "chengguorongyu", + "unicode": "e7e9", + "unicode_decimal": 59369 + }, + { + "icon_id": "3911796", + "name": "SDK问题", + "font_class": "wenti", + "unicode": "e7dc", + "unicode_decimal": 59356 + }, + { + "icon_id": "17692954", + "name": "图片", + "font_class": "tupian1", + "unicode": "e7ea", + "unicode_decimal": 59370 + }, + { + "icon_id": "12029022", + "name": "创建者", + "font_class": "chuangjianzhe1", + "unicode": "e6da", + "unicode_decimal": 59098 + }, + { + "icon_id": "17714233", + "name": "日历", + "font_class": "rili1", + "unicode": "e7eb", + "unicode_decimal": 59371 + }, + { + "icon_id": "12029023", + "name": "书", + "font_class": "shu1", + "unicode": "e6dc", + "unicode_decimal": 59100 + }, + { + "icon_id": "17714235", + "name": "返回", + "font_class": "fanhui1", + "unicode": "e7ec", + "unicode_decimal": 59372 + }, + { + "icon_id": "12029024", + "name": "标签", + "font_class": "biaoqian2", + "unicode": "e6dd", + "unicode_decimal": 59101 + }, + { + "icon_id": "17720589", + "name": "提示", + "font_class": "tishi3", + "unicode": "e7ed", + "unicode_decimal": 59373 + }, + { + "icon_id": "12029025", + "name": "记录", + "font_class": "jilu1", + "unicode": "e6de", + "unicode_decimal": 59102 + }, + { + "icon_id": "17747311", + "name": "作业查重1", + "font_class": "zuoyechazhong1", + "unicode": "e7ef", + "unicode_decimal": 59375 + }, + { + "icon_id": "12029026", + "name": "推荐", + "font_class": "tuijian1", + "unicode": "e6df", + "unicode_decimal": 59103 + }, + { + "icon_id": "17747312", + "name": "工程教育1", + "font_class": "gongchengjiaoyu1", + "unicode": "e7f0", + "unicode_decimal": 59376 + }, + { + "icon_id": "12031268", + "name": "警告", + "font_class": "jinggao1", + "unicode": "e6e0", + "unicode_decimal": 59104 + }, + { + "icon_id": "17747315", + "name": "翻转课堂1", + "font_class": "fanzhuanketang1", + "unicode": "e7f4", + "unicode_decimal": 59380 + }, + { + "icon_id": "12031648", + "name": "点赞", + "font_class": "dianzan2", + "unicode": "e6e1", + "unicode_decimal": 59105 + }, + { + "icon_id": "17747316", + "name": "实训课程1", + "font_class": "shixunkecheng1", + "unicode": "e7f5", + "unicode_decimal": 59381 + }, + { + "icon_id": "12031742", + "name": "评论", + "font_class": "pinglun1", + "unicode": "e6e2", + "unicode_decimal": 59106 + }, + { + "icon_id": "17756491", + "name": "群体标注", + "font_class": "quntibiaozhu", + "unicode": "e7ee", + "unicode_decimal": 59374 + }, + { + "icon_id": "12033031", + "name": "对勾", + "font_class": "duigou", + "unicode": "e6e3", + "unicode_decimal": 59107 + }, + { + "icon_id": "17756492", + "name": "标注引导", + "font_class": "biaozhuyindao", + "unicode": "e7f1", + "unicode_decimal": 59377 + }, + { + "icon_id": "736502", + "name": "礼物", + "font_class": "liwu", + "unicode": "e611", + "unicode_decimal": 58897 + }, + { + "icon_id": "12039315", + "name": "提示", + "font_class": "tishi2", + "unicode": "e6e4", + "unicode_decimal": 59108 + }, + { + "icon_id": "17756493", + "name": "反馈修正", + "font_class": "fankuixiuzheng", + "unicode": "e7f3", + "unicode_decimal": 59379 + }, + { + "icon_id": "1004630", + "name": "点赞2", + "font_class": "dianzaned", + "unicode": "e639", + "unicode_decimal": 58937 + }, + { + "icon_id": "12039523", + "name": "编辑_Hover", + "font_class": "bianji_Hover", + "unicode": "e6e5", + "unicode_decimal": 59109 + }, + { + "icon_id": "17756494", + "name": "态势感知", + "font_class": "taishiganzhi", + "unicode": "e7f6", + "unicode_decimal": 59382 + }, + { + "icon_id": "1071052", + "name": "点赞1", + "font_class": "dianzan11", + "unicode": "e66d", + "unicode_decimal": 58989 + }, + { + "icon_id": "12039524", + "name": "上移_Hover", + "font_class": "shangyi_Hover", + "unicode": "e6e6", + "unicode_decimal": 59110 + }, + { + "icon_id": "17756496", + "name": "多维评估", + "font_class": "duoweipinggu", + "unicode": "e7f7", + "unicode_decimal": 59383 + }, + { + "icon_id": "1221889", + "name": "礼物", + "font_class": "gift", + "unicode": "e63c", + "unicode_decimal": 58940 + }, + { + "icon_id": "12039525", + "name": "删除_默认", + "font_class": "shanchu_moren", + "unicode": "e6e7", + "unicode_decimal": 59111 + }, + { + "icon_id": "17756497", + "name": "代码托管", + "font_class": "daimatuoguan", + "unicode": "e7f8", + "unicode_decimal": 59384 + }, + { + "icon_id": "1240507", + "name": "消息", + "font_class": "xiaoxi", + "unicode": "e614", + "unicode_decimal": 58900 + }, + { + "icon_id": "12039526", + "name": "下移_Hover", + "font_class": "xiayi_Hover", + "unicode": "e6e8", + "unicode_decimal": 59112 + }, + { + "icon_id": "17756498", + "name": "交流社区", + "font_class": "jiaoliushequ", + "unicode": "e7fa", + "unicode_decimal": 59386 + } + ] +} diff --git a/src/styles/iconfont/iconfont.ttf b/src/styles/iconfont/iconfont.ttf new file mode 100644 index 000000000..cf6cb1f67 Binary files /dev/null and b/src/styles/iconfont/iconfont.ttf differ diff --git a/src/styles/iconfont/iconfont.woff b/src/styles/iconfont/iconfont.woff index c863cd610..eb34194d5 100644 Binary files a/src/styles/iconfont/iconfont.woff and b/src/styles/iconfont/iconfont.woff differ diff --git a/src/styles/iconfont/iconfont.woff2 b/src/styles/iconfont/iconfont.woff2 new file mode 100644 index 000000000..63cd1f7d9 Binary files /dev/null and b/src/styles/iconfont/iconfont.woff2 differ