From 7817cc451f2cb979f1244e7f5e657260eb37123e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E5=BF=83=E5=AE=87?= Date: Tue, 30 Apr 2024 15:00:52 +0800 Subject: [PATCH 01/25] =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E8=AF=A6=E6=83=85?= =?UTF-8?q?=E9=A1=B5test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Routes.js | 8 +- config/webpack.server.js | 13 +-- package-lock.json | 9 +- server/index.js | 2 +- server/render.js | 102 ++++++++++--------- server/setHead.js | 20 ++-- src/App.js | 18 ++-- src/common/components/comment/CommentForm.js | 6 +- src/common/educoder.js | 2 +- src/common/quillForEditor/index.js | 6 +- src/forge/Main/CoderDepot.jsx | 26 ++--- src/forge/Main/Detail.js | 7 +- src/index.js | 10 +- 13 files changed, 124 insertions(+), 105 deletions(-) diff --git a/Routes.js b/Routes.js index 8187706c..8901b19c 100644 --- a/Routes.js +++ b/Routes.js @@ -1,6 +1,6 @@ -// import app from './src/App' +import app from './src/App' // import users from './src/forge/users/Index'; -// import Detail from "./src/forge/Main/Detail"; +import Detail from "./src/forge/Main/Detail"; // import Information from "./src/forge/Information/index" // import NewsDetail from './src/forge/Information/Pages/newsDetail'; @@ -18,7 +18,7 @@ export default [ { key:"detail", path: "/:owner/:projectsId", - // component: app, + component: app, } ]; @@ -36,7 +36,7 @@ export const deepRoutes = [ { key: "detail", path: "/:owner/:projectsId", - // component: Detail, + component: Detail, }, { key: "owner", diff --git a/config/webpack.server.js b/config/webpack.server.js index 8b78b83a..1d1b99eb 100644 --- a/config/webpack.server.js +++ b/config/webpack.server.js @@ -159,12 +159,13 @@ const serverConfig = { { test: /\.scss$/, use: [ - { - loader: MiniCssExtractPlugin.loader, - options: { - publicPath, - }, - }, + 'isomorphic-style-loader', + // { + // loader: MiniCssExtractPlugin.loader, + // options: { + // publicPath, + // }, + // }, { loader: require.resolve("css-loader"), options: { diff --git a/package-lock.json b/package-lock.json index 812eec9a..09f93831 100644 --- a/package-lock.json +++ b/package-lock.json @@ -11450,7 +11450,7 @@ }, "isomorphic-style-loader": { "version": "5.3.2", - "resolved": "https://registry.npmmirror.com/isomorphic-style-loader/-/isomorphic-style-loader-5.3.2.tgz", + "resolved": "https://registry.npmjs.org/isomorphic-style-loader/-/isomorphic-style-loader-5.3.2.tgz", "integrity": "sha512-5mwHrN2xK5zsKBxSUYF7iDhoU9Kpcpfgn0lFOP0SKk3aKwkl26zi6kh+KDrekjlLzNbYsFnn8o1yWaB3OflVXQ==", "requires": { "hoist-non-react-statics": "^3.0.0", @@ -21603,13 +21603,15 @@ "version": "2.1.1", "resolved": "https://registry.npmmirror.com/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "dev": true + "dev": true, + "optional": true }, "is-glob": { "version": "4.0.3", "resolved": "https://registry.npmmirror.com/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, + "optional": true, "requires": { "is-extglob": "^2.1.1" } @@ -21618,7 +21620,8 @@ "version": "3.0.0", "resolved": "https://registry.npmmirror.com/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true + "dev": true, + "optional": true }, "readdirp": { "version": "3.6.0", diff --git a/server/index.js b/server/index.js index 19427fc6..1e9bab76 100644 --- a/server/index.js +++ b/server/index.js @@ -15,7 +15,7 @@ app.use('/build', express.static('build')); const options = (target) => { return { target: target, - changeOrigin: false, // 允许在请求头中更改主机 + changeOrigin: true, // 允许在请求头中更改主机 timeout: 30000, onProxyRes: (proxyRes, req, res) => { // 代理成功后输出日志 diff --git a/server/render.js b/server/render.js index 4476dbba..e3e60734 100644 --- a/server/render.js +++ b/server/render.js @@ -1,23 +1,27 @@ -// import React from "react"; -// import {renderToString} from "react-dom/server"; +import React from "react"; +import {renderToString} from "react-dom/server"; import {StaticRouter, matchPath} from "react-router-dom"; -// import {renderRoutes} from "react-router-config"; +import StyleContext from 'isomorphic-style-loader/StyleContext' +import {renderRoutes} from "react-router-config"; import Routes, { deepRoutes, specialRoute } from "../Routes"; -// import { Provider } from "react-redux"; -// import { serverStore } from "../src/redux/stores/configureStore"; +import { Provider } from "react-redux"; +import { serverStore } from "../src/redux/stores/configureStore"; // import App from "../src/App"; // import { Route } from 'react-router-dom'; -// import { setDefaultMeta } from '../src/common/UrlTool' +import { setDefaultMeta } from '../src/common/UrlTool' import Logger from "./log"; import { changeHead } from './setHead' +const css = new Set() // 这个必须在路由函数里面,在外面的话,就会累加出现之前的css +const insertCss = (...styles) => styles.forEach(style => css.add(style._getCss())); + export const render = async (req,res)=>{ let _route = null, _match = null; - // Logger.info(`${req.url} UA:${req.headers['user-agent']}`) + Logger.info(`${req.url} UA:${req.headers['user-agent']}`) - // let store = serverStore(); + let store = serverStore(); function matchSubRoutes(routes, url) { for (const route of routes) { @@ -50,6 +54,44 @@ export const render = async (req,res)=>{ code: 200, }; + + if (_route && _route.component && _route.component.preFetch) { + context = await _route.component.preFetch({ + store, + match: _match, + query: req.path, + }); + } + + const content = renderToString(( + + + + {renderRoutes(Routes)} + {/* */} + + + + )) + + if (!content) { + // 未匹配到详情页恢复默认header + setDefaultMeta() + } else { + // 匹配到服务端渲染页面注入state + let script = domObj.window.document.getElementById('initState') + if (!script) { + script = domObj.window.document.createElement('script') + script.setAttribute('id', 'initState') + } + script.textContent = `window.__initState__ = ${ JSON.stringify(store.getState()) }` + const styleNode = domObj.window.document.createElement('style') + styleNode.type = 'text/css' + styleNode.innerHTML = `${ [...css].join('') }` + domObj.window.document.head.appendChild(script); + domObj.window.document.head.appendChild(styleNode); + } + if (_route && !specialRoute.includes(_match.url && _match.url.replace('/', ''))) { Logger.info(`matchRoot: ${ _match.url }`) await changeHead(_route, _match.params) @@ -58,51 +100,13 @@ export const render = async (req,res)=>{ } - // if (_route && _route.component && _route.component.preFetch) { - // context = await _route.component.preFetch({ - // store, - // match: _match, - // query: req.path, - // }); - // } - - // 暂时不开放ssr,只修改head - // const content = renderToString(( - // - // - // {renderRoutes(Routes)} - // {/* */} - // - // - // )) - - // 暂时不开放ssr,只修改head - // if (!content) { - // // 未匹配到详情页恢复默认header - // setDefaultMeta() - // } else { - // // 匹配到服务端渲染页面注入state - // let script = domObj.window.document.getElementById('initState') - // if (!script) { - // script = domObj.window.document.createElement('script') - // script.setAttribute('id', 'initState') - // } - // script.textContent = `window.__initState__ = ${ JSON.stringify(store.getState()) }` - - // domObj.window.document.head.appendChild(script); - // } - - let html = domObj.serialize() const prepHTML=(data,rootString)=>{ - // 暂时不开放ssr,只修改head - // data=data.replace('
',`
${rootString}
`); + data=data.replace('
',`
${rootString}
`); return data; } - // 暂时不开放ssr,只修改head - // res.send(prepHTML(html, content)) - res.send(prepHTML(html, '')) + res.send(prepHTML(html, content)) - // store = null + store = null } diff --git a/server/setHead.js b/server/setHead.js index 1d9d3588..cdaf072d 100644 --- a/server/setHead.js +++ b/server/setHead.js @@ -6,15 +6,15 @@ export const changeHead = async ({ key }, params) => { let res let data switch (key) { - case 'detail': - res = await getProjectDetailFunc(params.owner, params.projectsId); - data = res.data - if (data && data.status === 1) { - let keyWords=`${params.owner},${params.projectsId}${ data.topics.length > 0 && ','}${ data.topics.length > 0 && data.topics.map(item => item.name).join(',') }`; - let title= `${params.owner}/${params.projectsId}${data.description?':'+data.description:''}`; - setSeoMeta(keyWords,title,data.description || '',`/${params.owner}/${params.projectsId}`,params.owner,params.projectsId); - } - break; + // case 'detail': + // res = await getProjectDetailFunc(params.owner, params.projectsId); + // data = res.data + // if (data && data.status === 1) { + // let keyWords=`${params.owner},${params.projectsId}${ data.topics.length > 0 && ','}${ data.topics.length > 0 && data.topics.map(item => item.name).join(',') }`; + // let title= `${params.owner}/${params.projectsId}${data.description?':'+data.description:''}`; + // setSeoMeta(keyWords,title,data.description || '',`/${params.owner}/${params.projectsId}`,params.owner,params.projectsId); + // } + // break; case 'zoneNews': res = await getNewsDetail(params.id) data = res.data.data @@ -33,7 +33,7 @@ export const changeHead = async ({ key }, params) => { res = await getOwnerInfo(params.owner); data = res.data const name = data.nickname || data.username - if (data && data.status === 1) { + if (data && data.name) { setSeoMeta(`${name}`, name, data.description || '', `/${params.owner}`) } break; diff --git a/src/App.js b/src/App.js index d44aab6d..34a17791 100644 --- a/src/App.js +++ b/src/App.js @@ -23,6 +23,8 @@ import SiderBarHelp from './glcc/siderBarHelp'; import { SnackbarHOC, configShareForCustom } from 'educoder'; import { initAxiosInterceptors } from './AppConfig' import cookie from 'react-cookies'; +import InfosIndex from './forge/users/Index' +import OrganizeIndex from './forge/Team/Index' window.marked = marked; const theme = createMuiTheme({ @@ -74,15 +76,15 @@ const http500 = Loadable({ loader: () => import('./modules/500/http500'), loading: Loading, }) -const InfosIndex = Loadable({ - loader: () => import('./forge/users/Index'), - loading: Loading, -}) +// const InfosIndex = Loadable({ +// loader: () => import('./forge/users/Index'), +// loading: Loading, +// }) // 组织 -const OrganizeIndex = Loadable({ - loader: () => import('./forge/Team/Index'), - loading: Loading, -}) +// const OrganizeIndex = Loadable({ +// loader: () => import('./forge/Team/Index'), +// loading: Loading, +// }) const Search = Loadable({ loader: () => import('./modules/search/'), diff --git a/src/common/components/comment/CommentForm.js b/src/common/components/comment/CommentForm.js index 4f0692e7..93db885d 100644 --- a/src/common/components/comment/CommentForm.js +++ b/src/common/components/comment/CommentForm.js @@ -9,7 +9,7 @@ import './index.scss'; import React, { useState } from 'react'; import { Form, Button, Input } from 'antd'; -import QuillForEditor from '../../quillForEditor'; +// import QuillForEditor from '../../quillForEditor'; const FormItem = Form.Item; function CommentForm(props) { @@ -116,7 +116,7 @@ function CommentForm(props) { ) } - + /> */} diff --git a/src/common/educoder.js b/src/common/educoder.js index 96896845..6ee8787f 100644 --- a/src/common/educoder.js +++ b/src/common/educoder.js @@ -68,7 +68,7 @@ export { default as ActionBtn } from './course/ActionBtn' export { default as MarkdownToHtml } from './components/markdown/MarkdownToHtml' -export { default as QuillForEditor } from './quillForEditor' +// export { default as QuillForEditor } from './quillForEditor' export { default as Clappr } from './components/media/Clappr' export { default as AliyunUploader } from './components/media/AliyunUploader' diff --git a/src/common/quillForEditor/index.js b/src/common/quillForEditor/index.js index a34a826c..dda76c61 100644 --- a/src/common/quillForEditor/index.js +++ b/src/common/quillForEditor/index.js @@ -1,7 +1,7 @@ import './index.scss' -import 'quill/dist/quill.core.css' // 核心样式 -import 'quill/dist/quill.snow.css' // 有工具栏 -import 'quill/dist/quill.bubble.css' // 无工具栏 +// import 'quill/dist/quill.core.css' // 核心样式 +// import 'quill/dist/quill.snow.css' // 有工具栏 +// import 'quill/dist/quill.bubble.css' // 无工具栏 import './font.css' import React, { useState, useRef, useEffect } from 'react' import Quill from 'quill' diff --git a/src/forge/Main/CoderDepot.jsx b/src/forge/Main/CoderDepot.jsx index 8205d45d..5e7cf22c 100644 --- a/src/forge/Main/CoderDepot.jsx +++ b/src/forge/Main/CoderDepot.jsx @@ -13,7 +13,7 @@ import axios from 'axios'; import Path from './CoderDepotPath'; import Catalogue from './CoderDepotCatalogue'; import ReadMe from './CoderDepotReadme'; -import CoderRootFileDetail from './CoderRootFileDetail'; +// import CoderRootFileDetail from './CoderRootFileDetail'; import './Index.scss'; import Releases from '../Component/Releases'; import Contributors from '../Component/Contributors'; @@ -571,18 +571,18 @@ function CoderDepot(props){ }) } { - fileInfo && - + // fileInfo && + // } diff --git a/src/forge/Main/Detail.js b/src/forge/Main/Detail.js index d3381745..689f8d49 100644 --- a/src/forge/Main/Detail.js +++ b/src/forge/Main/Detail.js @@ -15,6 +15,9 @@ import types from '../../redux/actions/actionTypes' import { getProjectFunc, getProjectDetailFunc } from '../../services/project' import '../css/index.scss' import './list.scss'; +import styles from './list.scss' +import styles1 from '../css/index.scss' +import withStyles from 'isomorphic-style-loader/withStyles'; import Loadable from 'react-loadable'; @@ -980,7 +983,7 @@ Detail.preFetch = ({ store, match, query }) => { }); }; -export default withRouter(connect( +export default withRouter(withStyles(styles, styles1)(connect( mapStateToProps, mapDispatchToProps -)(Detail)); \ No newline at end of file +)(Detail))); \ No newline at end of file diff --git a/src/index.js b/src/index.js index 01ee36c1..24ef8019 100644 --- a/src/index.js +++ b/src/index.js @@ -9,13 +9,17 @@ import { configureUrlQuery } from 'react-url-query'; import history from './history'; import configureStore from './redux/stores/configureStore'; import { Provider } from 'react-redux'; +import StyleContext from 'isomorphic-style-loader/StyleContext' configureUrlQuery({ history }); const store = configureStore(); window.__useKindEditor = false; - +const insertCss = (...styles) => { + const removeCss = styles.map(style => style._insertCss && style._insertCss()); + return () => removeCss.forEach(dispose => dispose && dispose()) +} const render = (Component) => { ReactDOM.hydrate( @@ -24,7 +28,9 @@ const render = (Component) => { - + + + From c310cbd2311123536798496997e05c19178ff729 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E5=BF=83=E5=AE=87?= Date: Tue, 30 Apr 2024 17:20:15 +0800 Subject: [PATCH 02/25] test --- src/App.js | 18 ++++++++++++++++-- src/forge/Team/Index.jsx | 9 +++++---- src/forge/users/Index.jsx | 10 ++++++---- src/modules/tpm/TPMIndexHOC.js | 7 ++++--- 4 files changed, 31 insertions(+), 13 deletions(-) diff --git a/src/App.js b/src/App.js index 34a17791..66bc88fa 100644 --- a/src/App.js +++ b/src/App.js @@ -25,6 +25,7 @@ import { initAxiosInterceptors } from './AppConfig' import cookie from 'react-cookies'; import InfosIndex from './forge/users/Index' import OrganizeIndex from './forge/Team/Index' +import { connect } from 'react-redux'; window.marked = marked; const theme = createMuiTheme({ @@ -170,7 +171,7 @@ class App extends Component { mydisplay: false, occupation: 0, mygetHelmetapi: null, - pathType: null, + pathType: props.projectBase && props.projectBase.author && props.projectBase.author.type, pathName: null, } } @@ -652,5 +653,18 @@ moment.defineLocale('zh-cn', { doy: 4 // The week that contains Jan 4th is the first week of the year. } }); -export default SnackbarHOC()(App); + + +const mapStateToProps = (state) => { + const { + projectBase, + } = state.projectReducer; + return { + projectBase, + }; +} + +export default connect( + mapStateToProps, +)(SnackbarHOC()(App)); diff --git a/src/forge/Team/Index.jsx b/src/forge/Team/Index.jsx index f435cb76..0461b26e 100644 --- a/src/forge/Team/Index.jsx +++ b/src/forge/Team/Index.jsx @@ -7,6 +7,7 @@ import { withRouter } from "react-router"; import { SnackbarHOC } from "educoder"; import { CNotificationHOC } from "../../modules/courses/common/CNotificationHOC"; import { TPMIndexHOC } from "../../modules/tpm/TPMIndexHOC"; +import ProjectDetail from '../Main/Detail' import '../css/index.scss'; import './Index.scss'; @@ -35,10 +36,10 @@ const SubDetailIndex = Loadable({ loading: Loading, }); // forge项目详情 -const ProjectDetail = Loadable({ - loader: () => import("../Main/Detail"), - loading: Loading, -}); +// const ProjectDetail = Loadable({ +// loader: () => import("../Main/Detail"), +// loading: Loading, +// }); const team = CNotificationHOC()(SnackbarHOC()(TPMIndexHOC( ((props)=>{ return ( diff --git a/src/forge/users/Index.jsx b/src/forge/users/Index.jsx index 305269c4..bdd2db13 100644 --- a/src/forge/users/Index.jsx +++ b/src/forge/users/Index.jsx @@ -6,15 +6,17 @@ import { withRouter } from "react-router"; import { SnackbarHOC } from "educoder"; import { CNotificationHOC } from "../../modules/courses/common/CNotificationHOC"; import { TPMIndexHOC } from "../../modules/tpm/TPMIndexHOC"; +import ProjectDetail from '../Main/Detail' + const Infos = Loadable({ loader: () => import("./Infos"), loading: Loading, }); // forge项目详情 -const ProjectDetail = Loadable({ - loader: () => import("../Main/Detail"), - loading: Loading, -}); +// const ProjectDetail = Loadable({ +// loader: () => import("../Main/Detail"), +// loading: Loading, +// }); class DetailTop extends Component { constructor(props) { diff --git a/src/modules/tpm/TPMIndexHOC.js b/src/modules/tpm/TPMIndexHOC.js index 74232654..d986a3de 100644 --- a/src/modules/tpm/TPMIndexHOC.js +++ b/src/modules/tpm/TPMIndexHOC.js @@ -61,12 +61,13 @@ export function TPMIndexHOC(WrappedComponent) { window.removeEventListener('keyup', this.keyupListener) } componentWillMount() { + this.setState({ + current_user: {} + }) if (!__SERVER__) { this.fetchUsers(); } else { - this.setState({ - current_user: {} - }) + } } From 0a176fbaf1bb4bbfa804f7ac6d5445b6a17b32b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E5=BF=83=E5=AE=87?= Date: Mon, 6 May 2024 09:11:12 +0800 Subject: [PATCH 03/25] =?UTF-8?q?=E5=86=B2=E7=AA=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/common/UrlTool.js | 2 -- src/home/Index.jsx | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/common/UrlTool.js b/src/common/UrlTool.js index 30dfbeec..bde4b260 100644 --- a/src/common/UrlTool.js +++ b/src/common/UrlTool.js @@ -3,8 +3,6 @@ import md5 from 'md5'; import {Input} from "antd"; import { url as ssrOrigin, host as ssrHost } from '../ssrUrl' const { Search } = Input; -import { url as ssrOrigin, host as ssrHost } from '../ssrUrl' - if (!__SERVER__) { const $ = window.$; diff --git a/src/home/Index.jsx b/src/home/Index.jsx index 453acd74..06393aa2 100644 --- a/src/home/Index.jsx +++ b/src/home/Index.jsx @@ -18,7 +18,7 @@ function Index(props) { const [ bannerTab , setBannerTab ] = useState(undefined); const register = props && props.mygetHelmetapi && props.mygetHelmetapi.common && props.mygetHelmetapi.common.register; - const {mygetHelmetapi:{name}} = props + const name = props && props.mygetHelmetapi && props.mygetHelmetapi.name ; const { current_user } = props; useEffect(()=>{ From 99ba6900615191cabe96d81ebd0e4004b2e6acdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E5=BF=83=E5=AE=87?= Date: Mon, 6 May 2024 09:42:17 +0800 Subject: [PATCH 04/25] =?UTF-8?q?=E5=85=88=E5=BC=80=E6=94=BEbanner?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/forge/Main/Detail.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/forge/Main/Detail.js b/src/forge/Main/Detail.js index 689f8d49..79dda302 100644 --- a/src/forge/Main/Detail.js +++ b/src/forge/Main/Detail.js @@ -308,7 +308,8 @@ class Detail extends Component { secondSync: false, mirror_status:0 }) - this.getBanner(this.props.projectMenu) + // this.getBanner(this.props.projectMenu) + this.getBanner() let projectdata if (this.props.defaultDetail) { projectdata = this.props.defaultDetail From b6eb721620c0cc37ffdee055a0a5c032337f4205 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E5=BF=83=E5=AE=87?= Date: Mon, 6 May 2024 10:43:00 +0800 Subject: [PATCH 05/25] cont. --- src/forge/Server/Index.jsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/forge/Server/Index.jsx b/src/forge/Server/Index.jsx index 9a6f57e4..7a64541f 100644 --- a/src/forge/Server/Index.jsx +++ b/src/forge/Server/Index.jsx @@ -29,9 +29,9 @@ function ServerIndex(props){ useEffect(()=>{ // 非项目协作者不可进入服务tab (3397) - if(projectDetail && projectDetail.permission === ""){ - props.history.push(`/${owner}/${projectsId}`); - } + // if(projectDetail && projectDetail.permission === ""){ + // props.history.push(`/${owner}/${projectsId}`); + // } }, [projectDetail]) return( From 22eaa56f1a8f08bccf905f4fb3b70df94bf1712f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E5=BF=83=E5=AE=87?= Date: Mon, 6 May 2024 11:40:50 +0800 Subject: [PATCH 06/25] =?UTF-8?q?=E8=AE=BE=E7=BD=AE=E6=9C=8D=E5=8A=A1?= =?UTF-8?q?=E7=AB=AF=E8=AF=B7=E6=B1=82cookie?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/render.js | 9 +++++++++ src/forge/Main/Detail.js | 3 +-- src/forge/Server/Index.jsx | 6 +++--- src/services/project.js | 24 ++++++++++++++++++++++++ 4 files changed, 37 insertions(+), 5 deletions(-) diff --git a/server/render.js b/server/render.js index e3e60734..7ea84418 100644 --- a/server/render.js +++ b/server/render.js @@ -56,6 +56,15 @@ export const render = async (req,res)=>{ if (_route && _route.component && _route.component.preFetch) { + + // 设置服务端请求cookie + let cookies = req.headers.cookie.split(';') + for (let index = 0; index < cookies.length; index++) { + const element = cookies[index]; + domObj.window.document.cookie = element + } + + context = await _route.component.preFetch({ store, match: _match, diff --git a/src/forge/Main/Detail.js b/src/forge/Main/Detail.js index 79dda302..689f8d49 100644 --- a/src/forge/Main/Detail.js +++ b/src/forge/Main/Detail.js @@ -308,8 +308,7 @@ class Detail extends Component { secondSync: false, mirror_status:0 }) - // this.getBanner(this.props.projectMenu) - this.getBanner() + this.getBanner(this.props.projectMenu) let projectdata if (this.props.defaultDetail) { projectdata = this.props.defaultDetail diff --git a/src/forge/Server/Index.jsx b/src/forge/Server/Index.jsx index 7a64541f..9a6f57e4 100644 --- a/src/forge/Server/Index.jsx +++ b/src/forge/Server/Index.jsx @@ -29,9 +29,9 @@ function ServerIndex(props){ useEffect(()=>{ // 非项目协作者不可进入服务tab (3397) - // if(projectDetail && projectDetail.permission === ""){ - // props.history.push(`/${owner}/${projectsId}`); - // } + if(projectDetail && projectDetail.permission === ""){ + props.history.push(`/${owner}/${projectsId}`); + } }, [projectDetail]) return( diff --git a/src/services/project.js b/src/services/project.js index 55c34e23..ebf527ab 100644 --- a/src/services/project.js +++ b/src/services/project.js @@ -18,41 +18,65 @@ const axiosInstance = axios.create({ // export async function getProjectFunc (owner, projectsId) { const url = `${baseUrl}/${owner}/${projectsId}/simple.json`; + if (__SERVER__) { + axiosInstance.defaults.headers.cookie = domObj.window.document.cookie + } return axiosInstance.get(url); } export async function getProjectDetailFunc (owner, projectsId) { const url = `${baseUrl}/${owner}/${projectsId}/detail.json`; + if (__SERVER__) { + axiosInstance.defaults.headers.cookie = domObj.window.document.cookie + } return axiosInstance.get(url); } export async function getProjectEntriesFunc (owner, projectsId, branch) { const url = `${baseUrl}/${owner}/${projectsId}/entries.json`; + if (__SERVER__) { + axiosInstance.defaults.headers.cookie = domObj.window.document.cookie + } return axiosInstance.get(url, {params: { ref: branch }}); } export async function getBannerFunc (owner, projectsId) { const url = `${baseUrl}/${owner}/${projectsId}/menu_list.json`; + if (__SERVER__) { + axiosInstance.defaults.headers.cookie = domObj.window.document.cookie + } return axiosInstance.get(url); } export async function getProjectReadMe (owner, projectsId, branch) { const url = `${baseUrl}/${owner}/${projectsId}/readme.json`; + if (__SERVER__) { + axiosInstance.defaults.headers.cookie = domObj.window.document.cookie + } return axiosInstance.get(url, {params: { ref: branch }}); } export async function getOwnerInfo (owner) { const url = `${baseUrl}/owners/${owner}.json`; + if (__SERVER__) { + axiosInstance.defaults.headers.cookie = domObj.window.document.cookie + } return axiosInstance.get(url); } export async function getMainInfos (deptId) { const url = `${baseZoneUrl}/zone/open/zoneKey/${deptId}`; + if (__SERVER__) { + axiosInstance.defaults.headers.cookie = domObj.window.document.cookie + } return axiosInstance.get(url); } export async function getNewsDetail (id) { const url = `${baseZoneUrl}/cms/doc/open/${id}`; + if (__SERVER__) { + axiosInstance.defaults.headers.cookie = domObj.window.document.cookie + } return axiosInstance.get(url); } From a9377b1f5cfa14fa5d4096e71ef1e369a887498c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E5=BF=83=E5=AE=87?= Date: Mon, 6 May 2024 12:49:41 +0800 Subject: [PATCH 07/25] =?UTF-8?q?=E5=8C=B9=E9=85=8D=E5=85=B6=E4=BB=96?= =?UTF-8?q?=E6=B2=A1=E6=9C=89=E5=AE=8C=E5=85=A8ssr=E7=9A=84=E9=A1=B5?= =?UTF-8?q?=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Routes.js | 4 ++++ server/render.js | 24 ++++++++++++++---------- 2 files changed, 18 insertions(+), 10 deletions(-) diff --git a/Routes.js b/Routes.js index 8901b19c..c7400765 100644 --- a/Routes.js +++ b/Routes.js @@ -26,21 +26,25 @@ export const deepRoutes = [ { key: "zoneNews", path: "/zone/:deptId/newdetail/:id", + onlyHead: true, // component: NewsDetail }, { key: "zone", path: "/zone/:deptId", + onlyHead: true, // component: Information }, { key: "detail", path: "/:owner/:projectsId", + onlyHead: false, component: Detail, }, { key: "owner", path: "/:owner", + onlyHead: true, // component: Detail, } ] diff --git a/server/render.js b/server/render.js index 7ea84418..9ee936c1 100644 --- a/server/render.js +++ b/server/render.js @@ -72,16 +72,20 @@ export const render = async (req,res)=>{ }); } - const content = renderToString(( - - - - {renderRoutes(Routes)} - {/* */} - - - - )) + let content = undefined + + if (_route && !specialRoute.includes(_match.url && _match.url.replace('/', '')) && !_route.onlyHead) { + content = renderToString(( + + + + {renderRoutes(Routes)} + {/* */} + + + + )) + } if (!content) { // 未匹配到详情页恢复默认header From 606afdc7faaf44c38ec46aa9ce8c1f593c038070 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E5=BF=83=E5=AE=87?= Date: Mon, 6 May 2024 14:22:41 +0800 Subject: [PATCH 08/25] cont. --- server/render.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/render.js b/server/render.js index 9ee936c1..97b05002 100644 --- a/server/render.js +++ b/server/render.js @@ -72,7 +72,7 @@ export const render = async (req,res)=>{ }); } - let content = undefined + let content = '' if (_route && !specialRoute.includes(_match.url && _match.url.replace('/', '')) && !_route.onlyHead) { content = renderToString(( From e0d4aac28723f7021541ee5a28cc4598dcfe93aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E5=BF=83=E5=AE=87?= Date: Mon, 6 May 2024 14:41:19 +0800 Subject: [PATCH 09/25] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/index.js | 2 +- src/forge/New/Index.js | 4 +++- src/modules/tpm/TPMIndexHOC.js | 7 +++---- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/server/index.js b/server/index.js index 1e9bab76..3f21f9b9 100644 --- a/server/index.js +++ b/server/index.js @@ -45,7 +45,7 @@ const proxy = createProxyMiddleware(options(`http://localhost:${ rubyPort }`)); // }); // 设置代理 -app.use(['/api', '/admins', '/attachments', '/oauth', '/competitions'], (req, res) => { +app.use(['/api', '/admins', '/attachments', '/oauth', '/competitions', '/projects'], (req, res) => { proxy(req, res); }); diff --git a/src/forge/New/Index.js b/src/forge/New/Index.js index f6ccc4d4..ba4e21f4 100644 --- a/src/forge/New/Index.js +++ b/src/forge/New/Index.js @@ -232,7 +232,9 @@ class Index extends Component { }).then((result) => { if (result && result.data.id) { projectsType && projectsType !== "mirror" && this.props.showNotification(`项目创建成功!`); - this.props.history.push({pathname: `/${result.data.login}/${result.data.identifier}`, query:{showNps: true}}); + setTimeout(() => { + this.props.history.push({pathname: `/${result.data.login}/${result.data.identifier}`, query:{showNps: true}}); + }, 500); } this.setState({ isSpin: false diff --git a/src/modules/tpm/TPMIndexHOC.js b/src/modules/tpm/TPMIndexHOC.js index d986a3de..74232654 100644 --- a/src/modules/tpm/TPMIndexHOC.js +++ b/src/modules/tpm/TPMIndexHOC.js @@ -61,13 +61,12 @@ export function TPMIndexHOC(WrappedComponent) { window.removeEventListener('keyup', this.keyupListener) } componentWillMount() { - this.setState({ - current_user: {} - }) if (!__SERVER__) { this.fetchUsers(); } else { - + this.setState({ + current_user: {} + }) } } From 118d85646b7c7c8a073687e83bf4c003fa0a01a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E5=BF=83=E5=AE=87?= Date: Tue, 7 May 2024 09:46:54 +0800 Subject: [PATCH 10/25] =?UTF-8?q?=E6=94=BE=E5=87=BA=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E7=BC=96=E8=BE=91=E3=80=81auth=E7=9B=B4=E6=8E=A5=E8=B5=B0?= =?UTF-8?q?=E4=BB=A3=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/index.js | 2 +- src/forge/Main/CoderDepot.jsx | 26 +++++++++++++------------- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/server/index.js b/server/index.js index 3f21f9b9..f0742578 100644 --- a/server/index.js +++ b/server/index.js @@ -45,7 +45,7 @@ const proxy = createProxyMiddleware(options(`http://localhost:${ rubyPort }`)); // }); // 设置代理 -app.use(['/api', '/admins', '/attachments', '/oauth', '/competitions', '/projects'], (req, res) => { +app.use(['/api', '/admins', '/attachments', '/oauth', '/competitions', '/projects', '/auth'], (req, res) => { proxy(req, res); }); diff --git a/src/forge/Main/CoderDepot.jsx b/src/forge/Main/CoderDepot.jsx index 5e7cf22c..8205d45d 100644 --- a/src/forge/Main/CoderDepot.jsx +++ b/src/forge/Main/CoderDepot.jsx @@ -13,7 +13,7 @@ import axios from 'axios'; import Path from './CoderDepotPath'; import Catalogue from './CoderDepotCatalogue'; import ReadMe from './CoderDepotReadme'; -// import CoderRootFileDetail from './CoderRootFileDetail'; +import CoderRootFileDetail from './CoderRootFileDetail'; import './Index.scss'; import Releases from '../Component/Releases'; import Contributors from '../Component/Contributors'; @@ -571,18 +571,18 @@ function CoderDepot(props){ }) } { - // fileInfo && - // + fileInfo && + } From fd1372777f161c46631ef2629fc3b7a9c9e02f0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E5=BF=83=E5=AE=87?= Date: Tue, 7 May 2024 10:20:07 +0800 Subject: [PATCH 11/25] =?UTF-8?q?=E4=BC=98=E5=8C=96=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E9=A2=84=E8=A7=88=E7=BC=96=E8=BE=91=E3=80=81=E4=BB=A5=E5=8F=8A?= =?UTF-8?q?=E6=9C=8D=E5=8A=A1=E7=AB=AF=E5=88=A4=E6=96=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/render.js | 5 +++++ src/forge/Main/CoderDepot.jsx | 12 ++++++++++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/server/render.js b/server/render.js index 97b05002..898f83d5 100644 --- a/server/render.js +++ b/server/render.js @@ -70,6 +70,11 @@ export const render = async (req,res)=>{ match: _match, query: req.path, }); + + // + if(!store.getState().projectReducer.projectBase.id) { + return false + } } let content = '' diff --git a/src/forge/Main/CoderDepot.jsx b/src/forge/Main/CoderDepot.jsx index 8205d45d..1dd21b42 100644 --- a/src/forge/Main/CoderDepot.jsx +++ b/src/forge/Main/CoderDepot.jsx @@ -13,7 +13,7 @@ import axios from 'axios'; import Path from './CoderDepotPath'; import Catalogue from './CoderDepotCatalogue'; import ReadMe from './CoderDepotReadme'; -import CoderRootFileDetail from './CoderRootFileDetail'; +// import CoderRootFileDetail from './CoderRootFileDetail'; import './Index.scss'; import Releases from '../Component/Releases'; import Contributors from '../Component/Contributors'; @@ -24,6 +24,14 @@ import Nodata from '../Nodata'; import Invite from './sub/Invite'; import CheckProfile from '../Component/ProfileModal/Profile'; import RenderHtml from '../../components/render-html'; +import Loadable from 'react-loadable'; +import Loading from '../../Loading'; + +const CoderRootFileDetail = Loadable({ + loader: () => import("./CoderRootFileDetail"), + loading: Loading, +}); + /** * projectDetail.type:0是托管项目,1是镜像项目,2是同步镜像项目(为2时不支持在线创建、在线上传、在线修改、在线删除、创建合并请求等功能) */ @@ -571,7 +579,7 @@ function CoderDepot(props){ }) } { - fileInfo && + fileInfo && __CLIENT__ && Date: Tue, 7 May 2024 11:42:04 +0800 Subject: [PATCH 12/25] =?UTF-8?q?=E4=BB=A3=E7=A0=81=E7=BC=96=E8=BE=91?= =?UTF-8?q?=E7=A9=BA=E7=99=BD=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/forge/Main/CoderRootFileDetail.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/forge/Main/CoderRootFileDetail.js b/src/forge/Main/CoderRootFileDetail.js index 072ab931..8b16f633 100644 --- a/src/forge/Main/CoderRootFileDetail.js +++ b/src/forge/Main/CoderRootFileDetail.js @@ -8,6 +8,7 @@ import ReadmeCatelogue from "./sub/ReadmeCatelogue"; import { Base64 } from "js-base64"; import ReplaceModal from "./Modal/ReplaceModal"; import {returnbar , turnbar} from 'educoder'; +import 'codemirror/lib/codemirror.css'; const $ = window.$; function bytesToSize(bytes) { From a2f7376285cca0e6f3e2a2e6ccb41b18707d077d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E5=BF=83=E5=AE=87?= Date: Wed, 8 May 2024 09:59:48 +0800 Subject: [PATCH 13/25] =?UTF-8?q?=E4=BC=98=E5=8C=96=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/css/detail.css | 1 + server/render.js | 12 +++++++---- server/window.js | 31 +++++++++++++++-------------- src/forge/Head/Footer.jsx | 4 ++-- src/forge/Main/Detail.js | 10 +++++----- src/forge/Main/sub/DetailBanner.jsx | 2 +- src/modules/tpm/TPMIndexHOC.js | 7 ++++--- src/services/project.js | 5 +++++ 8 files changed, 42 insertions(+), 30 deletions(-) create mode 100644 public/css/detail.css diff --git a/public/css/detail.css b/public/css/detail.css new file mode 100644 index 00000000..7693e555 --- /dev/null +++ b/public/css/detail.css @@ -0,0 +1 @@ +@charset "UTF-8";dl,ol,ul{margin-bottom:0}.markdown-body .editormd-tex .katex-display>.katex{white-space:pre-wrap}.markdown-body a{color:#466aff}.markdown_anchors{position:relative}.markdown_anchors .anchors{color:inherit;margin-left:-14px;display:none}.newMain{background-color:#fff}.newTable{background-color:#f0f5ff}.newTable .newImages{background-image:url(../../forge/Images/taskbar.png);height:364px}.color-black{color:#333}.projectallName{font-size:22px;font-weight:400;line-height:30px;max-width:690px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.projectallName .projectN{word-break:break-all}.textRight{text-align:right}.main{width:1200px;padding:20px;margin:20px auto;background:#fff;border-radius:2px;border:1px solid #eee}.radius-2{border-radius:2px}.normal{width:1200px;margin:0 auto}.back-white{background:#fff}.back-black{background:#000}.btn_32{border-radius:4px;padding:0 12px;height:32px;line-height:32px;background-color:#f4f4f4;color:#666;display:inline-block}@media screen and (max-width:1200px){.main{width:100%;margin:10px auto}}.hide-1{display:inline-block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.hide-2{display:inline-block;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.df{display:flex}.flex-1{flex:1;width:0}.f-wrap-between{display:flex;flex-wrap:wrap;justify-content:space-between}.f-wrap-alignCenter{display:flex;flex-wrap:wrap;align-items:center}.f-wrap-alignCenter a:link,.f-wrap-alignCenter a:visited,.f-wrap-alignCenter>span{color:#333}.f-wrap-alignCenter>span{cursor:default}.commitDesc{flex:1;line-height:20px;word-break:break-all;width:49rem;overflow:hidden;white-space:normal}.normalBox{border-radius:4px}.normalBox-title{background-color:#fafcff;border:1px solid;border-color:rgba(42,97,255,.23);border-radius:4px 4px 0 0;padding:0 20px;height:48px;display:flex;align-items:center;font-size:16px}.none_panels{text-align:center;min-height:320px;padding:40px 0;display:flex;justify-content:center;align-items:center}.none_panels.small{height:120px}.none_panels.small img{width:200px}.none_panels img{width:300px;margin-bottom:15px}.none_p_title{font-size:16px;color:#999}form.ant-form{color:#333}.required{position:relative}.required::before{content:"*";color:red;position:absolute;left:-10px;top:0;line-height:22px}form .ant-row.ant-form-item{margin-bottom:20px}@media screen and (max-width:1200px){.main{width:100%}.normal{width:100%}#root{width:1200px}}@media screen and (max-width:1000px){.main{width:100%;margin:1rem auto}.normal{width:100%}}@media screen and (max-width:750px){.main{width:95%;margin:1rem auto}.normal{width:100%}#root{width:1200px}.newContainers{min-width:1200px}}.ver-middle{vertical-align:middle}.pd510{padding:5px 10px}.modalsStyle .ant-modal-content>.ant-modal-header{text-align:left!important}.modalsStyle .ant-modal-body{max-width:400px;margin:0 auto;text-align:left;min-height:140px;display:flex;align-items:center}.modalsStyle .ant-modal-close-x{margin-top:8px}.list-r-Info>div{box-shadow:0 0 2px rgba(0,0,0,.2)}.list-l-Menu{margin-bottom:12px;border-radius:2px;background-color:#fff;border:1px solid rgba(79,108,188,.21)}.list-l-Menu>li{font-size:15px;padding:0 0 0 25px;box-sizing:border-box;color:#333;position:relative}.list-l-Menu>li>p{height:49px;width:100%;display:flex;justify-content:space-between;align-items:center;cursor:pointer;padding-right:20px;margin:0;border-bottom:1px solid #eee}.list-l-Menu>li>p a{width:100%;color:#202d40}.list-l-Menu>li>p span:last-child{color:#999}.list-l-Menu>li:last-child>p{border-bottom:none}.list-l-Menu li.active::before{position:absolute;left:0;width:6px;content:'';height:100%}.list-l-Menu .MenuTitle{font-size:16px;background-size:100% 100%;color:#333!important;height:62px;line-height:62px;border-bottom:1px solid #e0e0e0;font-weight:400;cursor:pointer}.list-l-Menu .ant-menu-inline{border:none}.list-l-Menu .ant-menu-inline .ant-menu-item{width:100%!important}.list-l-Menu .ant-menu-item-group-title{padding:0}.group-setting-switch{border:1px solid #ddd!important;background-color:#fff!important}.newPopUl li{height:30px;line-height:30px;border-bottom:1px solid #eee;min-width:78px;text-align:center}.newPopUl li:last-child{border-bottom:none}.btn-83{width:83px;height:32px;line-height:30px;text-align:center;background:#fafbfc;border:1px solid #d0d0d0;display:inline-block;border-radius:5px;font-weight:500;color:#333!important;margin-right:15px}button.ant-btn-primary.btnblue{background-color:#466aff;border-color:#466aff}button.btngrey{background-color:#fff;border-color:#d0d0d0;color:#666}.newContainer .newBtn,.newContainer .newTab{position:relative}.newContainer .newBtnImg{background-image:url(../Images/newIcon.svg);background-size:100% 100%;width:29px;height:13px;position:absolute;right:-14px;top:-7px}.newContainer .newTab .newBtnImg{right:-19px}.operateButton{padding:0 15px;height:32px;color:#fff!important;cursor:pointer;line-height:30px;background-color:#466aff;border:1px solid #466aff;border-radius:4px;display:block}.lineH2{line-height:2}.t_project_banner{background-color:#050d34}.ProjectListIndex{width:1200px;margin:20px auto;display:flex;align-items:flex-start;flex-wrap:wrap}.list-left{width:26%;padding-right:20px;box-sizing:border-box;margin-bottom:20px}.list-left>div{border:1px solid #eee}.list-left>div.bgcF{border:none}.list-right{width:74%;background:#fff;padding:10px;border:1px solid #eee}.ant-menu-inline,.ant-menu-vertical,.ant-menu-vertical-left{border-right:none!important}.ant-menu-vertical>.ant-menu-item{margin:0!important;height:35px;line-height:35px;border-bottom:1px solid #eee;font-size:14px!important}.ant-menu-vertical>.ant-menu-item:last-child{border-bottom:none}.list-r-operation{display:flex;justify-content:space-between;flex-wrap:wrap;align-items:center;padding:25px 30px;border-bottom:1px solid #e0e0e0}.list-r-Search{width:400px}.padding0-25{padding:0 25px}.list-r-Search .ant-btn-lg{height:38px}.list-r-Search .ant-input-group-addon{border:none!important}.list-r-Search .ant-input-search-button{height:40px!important}.createBtn{border-radius:4px;margin-left:20px;display:inline-block;padding:3px 15px;background-color:#4cacff;color:#fff!important}.project-list{padding:0 30px}.border-top-grey{border-top:1px solid #eee}.p-r-Item:last-child{border-bottom:none!important}.p-r-Item{display:flex;border-bottom:1px solid #eee;padding:22px 0;justify-content:flex-start}.boxShandow{box-shadow:0 2px 20px 10px rgba(0,0,0,.03)}.p-r-photo{width:60px;height:60px;border-radius:50%;margin-right:22px;margin-top:8px}.p-r-Infos{flex:1;width:0}.p-r-name{display:flex;justify-content:space-between;align-items:center}.p-r-name>p{flex:1;width:0}.p-r-btn{display:flex;align-items:center}.p-r-btn>span{height:35px;line-height:35px;border:1px solid #f4f4f4;border-radius:5px;display:block;margin-left:20px;background-color:#fff;display:flex}.p-r-btn>span>a{display:flex;align-items:center;padding:0 12px;background:#ececec}.p-r-btn>span>a:active{background:#f4f4f4}.p-r-btn>span>span{padding:0 8px}.p-r-tags{display:flex;opacity:1}.p-r-tags.large>span{height:30px;line-height:30px;font-size:14px}.p-r-tags>span{margin-left:15px;padding:0 10px;border-radius:15px;background:#ebf4fe;color:#333;height:24px;line-height:24px;display:block;font-size:12px;display:flex}.p-r-tags>span.pariseTag{background:#fff3dc}.p-r-tags.large>span>label{padding:0 12px}.p-r-tags>span>label{padding:0 8px}.p-r-tags.large>span>span{padding:0 6px}.pariseImg{width:14px;height:12px;margin-top:6px;margin-right:3px}.p-r-tags>span>span{display:block;background:#fff;border-left:#efefef;padding:0 4px;border-radius:0 4px 4px 0;color:#999}.p-r-content{margin-top:10px;color:#666;display:flex}.p-r-detail>span{margin-right:22px;color:#888}.p-r-detail>span>label{color:#999}.p-r-about{display:flex;justify-content:space-between;flex-wrap:nowrap;margin-top:8px;color:#666}.spincontent{height:400px}.spinstyle .ant-spin-text{margin-top:30px;color:#888}.detailHeader-wrapper{background-color:#fbfcff;border-bottom:1px solid #e2e2e2}.headerMenu-wrapper{display:flex;flex-direction:row;cursor:pointer}.headerMenu-wrapper li{text-align:center;padding:0;margin-right:30px;display:flex}.headerMenu-wrapper li>a{position:relative;font-size:14px;height:36px;line-height:24px;display:flex;color:#000!important}.headerMenu-wrapper li>a>span.num{line-height:24px;margin-left:5px;font-size:12px;float:right;color:#666!important;background-color:rgba(153,153,153,.13);border-radius:50%;width:24px;height:24px}.detail_tag_btn{height:32px;line-height:32px;border-radius:5px;border:1px solid #d0d0d0;display:flex;align-items:center;margin-left:10px;padding:0;background-color:#fafbfc;box-shadow:none}.detail_tag_btn .detail_tag_btn_name{padding:0 10px;text-align:center;height:30px;line-height:30px;border-radius:5px 0 0 5px}.detail_tag_btn .detail_tag_btn_name span{color:#333!important}.detail_tag_btn .detail_tag_btn_count{width:42px;text-align:center;background:#fff;border-radius:0 4px 4px 0;height:100%;border-left:1px solid #d0d0d0}.ant-tooltip{max-width:fit-content!important}.files-md{padding:20px}.files-md h1,.files-md h2,.files-md h3,.files-md h4,.files-md h5,.files-md h6{margin-bottom:.5em!important}.readBox h1,.readBox h2,.readBox h3,.readBox h4,.readBox h5,.readBox h6{margin-bottom:.5em!important}.branch-wrapper{border:1px solid #eee;border-radius:4px;display:flex;align-items:center;height:60px;padding:0 30px;width:1200px;margin:0 auto;background-color:#fff;margin-top:20px;justify-content:space-between}.branch-wrapper>a>i{color:#5091ff;margin-right:5px;cursor:default}.branch-wrapper a{display:flex;align-items:center;justify-content:center;text-align:center;height:30px;line-height:30px;cursor:pointer;font-size:16px;color:#333}.branch-wrapper a>span{position:relative;min-height:20px;display:block}.branch-wrapper a.active>span::after{position:absolute;content:'';bottom:-5px;width:30px;height:3px;left:0;background-color:#5091ff}.gitAddressClone{margin:14px 20px!important;display:flex;height:40px;align-items:center;border-radius:4px;border:1px solid #eee;background:#fff;margin-left:20px;position:relative}.gitAddressClone>span{display:flex;line-height:40px;height:40px;padding:0 12px;cursor:pointer;align-items:center}.addressTips{position:absolute;font-size:12px;color:#ff6e21;top:-34px;left:30px;background-color:#fff;border:1px solid #fe881d;padding:0 5px;height:28px;line-height:28px}.addressTips>span{position:relative;display:block}.addressTips>span::before{box-sizing:content-box;width:0;height:0;position:absolute;top:25px;left:50%;margin-left:-4px;padding:0;border-top:8px solid #fff;border-bottom:8px solid transparent;border-left:8px solid transparent;border-right:8px solid transparent;display:block;content:'';z-index:12}.addressTips>span::after{box-sizing:content-box;width:0;height:0;position:absolute;top:26px;left:50%;margin-left:-4px;padding:0;border-top:8px solid #fe881d;border-bottom:8px solid transparent;border-left:8px solid transparent;border-right:8px solid transparent;display:block;content:'';z-index:11}.gitAddressClone>span.addressType{color:#4cacff}.gitAddressClone>span:last-child{border-right:none}.gitAddressClone>input{outline:0;padding:0 8px;height:38px;line-height:38px;border:none!important;border-right:1px solid #eee!important;border-radius:4px 0 0 4px;flex:1;max-width:249px}.wrap-commit-table .ant-table-small>.ant-table-content>.ant-table-body{margin:0}.wrap-commit-table .ant-table-title{background-color:#f1f8ff;padding:13px 16px!important}.commitKey{cursor:pointer;border:1px solid #fd7700;background-color:#fff3dc;color:#fd7700!important;padding:0 12px;height:20px;line-height:20px;margin-left:15px;border-radius:18px;max-width:100%}.branchTitle{padding:8px 10px;color:#333;font-size:16px;border-bottom:1px solid #d9d9d9}.branchUl li{display:flex;flex-wrap:wrap;align-items:flex-end;justify-content:space-between;padding:20px 0;border-bottom:1px solid #eee}.branchUl li:last-child{border-bottom:none}.operationBtn{border:1px solid #f4f4f4;border-radius:3px;padding:0 6px;background-color:#fff;color:#666!important;display:inline-block}.messages{max-width:700px}.leftPoint{margin-left:20px;position:relative}.leftPoint::before{position:absolute;left:-10px;top:8px;border-radius:50%;width:4px;height:4px;background-color:#dadada;content:''}.subFileName{position:relative;margin-left:15px;height:22px}.subFileName::before{position:absolute;content:'/';left:-10px;top:0;color:#999;height:22px;line-height:17px}.addFile{display:flex}.addFile a{display:block;background-color:rgba(76,172,255,.8);color:#fff;cursor:pointer;height:32px;line-height:32px;padding:0 10px}.addFile a:first-child{border-radius:4px}.addFile a:last-child{border-left:1px solid rgba(247,247,247,.3)}.addFile a:active{background-color:#4cacff}@media screen and (max-width:750px){.list-r-Search{flex:1}.list-left,.list-right{width:100%;padding:0}}@media screen and (max-width:400px){.list-r-Search{width:100%}.headerMenu-wrapper{flex-direction:column;width:100%}.headerMenu-wrapper li{width:100%}.gitAddressClone{width:100%;margin-left:0}.gitAddressClone>span{padding:0}.messages{max-width:100%}}.commonBox{border:1px solid #ddd;margin-top:18px;border-radius:4px}.commonBox .ant-anchor-wrapper{overflow:unset!important}.commonBox .commonBox-title{padding:0 20px;box-sizing:border-box;font-size:16px;background:#fafbfc;font-weight:700;height:45px;line-height:45px;border-bottom:1px solid #d9d9d9;border-radius:4px 4px 0 0}.readBox{border:none}.readBox.commonBox .commonBox-info{border:1px solid #d0d0d0;border-top:none;border-radius:0 0 4px 4px;padding:20px 38px}.commonBox .commonBox-title.boxTitle{display:flex;justify-content:space-between;height:55px;line-height:55px;background:#fafcff;border-radius:4px 4px 0 0;border:1px solid rgba(42,97,255,.23)}.synchronism{display:block;height:34px;line-height:34px;padding:0 15px;color:#fff!important;background-color:#28bd6c;border-radius:4px}.files_info{cursor:pointer}.commonBox .commonBox-info{padding:20px 15px}.commonBox-title-read{vertical-align:middle;color:#000;font-size:14px}@media screen and (max-width:370px){.p-r-btn,.p-r-tags{opacity:0;display:none}.p-r-about{flex-wrap:wrap}.commitKey{margin-right:0}.list-r-Search{width:100%}}.null_data_box{width:100%;border:1px solid #d4d4d5;border-radius:3px}.title{font-weight:700;background:#f4f4f4;padding:10px 15px;box-sizing:border-box;border-bottom:1px solid #d4d4d5}.item_title{font-size:18px;font-weight:700;margin-bottom:15px}.item{padding:15px;border-bottom:1px solid #dededf}.item:last-child{border-bottom:none}.item_title small{font-weight:400;margin-left:10px}.item_title small a{color:#4183c6}.Markdown{background:#f7f7f7;padding:10px 20px}.item .gitAddressClone input:focus{border:1px solid #2185d0}.content-file{margin-top:8px}.content-file .CodeMirror{background-color:#f7f7f7;border:1px solid #e4e4e4;border-radius:4px;height:auto}.content-file.edit .CodeMirror{background-color:#fff}.content-file .CodeMirror .CodeMirror-scroll{min-height:450px}.text-center{text-align:center}.fork-css{position:absolute;left:0;top:50px;width:100%}.color-grey-ccc{color:#ccc!important}.pull-right{float:right}.commitList{padding:0 30px;min-height:400px}.main{margin:30px auto}.main .ant-timeline{margin-top:28px}.main .ant-timeline .commitList-item{position:relative;padding:20px 20px;background:#fafcff;border:1px solid rgba(42,97,255,.23);border-radius:4px;margin-left:16px}.main .ant-timeline .commitList-item .treecopy{margin-top:20px}.main .ant-timeline .commitList-item .markdown-body table{background:#fafcff}.main .ant-timeline .commitList-item:after,.main .ant-timeline .commitList-item:before{content:"";position:absolute;left:-10px;top:10px;border-top:6px solid transparent;border-bottom:6px solid transparent;border-right:10px solid rgba(42,97,255,.23)}.main .ant-timeline .commitList-item:after{left:-8px;border-right:10px solid #fafcff}.main .ant-timeline .commitList-item .treecopy-cont{padding:4px 15px;display:flex;align-items:center}.main .ant-timeline .commitList-item .btn-83{margin-left:20px}.main .ant-timeline .ant-timeline-item{padding:8px 0 20px}.main .ant-timeline .ant-timeline-item-tail{height:calc(100% - 20px);border-left:2px solid #eee;top:12px}.main .ant-timeline .ant-timeline-item-tail:after{content:' ';height:0;position:absolute;width:0;border:7px solid transparent;border-top-color:#eee;top:100%;left:50%;margin-left:-8px}.main .ant-timeline .ant-timeline-item-head-custom{top:20px;padding:0 1px}.div_table{border:1px solid #eee;border-radius:2px}.ul_thead{padding:0 30px;box-sizing:border-box;background:#fafafa;border-bottom:1px solid #eee;height:50px;line-height:50px}.ul_tbody{padding:0 30px}.ul_tbody li,.ul_thead li{display:flex;align-items:center;text-align:left}.ul_tbody li{padding:18px 0;border-bottom:1px solid #eee}.ul_tbody li:last-child{border-bottom:none}.ul_tbody li>span,.ul_thead li>span{width:20%;padding-right:20px}.ul_tbody li>span:nth-child(2),.ul_thead li>span:nth-child(2){flex:1}.ul_tbody_third{display:flex;flex-direction:column;align-items:flex-start;justify-content:left}.ul_tbody_forth{text-align:center;display:flex;justify-content:center}.depotNum{color:#666!important}.depotNum span:last-child{color:#333}.recommandOri.slick-slider{width:1300px;margin:20px auto 40px}.recommandOri.slick-slider .slick-track{margin-left:0}.recommandOri.slick-slider .slick-slide li>a{display:flex;align-items:center;justify-content:center}.iconBtn i{color:#666}.iconBtn span{margin-left:4px;color:#333!important}.iconBtn span:last-child{font-weight:500}.recommandProjects.slick-slider{width:1230px;margin:20px auto 40px}.recommandProjects.slick-slider .slick-track{margin-left:0}.recommandProjects.slick-slider .slick-arrow.slick-next:before,.recommandProjects.slick-slider .slick-arrow.slick-prev:before{color:#999}.recommandProjects.slick-slider .slick-arrow.slick-next li.slick-active button:before,.recommandProjects.slick-slider .slick-arrow.slick-prev li.slick-active button:before{color:#999}.recommandProjects.slick-slider .slick-dots{bottom:-29px}.recommandProjects.slick-slider .slick-dots li button:before{color:#909090}.recommandProjects.slick-slider .slick-slide{padding:0 15px;box-sizing:border-box}.recommandProjects.slick-slider .slick-slide>div{background-color:#fff;border-radius:10px;width:100%;cursor:pointer;border:1px solid #eee}.recommandProjects.slick-slider .baseInfo{padding:18px 15px;display:flex;font-size:12px;color:#888}.recommandProjects.slick-slider .baseInfo .look{margin-right:10px}.recommandProjects.slick-slider .baseInfo .look i{margin-right:5px}.recommandProjects.slick-slider .baseInfo .type{flex:1;width:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;text-align:right}.recommandProjects.slick-slider .mainInfo{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:160px;border-bottom:1px solid #eee;padding:20px;box-sizing:border-box}.recommandProjects.slick-slider .mainInfo img{height:50px;width:50px;border-radius:50%}.recommandProjects.slick-slider .mainInfo .name{font-size:13px;color:#666;height:18px;line-height:18px;margin-top:12px}.recommandProjects.slick-slider .mainInfo .school{margin-top:12px;color:#333;font-size:16px;height:22px;line-height:22px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;max-width:100%}.Panels{max-width:1200px;margin:0 auto}.Panels .panelmenu{padding-top:20px}.Panels .panelmenu .depotBtn .mr-5{margin-right:-5px}.Panels .panelmenu .depotBtn .ant-btn{height:32px;line-height:32px;width:83px;text-align:center;padding:0;font-weight:500;font-size:14px}.Panels .panelmenu .depotBtn .ant-btn-default{color:#333;border-color:#d0d0d0}.Panels .panelmenu .depotBtn .ant-btn-primary{color:#fff;background-color:#466aff;border:none}.Panels .addOptionBtn,.Panels .depotBtn{display:flex}.Panels .addOptionBtn a,.Panels .depotBtn a{color:#333!important;font-weight:500!important;border-radius:5px;width:83px;height:32px;line-height:30px;background:#fff;border:1px solid #d0d0d0;margin-right:14px;text-align:center}.Panels .infoCount{display:inline-block;width:24px;text-align:center;height:24px;line-height:24px;background-color:rgba(153,153,153,.13);color:#666;border-radius:12px;margin-left:6px;font-size:12px}.Panels .attrPerson{padding-top:12px;display:flex;flex-wrap:wrap;padding-bottom:2px}.Panels .attrPerson a{margin:0 17px 10px 0}.Panels .attrPerson a img{border-radius:50%;width:40px;height:40px}.Panels .attrPerson a:nth-child(5n){margin-right:0}.Panels .progress{display:flex;border-radius:2px;height:11px;margin-top:12px}.Panels .progress span:first-child{border-radius:2px 0 0 2px}.Panels .progress span:last-child{border-radius:0 2px 2px 0}.Panels .progresstip{margin-top:15px;flex-wrap:wrap}.Panels .progresstip i.zero{position:absolute;display:block;border-radius:50%;height:8px;width:8px;left:0;top:8px}.Panels .progresstip>span{padding-left:15px;position:relative;min-width:33.5%;font-size:12px;font-weight:400;color:#666}.Panels .progresstip>span span:last-child{margin-left:5px}.Panels .listtable{margin-top:20px}.Panels .listtable .listtablehead{display:flex;justify-content:space-between;align-items:flex-start;padding:12px 20px 11px;border-radius:4px 4px 0 0;border:1px solid rgba(42,97,255,.23);border-bottom:none;background-color:#fafcff}.Panels .listtable .listtablehead+.listtablebody{border-top-color:rgba(42,97,255,.23)}.Panels .listtable .listtablehead .ellipsistxt{margin-top:2px;margin-left:13px;line-height:18px;flex:1;width:0;color:#666}.Panels .listtable .listtablehead .ellipsistxt li{line-height:15px}.Panels .listtable .listtablehead .ellipsistxt #ptxt{margin-bottom:0;word-break:break-all;overflow:unset;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word}.Panels .listtable .listtablehead .ellipsistxt #ptxt .markdown-body{line-height:10px;font-size:14px}.Panels .listtable .listtablehead .ellipsistxt #ptxt .markdown-body p{margin:1px 0 0!important;font-size:14px!important}.Panels .listtable .listtablehead .ellipsistxt #ptxt .markdown-body ol,.Panels .listtable .listtablehead .ellipsistxt #ptxt .markdown-body ul{padding-bottom:3px}.Panels .listtable .listtablehead .ellipsistxt #ptxt .markdown-body ol li,.Panels .listtable .listtablehead .ellipsistxt #ptxt .markdown-body ul li{min-height:18px}.Panels .listtable .listtablehead .ellipsistxt #ptxt .markdown-body table{line-height:1;background:#fafcff}.Panels .listtable .listtablehead .ellipsistxt #ptxt .markdown-body:first-child{margin-top:-1px!important}.Panels .listtable .listtablehead .ellipsistxt.hidetxt{height:24px;overflow:hidden;position:relative;padding-right:8px}.Panels .listtable .listtablehead .ellipsis{margin-left:8px;cursor:pointer;border-radius:2px;height:16px;background:rgba(153,153,153,.2);border-radius:2px;padding:0 4px;height:14px;line-height:14px;margin-top:9px}.Panels .listtable .listtablehead .ellipsis i{font-size:15px!important;color:#333;height:14px;line-height:14px}.Panels .listtable .listtablebody{border-radius:0 0 4px 4px;border:1px solid #d0d0d0}.Panels .listtable .listtablebody li a{color:#05101a}.Panels .listtable .listtablebody li.listtablepath a{color:#40a9ff}.Panels .listtable .listtablebody li.listtablepath p{margin-bottom:0!important}.Panels .listtable .listtablebody>li{height:38px;display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid #d9d9d9;padding:0 20px 0 24px}.Panels .listtable .listtablebody>li>span:first-child{width:30%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.Panels .listtable .listtablebody>li>span:nth-child(2){width:60%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.Panels .listtable .listtablebody>li>span:nth-child(3){width:10%;text-align:right}.Panels .listtable .listtablebody>li:last-child{border-bottom:none}.drawerBtn{position:fixed;left:-13px;width:33px;background:#fff;box-shadow:0 0 8px 3px rgba(0,0,0,.09);border:1px solid #666;border-radius:0 12px 12px 0;height:70px;top:50%;margin-top:-35px;cursor:pointer;display:flex;flex-direction:column;align-items:center;justify-content:center;padding-left:7px}.drawerBtn span{writing-mode:vertical-lr;color:#333;width:25px;font-size:14px}.drawerBtn i{color:#333;height:14px;line-height:14px;width:14px;margin-left:2px;margin-bottom:3px}.downMenu{width:329px;background-color:#fff;box-shadow:0 1px 8px 1px rgba(212,212,212,.5);padding-bottom:14px}.downMenu .ant-menu-item{height:50px;line-height:50px}.fileMenu{width:83px}.fileMenu li{padding:6px 0!important;text-align:center;width:100%}.catelogue{cursor:pointer;background:#fafbfc;border-radius:4px;border:1px solid #d0d0d0;font-size:15px;font-weight:400;margin-right:12px;padding:0 10px;height:30px;line-height:30px;color:#666!important;display:flex;align-items:center}.catelogue .ant-dropdown-menu-item{border-radius:8px;text-align:left!important}.catelogue .ant-dropdown-menu-item a{width:350px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.catelogue span{margin-top:1px}.submoduleStyle{cursor:default}.submoduleStyle i{cursor:default}.pinfos a,.pinfos i{color:#666}.graph{flex:1;margin:0 12px}.graph .ant-typography{white-space:pre-wrap;margin-bottom:0}.ant-anchor-wrapper{padding-left:2px!important}.ant-anchor-wrapper .ant-anchor-ink::before{background-color:#fff}.coderSubPage{width:1200px;margin:0 auto}.griditemAnchor{margin-left:0!important;padding:0!important;border-bottom:1px solid #ddd}.griditemAnchor .ant-anchor{display:flex;align-items:center;justify-content:space-between;padding:10px 20px}.griditemAnchor .griditemCate{color:#333;font-size:16px;display:flex;align-items:center}.griditemAnchor .griditemCate .catelogue{margin-left:0}.readmeFile{overflow:inherit}.readmeFile p[align=center]{white-space:normal}.projectHomeTopics{display:flex;flex-wrap:wrap}.projectHomeTopics.myProList .proHomeTopic{background-color:#f3f8ff;color:#4c5b76}.projectHomeTopics .proHomeTopic{background-color:#eff2ff;border-radius:4px;max-width:158px;padding:0 10px;height:24px;line-height:24px}.replaceStyle{height:140px!important} \ No newline at end of file diff --git a/server/render.js b/server/render.js index 898f83d5..cb363ee4 100644 --- a/server/render.js +++ b/server/render.js @@ -13,6 +13,7 @@ import { setDefaultMeta } from '../src/common/UrlTool' import Logger from "./log"; import { changeHead } from './setHead' +// 目前只用项目详情页的,不需要动态添加 const css = new Set() // 这个必须在路由函数里面,在外面的话,就会累加出现之前的css const insertCss = (...styles) => styles.forEach(style => css.add(style._getCss())); @@ -105,19 +106,22 @@ export const render = async (req,res)=>{ script.textContent = `window.__initState__ = ${ JSON.stringify(store.getState()) }` const styleNode = domObj.window.document.createElement('style') styleNode.type = 'text/css' - styleNode.innerHTML = `${ [...css].join('') }` + // styleNode.innerHTML = `${ [...css].join('') }` + styleNode.innerHTML = detailCss domObj.window.document.head.appendChild(script); domObj.window.document.head.appendChild(styleNode); } if (_route && !specialRoute.includes(_match.url && _match.url.replace('/', ''))) { - Logger.info(`matchRoot: ${ _match.url }`) - await changeHead(_route, _match.params) + // 匹配上的,并且只修改head的页面 + if (_route.onlyHead) { + Logger.info(`matchRoot: ${ _match.url }`) + await changeHead(_route, _match.params) + } } else { return false } - let html = domObj.serialize() const prepHTML=(data,rootString)=>{ diff --git a/server/window.js b/server/window.js index 3ce0527a..9bb2cd38 100644 --- a/server/window.js +++ b/server/window.js @@ -1,11 +1,12 @@ const jsdom = require("jsdom"); import fs from 'fs' import path from 'path'; -import axios from "axios"; - +import { getSetting } from '../src/services/project' const { JSDOM } = jsdom; const html = fs.readFileSync(path.join(path.resolve('./build'),'index.html'),'utf-8'); +// 压缩的项目详情页需要的css +const css = fs.readFileSync(path.join(path.resolve('./build/css'),'detail.css'),'utf-8'); const { window } = new JSDOM(html); const $ = require( "jquery" )( window ) @@ -13,20 +14,20 @@ const $ = require( "jquery" )( window ) global.window = window; global.document = window.document; global.navigator = window.navigator; -global.localStorage = {} +global.localStorage = {}; +global.defaultSetting = {} +// 全局缓存css +global.detailCss = css + +const setGlobalSetting = async () => { + const setting = await getSetting() + if (setting.data) { + global.defaultSetting = setting.data.setting + } +} + +setGlobalSetting() export const getDomObj = () => { return new JSDOM(html) } - -// axios.get('https://gw.alipayobjects.com/os/lib/alipay/alex/2.0.19/bundle/alex.all.global.min.js') -// .then(response => { -// // 处理响应 -// if (response) { -// // 这里你可以直接使用response.data,而不是eval -// eval(response); -// } -// }) -// .catch(error => { -// console.error('Error fetching data:', error); -// }); diff --git a/src/forge/Head/Footer.jsx b/src/forge/Head/Footer.jsx index d9946716..d331f028 100644 --- a/src/forge/Head/Footer.jsx +++ b/src/forge/Head/Footer.jsx @@ -2,11 +2,11 @@ import React, { useEffect , useState } from 'react'; import './header.scss'; function Footer(){ - const [ value , setValue ] = useState(undefined); + const [ value , setValue ] = useState(__CLIENT__ ? undefined : defaultSetting && defaultSetting.footer); useEffect(()=>{ try { - var chromesettingArray = JSON.parse(localStorage.getItem('chromesetting')); + let chromesettingArray = JSON.parse(localStorage.getItem('chromesetting')); setValue(chromesettingArray.footer); } catch (e) { } diff --git a/src/forge/Main/Detail.js b/src/forge/Main/Detail.js index 689f8d49..05b595d8 100644 --- a/src/forge/Main/Detail.js +++ b/src/forge/Main/Detail.js @@ -15,9 +15,9 @@ import types from '../../redux/actions/actionTypes' import { getProjectFunc, getProjectDetailFunc } from '../../services/project' import '../css/index.scss' import './list.scss'; -import styles from './list.scss' -import styles1 from '../css/index.scss' -import withStyles from 'isomorphic-style-loader/withStyles'; +// import styles from './list.scss' +// import styles1 from '../css/index.scss' +// import withStyles from 'isomorphic-style-loader/withStyles'; import Loadable from 'react-loadable'; @@ -983,7 +983,7 @@ Detail.preFetch = ({ store, match, query }) => { }); }; -export default withRouter(withStyles(styles, styles1)(connect( +export default withRouter(connect( mapStateToProps, mapDispatchToProps -)(Detail))); \ No newline at end of file +)(Detail)); \ No newline at end of file diff --git a/src/forge/Main/sub/DetailBanner.jsx b/src/forge/Main/sub/DetailBanner.jsx index 1370206b..dc3dd8e8 100644 --- a/src/forge/Main/sub/DetailBanner.jsx +++ b/src/forge/Main/sub/DetailBanner.jsx @@ -7,7 +7,7 @@ import datasetImg from '../img/dataset.jpg'; import axios from 'axios'; function DetailBanner({ history,list , owner , projectsId ,showNotification , url , pathname , state , urlFlag , projectDetail , platform ,open_devops ,current_user, showNpsModal }){ - const [ menuName , setMenuName ] = useState(undefined); + const [ menuName , setMenuName ] = useState(list); const [ visible , setVisible ] = useState(false); useEffect(()=>{ diff --git a/src/modules/tpm/TPMIndexHOC.js b/src/modules/tpm/TPMIndexHOC.js index 74232654..d986a3de 100644 --- a/src/modules/tpm/TPMIndexHOC.js +++ b/src/modules/tpm/TPMIndexHOC.js @@ -61,12 +61,13 @@ export function TPMIndexHOC(WrappedComponent) { window.removeEventListener('keyup', this.keyupListener) } componentWillMount() { + this.setState({ + current_user: {} + }) if (!__SERVER__) { this.fetchUsers(); } else { - this.setState({ - current_user: {} - }) + } } diff --git a/src/services/project.js b/src/services/project.js index ebf527ab..431ca4c8 100644 --- a/src/services/project.js +++ b/src/services/project.js @@ -80,3 +80,8 @@ export async function getNewsDetail (id) { } return axiosInstance.get(url); } + +export async function getSetting () { + const url = `${baseUrl}/setting.json`; + return axiosInstance.get(url); +} From 877749ec3ad65d3f3e8fd63b55fca769662e8cc1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E5=BF=83=E5=AE=87?= Date: Wed, 8 May 2024 16:51:55 +0800 Subject: [PATCH 14/25] =?UTF-8?q?=E4=BC=98=E5=8C=96header?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/modules/tpm/TPMIndexHOC.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/tpm/TPMIndexHOC.js b/src/modules/tpm/TPMIndexHOC.js index d986a3de..bccb749c 100644 --- a/src/modules/tpm/TPMIndexHOC.js +++ b/src/modules/tpm/TPMIndexHOC.js @@ -27,7 +27,7 @@ export function TPMIndexHOC(WrappedComponent) { globalLoading: false, dataquerys: {}, isloginCancel: undefined, - mygetHelmetapi: null, + mygetHelmetapi: __CLIENT__ ? null : defaultSetting, giteaVisible:false, email:undefined, completeProfile:false, @@ -317,7 +317,7 @@ export function TPMIndexHOC(WrappedComponent) { {...this.state} /> : ""} {npsModalVisible && {this.closeNpsModal()}} npsActionType={npsActionType} npsActionId={npsActionId}/>} - { !pathCheck &&
} + { !pathCheck &&
} From 439d4c3468bb4639daa7870a94eb687c2a8102ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E5=BF=83=E5=AE=87?= Date: Thu, 9 May 2024 14:09:57 +0800 Subject: [PATCH 15/25] =?UTF-8?q?=E6=A0=B7=E5=BC=8F=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/css/detail.css | 2 +- public/css/gitlink.min.css | 2 +- src/forge/Component/User.jsx | 8 +++--- src/forge/Main/CoderDepot.jsx | 44 ++++++++++++++--------------- src/forge/Main/Detail.js | 8 +++--- src/index.css | 53 +++++++++++++++++++++++++++++++++++ 6 files changed, 85 insertions(+), 32 deletions(-) diff --git a/public/css/detail.css b/public/css/detail.css index 7693e555..3ba22f70 100644 --- a/public/css/detail.css +++ b/public/css/detail.css @@ -1 +1 @@ -@charset "UTF-8";dl,ol,ul{margin-bottom:0}.markdown-body .editormd-tex .katex-display>.katex{white-space:pre-wrap}.markdown-body a{color:#466aff}.markdown_anchors{position:relative}.markdown_anchors .anchors{color:inherit;margin-left:-14px;display:none}.newMain{background-color:#fff}.newTable{background-color:#f0f5ff}.newTable .newImages{background-image:url(../../forge/Images/taskbar.png);height:364px}.color-black{color:#333}.projectallName{font-size:22px;font-weight:400;line-height:30px;max-width:690px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.projectallName .projectN{word-break:break-all}.textRight{text-align:right}.main{width:1200px;padding:20px;margin:20px auto;background:#fff;border-radius:2px;border:1px solid #eee}.radius-2{border-radius:2px}.normal{width:1200px;margin:0 auto}.back-white{background:#fff}.back-black{background:#000}.btn_32{border-radius:4px;padding:0 12px;height:32px;line-height:32px;background-color:#f4f4f4;color:#666;display:inline-block}@media screen and (max-width:1200px){.main{width:100%;margin:10px auto}}.hide-1{display:inline-block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.hide-2{display:inline-block;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.df{display:flex}.flex-1{flex:1;width:0}.f-wrap-between{display:flex;flex-wrap:wrap;justify-content:space-between}.f-wrap-alignCenter{display:flex;flex-wrap:wrap;align-items:center}.f-wrap-alignCenter a:link,.f-wrap-alignCenter a:visited,.f-wrap-alignCenter>span{color:#333}.f-wrap-alignCenter>span{cursor:default}.commitDesc{flex:1;line-height:20px;word-break:break-all;width:49rem;overflow:hidden;white-space:normal}.normalBox{border-radius:4px}.normalBox-title{background-color:#fafcff;border:1px solid;border-color:rgba(42,97,255,.23);border-radius:4px 4px 0 0;padding:0 20px;height:48px;display:flex;align-items:center;font-size:16px}.none_panels{text-align:center;min-height:320px;padding:40px 0;display:flex;justify-content:center;align-items:center}.none_panels.small{height:120px}.none_panels.small img{width:200px}.none_panels img{width:300px;margin-bottom:15px}.none_p_title{font-size:16px;color:#999}form.ant-form{color:#333}.required{position:relative}.required::before{content:"*";color:red;position:absolute;left:-10px;top:0;line-height:22px}form .ant-row.ant-form-item{margin-bottom:20px}@media screen and (max-width:1200px){.main{width:100%}.normal{width:100%}#root{width:1200px}}@media screen and (max-width:1000px){.main{width:100%;margin:1rem auto}.normal{width:100%}}@media screen and (max-width:750px){.main{width:95%;margin:1rem auto}.normal{width:100%}#root{width:1200px}.newContainers{min-width:1200px}}.ver-middle{vertical-align:middle}.pd510{padding:5px 10px}.modalsStyle .ant-modal-content>.ant-modal-header{text-align:left!important}.modalsStyle .ant-modal-body{max-width:400px;margin:0 auto;text-align:left;min-height:140px;display:flex;align-items:center}.modalsStyle .ant-modal-close-x{margin-top:8px}.list-r-Info>div{box-shadow:0 0 2px rgba(0,0,0,.2)}.list-l-Menu{margin-bottom:12px;border-radius:2px;background-color:#fff;border:1px solid rgba(79,108,188,.21)}.list-l-Menu>li{font-size:15px;padding:0 0 0 25px;box-sizing:border-box;color:#333;position:relative}.list-l-Menu>li>p{height:49px;width:100%;display:flex;justify-content:space-between;align-items:center;cursor:pointer;padding-right:20px;margin:0;border-bottom:1px solid #eee}.list-l-Menu>li>p a{width:100%;color:#202d40}.list-l-Menu>li>p span:last-child{color:#999}.list-l-Menu>li:last-child>p{border-bottom:none}.list-l-Menu li.active::before{position:absolute;left:0;width:6px;content:'';height:100%}.list-l-Menu .MenuTitle{font-size:16px;background-size:100% 100%;color:#333!important;height:62px;line-height:62px;border-bottom:1px solid #e0e0e0;font-weight:400;cursor:pointer}.list-l-Menu .ant-menu-inline{border:none}.list-l-Menu .ant-menu-inline .ant-menu-item{width:100%!important}.list-l-Menu .ant-menu-item-group-title{padding:0}.group-setting-switch{border:1px solid #ddd!important;background-color:#fff!important}.newPopUl li{height:30px;line-height:30px;border-bottom:1px solid #eee;min-width:78px;text-align:center}.newPopUl li:last-child{border-bottom:none}.btn-83{width:83px;height:32px;line-height:30px;text-align:center;background:#fafbfc;border:1px solid #d0d0d0;display:inline-block;border-radius:5px;font-weight:500;color:#333!important;margin-right:15px}button.ant-btn-primary.btnblue{background-color:#466aff;border-color:#466aff}button.btngrey{background-color:#fff;border-color:#d0d0d0;color:#666}.newContainer .newBtn,.newContainer .newTab{position:relative}.newContainer .newBtnImg{background-image:url(../Images/newIcon.svg);background-size:100% 100%;width:29px;height:13px;position:absolute;right:-14px;top:-7px}.newContainer .newTab .newBtnImg{right:-19px}.operateButton{padding:0 15px;height:32px;color:#fff!important;cursor:pointer;line-height:30px;background-color:#466aff;border:1px solid #466aff;border-radius:4px;display:block}.lineH2{line-height:2}.t_project_banner{background-color:#050d34}.ProjectListIndex{width:1200px;margin:20px auto;display:flex;align-items:flex-start;flex-wrap:wrap}.list-left{width:26%;padding-right:20px;box-sizing:border-box;margin-bottom:20px}.list-left>div{border:1px solid #eee}.list-left>div.bgcF{border:none}.list-right{width:74%;background:#fff;padding:10px;border:1px solid #eee}.ant-menu-inline,.ant-menu-vertical,.ant-menu-vertical-left{border-right:none!important}.ant-menu-vertical>.ant-menu-item{margin:0!important;height:35px;line-height:35px;border-bottom:1px solid #eee;font-size:14px!important}.ant-menu-vertical>.ant-menu-item:last-child{border-bottom:none}.list-r-operation{display:flex;justify-content:space-between;flex-wrap:wrap;align-items:center;padding:25px 30px;border-bottom:1px solid #e0e0e0}.list-r-Search{width:400px}.padding0-25{padding:0 25px}.list-r-Search .ant-btn-lg{height:38px}.list-r-Search .ant-input-group-addon{border:none!important}.list-r-Search .ant-input-search-button{height:40px!important}.createBtn{border-radius:4px;margin-left:20px;display:inline-block;padding:3px 15px;background-color:#4cacff;color:#fff!important}.project-list{padding:0 30px}.border-top-grey{border-top:1px solid #eee}.p-r-Item:last-child{border-bottom:none!important}.p-r-Item{display:flex;border-bottom:1px solid #eee;padding:22px 0;justify-content:flex-start}.boxShandow{box-shadow:0 2px 20px 10px rgba(0,0,0,.03)}.p-r-photo{width:60px;height:60px;border-radius:50%;margin-right:22px;margin-top:8px}.p-r-Infos{flex:1;width:0}.p-r-name{display:flex;justify-content:space-between;align-items:center}.p-r-name>p{flex:1;width:0}.p-r-btn{display:flex;align-items:center}.p-r-btn>span{height:35px;line-height:35px;border:1px solid #f4f4f4;border-radius:5px;display:block;margin-left:20px;background-color:#fff;display:flex}.p-r-btn>span>a{display:flex;align-items:center;padding:0 12px;background:#ececec}.p-r-btn>span>a:active{background:#f4f4f4}.p-r-btn>span>span{padding:0 8px}.p-r-tags{display:flex;opacity:1}.p-r-tags.large>span{height:30px;line-height:30px;font-size:14px}.p-r-tags>span{margin-left:15px;padding:0 10px;border-radius:15px;background:#ebf4fe;color:#333;height:24px;line-height:24px;display:block;font-size:12px;display:flex}.p-r-tags>span.pariseTag{background:#fff3dc}.p-r-tags.large>span>label{padding:0 12px}.p-r-tags>span>label{padding:0 8px}.p-r-tags.large>span>span{padding:0 6px}.pariseImg{width:14px;height:12px;margin-top:6px;margin-right:3px}.p-r-tags>span>span{display:block;background:#fff;border-left:#efefef;padding:0 4px;border-radius:0 4px 4px 0;color:#999}.p-r-content{margin-top:10px;color:#666;display:flex}.p-r-detail>span{margin-right:22px;color:#888}.p-r-detail>span>label{color:#999}.p-r-about{display:flex;justify-content:space-between;flex-wrap:nowrap;margin-top:8px;color:#666}.spincontent{height:400px}.spinstyle .ant-spin-text{margin-top:30px;color:#888}.detailHeader-wrapper{background-color:#fbfcff;border-bottom:1px solid #e2e2e2}.headerMenu-wrapper{display:flex;flex-direction:row;cursor:pointer}.headerMenu-wrapper li{text-align:center;padding:0;margin-right:30px;display:flex}.headerMenu-wrapper li>a{position:relative;font-size:14px;height:36px;line-height:24px;display:flex;color:#000!important}.headerMenu-wrapper li>a>span.num{line-height:24px;margin-left:5px;font-size:12px;float:right;color:#666!important;background-color:rgba(153,153,153,.13);border-radius:50%;width:24px;height:24px}.detail_tag_btn{height:32px;line-height:32px;border-radius:5px;border:1px solid #d0d0d0;display:flex;align-items:center;margin-left:10px;padding:0;background-color:#fafbfc;box-shadow:none}.detail_tag_btn .detail_tag_btn_name{padding:0 10px;text-align:center;height:30px;line-height:30px;border-radius:5px 0 0 5px}.detail_tag_btn .detail_tag_btn_name span{color:#333!important}.detail_tag_btn .detail_tag_btn_count{width:42px;text-align:center;background:#fff;border-radius:0 4px 4px 0;height:100%;border-left:1px solid #d0d0d0}.ant-tooltip{max-width:fit-content!important}.files-md{padding:20px}.files-md h1,.files-md h2,.files-md h3,.files-md h4,.files-md h5,.files-md h6{margin-bottom:.5em!important}.readBox h1,.readBox h2,.readBox h3,.readBox h4,.readBox h5,.readBox h6{margin-bottom:.5em!important}.branch-wrapper{border:1px solid #eee;border-radius:4px;display:flex;align-items:center;height:60px;padding:0 30px;width:1200px;margin:0 auto;background-color:#fff;margin-top:20px;justify-content:space-between}.branch-wrapper>a>i{color:#5091ff;margin-right:5px;cursor:default}.branch-wrapper a{display:flex;align-items:center;justify-content:center;text-align:center;height:30px;line-height:30px;cursor:pointer;font-size:16px;color:#333}.branch-wrapper a>span{position:relative;min-height:20px;display:block}.branch-wrapper a.active>span::after{position:absolute;content:'';bottom:-5px;width:30px;height:3px;left:0;background-color:#5091ff}.gitAddressClone{margin:14px 20px!important;display:flex;height:40px;align-items:center;border-radius:4px;border:1px solid #eee;background:#fff;margin-left:20px;position:relative}.gitAddressClone>span{display:flex;line-height:40px;height:40px;padding:0 12px;cursor:pointer;align-items:center}.addressTips{position:absolute;font-size:12px;color:#ff6e21;top:-34px;left:30px;background-color:#fff;border:1px solid #fe881d;padding:0 5px;height:28px;line-height:28px}.addressTips>span{position:relative;display:block}.addressTips>span::before{box-sizing:content-box;width:0;height:0;position:absolute;top:25px;left:50%;margin-left:-4px;padding:0;border-top:8px solid #fff;border-bottom:8px solid transparent;border-left:8px solid transparent;border-right:8px solid transparent;display:block;content:'';z-index:12}.addressTips>span::after{box-sizing:content-box;width:0;height:0;position:absolute;top:26px;left:50%;margin-left:-4px;padding:0;border-top:8px solid #fe881d;border-bottom:8px solid transparent;border-left:8px solid transparent;border-right:8px solid transparent;display:block;content:'';z-index:11}.gitAddressClone>span.addressType{color:#4cacff}.gitAddressClone>span:last-child{border-right:none}.gitAddressClone>input{outline:0;padding:0 8px;height:38px;line-height:38px;border:none!important;border-right:1px solid #eee!important;border-radius:4px 0 0 4px;flex:1;max-width:249px}.wrap-commit-table .ant-table-small>.ant-table-content>.ant-table-body{margin:0}.wrap-commit-table .ant-table-title{background-color:#f1f8ff;padding:13px 16px!important}.commitKey{cursor:pointer;border:1px solid #fd7700;background-color:#fff3dc;color:#fd7700!important;padding:0 12px;height:20px;line-height:20px;margin-left:15px;border-radius:18px;max-width:100%}.branchTitle{padding:8px 10px;color:#333;font-size:16px;border-bottom:1px solid #d9d9d9}.branchUl li{display:flex;flex-wrap:wrap;align-items:flex-end;justify-content:space-between;padding:20px 0;border-bottom:1px solid #eee}.branchUl li:last-child{border-bottom:none}.operationBtn{border:1px solid #f4f4f4;border-radius:3px;padding:0 6px;background-color:#fff;color:#666!important;display:inline-block}.messages{max-width:700px}.leftPoint{margin-left:20px;position:relative}.leftPoint::before{position:absolute;left:-10px;top:8px;border-radius:50%;width:4px;height:4px;background-color:#dadada;content:''}.subFileName{position:relative;margin-left:15px;height:22px}.subFileName::before{position:absolute;content:'/';left:-10px;top:0;color:#999;height:22px;line-height:17px}.addFile{display:flex}.addFile a{display:block;background-color:rgba(76,172,255,.8);color:#fff;cursor:pointer;height:32px;line-height:32px;padding:0 10px}.addFile a:first-child{border-radius:4px}.addFile a:last-child{border-left:1px solid rgba(247,247,247,.3)}.addFile a:active{background-color:#4cacff}@media screen and (max-width:750px){.list-r-Search{flex:1}.list-left,.list-right{width:100%;padding:0}}@media screen and (max-width:400px){.list-r-Search{width:100%}.headerMenu-wrapper{flex-direction:column;width:100%}.headerMenu-wrapper li{width:100%}.gitAddressClone{width:100%;margin-left:0}.gitAddressClone>span{padding:0}.messages{max-width:100%}}.commonBox{border:1px solid #ddd;margin-top:18px;border-radius:4px}.commonBox .ant-anchor-wrapper{overflow:unset!important}.commonBox .commonBox-title{padding:0 20px;box-sizing:border-box;font-size:16px;background:#fafbfc;font-weight:700;height:45px;line-height:45px;border-bottom:1px solid #d9d9d9;border-radius:4px 4px 0 0}.readBox{border:none}.readBox.commonBox .commonBox-info{border:1px solid #d0d0d0;border-top:none;border-radius:0 0 4px 4px;padding:20px 38px}.commonBox .commonBox-title.boxTitle{display:flex;justify-content:space-between;height:55px;line-height:55px;background:#fafcff;border-radius:4px 4px 0 0;border:1px solid rgba(42,97,255,.23)}.synchronism{display:block;height:34px;line-height:34px;padding:0 15px;color:#fff!important;background-color:#28bd6c;border-radius:4px}.files_info{cursor:pointer}.commonBox .commonBox-info{padding:20px 15px}.commonBox-title-read{vertical-align:middle;color:#000;font-size:14px}@media screen and (max-width:370px){.p-r-btn,.p-r-tags{opacity:0;display:none}.p-r-about{flex-wrap:wrap}.commitKey{margin-right:0}.list-r-Search{width:100%}}.null_data_box{width:100%;border:1px solid #d4d4d5;border-radius:3px}.title{font-weight:700;background:#f4f4f4;padding:10px 15px;box-sizing:border-box;border-bottom:1px solid #d4d4d5}.item_title{font-size:18px;font-weight:700;margin-bottom:15px}.item{padding:15px;border-bottom:1px solid #dededf}.item:last-child{border-bottom:none}.item_title small{font-weight:400;margin-left:10px}.item_title small a{color:#4183c6}.Markdown{background:#f7f7f7;padding:10px 20px}.item .gitAddressClone input:focus{border:1px solid #2185d0}.content-file{margin-top:8px}.content-file .CodeMirror{background-color:#f7f7f7;border:1px solid #e4e4e4;border-radius:4px;height:auto}.content-file.edit .CodeMirror{background-color:#fff}.content-file .CodeMirror .CodeMirror-scroll{min-height:450px}.text-center{text-align:center}.fork-css{position:absolute;left:0;top:50px;width:100%}.color-grey-ccc{color:#ccc!important}.pull-right{float:right}.commitList{padding:0 30px;min-height:400px}.main{margin:30px auto}.main .ant-timeline{margin-top:28px}.main .ant-timeline .commitList-item{position:relative;padding:20px 20px;background:#fafcff;border:1px solid rgba(42,97,255,.23);border-radius:4px;margin-left:16px}.main .ant-timeline .commitList-item .treecopy{margin-top:20px}.main .ant-timeline .commitList-item .markdown-body table{background:#fafcff}.main .ant-timeline .commitList-item:after,.main .ant-timeline .commitList-item:before{content:"";position:absolute;left:-10px;top:10px;border-top:6px solid transparent;border-bottom:6px solid transparent;border-right:10px solid rgba(42,97,255,.23)}.main .ant-timeline .commitList-item:after{left:-8px;border-right:10px solid #fafcff}.main .ant-timeline .commitList-item .treecopy-cont{padding:4px 15px;display:flex;align-items:center}.main .ant-timeline .commitList-item .btn-83{margin-left:20px}.main .ant-timeline .ant-timeline-item{padding:8px 0 20px}.main .ant-timeline .ant-timeline-item-tail{height:calc(100% - 20px);border-left:2px solid #eee;top:12px}.main .ant-timeline .ant-timeline-item-tail:after{content:' ';height:0;position:absolute;width:0;border:7px solid transparent;border-top-color:#eee;top:100%;left:50%;margin-left:-8px}.main .ant-timeline .ant-timeline-item-head-custom{top:20px;padding:0 1px}.div_table{border:1px solid #eee;border-radius:2px}.ul_thead{padding:0 30px;box-sizing:border-box;background:#fafafa;border-bottom:1px solid #eee;height:50px;line-height:50px}.ul_tbody{padding:0 30px}.ul_tbody li,.ul_thead li{display:flex;align-items:center;text-align:left}.ul_tbody li{padding:18px 0;border-bottom:1px solid #eee}.ul_tbody li:last-child{border-bottom:none}.ul_tbody li>span,.ul_thead li>span{width:20%;padding-right:20px}.ul_tbody li>span:nth-child(2),.ul_thead li>span:nth-child(2){flex:1}.ul_tbody_third{display:flex;flex-direction:column;align-items:flex-start;justify-content:left}.ul_tbody_forth{text-align:center;display:flex;justify-content:center}.depotNum{color:#666!important}.depotNum span:last-child{color:#333}.recommandOri.slick-slider{width:1300px;margin:20px auto 40px}.recommandOri.slick-slider .slick-track{margin-left:0}.recommandOri.slick-slider .slick-slide li>a{display:flex;align-items:center;justify-content:center}.iconBtn i{color:#666}.iconBtn span{margin-left:4px;color:#333!important}.iconBtn span:last-child{font-weight:500}.recommandProjects.slick-slider{width:1230px;margin:20px auto 40px}.recommandProjects.slick-slider .slick-track{margin-left:0}.recommandProjects.slick-slider .slick-arrow.slick-next:before,.recommandProjects.slick-slider .slick-arrow.slick-prev:before{color:#999}.recommandProjects.slick-slider .slick-arrow.slick-next li.slick-active button:before,.recommandProjects.slick-slider .slick-arrow.slick-prev li.slick-active button:before{color:#999}.recommandProjects.slick-slider .slick-dots{bottom:-29px}.recommandProjects.slick-slider .slick-dots li button:before{color:#909090}.recommandProjects.slick-slider .slick-slide{padding:0 15px;box-sizing:border-box}.recommandProjects.slick-slider .slick-slide>div{background-color:#fff;border-radius:10px;width:100%;cursor:pointer;border:1px solid #eee}.recommandProjects.slick-slider .baseInfo{padding:18px 15px;display:flex;font-size:12px;color:#888}.recommandProjects.slick-slider .baseInfo .look{margin-right:10px}.recommandProjects.slick-slider .baseInfo .look i{margin-right:5px}.recommandProjects.slick-slider .baseInfo .type{flex:1;width:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;text-align:right}.recommandProjects.slick-slider .mainInfo{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:160px;border-bottom:1px solid #eee;padding:20px;box-sizing:border-box}.recommandProjects.slick-slider .mainInfo img{height:50px;width:50px;border-radius:50%}.recommandProjects.slick-slider .mainInfo .name{font-size:13px;color:#666;height:18px;line-height:18px;margin-top:12px}.recommandProjects.slick-slider .mainInfo .school{margin-top:12px;color:#333;font-size:16px;height:22px;line-height:22px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;max-width:100%}.Panels{max-width:1200px;margin:0 auto}.Panels .panelmenu{padding-top:20px}.Panels .panelmenu .depotBtn .mr-5{margin-right:-5px}.Panels .panelmenu .depotBtn .ant-btn{height:32px;line-height:32px;width:83px;text-align:center;padding:0;font-weight:500;font-size:14px}.Panels .panelmenu .depotBtn .ant-btn-default{color:#333;border-color:#d0d0d0}.Panels .panelmenu .depotBtn .ant-btn-primary{color:#fff;background-color:#466aff;border:none}.Panels .addOptionBtn,.Panels .depotBtn{display:flex}.Panels .addOptionBtn a,.Panels .depotBtn a{color:#333!important;font-weight:500!important;border-radius:5px;width:83px;height:32px;line-height:30px;background:#fff;border:1px solid #d0d0d0;margin-right:14px;text-align:center}.Panels .infoCount{display:inline-block;width:24px;text-align:center;height:24px;line-height:24px;background-color:rgba(153,153,153,.13);color:#666;border-radius:12px;margin-left:6px;font-size:12px}.Panels .attrPerson{padding-top:12px;display:flex;flex-wrap:wrap;padding-bottom:2px}.Panels .attrPerson a{margin:0 17px 10px 0}.Panels .attrPerson a img{border-radius:50%;width:40px;height:40px}.Panels .attrPerson a:nth-child(5n){margin-right:0}.Panels .progress{display:flex;border-radius:2px;height:11px;margin-top:12px}.Panels .progress span:first-child{border-radius:2px 0 0 2px}.Panels .progress span:last-child{border-radius:0 2px 2px 0}.Panels .progresstip{margin-top:15px;flex-wrap:wrap}.Panels .progresstip i.zero{position:absolute;display:block;border-radius:50%;height:8px;width:8px;left:0;top:8px}.Panels .progresstip>span{padding-left:15px;position:relative;min-width:33.5%;font-size:12px;font-weight:400;color:#666}.Panels .progresstip>span span:last-child{margin-left:5px}.Panels .listtable{margin-top:20px}.Panels .listtable .listtablehead{display:flex;justify-content:space-between;align-items:flex-start;padding:12px 20px 11px;border-radius:4px 4px 0 0;border:1px solid rgba(42,97,255,.23);border-bottom:none;background-color:#fafcff}.Panels .listtable .listtablehead+.listtablebody{border-top-color:rgba(42,97,255,.23)}.Panels .listtable .listtablehead .ellipsistxt{margin-top:2px;margin-left:13px;line-height:18px;flex:1;width:0;color:#666}.Panels .listtable .listtablehead .ellipsistxt li{line-height:15px}.Panels .listtable .listtablehead .ellipsistxt #ptxt{margin-bottom:0;word-break:break-all;overflow:unset;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word}.Panels .listtable .listtablehead .ellipsistxt #ptxt .markdown-body{line-height:10px;font-size:14px}.Panels .listtable .listtablehead .ellipsistxt #ptxt .markdown-body p{margin:1px 0 0!important;font-size:14px!important}.Panels .listtable .listtablehead .ellipsistxt #ptxt .markdown-body ol,.Panels .listtable .listtablehead .ellipsistxt #ptxt .markdown-body ul{padding-bottom:3px}.Panels .listtable .listtablehead .ellipsistxt #ptxt .markdown-body ol li,.Panels .listtable .listtablehead .ellipsistxt #ptxt .markdown-body ul li{min-height:18px}.Panels .listtable .listtablehead .ellipsistxt #ptxt .markdown-body table{line-height:1;background:#fafcff}.Panels .listtable .listtablehead .ellipsistxt #ptxt .markdown-body:first-child{margin-top:-1px!important}.Panels .listtable .listtablehead .ellipsistxt.hidetxt{height:24px;overflow:hidden;position:relative;padding-right:8px}.Panels .listtable .listtablehead .ellipsis{margin-left:8px;cursor:pointer;border-radius:2px;height:16px;background:rgba(153,153,153,.2);border-radius:2px;padding:0 4px;height:14px;line-height:14px;margin-top:9px}.Panels .listtable .listtablehead .ellipsis i{font-size:15px!important;color:#333;height:14px;line-height:14px}.Panels .listtable .listtablebody{border-radius:0 0 4px 4px;border:1px solid #d0d0d0}.Panels .listtable .listtablebody li a{color:#05101a}.Panels .listtable .listtablebody li.listtablepath a{color:#40a9ff}.Panels .listtable .listtablebody li.listtablepath p{margin-bottom:0!important}.Panels .listtable .listtablebody>li{height:38px;display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid #d9d9d9;padding:0 20px 0 24px}.Panels .listtable .listtablebody>li>span:first-child{width:30%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.Panels .listtable .listtablebody>li>span:nth-child(2){width:60%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.Panels .listtable .listtablebody>li>span:nth-child(3){width:10%;text-align:right}.Panels .listtable .listtablebody>li:last-child{border-bottom:none}.drawerBtn{position:fixed;left:-13px;width:33px;background:#fff;box-shadow:0 0 8px 3px rgba(0,0,0,.09);border:1px solid #666;border-radius:0 12px 12px 0;height:70px;top:50%;margin-top:-35px;cursor:pointer;display:flex;flex-direction:column;align-items:center;justify-content:center;padding-left:7px}.drawerBtn span{writing-mode:vertical-lr;color:#333;width:25px;font-size:14px}.drawerBtn i{color:#333;height:14px;line-height:14px;width:14px;margin-left:2px;margin-bottom:3px}.downMenu{width:329px;background-color:#fff;box-shadow:0 1px 8px 1px rgba(212,212,212,.5);padding-bottom:14px}.downMenu .ant-menu-item{height:50px;line-height:50px}.fileMenu{width:83px}.fileMenu li{padding:6px 0!important;text-align:center;width:100%}.catelogue{cursor:pointer;background:#fafbfc;border-radius:4px;border:1px solid #d0d0d0;font-size:15px;font-weight:400;margin-right:12px;padding:0 10px;height:30px;line-height:30px;color:#666!important;display:flex;align-items:center}.catelogue .ant-dropdown-menu-item{border-radius:8px;text-align:left!important}.catelogue .ant-dropdown-menu-item a{width:350px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.catelogue span{margin-top:1px}.submoduleStyle{cursor:default}.submoduleStyle i{cursor:default}.pinfos a,.pinfos i{color:#666}.graph{flex:1;margin:0 12px}.graph .ant-typography{white-space:pre-wrap;margin-bottom:0}.ant-anchor-wrapper{padding-left:2px!important}.ant-anchor-wrapper .ant-anchor-ink::before{background-color:#fff}.coderSubPage{width:1200px;margin:0 auto}.griditemAnchor{margin-left:0!important;padding:0!important;border-bottom:1px solid #ddd}.griditemAnchor .ant-anchor{display:flex;align-items:center;justify-content:space-between;padding:10px 20px}.griditemAnchor .griditemCate{color:#333;font-size:16px;display:flex;align-items:center}.griditemAnchor .griditemCate .catelogue{margin-left:0}.readmeFile{overflow:inherit}.readmeFile p[align=center]{white-space:normal}.projectHomeTopics{display:flex;flex-wrap:wrap}.projectHomeTopics.myProList .proHomeTopic{background-color:#f3f8ff;color:#4c5b76}.projectHomeTopics .proHomeTopic{background-color:#eff2ff;border-radius:4px;max-width:158px;padding:0 10px;height:24px;line-height:24px}.replaceStyle{height:140px!important} \ No newline at end of file +@charset "UTF-8";dl,ol,ul{margin-bottom:0}.markdown-body .editormd-tex .katex-display>.katex{white-space:pre-wrap}.markdown-body a{color:#466aff}.markdown_anchors{position:relative}.markdown_anchors .anchors{color:inherit;margin-left:-14px;display:none}.newMain{background-color:#fff}.newTable{background-color:#f0f5ff}.newTable .newImages{background-image:url(../../forge/Images/taskbar.png);height:364px}.color-black{color:#333}.projectallName{font-size:22px;font-weight:400;line-height:30px;max-width:690px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.projectallName .projectN{word-break:break-all}.textRight{text-align:right}.main{width:1200px;padding:20px;margin:20px auto;background:#fff;border-radius:2px;border:1px solid #eee}.radius-2{border-radius:2px}.normal{width:1200px;margin:0 auto}.back-white{background:#fff}.back-black{background:#000}.btn_32{border-radius:4px;padding:0 12px;height:32px;line-height:32px;background-color:#f4f4f4;color:#666;display:inline-block}@media screen and (max-width:1200px){.main{width:100%;margin:10px auto}}.hide-1{display:inline-block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.hide-2{display:inline-block;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.df{display:flex}.flex-1{flex:1;width:0}.f-wrap-between{display:flex;flex-wrap:wrap;justify-content:space-between}.f-wrap-alignCenter{display:flex;flex-wrap:wrap;align-items:center}.f-wrap-alignCenter a:link,.f-wrap-alignCenter a:visited,.f-wrap-alignCenter>span{color:#333}.f-wrap-alignCenter>span{cursor:default}.commitDesc{flex:1;line-height:20px;word-break:break-all;width:49rem;overflow:hidden;white-space:normal}.normalBox{border-radius:4px}.normalBox-title{background-color:#fafcff;border:1px solid;border-color:rgba(42,97,255,.23);border-radius:4px 4px 0 0;padding:0 20px;height:48px;display:flex;align-items:center;font-size:16px}.none_panels{text-align:center;min-height:320px;padding:40px 0;display:flex;justify-content:center;align-items:center}.none_panels.small{height:120px}.none_panels.small img{width:200px}.none_panels img{width:300px;margin-bottom:15px}.none_p_title{font-size:16px;color:#999}form.ant-form{color:#333}.required{position:relative}.required::before{content:"*";color:red;position:absolute;left:-10px;top:0;line-height:22px}form .ant-row.ant-form-item{margin-bottom:20px}@media screen and (max-width:1200px){.main{width:100%}.normal{width:100%}#root{width:1200px}}@media screen and (max-width:1000px){.main{width:100%;margin:1rem auto}.normal{width:100%}}@media screen and (max-width:750px){.main{width:95%;margin:1rem auto}.normal{width:100%}#root{width:1200px}.newContainers{min-width:1200px}}.ver-middle{vertical-align:middle}.pd510{padding:5px 10px}.modalsStyle .ant-modal-content>.ant-modal-header{text-align:left!important}.modalsStyle .ant-modal-body{max-width:400px;margin:0 auto;text-align:left;min-height:140px;display:flex;align-items:center}.modalsStyle .ant-modal-close-x{margin-top:8px}.list-r-Info>div{box-shadow:0 0 2px rgba(0,0,0,.2)}.list-l-Menu{margin-bottom:12px;border-radius:2px;background-color:#fff;border:1px solid rgba(79,108,188,.21)}.list-l-Menu>li{font-size:15px;padding:0 0 0 25px;box-sizing:border-box;color:#333;position:relative}.list-l-Menu>li>p{height:49px;width:100%;display:flex;justify-content:space-between;align-items:center;cursor:pointer;padding-right:20px;margin:0;border-bottom:1px solid #eee}.list-l-Menu>li>p a{width:100%;color:#202d40}.list-l-Menu>li>p span:last-child{color:#999}.list-l-Menu>li:last-child>p{border-bottom:none}.list-l-Menu li.active::before{position:absolute;left:0;width:6px;content:'';height:100%}.list-l-Menu .MenuTitle{font-size:16px;background-size:100% 100%;color:#333!important;height:62px;line-height:62px;border-bottom:1px solid #e0e0e0;font-weight:400;cursor:pointer}.list-l-Menu .ant-menu-inline{border:none}.list-l-Menu .ant-menu-inline .ant-menu-item{width:100%!important}.list-l-Menu .ant-menu-item-group-title{padding:0}.group-setting-switch{border:1px solid #ddd!important;background-color:#fff!important}.newPopUl li{height:30px;line-height:30px;border-bottom:1px solid #eee;min-width:78px;text-align:center}.newPopUl li:last-child{border-bottom:none}.btn-83{width:83px;height:32px;line-height:30px;text-align:center;background:#fafbfc;border:1px solid #d0d0d0;display:inline-block;border-radius:5px;font-weight:500;color:#333!important;margin-right:15px}button.ant-btn-primary.btnblue{background-color:#466aff;border-color:#466aff}button.btngrey{background-color:#fff;border-color:#d0d0d0;color:#666}.newContainer .newBtn,.newContainer .newTab{position:relative}.newContainer .newBtnImg{background-image:url(../Images/newIcon.svg);background-size:100% 100%;width:29px;height:13px;position:absolute;right:-14px;top:-7px}.newContainer .newTab .newBtnImg{right:-19px}.operateButton{padding:0 15px;height:32px;color:#fff!important;cursor:pointer;line-height:30px;background-color:#466aff;border:1px solid #466aff;border-radius:4px;display:block}.lineH2{line-height:2}.t_project_banner{background-color:#050d34}.ProjectListIndex{width:1200px;margin:20px auto;display:flex;align-items:flex-start;flex-wrap:wrap}.list-left{width:26%;padding-right:20px;box-sizing:border-box;margin-bottom:20px}.list-left>div{border:1px solid #eee}.list-left>div.bgcF{border:none}.list-right{width:74%;background:#fff;padding:10px;border:1px solid #eee}.ant-menu-inline,.ant-menu-vertical,.ant-menu-vertical-left{border-right:none!important}.ant-menu-vertical>.ant-menu-item{margin:0!important;height:35px;line-height:35px;border-bottom:1px solid #eee;font-size:14px!important}.ant-menu-vertical>.ant-menu-item:last-child{border-bottom:none}.list-r-operation{display:flex;justify-content:space-between;flex-wrap:wrap;align-items:center;padding:25px 30px;border-bottom:1px solid #e0e0e0}.list-r-Search{width:400px}.padding0-25{padding:0 25px}.list-r-Search .ant-btn-lg{height:38px}.list-r-Search .ant-input-group-addon{border:none!important}.list-r-Search .ant-input-search-button{height:40px!important}.createBtn{border-radius:4px;margin-left:20px;display:inline-block;padding:3px 15px;background-color:#4cacff;color:#fff!important}.project-list{padding:0 30px}.border-top-grey{border-top:1px solid #eee}.p-r-Item:last-child{border-bottom:none!important}.p-r-Item{display:flex;border-bottom:1px solid #eee;padding:22px 0;justify-content:flex-start}.boxShandow{box-shadow:0 2px 20px 10px rgba(0,0,0,.03)}.p-r-photo{width:60px;height:60px;border-radius:50%;margin-right:22px;margin-top:8px}.p-r-Infos{flex:1;width:0}.p-r-name{display:flex;justify-content:space-between;align-items:center}.p-r-name>p{flex:1;width:0}.p-r-btn{display:flex;align-items:center}.p-r-btn>span{height:35px;line-height:35px;border:1px solid #f4f4f4;border-radius:5px;display:block;margin-left:20px;background-color:#fff;display:flex}.p-r-btn>span>a{display:flex;align-items:center;padding:0 12px;background:#ececec}.p-r-btn>span>a:active{background:#f4f4f4}.p-r-btn>span>span{padding:0 8px}.p-r-tags{display:flex;opacity:1}.p-r-tags.large>span{height:30px;line-height:30px;font-size:14px}.p-r-tags>span{margin-left:15px;padding:0 10px;border-radius:15px;background:#ebf4fe;color:#333;height:24px;line-height:24px;display:block;font-size:12px;display:flex}.p-r-tags>span.pariseTag{background:#fff3dc}.p-r-tags.large>span>label{padding:0 12px}.p-r-tags>span>label{padding:0 8px}.p-r-tags.large>span>span{padding:0 6px}.pariseImg{width:14px;height:12px;margin-top:6px;margin-right:3px}.p-r-tags>span>span{display:block;background:#fff;border-left:#efefef;padding:0 4px;border-radius:0 4px 4px 0;color:#999}.p-r-content{margin-top:10px;color:#666;display:flex}.p-r-detail>span{margin-right:22px;color:#888}.p-r-detail>span>label{color:#999}.p-r-about{display:flex;justify-content:space-between;flex-wrap:nowrap;margin-top:8px;color:#666}.spincontent{height:400px}.spinstyle .ant-spin-text{margin-top:30px;color:#888}.detailHeader-wrapper{background-color:#fbfcff;border-bottom:1px solid #e2e2e2}.headerMenu-wrapper{display:flex;flex-direction:row;cursor:pointer}.headerMenu-wrapper li{text-align:center;padding:0;margin-right:30px;display:flex}.headerMenu-wrapper li>a{position:relative;font-size:14px;height:36px;line-height:24px;display:flex;color:#000!important}.headerMenu-wrapper li>a>span.num{line-height:24px;margin-left:5px;font-size:12px;float:right;color:#666!important;background-color:rgba(153,153,153,.13);border-radius:50%;width:24px;height:24px}.detail_tag_btn{height:32px;line-height:32px;border-radius:5px;border:1px solid #d0d0d0;display:flex;align-items:center;margin-left:10px;padding:0;background-color:#fafbfc;box-shadow:none}.detail_tag_btn .detail_tag_btn_name{padding:0 10px;text-align:center;height:30px;line-height:30px;border-radius:5px 0 0 5px}.detail_tag_btn .detail_tag_btn_name span{color:#333!important}.detail_tag_btn .detail_tag_btn_count{width:42px;text-align:center;background:#fff;border-radius:0 4px 4px 0;height:100%;border-left:1px solid #d0d0d0}.ant-tooltip{max-width:fit-content!important}.files-md{padding:20px}.files-md h1,.files-md h2,.files-md h3,.files-md h4,.files-md h5,.files-md h6{margin-bottom:.5em!important}.readBox h1,.readBox h2,.readBox h3,.readBox h4,.readBox h5,.readBox h6{margin-bottom:.5em!important}.branch-wrapper{border:1px solid #eee;border-radius:4px;display:flex;align-items:center;height:60px;padding:0 30px;width:1200px;margin:0 auto;background-color:#fff;margin-top:20px;justify-content:space-between}.branch-wrapper>a>i{color:#5091ff;margin-right:5px;cursor:default}.branch-wrapper a{display:flex;align-items:center;justify-content:center;text-align:center;height:30px;line-height:30px;cursor:pointer;font-size:16px;color:#333}.branch-wrapper a>span{position:relative;min-height:20px;display:block}.branch-wrapper a.active>span::after{position:absolute;content:'';bottom:-5px;width:30px;height:3px;left:0;background-color:#5091ff}.gitAddressClone{margin:14px 20px!important;display:flex;height:40px;align-items:center;border-radius:4px;border:1px solid #eee;background:#fff;margin-left:20px;position:relative}.gitAddressClone>span{display:flex;line-height:40px;height:40px;padding:0 12px;cursor:pointer;align-items:center}.addressTips{position:absolute;font-size:12px;color:#ff6e21;top:-34px;left:30px;background-color:#fff;border:1px solid #fe881d;padding:0 5px;height:28px;line-height:28px}.addressTips>span{position:relative;display:block}.addressTips>span::before{box-sizing:content-box;width:0;height:0;position:absolute;top:25px;left:50%;margin-left:-4px;padding:0;border-top:8px solid #fff;border-bottom:8px solid transparent;border-left:8px solid transparent;border-right:8px solid transparent;display:block;content:'';z-index:12}.addressTips>span::after{box-sizing:content-box;width:0;height:0;position:absolute;top:26px;left:50%;margin-left:-4px;padding:0;border-top:8px solid #fe881d;border-bottom:8px solid transparent;border-left:8px solid transparent;border-right:8px solid transparent;display:block;content:'';z-index:11}.gitAddressClone>span.addressType{color:#4cacff}.gitAddressClone>span:last-child{border-right:none}.gitAddressClone>input{outline:0;padding:0 8px;height:38px;line-height:38px;border:none!important;border-right:1px solid #eee!important;border-radius:4px 0 0 4px;flex:1;max-width:249px}.wrap-commit-table .ant-table-small>.ant-table-content>.ant-table-body{margin:0}.wrap-commit-table .ant-table-title{background-color:#f1f8ff;padding:13px 16px!important}.commitKey{cursor:pointer;border:1px solid #fd7700;background-color:#fff3dc;color:#fd7700!important;padding:0 12px;height:20px;line-height:20px;margin-left:15px;border-radius:18px;max-width:100%}.branchTitle{padding:8px 10px;color:#333;font-size:16px;border-bottom:1px solid #d9d9d9}.branchUl li{display:flex;flex-wrap:wrap;align-items:flex-end;justify-content:space-between;padding:20px 0;border-bottom:1px solid #eee}.branchUl li:last-child{border-bottom:none}.operationBtn{border:1px solid #f4f4f4;border-radius:3px;padding:0 6px;background-color:#fff;color:#666!important;display:inline-block}.messages{max-width:700px}.leftPoint{margin-left:20px;position:relative}.leftPoint::before{position:absolute;left:-10px;top:8px;border-radius:50%;width:4px;height:4px;background-color:#dadada;content:''}.subFileName{position:relative;margin-left:15px;height:22px}.subFileName::before{position:absolute;content:'/';left:-10px;top:0;color:#999;height:22px;line-height:17px}.addFile{display:flex}.addFile a{display:block;background-color:rgba(76,172,255,.8);color:#fff;cursor:pointer;height:32px;line-height:32px;padding:0 10px}.addFile a:first-child{border-radius:4px}.addFile a:last-child{border-left:1px solid rgba(247,247,247,.3)}.addFile a:active{background-color:#4cacff}@media screen and (max-width:750px){.list-r-Search{flex:1}.list-left,.list-right{width:100%;padding:0}}@media screen and (max-width:400px){.list-r-Search{width:100%}.headerMenu-wrapper{flex-direction:column;width:100%}.headerMenu-wrapper li{width:100%}.gitAddressClone{width:100%;margin-left:0}.gitAddressClone>span{padding:0}.messages{max-width:100%}}.commonBox{border:1px solid #ddd;margin-top:18px;border-radius:4px}.commonBox .ant-anchor-wrapper{overflow:unset!important}.commonBox .commonBox-title{padding:0 20px;box-sizing:border-box;font-size:16px;background:#fafbfc;font-weight:700;height:45px;line-height:45px;border-bottom:1px solid #d9d9d9;border-radius:4px 4px 0 0}.readBox{border:none}.readBox.commonBox .commonBox-info{border:1px solid #d0d0d0;border-top:none;border-radius:0 0 4px 4px;padding:20px 38px}.commonBox .commonBox-title.boxTitle{display:flex;justify-content:space-between;height:55px;line-height:55px;background:#fafcff;border-radius:4px 4px 0 0;border:1px solid rgba(42,97,255,.23)}.synchronism{display:block;height:34px;line-height:34px;padding:0 15px;color:#fff!important;background-color:#28bd6c;border-radius:4px}.files_info{cursor:pointer}.commonBox .commonBox-info{padding:20px 15px}.commonBox-title-read{vertical-align:middle;color:#000;font-size:14px}@media screen and (max-width:370px){.p-r-btn,.p-r-tags{opacity:0;display:none}.p-r-about{flex-wrap:wrap}.commitKey{margin-right:0}.list-r-Search{width:100%}}.null_data_box{width:100%;border:1px solid #d4d4d5;border-radius:3px}.title{font-weight:700;background:#f4f4f4;padding:10px 15px;box-sizing:border-box;border-bottom:1px solid #d4d4d5}.item_title{font-size:18px;font-weight:700;margin-bottom:15px}.item{padding:15px;border-bottom:1px solid #dededf}.item:last-child{border-bottom:none}.item_title small{font-weight:400;margin-left:10px}.item_title small a{color:#4183c6}.Markdown{background:#f7f7f7;padding:10px 20px}.item .gitAddressClone input:focus{border:1px solid #2185d0}.content-file{margin-top:8px}.content-file .CodeMirror{background-color:#f7f7f7;border:1px solid #e4e4e4;border-radius:4px;height:auto}.content-file.edit .CodeMirror{background-color:#fff}.content-file .CodeMirror .CodeMirror-scroll{min-height:450px}.text-center{text-align:center}.fork-css{position:absolute;left:0;top:50px;width:100%}.color-grey-ccc{color:#ccc!important}.pull-right{float:right}.commitList{padding:0 30px;min-height:400px}.main{margin:30px auto}.main .ant-timeline{margin-top:28px}.main .ant-timeline .commitList-item{position:relative;padding:20px 20px;background:#fafcff;border:1px solid rgba(42,97,255,.23);border-radius:4px;margin-left:16px}.main .ant-timeline .commitList-item .treecopy{margin-top:20px}.main .ant-timeline .commitList-item .markdown-body table{background:#fafcff}.main .ant-timeline .commitList-item:after,.main .ant-timeline .commitList-item:before{content:"";position:absolute;left:-10px;top:10px;border-top:6px solid transparent;border-bottom:6px solid transparent;border-right:10px solid rgba(42,97,255,.23)}.main .ant-timeline .commitList-item:after{left:-8px;border-right:10px solid #fafcff}.main .ant-timeline .commitList-item .treecopy-cont{padding:4px 15px;display:flex;align-items:center}.main .ant-timeline .commitList-item .btn-83{margin-left:20px}.main .ant-timeline .ant-timeline-item{padding:8px 0 20px}.main .ant-timeline .ant-timeline-item-tail{height:calc(100% - 20px);border-left:2px solid #eee;top:12px}.main .ant-timeline .ant-timeline-item-tail:after{content:' ';height:0;position:absolute;width:0;border:7px solid transparent;border-top-color:#eee;top:100%;left:50%;margin-left:-8px}.main .ant-timeline .ant-timeline-item-head-custom{top:20px;padding:0 1px}.div_table{border:1px solid #eee;border-radius:2px}.ul_thead{padding:0 30px;box-sizing:border-box;background:#fafafa;border-bottom:1px solid #eee;height:50px;line-height:50px}.ul_tbody{padding:0 30px}.ul_tbody li,.ul_thead li{display:flex;align-items:center;text-align:left}.ul_tbody li{padding:18px 0;border-bottom:1px solid #eee}.ul_tbody li:last-child{border-bottom:none}.ul_tbody li>span,.ul_thead li>span{width:20%;padding-right:20px}.ul_tbody li>span:nth-child(2),.ul_thead li>span:nth-child(2){flex:1}.ul_tbody_third{display:flex;flex-direction:column;align-items:flex-start;justify-content:left}.ul_tbody_forth{text-align:center;display:flex;justify-content:center}.depotNum{color:#666!important}.depotNum span:last-child{color:#333}.recommandOri.slick-slider{width:1300px;margin:20px auto 40px}.recommandOri.slick-slider .slick-track{margin-left:0}.recommandOri.slick-slider .slick-slide li>a{display:flex;align-items:center;justify-content:center}.iconBtn i{color:#666}.iconBtn span{margin-left:4px;color:#333!important}.iconBtn span:last-child{font-weight:500}.recommandProjects.slick-slider{width:1230px;margin:20px auto 40px}.recommandProjects.slick-slider .slick-track{margin-left:0}.recommandProjects.slick-slider .slick-arrow.slick-next:before,.recommandProjects.slick-slider .slick-arrow.slick-prev:before{color:#999}.recommandProjects.slick-slider .slick-arrow.slick-next li.slick-active button:before,.recommandProjects.slick-slider .slick-arrow.slick-prev li.slick-active button:before{color:#999}.recommandProjects.slick-slider .slick-dots{bottom:-29px}.recommandProjects.slick-slider .slick-dots li button:before{color:#909090}.recommandProjects.slick-slider .slick-slide{padding:0 15px;box-sizing:border-box}.recommandProjects.slick-slider .slick-slide>div{background-color:#fff;border-radius:10px;width:100%;cursor:pointer;border:1px solid #eee}.recommandProjects.slick-slider .baseInfo{padding:18px 15px;display:flex;font-size:12px;color:#888}.recommandProjects.slick-slider .baseInfo .look{margin-right:10px}.recommandProjects.slick-slider .baseInfo .look i{margin-right:5px}.recommandProjects.slick-slider .baseInfo .type{flex:1;width:0;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;text-align:right}.recommandProjects.slick-slider .mainInfo{display:flex;flex-direction:column;align-items:center;justify-content:center;min-height:160px;border-bottom:1px solid #eee;padding:20px;box-sizing:border-box}.recommandProjects.slick-slider .mainInfo img{height:50px;width:50px;border-radius:50%}.recommandProjects.slick-slider .mainInfo .name{font-size:13px;color:#666;height:18px;line-height:18px;margin-top:12px}.recommandProjects.slick-slider .mainInfo .school{margin-top:12px;color:#333;font-size:16px;height:22px;line-height:22px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;max-width:100%}.Panels{max-width:1200px;margin:0 auto}.Panels .panelmenu{padding-top:20px}.Panels .panelmenu .depotBtn .mr-5{margin-right:-5px}.Panels .panelmenu .depotBtn .ant-btn{height:32px;line-height:32px;width:83px;text-align:center;padding:0;font-weight:500;font-size:14px}.Panels .panelmenu .depotBtn .ant-btn-default{color:#333;border-color:#d0d0d0}.Panels .panelmenu .depotBtn .ant-btn-primary{color:#fff;background-color:#466aff;border:none}.Panels .addOptionBtn,.Panels .depotBtn{display:flex}.Panels .addOptionBtn a,.Panels .depotBtn a{color:#333!important;font-weight:500!important;border-radius:5px;width:83px;height:32px;line-height:30px;background:#fff;border:1px solid #d0d0d0;margin-right:14px;text-align:center}.Panels .infoCount{display:inline-block;width:24px;text-align:center;height:24px;line-height:24px;background-color:rgba(153,153,153,.13);color:#666;border-radius:12px;margin-left:6px;font-size:12px}.Panels .attrPerson{padding-top:12px;display:flex;flex-wrap:wrap;padding-bottom:2px}.Panels .attrPerson a{margin:0 17px 10px 0}.Panels .attrPerson a img{border-radius:50%;width:40px;height:40px}.Panels .attrPerson a:nth-child(5n){margin-right:0}.Panels .progress{display:flex;border-radius:2px;height:11px;margin-top:12px}.Panels .progress span:first-child{border-radius:2px 0 0 2px}.Panels .progress span:last-child{border-radius:0 2px 2px 0}.Panels .progresstip{margin-top:15px;flex-wrap:wrap}.Panels .progresstip i.zero{position:absolute;display:block;border-radius:50%;height:8px;width:8px;left:0;top:8px}.Panels .progresstip>span{padding-left:15px;position:relative;min-width:33.5%;font-size:12px;font-weight:400;color:#666}.Panels .progresstip>span span:last-child{margin-left:5px}.Panels .listtable{margin-top:20px}.Panels .listtable .listtablehead{display:flex;justify-content:space-between;align-items:flex-start;padding:12px 20px 11px;border-radius:4px 4px 0 0;border:1px solid rgba(42,97,255,.23);border-bottom:none;background-color:#fafcff}.Panels .listtable .listtablehead+.listtablebody{border-top-color:rgba(42,97,255,.23)}.Panels .listtable .listtablehead .ellipsistxt{margin-top:2px;margin-left:13px;line-height:18px;flex:1;width:0;color:#666}.Panels .listtable .listtablehead .ellipsistxt li{line-height:15px}.Panels .listtable .listtablehead .ellipsistxt #ptxt{margin-bottom:0;word-break:break-all;overflow:unset;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word}.Panels .listtable .listtablehead .ellipsistxt #ptxt .markdown-body{line-height:10px;font-size:14px}.Panels .listtable .listtablehead .ellipsistxt #ptxt .markdown-body p{margin:1px 0 0!important;font-size:14px!important}.Panels .listtable .listtablehead .ellipsistxt #ptxt .markdown-body ol,.Panels .listtable .listtablehead .ellipsistxt #ptxt .markdown-body ul{padding-bottom:3px}.Panels .listtable .listtablehead .ellipsistxt #ptxt .markdown-body ol li,.Panels .listtable .listtablehead .ellipsistxt #ptxt .markdown-body ul li{min-height:18px}.Panels .listtable .listtablehead .ellipsistxt #ptxt .markdown-body table{line-height:1;background:#fafcff}.Panels .listtable .listtablehead .ellipsistxt #ptxt .markdown-body:first-child{margin-top:-1px!important}.Panels .listtable .listtablehead .ellipsistxt.hidetxt{height:24px;overflow:hidden;position:relative;padding-right:8px}.Panels .listtable .listtablehead .ellipsis{margin-left:8px;cursor:pointer;border-radius:2px;height:16px;background:rgba(153,153,153,.2);border-radius:2px;padding:0 4px;height:14px;line-height:14px;margin-top:9px}.Panels .listtable .listtablehead .ellipsis i{font-size:15px!important;color:#333;height:14px;line-height:14px}.Panels .listtable .listtablebody{border-radius:0 0 4px 4px;border:1px solid #d0d0d0}.Panels .listtable .listtablebody li a{color:#05101a}.Panels .listtable .listtablebody li.listtablepath a{color:#40a9ff}.Panels .listtable .listtablebody li.listtablepath p{margin-bottom:0!important}.Panels .listtable .listtablebody>li{height:38px;display:flex;justify-content:space-between;align-items:center;border-bottom:1px solid #d9d9d9;padding:0 20px 0 24px}.Panels .listtable .listtablebody>li>span:first-child{width:30%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.Panels .listtable .listtablebody>li>span:nth-child(2){width:60%;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.Panels .listtable .listtablebody>li>span:nth-child(3){width:10%;text-align:right}.Panels .listtable .listtablebody>li:last-child{border-bottom:none}.drawerBtn{position:fixed;left:-13px;width:33px;background:#fff;box-shadow:0 0 8px 3px rgba(0,0,0,.09);border:1px solid #666;border-radius:0 12px 12px 0;height:70px;top:50%;margin-top:-35px;cursor:pointer;display:flex;flex-direction:column;align-items:center;justify-content:center;padding-left:7px}.drawerBtn span{writing-mode:vertical-lr;color:#333;width:25px;font-size:14px}.drawerBtn i{color:#333;height:14px;line-height:14px;width:14px;margin-left:2px;margin-bottom:3px}.downMenu{width:329px;background-color:#fff;box-shadow:0 1px 8px 1px rgba(212,212,212,.5);padding-bottom:14px}.downMenu .ant-menu-item{height:50px;line-height:50px}.fileMenu{width:83px}.fileMenu li{padding:6px 0!important;text-align:center;width:100%}.catelogue{cursor:pointer;background:#fafbfc;border-radius:4px;border:1px solid #d0d0d0;font-size:15px;font-weight:400;margin-right:12px;padding:0 10px;height:30px;line-height:30px;color:#666!important;display:flex;align-items:center}.catelogue .ant-dropdown-menu-item{border-radius:8px;text-align:left!important}.catelogue .ant-dropdown-menu-item a{width:350px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.catelogue span{margin-top:1px}.submoduleStyle{cursor:default}.submoduleStyle i{cursor:default}.pinfos a,.pinfos i{color:#666}.graph{flex:1;margin:0 12px}.graph .ant-typography{white-space:pre-wrap;margin-bottom:0}.ant-anchor-wrapper{padding-left:2px!important}.ant-anchor-wrapper .ant-anchor-ink::before{background-color:#fff}.coderSubPage{width:1200px;margin:0 auto}.griditemAnchor{margin-left:0!important;padding:0!important;border-bottom:1px solid #ddd}.griditemAnchor .ant-anchor{display:flex;align-items:center;justify-content:space-between;padding:10px 20px}.griditemAnchor .griditemCate{color:#333;font-size:16px;display:flex;align-items:center}.griditemAnchor .griditemCate .catelogue{margin-left:0}.readmeFile{overflow:inherit}.readmeFile p[align=center]{white-space:normal}.projectHomeTopics{display:flex;flex-wrap:wrap}.projectHomeTopics.myProList .proHomeTopic{background-color:#f3f8ff;color:#4c5b76}.projectHomeTopics .proHomeTopic{background-color:#eff2ff;border-radius:4px;max-width:158px;padding:0 10px;height:24px;line-height:24px}.replaceStyle{height:140px!important}.AlignTop{display:flex;align-items: flex-start}.WhiteBack{background-color:#fff;border-radius:5px}.Box{display:flex;align-items:flex-start}.LongWidth{flex:1;width:0;border-radius:5px;margin-bottom:30px}.ShortWidth{width:300px;border-radius:5px;margin-bottom:30px}.Gap{padding-left:20px;box-sizing:border-box}.AlignCenter{display:flex;align-items: center}.FlexAJ{display:flex;align-items: center;justify-content: space-between}.mt25{margin-top:25px}.User{display:flex;font-weight: bold;align-items: center}.User img{width:30px;height:30px;border-radius:50%}.User span{margin-left:8px} \ No newline at end of file diff --git a/public/css/gitlink.min.css b/public/css/gitlink.min.css index 90f558f0..8163a184 100644 --- a/public/css/gitlink.min.css +++ b/public/css/gitlink.min.css @@ -1 +1 @@ -@charset "utf-8";.header{width:100%;height:51px;min-width:1200px;background:#171616}.animate{-webkit-transition:all .3s;-moz-transition:all .3s;-ms-transition:all .3s;-ms-transition:all .3s;transition:all .3s;backface-visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden}.footer{width:100%;height:100px;background-color:#fff}.footer_con-p{color:#888;margin-top:10px}.inner-footer_con{width:1200px;margin:0 auto}.panel-inner-fourm{padding:20px;border-bottom:1px solid #eee}.panel-inner-fourm:hover{background:#eff9fd}a.panel-list-title,.panel-list-title{display:inline-block;font-size:16px;color:#333;font-weight:400;max-width:82%}a:hover.panel-list-title{color:#ff7500}.panel-list-img{width:60px;height:60px;border-radius:100px}a.panel-name-small{display:inline-block;max-width:100px;color:#29bd8b;font-size:12px}.panel-lightgrey,.panel-lightgrey span{font-size:12px;color:#888}.panel-comment_item{width:100%}.panel-comment_item .t_area{color:#888}.comment_item_cont{padding:15px;border-bottom:1px solid #e3e3e3}.comment_item_cont .J_Comment_Face{height:50px}.comment_item_cont .J_Comment_Face img{width:50px;height:50px;border-radius:100px}.panel-comment_item .t_content{width:93%;margin-left:15px}.panel-comment_item a.content-username{font-size:14px;margin-right:15px;display:inline-block;max-width:100px;color:#888}.J_Comment_Info{height:20px;line-height:22px}.panel-comment_item .comment_orig_content{margin:10px 0;color:#999}.panel-comment_item .comment_orig_content .comment_orig_content{margin-top:0;color:#666}.panel-comment_item .comment_content{color:#666}.comment_content img{max-width:100%}.orig_reply{font-size:12px}.homepagePostReplyPortrait a img{border-radius:100px}.pages_user_show a:hover,.pages_user_show a.active{background-color:#fc7033;color:#fff;border:1px solid #fc7033}.pages_user_show a{display:inline-block;border:1px solid #d1d1d1;color:#888;float:left;text-align:center;padding:3px 10px;line-height:1.9;margin:0 5px}.pages_user_show li{float:left;list-style-type:none}.pages_user_show ul li{list-style-type:none!important}.pages_user_show ul li a{color:#888}.panel-form-label{display:inline-block;width:10%;min-width:90px;text-align:right;line-height:40px;font-weight:400}.panel-box-sizing{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;border-radius:3px}input.task-form-80,textarea.task-form-80,select.task-form-80,.task-form-80{padding:5px;width:80%;box-sizing:border-box}input.task-form-100,textarea.task-form-100,select.task-form-100,.task-form-100{padding:5px;width:100%}input.task-height-40,textarea.task-height-40,.task-height-40,select.task-height-40{height:40px}input.task-height-150,textarea.task-height-150,.task-height-150{height:150px}.handler_bg{background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0ZDhlNWY5My05NmI0LTRlNWQtOGFjYi03ZTY4OGYyMTU2ZTYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NTEyNTVEMURGMkVFMTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NTEyNTVEMUNGMkVFMTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2MTc5NzNmZS02OTQxLTQyOTYtYTIwNi02NDI2YTNkOWU5YmUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NGQ4ZTVmOTMtOTZiNC00ZTVkLThhY2ItN2U2ODhmMjE1NmU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+YiRG4AAAALFJREFUeNpi/P//PwMlgImBQkA9A+bOnfsIiBOxKcInh+yCaCDuByoswaIOpxwjciACFegBqZ1AvBSIS5OTk/8TkmNEjwWgQiUgtQuIjwAxUF3yX3xyGIEIFLwHpKyAWB+I1xGSwxULIGf9A7mQkBwTlhBXAFLHgPgqEAcTkmNCU6AL9d8WII4HOvk3ITkWJAXWUMlOoGQHmsE45ViQ2KuBuASoYC4Wf+OUYxz6mQkgwAAN9mIrUReCXgAAAABJRU5ErkJggg==)no-repeat 50%}.handler_ok_bg{background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0ZDhlNWY5My05NmI0LTRlNWQtOGFjYi03ZTY4OGYyMTU2ZTYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDlBRDI3NjVGMkQ2MTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDlBRDI3NjRGMkQ2MTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDphNWEzMWNhMC1hYmViLTQxNWEtYTEwZS04Y2U5NzRlN2Q4YTEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NGQ4ZTVmOTMtOTZiNC00ZTVkLThhY2ItN2U2ODhmMjE1NmU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+k+sHwwAAASZJREFUeNpi/P//PwMyKD8uZw+kUoDYEYgloMIvgHg/EM/ptHx0EFk9I8wAoEZ+IDUPiIMY8IN1QJwENOgj3ACo5gNAbMBAHLgAxA4gQ5igAnNJ0MwAVTsX7IKyY7L2UNuJAf+AmAmJ78AEDTBiwGYg5gbifCSxFCZoaBMCy4A4GOjnH0D6DpK4IxNSVIHAfSDOAeLraJrjgJp/AwPbHMhejiQnwYRmUzNQ4VQgDQqXK0ia/0I17wJiPmQNTNBEAgMlQIWiQA2vgWw7QppBekGxsAjIiEUSBNnsBDWEAY9mEFgMMgBk00E0iZtA7AHEctDQ58MRuA6wlLgGFMoMpIG1QFeGwAIxGZo8GUhIysmwQGSAZgwHaEZhICIzOaBkJkqyM0CAAQDGx279Jf50AAAAAABJRU5ErkJggg==)no-repeat 50%}img.edu-nodata-img{width:200px;margin:50px auto 20px;display:block}.edu-nodata-p{font-size:16px;text-align:center;color:#888;border-bottom:none!important}.user_bg_shadow{-webkit-box-shadow:0 0 8px 0 rgba(142,142,142,.1);-moz-box-shadow:0 0 8px 0 rgba(142,142,142,.1);box-shadow:0 0 8px rgba(142,142,142,.1)}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#ccc}input::-moz-placeholder,textarea::-moz-placeholder{color:#ccc}input::-moz-placeholder,textarea::-moz-placeholder{color:#ccc}input::-ms-input-placeholder,textarea::-ms-input-placeholder{color:#ccc}.btn-cir{display:inline-block;padding:0 5px;border-radius:25px;line-height:20px;font-size:12px}.btn-cir:hover{background:#fff;color:#333}.all_work_border{border:1px solid #4c515d}.btn-cir-red{background:red;color:#fff;font-weight:400}.btn-cir-red:hover{background:red}.btn-cir-orange{background:#ff7500;color:#fff;font-weight:400;border:1px solid #ff7500}.btn-top{display:inline-block;padding:0 5px;line-height:20px;font-size:12px;border-radius:3px}.btn-cir-big{background:#999;color:#fff;display:inline-block;padding:0 10px;border-radius:25px;line-height:25px;height:25px;font-size:12px}.panel-inner-icon{width:22px;height:22px;line-height:22px;border-radius:50%;background:#29bd8b;display:block;text-align:center}.panel-inner-icon{width:22px;height:22px;line-height:22px;border-radius:50%;background:#29bd8b;display:block;text-align:center}@keyframes ball-scale{0%{width:0;height:0}100%{width:80px;height:80px}}.shixun_work_div{overflow-y:auto;max-height:90px}html{height:100%}.w20_center{width:20px;text-align:center}.user-info{width:80px;height:100px;padding-top:15px}a.user-info-img{display:block;width:50px;height:50px;margin:0 auto}a.user-info-img img{border-radius:100px;border:2px solid #666}a.user-info-img img:hover{border:2px solid #888}a.user-info-name{display:block;font-size:16px;color:#fff;max-width:100px;margin:10px auto;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.leftnav-box{width:80px;height:60px;background:#292b3a;padding:10px 0;margin-bottom:2px}a.leftnav-box-inner{display:block;width:77px;border-left:3px solid #292b3a;background:#292b3a;text-align:center;padding:10px 0;color:#575f6c}a:hover.leftnav-box-inner,a.leftnav-active{border-left:3px solid #3498db;color:#fff!important}a:hover.leftnav-box-inner .btn-cir{background:#fff;color:#333}#tab_nav{height:42px;background:#fff;border-bottom:1px solid #eee}#tab_nav li{float:left;padding:0 30px;text-align:center;height:40px;line-height:40px}#tab_nav li a{font-size:14px}.tab_hover{border-bottom:2px solid #3498db;background:#fff;color:#3498db}.tab_hover a{color:#3498db!important}.undis{display:none}.dis{display:block}.tab-info{}.info-partly{display:block;box-flex:1;flex:1;-webkit-flex:1;position:relative}.task-popup-text-center{text-align:center;color:#333}.task-popup-title{border-bottom:1px solid #eee;padding:10px 15px}.task-popup-submit{margin:0 auto 15px;width:120px}.panel-form-label{display:inline-block;width:10%;min-width:90px;text-align:right;line-height:40px;color:#666}.panel-box-sizing{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.mb20{margin-bottom:20px}#game_task_pass img{cursor:pointer}.-fit{position:absolute;top:0;right:0;bottom:0;left:0}.-layout-v{display:flex;flex-direction:column;-webkit-flex-direction:column}.page--leftnav{position:fixed;top:0;left:0;right:0;z-index:9001;width:80px;height:100%;background:#282c37}.page--body{position:relative;margin-top:54px}.-flex{box-flex:1;flex:1;-webkit-flex:1}.split-panel.-fit{position:absolute}.split-panel{position:relative;overflow:hidden;min-height:200px;height:100%}.-stretch{align-items:stretch}.-layout{display:flex}.split-panel--first{overflow:hidden}.-relative{position:relative}.-bg-white{background-color:#eee}.-vertical{flex-direction:column;box-flex-direction:column;-webkit-flex-direction:column}.-layout-h{display:flex;flex-direction:row;box-flex-direction:row;-webkit-flex-direction:row}.-horizontal{flex-direction:row-reverse;box-flex-direction:row-reverse;-webkit-flex-direction:row-reverse}.-scroll{overflow:auto}.-flex-basic40{width:40%;box-flex:auto;flex:auto;-webkit-flex:auto}.-flex-basic50{width:60%;box-flex:auto;flex:auto;-webkit-flex:auto}.b-label{width:4px;cursor:ew-resize;background:#2b2b2b}.h-center{height:4px;cursor:ns-resize;background:#333}.-changebg{height:3px}.-bg-weightblack{background:#000}.-flex-basic70{box-flex:4 9 auto;flex:4 9 auto;-webkit-flex:4 9 auto;height:70%}.-flex-basic60{box-flex:2 1 auto;flex:2 1 auto;-webkit-flex:2 1 auto;height:30%}.-header-title{max-width:500px;font-weight:400}.-header-right{background:#333;border-radius:25px;padding:5px 15px;height:30px;position:absolute;right:10px;line-height:30px}.-bg-black{background:#2b2b2b;color:#f4f1ed}.-bg-darkblack{background:#1d1d1d;color:#fff}#blacktab_nav{height:40px;background:#292929}#blacktab_nav li{float:left;padding:0 50px;text-align:center;height:40px;line-height:40px}#blacktab_nav .add-webssh{position:relative}#blacktab_nav .add-webssh span{position:absolute;top:0;right:5px;color:#fff;cursor:pointer}#blacktab_nav li a{font-size:14px}#blacktab_nav li.code-file-tab{padding:0;width:120px;box-sizing:border-box;padding:0 15px}.code-flie-list{display:none;position:absolute;z-index:5;top:40px;background:#515151;width:300px;left:0;color:#fff}.blue-line{border-left:3px solid #199ed8!important;padding-left:5px}.codefile-all{max-height:122px;overflow-y:auto;overflow-x:hidden}.codefile-all p{text-align:left;cursor:pointer;height:22px;line-height:22px;margin-bottom:3px;padding-left:5px;border-left:3px solid #515151;width:273px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.codefile-all p:hover{background:#ccc;color:#333}.blacktab_hover a{color:#fff}.-task-ces-top{padding:5px 15px;background:#515151;color:#bfbfbf}.-task-ces-info-left{display:inline-block;width:100px;text-align:right}.page--over{position:fixed;top:0;left:80px;right:0;z-index:8000;height:100%;color:#fff}.-task-list-inner{background:#eff2f7;margin:10px;padding:5px}.-task-list-title{font-size:14px;color:#666;word-wrap:break-word;font-weight:400;max-width:80%}.greytab-inner{background:#fff}.blacktab-inner{background:#333}.task-padding16{padding:16px}@keyframes bounce-down{25%{transform:translateY(-10px)}50%,100%{transform:translateY(0)}}a.shixun-task-btn{display:inline-block;font-weight:700;border:none;padding:0 12px;color:#666;letter-spacing:1px;text-align:center;font-size:14px;height:30px;line-height:30px;border-radius:3px}.loading-center{text-align:center;align-items:center;justify-content:center}.center{vertical-align:middle;text-align:center}.searchFor{width:auto}.searchFor .searchCon{width:250px;border-bottom:1px solid #ccc;float:left;height:30px}.searchFor .searchCon input{border:none;outline:none;height:29px;width:91%}.searchFor .search_close{font-size:18px;float:right;color:#666;height:29px;line-height:29px;cursor:pointer}.tab_color{color:#bfbfbf!important}.comment-input{width:100%;margin:10px;margin-right:17px}.comment-input textarea{border:none!important;width:100%;outline:none;height:30px;border-radius:4px;padding-left:5px;float:left}.option-item{border:1px solid #e2e2e2}.option-item{display:block;width:38px;height:38px;text-align:center;line-height:38px;border-radius:4px}.check-option-bg{background:#ff7500;color:#fff!important;border:1px solid #ff7500}.position-delete{position:absolute;right:-22px;top:12px;cursor:pointer}.-center{align-items:center;min-height:66px}.markdown{letter-spacing:0;line-height:1.6;word-wrap:break-word;word-break:break-word}.markdown_anchors{position:relative}.markdown_anchors:hover .anchors{display:inline-block}.markdown_anchors .anchors:hover{text-decoration:none}.markdown_anchors .anchors{color:inherit;margin-left:-14px;display:none}.markdown code{padding:0;line-height:23px;margin:0;font-family:微软雅黑,宋体}.load{width:auto;top:50%;margin-top:-100px;position:relative}.empty{background:#494a4c;display:inline;margin:0 2px;padding:0 3px}.update_back_main{display:none;position:fixed;left:0;top:0;background:rgba(0,0,0,.3);width:100%;z-index:7001;height:100%}.tip-panel-animate-left{position:absolute;z-index:9000;left:80px;top:290px;background:#fff;width:430px;height:140px;border-radius:3px}.tip-panel-animate{position:absolute;z-index:10001;right:4px;top:40px;background:#fff;width:430px;height:140px;border-radius:3px;display:none}.tip-operator-btn{width:100%;border-top:1px solid #eee;height:40px;position:absolute;right:0;bottom:0;text-align:center}.tip-operator-btn a,.tip-operator-btn span{height:100%;text-align:center;line-height:40px;width:50%}.tip-operator-btn a:hover,.tip-operator-btn span:hover{background-color:#f9f9f9}.tip-operator-btn a:first-child,.tip-operator-btn span:first-child{border-right:1px solid #eee;width:49.5%}.animate-tip{animation:rightToleft 1s}.animate-tip-hide{animation:leftToright 1s}@keyframes rightToleft{from{right:-400px}to{right:4px}}@keyframes leftToright{from{right:4px}to{right:-420px}}@keyframes rightToleft-l{from{left:-400px}to{left:80px}}@keyframes leftToright-l{from{left:80px}to{left:-420px}}.photo_display{box-sizing:border-box;width:100%;position:fixed;top:0;left:0;padding-top:64px;padding-left:80px;background:0 0;height:100%;z-index:100}.photo_display .task-popup{width:100%!important;height:100%!important}#picture-content img{max-width:100%;height:400px;display:block;margin:0 auto;margin-bottom:20px}@font-face{font-family:iconfont;src:url(iconfont.woff2?t=1631773579834)format('woff2'),url(iconfont.woff?t=1631773579834)format('woff'),url(iconfont.ttf?t=1631773579834)format('truetype')}html body{font-size:14px;line-height:2;background:#fafafa;font-family:iconfont;color:#05101a;height:100%;position:relative;padding-right:0!important}html,body{height:100%}body,h2,h3,h4,h6,hr,p,blockquote,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td,span{margin:0;padding:0;margin-bottom:0!important}table,input,textarea,select,button{outline:none;border-radius:3px;font-family:微软雅黑,宋体;font-size:14px;line-height:1.9;border:1px solid #eaeaea;background:#fff;color:#05101a}textarea{resize:none}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#ccc}input::-moz-placeholder,textarea::-moz-placeholder{color:#ccc}input::-moz-placeholder,textarea::-moz-placeholder{color:#ccc}input::-ms-input-placeholder,textarea::-ms-input-placeholder{color:#ccc}div,img,tr,td,table{border:0}a:link,a:visited{text-decoration:none;color:#05101a}ol,ul,li{list-style-type:none}select:disabled,input:disabled{background-color:#eee}.clearfix:after{clear:both;content:".";display:block;font-size:0;height:0;line-height:0;visibility:hidden}.clearfix{clear:both;zoom:1}.cl{clear:both;overflow:hidden}.fl{float:left!important}.fr{float:right!important}.break-word{word-break:break-all;word-wrap:break-word}.break-word-firefox{white-space:pre-wrap!important;word-break:break-all}.justify{text-align:justify}.indent{text-indent:2em}.edu-max-h200{height:200px;overflow:auto}.edu-h270{height:270px}.edu-position{position:relative}a.edu-txt-w100,.edu-txt-w100{width:100px;display:inline-block;text-align:center}a.edu-txt-w80,.edu-txt-w80{width:80px;display:inline-block;text-align:center}.task-hide{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.task-hide-2{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.none{display:none!important}.block{display:block}.boxsizing{box-sizing:border-box}.iconfont{font-size:18px!important}.font-n{font-weight:400!important}.font-bd{font-weight:700}.font-n{font-weight:400}.font-12{font-size:12px!important}.font-13{font-size:13px!important}.font-14{font-size:14px!important}.font-15{font-size:15px!important}.font-16{font-size:16px!important}.weight400{font-weight:400}.weight500{font-weight:500}.weight{font-weight:700}.font-17{font-size:17px!important}.font-18{font-size:18px!important}.font-20{font-size:20px!important}.font-22{font-size:22px!important}.font-25{font-size:25px!important}.font-26{font-size:26px!important}.font-24{font-size:24px!important}.font-28{font-size:28px!important}.font-30{font-size:30px!important}.font-32{font-size:32px!important}.font-36{font-size:36px!important}.font-40{font-size:40px!important}.font-50{font-size:50px!important}.font-80{font-size:80px!important}.color-grey-b{color:#bbb!important}a.decoration{text-decoration:underline}.panel-form-label{display:inline-block;width:10%;min-width:90px;text-align:right;line-height:40px;font-weight:400}.mt1{margin-top:1px}.mt2{margin-top:2px}.mt3{margin-top:3px}.mt4{margin-top:4px}.mt5{margin-top:5px!important}.mt6{margin-top:6px}.mt7{margin-top:7px!important}.mt8{margin-top:8px!important}.mt9{margin-top:9px}.mt10{margin-top:10px!important}.mt12{margin-top:12px}.mt13{margin-top:13px}.mt14{margin-top:14px}.mt15{margin-top:15px!important}.mt16{margin-top:16px}.mt17{margin-top:17px}.mt18{margin-top:18px}.mt20{margin-top:20px!important}.mt22{margin-top:22px!important}.mt23{margin-top:23px!important}.mt24{margin-top:24px!important}.mt25{margin-top:25px}.mt28{margin-top:28px}.mt30{margin-top:30px!important}.mt34{margin-top:34px!important}.mt35{margin-top:35px!important}.mt36{margin-top:36px!important}.mt40{margin-top:40px}.mt45{margin-top:45px}.mt50{margin-top:50px}.mt56{margin-top:56px}.mt60{margin-top:60px}.mt70{margin-top:70px}.mt80{margin-top:80px}.mt100{margin-top:100px}.mb0{margin-bottom:0!important}.mb3{margin-bottom:3px}.mb5{margin-bottom:5px}.mb7{margin-bottom:7px}.mb10{margin-bottom:10px}.mb12{margin-bottom:12px}.mb13{margin-bottom:13px}.mb14{margin-bottom:14px}.mb15{margin-bottom:15px!important}.mb16{margin-bottom:16px}.mb20{margin-bottom:20px!important}.mb25{margin-bottom:25px}.mb26{margin-bottom:26px}.mb30{margin-bottom:30px!important}.mb40{margin-bottom:40px!important}.mb50{margin-bottom:50px!important}.mb60{margin-bottom:60px!important}.mb70{margin-bottom:70px!important}.mb80{margin-bottom:80px!important}.mb100{margin-bottom:100px!important}.ml-3{margin-left:-3px}.ml1{margin-left:1px}.ml2{margin-left:2px}.ml3{margin-left:3px}.ml4{margin-left:4px}.ml5{margin-left:5px}.ml6{margin-left:6px}.ml10{margin-left:10px}.ml12{margin-left:12px!important}.ml13{margin-left:13px!important}.ml15{margin-left:15px}.ml18{margin-left:18px}.ml20{margin-left:20px}.ml22{margin-left:22px}.ml25{margin-left:25px}.ml30{margin-left:30px}.ml33{margin-left:33px}.ml35{margin-left:35px}.ml40{margin-left:40px}.ml50{margin-left:50px}.ml60{margin-left:60px}.ml80{margin-left:80px}.ml85{margin-left:85px}.ml180{margin-left:180px}.mr3{margin-right:3px}.mr4{margin-right:4px}.mr5{margin-right:5px}.mr8{margin-right:8px}.mr10{margin-right:10px}.mr12{margin-right:12px!important}.mr15{margin-right:15px}.mr18{margin-right:18px}.mr20{margin-right:20px}.mr25{margin-right:25px}.mr30{margin-right:30px}.mr35{margin-right:35px}.mr40{margin-right:40px}.mr50{margin-right:50px}.mr60{margin-right:60px}.mr70{margin-right:70px}.mr80{margin-right:80px}.mr90{margin-right:90px}.ml61{margin-left:61px}.pt5{padding-top:5px!important}.pt10{padding-top:10px}.pt15{padding-top:15px}.pt20{padding-top:20px!important}.pt25{padding-top:25px}.pt30{padding-top:30px}.pt35{padding-top:35px}.pt37{padding-top:37px}.pt40{padding-top:40px}.pt50{padding-top:50px}.pt60{padding-top:60px}.pt80{padding-top:80px}.pb5{padding-bottom:5px!important}.pb10{padding-bottom:10px}.pb15{padding-bottom:15px}.pb20{padding-bottom:20px}.pb25{padding-bottom:20px}.pb25{padding-bottom:20px}.pb28{padding-bottom:28px}.pb30{padding-bottom:30px}.pb40{padding-bottom:40px}.pb47{padding-bottom:47px}.pb50{padding-bottom:50px}.pb60{padding-bottom:60px}.pb100{padding-bottom:100px}.pr5{padding-right:5px}.pr10{padding-right:10px}.pr15{padding-right:15px}.pr20{padding-right:20px!important}.pr30{padding-right:30px!important}.pr35{padding-right:35px!important}.pl0{padding-left:0!important}.pl5{padding-left:5px}.pl8{padding-left:8px}.pl10{padding-left:10px}.pl15{padding-left:15px}.pl20{padding-left:20px}.pl25{padding-left:25px}.pl28{padding-left:28px}.pl30{padding-left:30px!important}.pl33{padding-left:33px}.pl35{padding-left:35px}.pl40{padding-left:40px}.pl50{padding-left:50px}.pl60{padding-left:60px}.pr5{padding-right:5px}.pr10{padding-right:10px}.pr15{padding-right:15px}.pr20{padding-right:20px!important}.pr25{padding-right:25px!important}.pr30{padding-right:30px!important}.pr40{padding-right:40px}.padding5-10{padding:5px 10px;box-sizing:border-box}.padding5-20{padding:5px 20px;box-sizing:border-box}.padding10{padding:10px;box-sizing:border-box}.padding15{padding:15px;box-sizing:border-box}.padding20{padding:20px;box-sizing:border-box}.padding10-20{padding:10px 20px;box-sizing:border-box}.padding10-15{padding:10px 15px;box-sizing:border-box}.padding10-30{padding:10px 30px;box-sizing:border-box}.padding20-30{padding:20px 30px;box-sizing:border-box}.padding30{padding:30px;box-sizing:border-box}.padding30-20{padding:30px 20px;box-sizing:border-box}.padding40{padding:40px;box-sizing:border-box}.padding40-30{padding:40px 30px;box-sizing:border-box}.padding40-20{padding:40px 20px;box-sizing:border-box}.lineh-12{line-height:12px!important}.lineh-15{line-height:15px!important}.lineh-17{line-height:17px!important}.lineh-20{line-height:20px!important}.lineh-24{line-height:24px!important}.lineh-25{line-height:25px!important}.lineh-30{line-height:30px!important}.lineh-35{line-height:35px!important}.lineh-40{line-height:40px!important}.break_word{word-break:break-all;word-wrap:break-word}.break_word_firefox{white-space:pre-wrap!important;word-break:break-all}.pr{position:relative}.df{display:flex;display:-webkit-flex;display:-ms-flex}.flex1{flex:1}input::-ms-clear{display:none}::-webkit-scrollbar{width:7px;height:10px;background-color:#f5f5f5}.ant-modal-close{top:8px!important}.newContainer{min-height:100%;height:auto!important;height:100%;position:relative}.educontent{width:1200px;margin:0 auto;box-sizing:border-box}.newMain{margin:0 auto;min-width:1200px}.edu-txt-center{text-align:center!important}.edu-txt-left{text-align:left!important}.edu-txt-right{text-align:right!important}.edu-back-white{background-color:#fff}.edu-back-greyf5{background-color:#f5f5f5!important}.edu-back-skyblue{background:#f4faff}.edu-back-blue{background-color:#459be6!important}.edu-bg-light-blue{background:#f7f9fd;padding:5px}.color-red{color:red!important}.color-white{color:#fff!important}.color-dark{color:#05101a!important}.color-ooo{color:#000!important}.color-grey-name{color:#1a0b00!important}.color-grey-3{color:#333!important}.color-grey-eb{color:#ebebeb!important}.color-grey-c{color:#ccc!important}a.hoverLine:hover{text-decoration:underline}.color-grey-cd{color:#cdcdcd!important}.color-grey-d{color:#ddd}.color-grey-9{color:#999!important}a:hover{color:#6684fe}.color-grey-98{color:#989898!important}.color-grey-8{color:#888!important}.color-grey-6{color:#666!important}.color-grey-B2{color:#b2b2b2!important}.color-grey-B3{color:#b3b3b3!important}.color-grey-B4{color:#b4b4b4!important}.color-grey-74{color:#747a7f!important}a.color-grey-name:hover,a.color-dark:hover,a.color-grey-6:hover,a.color-grey-3:hover,a.color-ooo:hover{color:#2a61ff!important}.color-blue{color:#2a61ff!important}.color-blue-file{color:#4598fa!important}.color-blue_4C{color:#4cacff!important}.color-orange{color:#ff6800!important}.color-orange-tip{color:#ff954c!important}.color-orange-tips{color:#ff8204!important}a.color-orange:hover,a.color-orange-tip:hover{color:#f06200!important}.color-yellow{color:#efc003!important}.color-yellow-ff{color:#ffa800!important}.color-green{color:#29bd8b!important}a.color-green:hover{color:#28ac7f!important}.radius{border-radius:50%}.radius4{border-radius:4px}.ring-green{width:18px;height:18px;display:block;border-radius:50%;background-color:#29bd8b;text-align:center}.ring-op-green{width:18px;height:18px;display:block;border-radius:50%;background-color:rgba(41,189,139,.6);text-align:center}.ring-grey{width:18px;height:18px;line-height:18px;display:block;border-radius:50%;background-color:rgba(204,204,204,.5);text-align:center}.ring-blue{width:18px;height:18px;display:block;border-radius:50%;background-color:#4cacff;text-align:center}.input-flex-35{flex:1;height:35px;padding:5px;box-sizing:border-box}.input-flex-40{flex:1;height:40px;padding:5px;box-sizing:border-box}.input-100-45{width:100%;height:45px;padding:5px;box-sizing:border-box}.input-60-40{width:60%;height:40px;padding:5px;box-sizing:border-box}.greyInput{background-color:#f5f5f5;outline:none}.greyInput:focus{background-color:#fff;border:1px solid #ddd}.winput-240-40{width:240px;height:40px;padding:5px;box-sizing:border-box}.winput-120-35{width:120px;height:35px;padding:5px;box-sizing:border-box}.winput-100-130{width:100%;height:130px;padding:5px;box-sizing:border-box}.winput-100-150{width:100%;height:150px;padding:5px;box-sizing:border-box}.width100{width:100%!important}.width89{width:89%}.width50{width:50%}.width40{width:40%}.width45{width:45%}.width10{width:10%}.width20{width:20%}.width15{width:15%}a.edu-txt-w100,.edu-txt-w100{width:100px;display:inline-block;text-align:center}a.edu-txt-w80,.edu-txt-w80{width:80px;display:inline-block;text-align:center}.minH-440{min-height:440px}.minH-500{min-height:500px}.minH-560{min-height:560px}.minH-650{min-height:650px}.minH-670{min-height:670px}.over210{height:210px;overflow-y:auto}.over280{height:280px;overflow-y:auto}.bor-bottom-greyE{border-bottom:1px solid #eee!important}.bor-left-greyE{border-left:1px solid #eee!important}.bor-top-greyE{border-top:1px solid #eee!important}.bor-grey-e{border:1px solid #eee}.bor-red{border:1px solid #db0505!important}a.decoration{text-decoration:underline!important}.edu-menu-panel{position:relative;cursor:pointer}.edu-menu-list{position:absolute;padding:5px 0;box-shadow:0 2px 8px rgba(0,0,0,.2);display:none;width:120px;background:#fff;right:-5px;border-radius:0 0 4px 4px;color:#05101a;font-size:14px;z-index:9}.edu-menu-list li{width:100%;padding:0 15px;box-sizing:border-box;height:35px;line-height:35px;cursor:pointer}.edu-menu-list li a{width:100%;height:100%;display:block;color:#323232}.edu-menu-panel:hover i,.edu-menu-panel:hover{color:#4cacff}.edu-menu-panel:hover .edu-menu-list{display:block}.edu-menu-list li:hover{background:#4cacff}.edu-menu-list li:hover a{color:#fff!important}.ul-leftline:after{position:absolute;top:0;content:"";width:1px;background-color:#eee;height:100%;right:0}.overPart{width:240px;height:30px;position:absolute;right:0;top:-27px;background:0 0}.handler_bg{background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0ZDhlNWY5My05NmI0LTRlNWQtOGFjYi03ZTY4OGYyMTU2ZTYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NTEyNTVEMURGMkVFMTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NTEyNTVEMUNGMkVFMTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2MTc5NzNmZS02OTQxLTQyOTYtYTIwNi02NDI2YTNkOWU5YmUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NGQ4ZTVmOTMtOTZiNC00ZTVkLThhY2ItN2U2ODhmMjE1NmU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+YiRG4AAAALFJREFUeNpi/P//PwMlgImBQkA9A+bOnfsIiBOxKcInh+yCaCDuByoswaIOpxwjciACFegBqZ1AvBSIS5OTk/8TkmNEjwWgQiUgtQuIjwAxUF3yX3xyGIEIFLwHpKyAWB+I1xGSwxULIGf9A7mQkBwTlhBXAFLHgPgqEAcTkmNCU6AL9d8WII4HOvk3ITkWJAXWUMlOoGQHmsE45ViQ2KuBuASoYC4Wf+OUYxz6mQkgwAAN9mIrUReCXgAAAABJRU5ErkJggg==)no-repeat 50%}.handler_ok_bg{background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0ZDhlNWY5My05NmI0LTRlNWQtOGFjYi03ZTY4OGYyMTU2ZTYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDlBRDI3NjVGMkQ2MTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDlBRDI3NjRGMkQ2MTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDphNWEzMWNhMC1hYmViLTQxNWEtYTEwZS04Y2U5NzRlN2Q4YTEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NGQ4ZTVmOTMtOTZiNC00ZTVkLThhY2ItN2U2ODhmMjE1NmU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+k+sHwwAAASZJREFUeNpi/P//PwMyKD8uZw+kUoDYEYgloMIvgHg/EM/ptHx0EFk9I8wAoEZ+IDUPiIMY8IN1QJwENOgj3ACo5gNAbMBAHLgAxA4gQ5igAnNJ0MwAVTsX7IKyY7L2UNuJAf+AmAmJ78AEDTBiwGYg5gbifCSxFCZoaBMCy4A4GOjnH0D6DpK4IxNSVIHAfSDOAeLraJrjgJp/AwPbHMhejiQnwYRmUzNQ4VQgDQqXK0ia/0I17wJiPmQNTNBEAgMlQIWiQA2vgWw7QppBekGxsAjIiEUSBNnsBDWEAY9mEFgMMgBk00E0iZtA7AHEctDQ58MRuA6wlLgGFMoMpIG1QFeGwAIxGZo8GUhIysmwQGSAZgwHaEZhICIzOaBkJkqyM0CAAQDGx279Jf50AAAAAABJRU5ErkJggg==)no-repeat 50%}.-task-title{opacity:0;position:absolute;left:0;top:0;display:none;z-index:100000}.data-tip-down,.data-tip-left,.data-tip-right,.data-tip-top{position:relative;box-shadow:0 0 8px #000;background:#000;color:#fff;max-width:300px;word-wrap:break-word;text-align:center;border-radius:4px;padding:0 10px;border:1px solid #000;display:none}.data-tip-down:after,.data-tip-down:before,.data-tip-left:before,.data-tip-right:before,.data-tip-left:after,.data-tip-right:after,.data-tip-top:after,.data-tip-top:before{position:absolute;content:'';width:0;height:0}.data-tip-down:after,.data-tip-down:before{left:45%;top:-10px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:10px solid #000}.data-tip-down:before{top:-11px;border-bottom:10px solid #000}.data-tip-left:after,.data-tip-left:before{left:-10px;top:50%;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:10px solid #000}.data-tip-left:before{left:-12px;border-right:10px solid #000}.data-tip-right:after,.data-tip-right:before{right:-10px;top:50%;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:10px solid #000}.data-tip-right:before{right:-10px;border-left:10px solid #000}.data-tip-top:after,.data-tip-top:before{left:45%;bottom:-10px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:10px solid #000}.data-tip-top:before{bottom:-11px}.edu-pop-table{width:100%;border:1px solid #eee;border-bottom:none;background:#fff;color:#888;cursor:default}.edu-pop-table tr{height:40px}.edu-txt-center{text-align:center}.edu-txt-left{text-align:left}.edu-txt-right{text-align:right}.edu-pop-table tr th{color:#333;border-bottom:1px solid #eee}.edu-pop-table tr td{border-bottom:1px solid #eee}.edu-pop-table.head-color thead tr{background:#fafbfb}.edu-pop-table.head-color{border:none}.edu-pop-table.head-color tr:last-child td{border:none}.edu-pop-table.interval-td{border-bottom:1px solid #eee}.edu-pop-table.interval-td thead tr{background:#fafbfb}.edu-pop-table.interval-td tbody tr:nth-child(even){background:#fafbfb}.edu-pop-table.interval-td tbody tr td{border:none}.edu-pop-table-all{width:100%;border:1px solid #eee;background:#fff;color:#888;border-collapse:collapse}.edu-pop-table-all tr{height:30px}.edu-pop-table-all tr th{color:#333;border:1px solid #eee}.edu-pop-table-all tr td{border:1px solid #eee;padding:5px}img.edu-nodata-img{width:300px;margin:50px auto 20px;display:block;width:128px}.edu-nodata-p{font-size:20px;text-align:center;color:#999;border-bottom:none!important;box-sizing:border-box}.notice{height:25px;margin-left:150px}.edu-position-hide{position:absolute;top:15px;left:-20px;box-shadow:0 2px 8px rgba(146,153,169,.5);background:#fff;z-index:1001;padding:5px 0;z-index:999999}.edu-position-hide li a{display:inline-block;height:30px;width:100px;line-height:30px;text-align:center;font-size:12px!important}.edu-position-hide li a:hover{background:#f1f1f1;color:#05101a}.edu-position-hidebox i{color:#bcbcbc}.edu-position-hidebox i:hover{color:#4cacff}.edu-position-hidebox a{color:#05101a}.edu-position-hidebox:hover .edu-position-hide{display:block}.white-btn{text-align:center;cursor:pointer;display:inline-block;padding:0 8px;border:1px solid #ccc;color:#666;letter-spacing:1px;font-size:14px;height:26px;line-height:26px;border-radius:3px}a.white-btn.orange-btn{border:1px solid #ff7500;color:#ff7500!important}a.white-btn.orange-btn:hover{border:1px solid #f06200;color:#f06200!important}.defalutGreyBorder{display:block;padding:0 10px;border:1px solid #ccc;height:30px;line-height:30px;border-radius:4px}a.task-btn{cursor:pointer;display:inline-block;border:none;padding:0 12px;color:#fff;background:#cdcdcd!important;letter-spacing:1px;text-align:center;font-size:14px;height:30px;line-height:30px;border-radius:2px;font-weight:400}.user_default_btn{cursor:pointer;font-size:14px;display:block;width:120px;text-align:center;height:40px;line-height:40px!important;border-radius:4px;box-sizing:border-box}.user_orange_btn{color:#fff!important;background-color:#ff6800}.user_orange_btn:hover{background-color:#f06200}.user_grey_btn{color:#fff!important;background-color:#ccc;cursor:default}.user_private_btn{color:#646464!important;background-color:#fff;border:1px solid #989898}.user_private_btn:hover{color:#b2b2b2!important;border:1px solid #b2b2b2}.btn_auto{border-radius:5px;background:#fff;padding:0 18px}.edu-default-btn{display:block;border-radius:4px}a.edu-greenback-btn{padding:0 10px;background:#29bd8b;color:#fff!important;border:1px solid #29bd8b}a.edu-greenback-btn:hover{background-color:#28ac7f}a.edu-blueback-btn{padding:0 10px;background:#4cacff;color:#fff!important;border:1px solid #4cacff}a.edu-blueline-btn{padding:0 10px;color:#4cacff!important;border:1px solid #4cacff}a.edu-blueback-btn:hover{background-color:#459be6}a.edu-blueline-btn:hover{border:1px solid #459be6;color:#459be6!important}a.edu-orangeback-btn{background-color:#ff7500;color:#fff!important;border:1px solid #ff7500}a.edu-orangeback-btn:hover{background-color:#f06200}a.edu-orangeline-btn{color:#ff7500!important;border:1px solid #ff7500}a.edu-orangeline-btn:hover{color:#f06200!important;border:1px solid #f06200}a.edu-greyline-btn{padding:0 10px;background:#fff;color:#666!important;border:1px solid #eaeaea;line-height:33px;height:33px}a.edu-greyline-btn:hover{border:1px solid #b2b2b2;color:#b2b2b2!important}.defalutCancelbtn{display:block;border:1px solid #cdcdcd;background-color:#fafafa;color:#999!important;width:120px;text-align:center;height:30px;line-height:30px;border-radius:2px;width:130px;height:40px;background:rgba(77,124,254,0);border:1px solid #4cacff;border-radius:4px;line-height:40px;font-size:16px;font-family:MicrosoftYaHei;font-weight:400;color:#4cacff!important}.defalutCancelbtn:hover{border:1px solid #b2b2b2;color:#b2b2b2!important}.defalutSubmitbtn{display:block;border:1px solid #4cacff;background-color:#4cacff;color:#fff!important;width:120px;text-align:center;line-height:40px;border-radius:2px;width:130px;height:40px;background:#4cacff;border-radius:4px;font-size:16px;font-family:MicrosoftYaHei;font-weight:400;color:#fff}.delectshixuncdbtn{display:block;border:1px solid #cdcdcd;background-color:#fafafa;color:#999!important;width:120px;text-align:center;height:30px;line-height:30px;border-radius:2px;width:130px;height:40px;background:rgba(77,124,254,0);border-radius:4px;line-height:40px;font-size:16px;font-family:MicrosoftYaHei;font-weight:400}.defalutSubmitbtn:hover{background-color:#459be6;border:1px solid #459be6}a.task-btn-orange{background:#4cacff!important;color:#fff!important}a:hover.task-btn-orange{background:#459be6}.user_blue_btn{border:1px solid #4cacff;color:#4cacff!important}a.user_bluebg_btn{background-color:#4cacff;color:#fff}.pointer{cursor:pointer}.cdefault{cursor:default!important}.new_li .markdown-body ul>li,.markdown-body ul>li{list-style-type:disc!important;margin-bottom:0!important}.new_li .markdown-body ol>li,.markdown-body ol>li{list-style-type:decimal!important}.new_li li{margin-bottom:0!important}.markdown-body p{font-size:16px!important}.task-popup{width:30%;background:#fff;border:1px solid #e8e8e8;border-radius:10px}.task-popup-text-center{text-align:center;color:#333}.task-popup-title{border-bottom:1px solid #eee;padding:0 15px;text-align:center;box-sizing:border-box;line-height:70px;height:70px;border-radius:10px 10px 0 0;font-size:16px;font-weight:700}.task-popup-content{padding:15px}.task-popup-submit{margin:0 auto 15px;width:160px}.task-popup-sure{margin:0 auto 15px;width:54px}.task-popup-OK{margin:15px auto;text-align:center}#closeIcon{position:absolute;color:#fefefe}.task_popup_con{padding:20px}.alert{padding:10px;border:1px solid transparent;text-align:center}.alert-orange{background-color:#fff9e9;border-color:#f6d0b1;color:#ee4a20}.pages_user_show a:hover,.pages_user_show li.active a{background-color:#4cacff;color:#fff;border:1px solid #4cacff}.pages_user_show a{border-radius:2px;display:inline-block;border:1px solid #d1d1d1;background-color:#fff;color:#888;float:left;text-align:center;padding:2px 10px;line-height:1.9;margin:0 5px}.pages_user_show li{float:left;list-style-type:none}.pages_user_show ul li{list-style-type:none!important}.pages_user_show ul li a{color:#888}.leftPanel{width:22%;float:left}.leftPanel li.nav{padding:10px 0;box-sizing:border-box}.leftPanel li.nav a{padding-left:40px;display:block;width:100%;box-sizing:border-box;border-left:2px solid #fff;height:24px;line-height:24px}.leftPanel li.nav.active a{border-left:2px solid #4cacff}.rightPanel{width:78%;float:right}.ringauto{width:20px;height:20px;line-height:20px;text-align:center;border-radius:50%;background-color:#f4faff;margin-right:5px}#ajax-indicator{position:absolute;background-color:#eee;border:1px solid #bbb;top:35%;left:40%;width:20%;font-weight:700;text-align:center;padding:.6em;z-index:100000;opacity:.5}html>body #ajax-indicator{position:fixed}#ajax-indicator span{color:#fff;color:#333;background-position:0 40%;background-repeat:no-repeat;background-image:url(/images/loading.gif);padding-left:26px;vertical-align:bottom;z-index:100000}.bestChoose.active{color:#4cacff}.edu-filter-cir-grey{color:#666!important;width:auto;padding:0 15px;font-size:14px!important;text-align:center;background:#f3f3f3;border-radius:10px;display:block;height:25px;line-height:25px}.edu-filter-cir-grey:hover{background:#4cacff;color:#fff!important}.edu-filter-cir-grey.active{background:#4cacff;color:#fff!important;font-size:14px!important}.with10{width:10%;box-sizing:border-box}.with13{width:13%;box-sizing:border-box}.with14{width:14%;box-sizing:border-box}.with15{width:15%;box-sizing:border-box}.with20{width:20%;box-sizing:border-box}.with22{width:22%;box-sizing:border-box}.with23{width:23%;box-sizing:border-box}.with25{width:25%;box-sizing:border-box}.with30{width:30%;box-sizing:border-box}.with35{width:35%;box-sizing:border-box}.with40{width:40%;box-sizing:border-box}.with45{width:45%;box-sizing:border-box}.with49{width:49%;box-sizing:border-box}.with50{width:50%;box-sizing:border-box}.with52{width:52%;box-sizing:border-box}.with48{width:48%;box-sizing:border-box}.with60{width:60%;box-sizing:border-box}.with65{width:65%;box-sizing:border-box}.with70{width:70%;box-sizing:border-box}.with75{width:75%;box-sizing:border-box}.with78{width:78%;box-sizing:border-box}.with80{width:80%;box-sizing:border-box}.with100{width:100%}.transform-90{transform:rotate(-90deg);-ms-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-webkit-transform:rotate(-90deg);-o-transform:rotate(-90deg)}.btn-cir{display:inline-block;padding:0 5px;border-radius:25px;line-height:20px;font-size:12px}.btn-cir-red{background:red;color:#fff;font-weight:400;cursor:default}.btn-cir-red:hover{background:red;color:#fff!important}.edu-filter-btn{cursor:default;display:inline-block;padding:0 9px;color:#666;background:#fff;text-align:center;border-radius:10px;font-size:12px;height:18px;line-height:18px}.edu-filter-btn-red{border:1px solid #dd1717;color:#dd1717}.edu-filter-btn-green{border:1px solid #29bd8b;color:#29bd8b!important}.edu-activity-orange{background-color:#ff6800;color:#fff!important;cursor:pointer;border:1px solid #ff6800}.edu-activity-blue{background-color:#4cacff;color:#fff!important;cursor:pointer;border:1px solid #4cacff}.edu-activity-green{background-color:#29bd8b;color:#fff!important;cursor:pointer;border:1px solid #29bd8b}.color656565{color:#656565}.colorC8161D{color:#c8161d}.bor-reds{border:1px solid red!important;border-radius:4px;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.footer_con-p{color:#898989!important}.markdown-body{text-align:justify;word-break:break-all;width:100%}.RightPaneDrawer .ant-drawer-content{background:#070f1a;overflow:hidden!important}.deletebuttom{border:transparent}.RightPaneDrawer .jupyter_data_list{max-height:340px}.privateTag{display:block;padding:0 6px;border-radius:12px;border:1px solid #2fc25b;height:18px;line-height:18px;font-size:12px;margin-left:10px;color:#2fc25b}.privateTag.red{color:#ff6832;border:1px solid #ff6832}.head-nav::-webkit-scrollbar{display:none}.head-nav{text-align:center;height:58px;box-sizing:border-box;text-overflow:ellipsis;white-space:nowrap;flex:1;white-space:nowrap;overflow-y:auto;display:flex;align-self:flex-start}.head-nav li{height:58px;line-height:58px;cursor:pointer;font-size:16px}.head-nav a{color:#fff;margin:0 20px}.head-nav li a:hover,.head-nav li.active a{color:#5091ff}.head-right{box-sizing:border-box;height:60px;display:flex;align-items:center}.educontent .icon{padding-left:0!important;padding-top:0!important;padding-bottom:0!important}em.vertical-line{display:inline-block;width:2px;background:#999;height:10px}.newslight{display:block;width:5px;height:5px;border-radius:50%;left:25px;top:3px;position:absolute;background:#ff6800}.rateTrangle{display:block;border-width:8px;position:absolute;top:-8px;left:35px;border-style:dashed solid dashed dashed;border-color:transparent transparent #fff transparent;font-size:0;line-height:0;z-index:2}#commentsStar{height:30px;padding-top:7px;box-sizing:border-box}.search-all{width:216px;margin:0 auto;position:relative;background-color:#24292d}.search-all .search-clear{font-size:14px;display:inline-block;width:50px;text-align:center;color:#656565;line-height:60px;cursor:pointer}.footercon{border-bottom:1px solid #47494d}.inner-footernav{width:560px;margin:0 auto}.inner-footernav li{float:left;height:50px;width:80px;text-align:center}.inner-footernav li a{width:100%;text-align:center;line-height:50px;color:#888}.inner-footer_con{width:1200px;margin:0 auto}.intermediatecenter{width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center}.footer_con-p{color:#888;margin-top:10px}.banner{width:100%;height:345px;position:relative;overflow:hidden;border-radius:10px}.banner .img{position:absolute;left:0;top:0}.banner .img li{float:left;width:1200px;height:345px}.banner .img li a{display:block;width:100%;height:100%}.banner .img li img{width:100%;height:345px}.banner .num{position:absolute;width:100%;bottom:30px;left:0;text-align:center;font-size:0}.banner .num li{width:7px;height:7px;background:rgba(225,225,225,.3);border-radius:50%;display:inline-block;margin:0 5px;cursor:pointer}.banner .num li.on{width:12px;border-radius:8px}.moreitem{position:absolute;right:5px;top:35px;height:15px;color:#656565}.square-list{width:100%;box-sizing:border-box;margin-top:20px;flex-wrap:wrap;display:flex}.square-Item{position:relative;width:280px;margin-right:26px;margin-bottom:26px;float:left;border-radius:6px;background-color:#fff;box-shadow:0 0 12px rgba(0,0,0,.1)}.square-Item:hover{box-shadow:0 0 12px rgba(0,0,0,.3)}.square-Item:hover .closeSquare{display:block}.square-Item:nth-child(4n+0){margin-right:0}.square-Item .square-img{display:block;width:100%}.square-Item .square-img img{width:100%;border-radius:6px 6px 0 0;vertical-align:bottom;height:210px}.square-main{padding:15px 20px;box-sizing:border-box}.course-bottom{height:48px;padding:10px 0;box-sizing:border-box}.squareIconSpan{line-height:25px}.square-Item.smallSquare{width:32%;margin-right:1.33%;margin-bottom:10px;min-height:210px;border:none}.square-Item.smallSquare:hover{bottom:0;box-shadow:0 0 12px rgba(0,0,0,.1)}.smallSquare:nth-child(3n+0){margin-right:0}.partimg{height:180px;width:100%;border-radius:6px 6px 0 0}.tag-green{position:absolute;left:10px;bottom:90px}.tag-green .tag-name{display:block;width:auto;background:rgba(0,0,0,.56);border:1px solid rgba(255,255,255,.56);border-radius:3px;font-size:12px;background-size:100% 100%;padding:0 8px;color:#fff;float:left}.tag-orange{position:absolute;right:0;top:12px}.tag-orange .tag-name{display:block;width:auto;background-color:#ff6800;background-size:100% 100%;padding:0 8px;color:#fff;float:left;height:28px;line-height:28px;border-top-left-radius:4px;border-bottom-left-radius:4px}.user_navlist{position:absolute;left:0;width:160px;top:0;height:100%}.user_navlist_black{position:relative;width:100%;height:100%;border-radius:8px 0 0 8px;background:rgba(0,0,0,.8)}.user_navlist_white{position:absolute;left:160px;background:#fff;width:622px;min-height:345px;top:0;z-index:1;display:none;padding:0 30px;box-sizing:border-box;box-shadow:0 0 10px rgba(76,76,76,.2);z-index:99}.user_navlist_white a{color:#989898;margin-right:15px;font-size:14px;display:block;float:left;height:30px;line-height:30px}.user_navlist_white a:hover{color:#4cacff}.headIcon{height:100%;box-sizing:border-box;margin:0!important}.black_nav_list{padding:4px 0;box-sizing:border-box;height:100%}.black_nav_list li{line-height:40px;height:40px;color:#fff;cursor:pointer}.black_nav_span{display:block;margin:0 20px;border-bottom:1px solid #4b4b4b;padding-left:8px;color:#fafafa}.welcome_shixun_index:last-child .black_nav_span{border-bottom:none}.black_nav_list li:hover{background:#fff}.black_nav_list li:hover .black_nav_span{color:#05101a!important}.black_nav_list li:hover>a{color:#4cacff!important}.black_nav_list li:hover .user_navlist_white{display:block}.navlistpanel-line{border-bottom:1px solid #ebebeb}.navlistpanel-line:last-child{border-bottom:none}.little-title{width:100%;height:20px;line-height:20px;color:#05101a;font-size:15px;margin-bottom:8px}.ranking{text-align:center;margin-top:40px}.grade{width:auto;display:inline-block}.grade li{float:left;margin:0 10px;width:60px}.ranking a img{width:60px;height:60px;border-radius:50%;box-shadow:0 0 12px rgba(0,0,0,.2)}.mentor-ranking{background-color:#efefef;background-size:100% 100%}.huangguan{position:absolute;top:-30px;left:13px}#log_reg_content{border-radius:5px;background:#fff;width:100%;text-align:center;position:absolute;top:165px;left:0;padding:40px 30px;box-sizing:border-box}.log_nav{border-bottom:1px solid #eaeaea}.log_nav li{float:left;text-align:center;font-size:16px;padding-bottom:15px;cursor:pointer}.log_nav li.active{border-bottom:2px solid #459be5}.log-botton{width:100%;text-align:center;color:#fff!important;display:block;background:#cbcbcb;height:45px;line-height:45px;border-radius:4px;letter-spacing:2px;cursor:pointer}.log-botton:hover{color:#fff!important}.log-botton.active{background:#4cacff}.gain-code{width:48%;display:block;float:right;height:45px;line-height:45px;text-align:center;background:#cbcbcb;color:#fff!important;border-radius:4px;cursor:pointer}.gain-code:hover{color:#fff!important}.user-main-half{width:100%;height:465px;background:#fff;margin-bottom:20px;position:relative}.user-headImg{width:100%;height:160px;background-image:url(/images/educoder/userhead.jpg);position:absolute;width:100%;left:0;top:0}.user-headCon{position:absolute;width:100%;left:0;top:0;min-height:465px}.inline{width:auto;display:inline-block}.headtab{width:188px;height:60px;text-align:center}.headtab span,.headtab a{display:block;width:100%;text-align:center}.headtab span{color:#989898;font-size:14px}.headtab a{color:#fff;font-size:24px}.headphoto{text-align:center;background:#fff;width:115px;height:115px;padding:3px;border-radius:50%;position:relative;float:left;margin-top:19px;box-sizing:border-box}.headphoto img{width:109px;border-radius:50%;height:109px}.headphoto-black{display:none;cursor:pointer;position:absolute;top:3px;left:3px;width:109px;height:109px;text-align:center;line-height:112px;border-radius:50%;background-color:rgba(0,0,0,.3);color:#fff}.myName{display:block;width:auto;color:#05101a;font-size:24px;height:28px;line-height:28px;margin-top:5px}.mypost{color:#686868;font-size:14px;display:block;width:auto;height:20px;line-height:20px}.mysign-span{margin:0 auto;color:#05101a;font-size:14px;display:block;width:280px;cursor:pointer;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mysign-input{margin:0 auto;color:#05101a;font-size:14px;width:280px;height:28px;border:none;outline:none;text-align:center}.v-h-line{display:block;width:1px;height:40px;background-color:#999;margin-top:12px}.user-bar{position:relative;width:100%;height:8px;background-color:#cdcdcd;border-radius:4px}.user-bar p{position:absolute;left:0;top:0;height:100%;background-color:#4cacff;border-radius:4px}.publicpart{position:absolute;left:1px;top:1px;width:0;height:0;border-left:80px solid #4cacff;border-bottom:80px solid transparent;z-index:1}.publicpart.orangeBlack{border-left:80px solid #ff6800}.smalltrangle{display:block;position:absolute;left:1px;top:1px;border-left:25px solid #fff;border-bottom:25px solid transparent;z-index:2}.publicword{transform:rotate(-45deg);text-align:center;color:#fff;font-size:14px;display:block;position:absolute;width:50px;left:0;z-index:3;top:15px}.closeSquare{position:absolute;width:100%;left:0;top:0;text-align:center;background-color:rgba(0,0,0,.5);height:100%;z-index:5;display:none;cursor:default}.substance{padding:40px 40px 0;box-sizing:border-box;text-align:center;border-bottom:1px solid #eaeaea;min-height:241px}.subName{line-height:20px;height:40px;text-align:center;color:#1a0b00;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}.secondNav li{color:#676767;margin:0 20px;float:left}.secondNav li a:hover{color:#4cacff}.secondNav li.active a{color:#4cacff}.dataBank_Item{margin-bottom:3px;width:100%;border-bottom:1px solid #eee;padding:17px 37px 17px 20px;box-sizing:border-box;background:#fff;display:flex;cursor:pointer}.dataBank_Item:hover{box-shadow:0 0 15px rgba(76,76,76,.2)}.dataBank_Item:last-child{border:none}.dataItemLeft{margin-right:20px;width:20px}.dataItemRight{flex:1}.dataTitle{color:#05101a;display:block;float:left;max-width:400px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.itembottom span.bottomspan{display:block;width:200px;text-align:left}.search_course_list{height:150px;overflow-y:auto}.search_course_list li{height:30px}.userdata{width:622px;margin:0 auto;background:#fff;margin-bottom:80px;padding:40px;box-sizing:border-box;border-radius:4px}.shaiTitle{display:block;padding-right:20px}.shaiContent li.shaiItem.active{background-color:#4cacff!important;color:#fff!important}.shaiContent li.shaiItem{padding:3px 15px;float:left;border-radius:4px;color:#4c4c4c;cursor:pointer;margin-right:15px;display:block}.shaiContent li.shaiItem:hover{background-color:#4cacff!important;color:#fff!important}.shaiAllItem{max-width:1138px}.subshaicontent{display:none;box-sizing:border-box;position:absolute;width:100%;top:33px;left:0;background-color:#fff;box-shadow:0 1px 4px rgba(76,76,76,.2);padding:0 20px;z-index:99999;border-radius:4px;max-height:800px;overflow-y:auto}.subshaicontent-part{border-bottom:1px solid #eee}.subshaicontent-part:last-child{border-bottom:none}.subshaicontent a:hover,.subshaicontent a.active{color:#4cacff}.subshaicontent a{float:left;margin-right:20px;color:#999;cursor:pointer}.search-new{width:248px;height:32px;position:relative}.search-span{display:block;position:absolute;width:100%;height:100%;left:0;top:0;background-color:#f4f4f4;border:1px solid #eaeaea;border-radius:4px;z-index:1}.search-new-input{height:32px;padding-left:5px;width:225px;border:none;box-sizing:border-box;background:0 0;outline:none;position:absolute;left:0;top:1px;z-index:2}.search-new img,.search-new a{cursor:pointer;position:absolute;right:2px;top:2px;z-index:2}.search-new a{top:0}.search-new-input:focus+.search-span{background-color:#fff}.controlblue{width:0;height:15px;background-color:#4cacff;border-radius:7px;position:absolute;left:0;top:0;z-index:1}.controlring{width:13px;height:13px;border-radius:50%;background-color:#fff;position:absolute;left:1px;top:1px;z-index:2}@font-face{font-family:panmen-webfont;src:url(../fonts/panmen-webfont.ttf)}.shixunDetail_top{width:100%;background-image:url(/images/educoder/shixun-detail.jpg);height:240px;justify-content:center;align-items:center;display:-webkit-flex;background-size:cover;background-position:50%;background-repeat:no-repeat}.task-item{margin-top:30px;padding-bottom:30px;border-bottom:1px solid #eee}.task-item:last-child{border-bottom:none}.recomments{margin-bottom:20px}.recomments:first-child{margin-top:0}.recomments:last-child{margin-bottom:0;border:none;padding-bottom:0}.url-input{border:none;padding:0;font-size:12px;color:#999;outline:none}.TPMtaskName{max-width:500px}.recomment-name{max-width:222px;display:block}.task-colspan{min-width:25%;text-align:left;display:block;float:left;color:#999}.challenge_nav{padding:20px 20px 0;border-bottom:1px solid #eee}.challenge_nav li{width:auto;float:left;margin-right:20px;position:relative}.challenge_nav li.active:after{position:absolute;content:'';width:76%;background-color:#4cacff;height:3px;border-radius:2px;left:25%;bottom:0}.challenge_nav li a{display:block;width:100%;padding-bottom:20px}.add_choose_type{width:60px;height:20px;line-height:19px;border-radius:2px;background-color:#eaeaea;color:#999!important;display:block;float:left;text-align:center;margin-top:4px}.task_tag_span{float:left;padding:0 10px;background-color:#eee;color:#999;border-radius:2px;margin-right:10px;margin-bottom:8px}.task_tag_span span{float:left}.task_tag_span a{font-size:18px;margin-left:5px;float:left;line-height:28px;height:28px;cursor:pointer}.task_tag_span a:hover{color:#666!important}.show_content_grey{padding:10px 15px;background-color:#f4f4f4;color:#05101a;text-align:justify;word-break:break-all;border-radius:4px;width:100%;box-sizing:border-box}.empty{background:#494a4c;display:inline;margin:0 2px;padding:0 3px}.option-item{border:1px solid #e2e2e2}.option-item{display:block;width:38px;height:38px;text-align:center;line-height:38px;border-radius:4px;cursor:pointer}.check-option-bg{background:#ff7500;color:#fff!important;border:1px solid #ff7500}.position-delete{position:absolute;right:-22px;top:12px;cursor:pointer}.position-delete:hover i{color:#4cacff!important}.rankings li{line-height:40px;height:40px}.rankingindex{width:24px;text-align:center}.collaborators-item{border-bottom:1px solid #eee;cursor:default;padding-top:30px;padding-left:20px}.collaborators-item:last-child{border-bottom:none}.upload_select_box{width:100%;box-sizing:border-box;height:240px;overflow-y:auto;padding:10px;background:#f4faff;color:#333}.pullreques_name{width:120px;text-align:left;margin-right:10px}.pullreques_pull_txt{display:block;margin-left:10px;max-width:640px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.versionFileList li{border-bottom:1px solid #eee}.versionFileList li:last-child{border-bottom:none}.old{background:#ffecec}.old:hover{background:#fffaf1}.new{background:#eaffea}.new:hover{background:#fffaf1}.pathNavLine{position:absolute;bottom:-8px;width:100%}.path-nav li{float:left;padding:0 30px;height:42px}.path-nav li a{color:#fff;font-size:16px;display:block;height:40px}.path-nav li.active a{border-bottom:3px solid #4cacff;color:#4cacff}.subhead{width:100%;margin-bottom:40px;background-size:100% 100%;background-image:url(/images/educoder/path-detail.jpg);height:240px;justify-content:center;align-items:center;display:-webkit-flex;background-size:cover;background-position:50%;background-repeat:no-repeat}.subhead_content{width:1200px;margin:0 auto}.pathInfo li{text-align:center;float:left;margin-right:30px}.pathInfo li span{display:block}.produce-content{padding:40px 20px;background-color:#fff;box-sizing:border-box}.lesson-saved-list-item{border-bottom:1px solid #ebebeb;padding:37px 0}.title-line{padding:0 20px}.paragraph{height:50px;padding:10px 20px 10px 47px;box-sizing:border-box}.paragraph:hover{background-color:#f0f8ff}.lesson-saved-list-item:last-child{border:none}.click_add{text-align:center;height:90px;line-height:90px;background-color:#fff;border-top:1px solid #ebebeb;cursor:pointer}.mustlearn{padding:40px 25px}.teacherTeam{padding:40px 25px 0}.teacherTeamItem{border-bottom:1px solid #eaeaea;padding:40px 0}.teacherTeamItem:first-child{padding-top:0!important}.teacherTeamItem:last-child{border:none}.addTeamMember{height:70px;text-align:center;line-height:70px}.adding-stage-item{padding:0 20px 20px 50px;position:relative}.colseThispart{position:absolute;right:-6px;top:-6px;z-index:2;line-height:15px}.progressRing{display:block;width:16px;height:16px;float:left;position:relative;z-index:1}.progressRing-over{color:#459be6;position:absolute;top:-10px}.progressRing-part{color:#b3dcff;position:absolute;top:-10px}.myProgressNav{width:100%;position:relative;height:10px;border-radius:5px;background-color:#eaeaea}.myProgressGreen{position:absolute;top:0;left:0;border-radius:5px;height:100%;background-color:#29bd8b}.lesson-saved-list-item .title-line .edit:hover,.lesson-saved-list-item .title-line .delete:hover{color:#ff7500!important}li.li-width63{width:63%;text-align:left}.courseHead{width:100%;margin-bottom:40px;background-size:100% 100%;background-image:url(/images/educoder/courtailsbdpicture.jpg);height:240px;justify-content:center;align-items:center;display:-webkit-flex;background-size:cover;background-position:50%;background-repeat:no-repeat}.invite-tip{position:absolute;top:-5px;right:140px;color:#fff;box-sizing:border-box;width:170px;text-align:center;border-radius:2px;background-color:rgba(5,16,26,.6);z-index:5000}.inviteTipbtn a{font-size:14px;width:100%;height:30px;line-height:30px;display:block;color:#747a7f;background-color:rgba(5,16,26,.4)}.inviteTipbtn a:hover{color:#4cacff!important}.top-black-trangle{display:block;border-width:8px;position:absolute;top:-16px;right:4px;border-style:dashed solid dashed dashed;border-color:transparent transparent rgba(5,16,26,.6)transparent;font-size:0;line-height:0}.loadMore{width:100%;background-color:#fff;color:#4cacff!important;text-align:center;display:block;letter-spacing:1px;box-sizing:border-box;height:110px;line-height:110px}.activity-left-name{display:block;max-width:126px;float:left}.panel-inner-fourm{padding:15px 20px;border-bottom:1px solid #eee}.panel-inner-fourm:hover{background:#eff9fd}.resources{width:100%!important;padding:15px;float:left;box-sizing:border-box;border-top:1px solid #eee}.resources:last-child{border-bottom:none}#sourceTag li{font-size:12px;color:#4e7a9b;background-color:#e5f3ff;padding:0 4px;height:20px;line-height:20px;margin-left:5px;display:inline-block;cursor:pointer}#sourceTag li a{color:#4e7a9b!important}#sourceTag li.active{background-color:#4cacff;color:#fff}#sourceTag li.active a{background-color:#4cacff;color:#fff!important}.new-info{height:18px;min-width:18px;line-height:18px;padding:0 2px;box-sizing:border-box;text-align:center;background-color:#ff6800;color:#fff;border-radius:30px;display:block;position:absolute;right:40px;top:13px;font-size:12px}.ridingNav li{float:left;margin:0 20px;color:#999;font-size:16px;height:60px;line-height:60px;position:relative}.ridingNav li a{display:block;width:100%;height:100%;color:#999}.ridingNav li.active a{color:#05101a}.ridingNav li.active:after{content:'';position:absolute;bottom:0;width:100%;height:2px;border-radius:1px;background-color:#05101a}.new-point{display:block;width:4px;height:4px;border-radius:50%;background-color:#ff6800}.ridinglist:hover{background-color:#f5f5f5}.ridinglist .ridinglist-sub{border-bottom:1px solid #f5f5f5;padding:25px 0;cursor:pointer}.ridinglist:last-child .ridinglist-sub{border-bottom:none}.private-item{padding:30px 30px 30px 25px;border-bottom:1px solid #f5f5f5;cursor:pointer}.private-item:hover{background-color:#f5f5f5}.private-item:last-child{border-bottom:none}.writeLetter_Info{position:relative;width:100%;height:260px;background-color:#f6f6f6;cursor:default;border-radius:3px}.writeLetter_text{width:100%;border:none;background-color:#f6f6f6;outline:none;height:100%;padding:5px 5px 30px;border:1px solid #eaeaea;box-sizing:border-box;resize:none}.longchar{position:absolute;background-color:#f6f6f6;bottom:1px;color:#999;right:10px}.writeLetter_text:focus+.longchar{background-color:#fff}.recently_person{position:absolute;width:100%;top:35px;max-height:300px;overflow-y:auto;border-radius:4px;box-shadow:0 1px 6px rgba(76,76,76,.2);left:0;z-index:1;background-color:#fff;cursor:pointer;display:none}.recently_item{padding:10px 20px}.recently_name{float:left;line-height:48px;display:block}.recently_item:hover{background-color:#f9f9f9}.private-list{min-height:660px;max-height:831px;overflow-y:auto;overflow-x:hidden}.private-list .private-part{padding-left:20px;cursor:pointer}.private-part:hover{background-color:#f5f5f5}.private-part.active{background-color:#f5f5f5}.privatePartName{max-width:70px;float:left}.newLetter{display:block;width:4px;height:4px;background-color:#ff6800;border-radius:50%;float:right}.part-line{padding:30px 20px 30px 0;border-bottom:1px solid #f5f5f5}.private-part:last-child .part-line{border:none}.dialogPanel{padding:0 20px;height:545px;overflow-y:auto}.letter-time{width:auto;padding:0 10px;background-color:#999;color:#fff;border-radius:10px;height:20px;line-height:20px}.OtherSide,.ThisSide{margin-top:30px}.OtherSide-info .trangle{position:absolute;left:-5px;top:10px;width:0;height:0;border-top:6px solid transparent;border-right:5px solid #f5f5f5;border-bottom:6px solid transparent}.OtherSide-info .sms{max-width:300px;padding:10px 15px;box-sizing:border-box;background-color:#f5f5f5;color:#666;border-radius:6px;text-align:justify}.OtherSide-info .sms img{max-width:80px;cursor:pointer}.ThisSide-info .sms p{line-height:20px}.sms{min-height:48px}.ThisSide .trangle{position:absolute;right:-5px;top:10px;width:0;height:0;border-top:6px solid transparent;border-left:5px solid #4cacff;border-bottom:6px solid transparent}.ThisSide-info .sms{max-width:300px;padding:10px 15px;box-sizing:border-box;background-color:#4cacff;color:#fff;border-radius:6px;text-align:justify}.ThisSide-info .sms p{line-height:20px}.ThisSide-info .sms img{max-width:80px;cursor:pointer}.action{color:#05101a}.announcement{padding:20px 0;border-bottom:1px solid #eee}.announcement:last-child{border-bottom:none}.part{width:540px;margin:0 auto 10px;background-color:rgba(25,27,32,.6)}.both{clear:both}.left{float:left}.right{float:right}.statistics_position{position:absolute;bottom:22px;left:0;width:100%;left:0}ul.count_ul li{width:300px;position:relative;float:left}ul.count_ul li span:first-child{display:block;width:100%;color:#989898;margin-bottom:20px}ul.count_ul li span:last-child{display:block;width:100%;color:#fff;font-size:24px;line-height:20px}ul.count_ul li:not(:last-child):after{position:absolute;content:'';width:1px;height:36px;background-color:#999;right:0;top:16px}.static_shadow{box-shadow:0 0 9px rgba(174,175,177,.2)}.subject_statistics_top{height:240px;width:100%;position:relative;background-image:url(/images/educoder/subject_statistics.jpg);background-size:100% 100%}#course_list{overflow-y:auto;background:#fff}.popup_tip_box{right:-160px;top:55px}.homepagePostSetting{display:none}.nodata{text-align:center;background-color:initial;border-color:transparent;color:#000}#attachments_fields span{font-size:12px;color:#ccc}.ml20mr20Color{color:#676767}.color-dark-grey{color:#999!important}.colorFFF{color:#fff!important}.left{float:left}.cancellation{position:absolute;top:62px;left:177px;color:#fff!important}.tabeltext-alignleft{text-align:center}.newshixun_tab_div{padding:0 22px 0 -5px;max-height:90px;overflow-y:auto}.newcolor-orange{color:#ff6800}.color4CACFF{color:#4cacff!important;font-size:16px}.color979797{font-size:14px;color:#979797!important;padding-left:2%}.marginTop{margin-right:33%;margin-top:20px}.shixuns_count{color:#05101a;font-size:14px}#shixun_search_form_div{margin-top:20px;margin-bottom:20px!important}.editormd-html-preview{width:100%!important;color:#323232!important}.mt4{margin-top:4px}.newMain,.newFooter{max-width:unset}.educontentTop{width:1178px!important}.inner-footer_con{width:auto}.careershover{margin-right:30px!important}.careershover ul li a{color:#000!important}.careershover ul li{height:35px!important;line-height:35px!important}.edu-menu-listnew{width:165px!important;top:60px;left:-42px}.edu-menu-listnew li a{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#000!important}.edu-menu-listnew li a:hover{color:#fff!important}.ListTableLine>p{margin-bottom:0;padding:0 30px;background-color:#f5f5f5;line-height:40px;height:56px;padding-top:8px;box-sizing:border-box}.ListTableLine>p span{float:left;color:#666;box-sizing:border-box}.ListTableLine li{min-height:48px;padding:10px 0;box-sizing:border-box;margin:0 30px;border-bottom:1px solid #eaeaea}.ListTableLine li>span{float:left;box-sizing:border-box}.ListTableLine .column-1{width:100px;text-align:left;padding-left:5px;box-sizing:border-box}.ListTableLine .column-1{width:100px;text-align:left;padding-left:5px;box-sizing:border-box}.ListTableLine .column-2{width:180px;text-align:center;padding-left:5px;box-sizing:border-box}.ListTableLine .column-3{width:330px;text-align:left;padding-left:5px;box-sizing:border-box}.ListTableLine .column-4{width:400px;text-align:left;padding-left:5px;box-sizing:border-box}#traningNav{padding:30px 30px 0 0}#traningNav>li{float:left;padding:0 30px 30px;font-size:16px}#traningNav>li>a,#traningNav li>i{color:#666!important;position:relative}#traningNav>li.active>a,#traningNav li.active>i{color:#05101a!important}#traningNav>li.active>a:after{content:'';position:absolute;width:64px;left:50%;margin-left:-32px;height:2px;background-color:#05101a;bottom:-35px}.gaugeOutfit{position:relative;height:70px;width:120px;background:linear-gradient(30deg,transparent 49.5%,#eee 50%,#eee 50%,transparent 50.5%)}.gaugeOutfit span:first-child{position:absolute;left:8px;top:46px}.gaugeOutfit span:last-child{position:absolute;right:8px;top:14px}.sustainLine td:not(:first-child):hover{background-color:rgba(41,189,139,.1);cursor:pointer}.packinput .ant-input{height:50px;width:749px;border-color:#e1edf8!important}.packinput{width:749px}.packinput .ant-input-group-addon .ant-btn{width:140px!important;font-size:18px;height:50px;background:#4cacff}.setissues{width:280px;height:50px;background:#4cacff;border-radius:4px;margin-left:15px}.pagetype li{color:#8f8f8f!important}.mbf10{margin-bottom:-10px}.PackageIndexNEIBanner{width:1200px;height:110px;background:#fff;box-shadow:0 2px 6px rgba(125,125,125,.26);border-radius:8px}.padding110{padding:39px 110px 0;box-sizing:border-box}.borderccc{border:1px solid #ccc}.input-100-40s{width:100%;padding:5px;box-sizing:border-box}.fafafas{background-color:#fafafa!important;height:40px}.fafafas:focus{background-color:#fff!important}.fafas .ant-input{background-color:#fafafa!important;height:40px}.fafas .ant-input:focus{background-color:#fff!important}.fafas .ant-input-group-addon .ant-btn{width:140px!important;font-size:14px;height:40px;background:#4cacff}.newFormbox .upload_filename{line-height:32px}.newFormbox .attachment span{line-height:23px}.newFormbox .attachment .remove-upload{line-height:28px}.newFormbox .attachment .icon-fujian{font-size:14px!important;line-height:14px;margin-top:9px}.newFormbox{height:20px}.defalutCancelbtns{display:block;border:1px solid #4cacff!important;background-color:#fff;color:#4cacff!important;width:130px;height:40px;text-align:center;line-height:40px;border-radius:4px}.defalutSubmitbtns{background-color:#4cacff;height:40px}.defalutSubmitbtnmodels{width:127px;height:30px;background-color:#4cacff}.padding200{padding:115px 200px 215px}.fontcircle{font-size:80px;display:inherit}.sumbtongs{font-size:24px;display:inherit;text-align:center}.terraces{font-size:16px;display:inherit;text-align:center;color:#999}.padding251{padding:0 245px}.ml17{margin-left:17px}.project-package-items{display:-webkit-flex;display:flex;flex-direction:row;margin:0!important;padding:20px;background:#fff;margin-bottom:0!important;box-shadow:none!important}.publicpart.orangeGreen{border-left:80px solid #29bd8b}.publicwords{left:3px;top:18px}.project-packages-list .project-package-items .item-image{width:100px!important}.height185{height:185px}.ContacttheTA{width:80px;height:26px;font-size:14px;line-height:26px;display:block;border:1px solid #4cacff!important;background-color:#fff;color:#4cacff!important;text-align:center;border-radius:4px}.ContacttheTAs{width:80px;height:26px;font-size:14px;line-height:24px;border:1px solid #fff!important;background-color:#4cacff;color:#fff!important;text-align:center;border-radius:4px}.ml28{margin-left:28px}.longboxs{font-size:16px;font-family:MicrosoftYaHei-Bold;font-weight:700;color:#05101a;border-left:4px solid #4cacff;padding-left:10px;margin-bottom:20px}.padding020{padding:0 20px 20px}.mtf3{margin-top:-3px}.task-btn-nebules{background:#fff!important;color:#4cacff!important;border:1px solid #4cacff!important;margin-left:20px;cursor:pointer;display:inline-block;padding:0 12px;letter-spacing:1px;text-align:center;font-size:14px;height:30px;line-height:30px;border-radius:2px}.packageabsolute{position:absolute;right:-16px;top:-7px}.relativef{position:relative}.homehove:hover .ptext{color:#4cacff!important}.homehove:hover .ContacttheTAs{display:block}.topsj{position:absolute;top:-6px}.bottomsj{position:absolute;bottom:-6px}.pagenoedits{margin-left:20px;color:#ccc}.pagemancenter{text-align:center}.ml0{margin-left:0}.tabelcli{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:850px;display:table-cell}.mtf10{margin-top:-10px}.padding26{padding:26px;box-sizing:border-box}.pd26{padding:26px}.pd30a0{padding:30px 30px 16px}.shaiContent li.shaiItem:hover span{color:#fff!important}.shaiContent li.shaiItem:hover i.iconfont{color:#4cacff!important}.detail_for_paragraph p{white-space:pre-wrap}.square-main p{margin-bottom:0!important}.markdown-body{text-align:justify;word-break:break-all}.RightPaneDrawer .ant-drawer-content{background:#070f1a;overflow:hidden!important}.deletebuttom{border:transparent}.RightPaneDrawer .jupyter_data_list{max-height:340px}.ant-btn-primary{text-shadow:none!important;box-shadow:none!important}.ant-notification{z-index:10001!important}input.ant-input-lg::placeholder{font-size:14px!important}p{margin-bottom:0!important}.toprightNum{position:absolute;right:0;top:4px;color:#999}.ant-input,.ant-input .ant-input-suffix{background-color:#fff!important}.has-error .ant-input{background-color:#fef1f0!important}.CodeMirror-merge{position:relative;white-space:pre}.CodeMirror-merge,.CodeMirror-merge .CodeMirror{min-height:50px}.CodeMirror-merge-2pane .CodeMirror-merge-pane{width:48%}.CodeMirror-merge-2pane .CodeMirror-merge-gap{width:4%}.CodeMirror-merge-3pane .CodeMirror-merge-pane{width:31%}.CodeMirror-merge-3pane .CodeMirror-merge-gap{width:3.5%}.CodeMirror-merge-pane{display:inline-block;white-space:normal;vertical-align:top}.CodeMirror-merge-pane-rightmost{position:absolute;right:0;z-index:1}.CodeMirror-merge-gap{z-index:2;display:inline-block;height:100%;-moz-box-sizing:border-box;box-sizing:border-box;overflow:hidden;position:relative;background:#515151}.CodeMirror-merge-scrolllock-wrap{position:absolute;bottom:0;left:50%}.CodeMirror-merge-scrolllock{position:relative;left:-50%;cursor:pointer;color:#d8d8d8;line-height:1}.CodeMirror-merge-copybuttons-left,.CodeMirror-merge-copybuttons-right{position:absolute;left:0;top:0;right:0;bottom:0;line-height:1}.CodeMirror-merge-copy{position:absolute;cursor:pointer;color:#ce374b;z-index:3}.CodeMirror-merge-copy-reverse{position:absolute;cursor:pointer;color:#44c}.CodeMirror-merge-copybuttons-left .CodeMirror-merge-copy{left:2px}.CodeMirror-merge-copybuttons-right .CodeMirror-merge-copy{right:2px}.CodeMirror-merge-r-inserted,.CodeMirror-merge-l-inserted{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAAGUlEQVQI12MwuCXy3+CWyH8GBgYGJgYkAABZbAQ9ELXurwAAAABJRU5ErkJggg==);background-position:0 100%;background-repeat:repeat-x}.CodeMirror-merge-r-deleted,.CodeMirror-merge-l-deleted{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAAGUlEQVQI12M4Kyb2/6yY2H8GBgYGJgYkAABURgPz6Ks7wQAAAABJRU5ErkJggg==);background-position:0 100%;background-repeat:repeat-x}.CodeMirror-merge-r-chunk{background:#9a6868}.CodeMirror-merge-r-chunk-start{}.CodeMirror-merge-r-chunk-end{}.CodeMirror-merge-r-connect{fill:#9a6868}.CodeMirror-merge-l-chunk{background:#eef}.CodeMirror-merge-l-chunk-start{border-top:1px solid #88e}.CodeMirror-merge-l-chunk-end{border-bottom:1px solid #88e}.CodeMirror-merge-l-connect{fill:#eef;stroke:#88e;stroke-width:1px}.CodeMirror-merge-l-chunk.CodeMirror-merge-r-chunk{background:#dfd}.CodeMirror-merge-l-chunk-start.CodeMirror-merge-r-chunk-start{border-top:1px solid #4e4}.CodeMirror-merge-l-chunk-end.CodeMirror-merge-r-chunk-end{border-bottom:1px solid #4e4}.CodeMirror-merge-collapsed-widget:before{content:"(...)"}.CodeMirror-merge-collapsed-widget{cursor:pointer;color:#88b;background:#eef;border:1px solid #ddf;font-size:90%;padding:0 3px;border-radius:4px}.CodeMirror-merge-collapsed-line .CodeMirror-gutter-elt{display:none} \ No newline at end of file +@charset "utf-8";.header{width:100%;height:51px;min-width:1200px;background:#171616}.animate{-webkit-transition:all .3s;-moz-transition:all .3s;-ms-transition:all .3s;-ms-transition:all .3s;transition:all .3s;backface-visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden}.footer{width:100%;height:100px;background-color:#fff}.footer_con-p{color:#888;margin-top:10px}.inner-footer_con{width:1200px;margin:0 auto}.panel-inner-fourm{padding:20px;border-bottom:1px solid #eee}.panel-inner-fourm:hover{background:#eff9fd}a.panel-list-title,.panel-list-title{display:inline-block;font-size:16px;color:#333;font-weight:400;max-width:82%}a:hover.panel-list-title{color:#ff7500}.panel-list-img{width:60px;height:60px;border-radius:100px}a.panel-name-small{display:inline-block;max-width:100px;color:#29bd8b;font-size:12px}.panel-lightgrey,.panel-lightgrey span{font-size:12px;color:#888}.panel-comment_item{width:100%}.panel-comment_item .t_area{color:#888}.comment_item_cont{padding:15px;border-bottom:1px solid #e3e3e3}.comment_item_cont .J_Comment_Face{height:50px}.comment_item_cont .J_Comment_Face img{width:50px;height:50px;border-radius:100px}.panel-comment_item .t_content{width:93%;margin-left:15px}.panel-comment_item a.content-username{font-size:14px;margin-right:15px;display:inline-block;max-width:100px;color:#888}.J_Comment_Info{height:20px;line-height:22px}.panel-comment_item .comment_orig_content{margin:10px 0;color:#999}.panel-comment_item .comment_orig_content .comment_orig_content{margin-top:0;color:#666}.panel-comment_item .comment_content{color:#666}.comment_content img{max-width:100%}.orig_reply{font-size:12px}.homepagePostReplyPortrait a img{border-radius:100px}.pages_user_show a:hover,.pages_user_show a.active{background-color:#fc7033;color:#fff;border:1px solid #fc7033}.pages_user_show a{display:inline-block;border:1px solid #d1d1d1;color:#888;float:left;text-align:center;padding:3px 10px;line-height:1.9;margin:0 5px}.pages_user_show li{float:left;list-style-type:none}.pages_user_show ul li{list-style-type:none!important}.pages_user_show ul li a{color:#888}.panel-form-label{display:inline-block;width:10%;min-width:90px;text-align:right;line-height:40px;font-weight:400}.panel-box-sizing{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;border-radius:3px}input.task-form-80,textarea.task-form-80,select.task-form-80,.task-form-80{padding:5px;width:80%;box-sizing:border-box}input.task-form-100,textarea.task-form-100,select.task-form-100,.task-form-100{padding:5px;width:100%}input.task-height-40,textarea.task-height-40,.task-height-40,select.task-height-40{height:40px}input.task-height-150,textarea.task-height-150,.task-height-150{height:150px}.handler_bg{background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0ZDhlNWY5My05NmI0LTRlNWQtOGFjYi03ZTY4OGYyMTU2ZTYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NTEyNTVEMURGMkVFMTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NTEyNTVEMUNGMkVFMTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2MTc5NzNmZS02OTQxLTQyOTYtYTIwNi02NDI2YTNkOWU5YmUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NGQ4ZTVmOTMtOTZiNC00ZTVkLThhY2ItN2U2ODhmMjE1NmU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+YiRG4AAAALFJREFUeNpi/P//PwMlgImBQkA9A+bOnfsIiBOxKcInh+yCaCDuByoswaIOpxwjciACFegBqZ1AvBSIS5OTk/8TkmNEjwWgQiUgtQuIjwAxUF3yX3xyGIEIFLwHpKyAWB+I1xGSwxULIGf9A7mQkBwTlhBXAFLHgPgqEAcTkmNCU6AL9d8WII4HOvk3ITkWJAXWUMlOoGQHmsE45ViQ2KuBuASoYC4Wf+OUYxz6mQkgwAAN9mIrUReCXgAAAABJRU5ErkJggg==)no-repeat 50%}.handler_ok_bg{background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0ZDhlNWY5My05NmI0LTRlNWQtOGFjYi03ZTY4OGYyMTU2ZTYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDlBRDI3NjVGMkQ2MTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDlBRDI3NjRGMkQ2MTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDphNWEzMWNhMC1hYmViLTQxNWEtYTEwZS04Y2U5NzRlN2Q4YTEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NGQ4ZTVmOTMtOTZiNC00ZTVkLThhY2ItN2U2ODhmMjE1NmU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+k+sHwwAAASZJREFUeNpi/P//PwMyKD8uZw+kUoDYEYgloMIvgHg/EM/ptHx0EFk9I8wAoEZ+IDUPiIMY8IN1QJwENOgj3ACo5gNAbMBAHLgAxA4gQ5igAnNJ0MwAVTsX7IKyY7L2UNuJAf+AmAmJ78AEDTBiwGYg5gbifCSxFCZoaBMCy4A4GOjnH0D6DpK4IxNSVIHAfSDOAeLraJrjgJp/AwPbHMhejiQnwYRmUzNQ4VQgDQqXK0ia/0I17wJiPmQNTNBEAgMlQIWiQA2vgWw7QppBekGxsAjIiEUSBNnsBDWEAY9mEFgMMgBk00E0iZtA7AHEctDQ58MRuA6wlLgGFMoMpIG1QFeGwAIxGZo8GUhIysmwQGSAZgwHaEZhICIzOaBkJkqyM0CAAQDGx279Jf50AAAAAABJRU5ErkJggg==)no-repeat 50%}img.edu-nodata-img{width:200px;margin:50px auto 20px;display:block}.edu-nodata-p{font-size:16px;text-align:center;color:#888;border-bottom:none!important}.user_bg_shadow{-webkit-box-shadow:0 0 8px 0 rgba(142,142,142,.1);-moz-box-shadow:0 0 8px 0 rgba(142,142,142,.1);box-shadow:0 0 8px rgba(142,142,142,.1)}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#ccc}input::-moz-placeholder,textarea::-moz-placeholder{color:#ccc}input::-moz-placeholder,textarea::-moz-placeholder{color:#ccc}input::-ms-input-placeholder,textarea::-ms-input-placeholder{color:#ccc}.btn-cir{display:inline-block;padding:0 5px;border-radius:25px;line-height:20px;font-size:12px}.btn-cir:hover{background:#fff;color:#333}.all_work_border{border:1px solid #4c515d}.btn-cir-red{background:red;color:#fff;font-weight:400}.btn-cir-red:hover{background:red}.btn-cir-orange{background:#ff7500;color:#fff;font-weight:400;border:1px solid #ff7500}.btn-top{display:inline-block;padding:0 5px;line-height:20px;font-size:12px;border-radius:3px}.btn-cir-big{background:#999;color:#fff;display:inline-block;padding:0 10px;border-radius:25px;line-height:25px;height:25px;font-size:12px}.panel-inner-icon{width:22px;height:22px;line-height:22px;border-radius:50%;background:#29bd8b;display:block;text-align:center}.panel-inner-icon{width:22px;height:22px;line-height:22px;border-radius:50%;background:#29bd8b;display:block;text-align:center}@keyframes ball-scale{0%{width:0;height:0}100%{width:80px;height:80px}}.shixun_work_div{overflow-y:auto;max-height:90px}html{height:100%}.w20_center{width:20px;text-align:center}.user-info{width:80px;height:100px;padding-top:15px}a.user-info-img{display:block;width:50px;height:50px;margin:0 auto}a.user-info-img img{border-radius:100px;border:2px solid #666}a.user-info-img img:hover{border:2px solid #888}a.user-info-name{display:block;font-size:16px;color:#fff;max-width:100px;margin:10px auto;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.leftnav-box{width:80px;height:60px;background:#292b3a;padding:10px 0;margin-bottom:2px}a.leftnav-box-inner{display:block;width:77px;border-left:3px solid #292b3a;background:#292b3a;text-align:center;padding:10px 0;color:#575f6c}a:hover.leftnav-box-inner,a.leftnav-active{border-left:3px solid #3498db;color:#fff!important}a:hover.leftnav-box-inner .btn-cir{background:#fff;color:#333}#tab_nav{height:42px;background:#fff;border-bottom:1px solid #eee}#tab_nav li{float:left;padding:0 30px;text-align:center;height:40px;line-height:40px}#tab_nav li a{font-size:14px}.tab_hover{border-bottom:2px solid #3498db;background:#fff;color:#3498db}.tab_hover a{color:#3498db!important}.undis{display:none}.dis{display:block}.tab-info{}.info-partly{display:block;box-flex:1;flex:1;-webkit-flex:1;position:relative}.task-popup-text-center{text-align:center;color:#333}.task-popup-title{border-bottom:1px solid #eee;padding:10px 15px}.task-popup-submit{margin:0 auto 15px;width:120px}.panel-form-label{display:inline-block;width:10%;min-width:90px;text-align:right;line-height:40px;color:#666}.panel-box-sizing{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.mb20{margin-bottom:20px}#game_task_pass img{cursor:pointer}.-fit{position:absolute;top:0;right:0;bottom:0;left:0}.-layout-v{display:flex;flex-direction:column;-webkit-flex-direction:column}.page--leftnav{position:fixed;top:0;left:0;right:0;z-index:9001;width:80px;height:100%;background:#282c37}.page--body{position:relative;margin-top:54px}.-flex{box-flex:1;flex:1;-webkit-flex:1}.split-panel.-fit{position:absolute}.split-panel{position:relative;overflow:hidden;min-height:200px;height:100%}.-stretch{align-items:stretch}.-layout{display:flex}.split-panel--first{overflow:hidden}.-relative{position:relative}.-bg-white{background-color:#eee}.-vertical{flex-direction:column;box-flex-direction:column;-webkit-flex-direction:column}.-layout-h{display:flex;flex-direction:row;box-flex-direction:row;-webkit-flex-direction:row}.-horizontal{flex-direction:row-reverse;box-flex-direction:row-reverse;-webkit-flex-direction:row-reverse}.-scroll{overflow:auto}.-flex-basic40{width:40%;box-flex:auto;flex:auto;-webkit-flex:auto}.-flex-basic50{width:60%;box-flex:auto;flex:auto;-webkit-flex:auto}.b-label{width:4px;cursor:ew-resize;background:#2b2b2b}.h-center{height:4px;cursor:ns-resize;background:#333}.-changebg{height:3px}.-bg-weightblack{background:#000}.-flex-basic70{box-flex:4 9 auto;flex:4 9 auto;-webkit-flex:4 9 auto;height:70%}.-flex-basic60{box-flex:2 1 auto;flex:2 1 auto;-webkit-flex:2 1 auto;height:30%}.-header-title{max-width:500px;font-weight:400}.-header-right{background:#333;border-radius:25px;padding:5px 15px;height:30px;position:absolute;right:10px;line-height:30px}.-bg-black{background:#2b2b2b;color:#f4f1ed}.-bg-darkblack{background:#1d1d1d;color:#fff}#blacktab_nav{height:40px;background:#292929}#blacktab_nav li{float:left;padding:0 50px;text-align:center;height:40px;line-height:40px}#blacktab_nav .add-webssh{position:relative}#blacktab_nav .add-webssh span{position:absolute;top:0;right:5px;color:#fff;cursor:pointer}#blacktab_nav li a{font-size:14px}#blacktab_nav li.code-file-tab{padding:0;width:120px;box-sizing:border-box;padding:0 15px}.code-flie-list{display:none;position:absolute;z-index:5;top:40px;background:#515151;width:300px;left:0;color:#fff}.blue-line{border-left:3px solid #199ed8!important;padding-left:5px}.codefile-all{max-height:122px;overflow-y:auto;overflow-x:hidden}.codefile-all p{text-align:left;cursor:pointer;height:22px;line-height:22px;margin-bottom:3px;padding-left:5px;border-left:3px solid #515151;width:273px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.codefile-all p:hover{background:#ccc;color:#333}.blacktab_hover a{color:#fff}.-task-ces-top{padding:5px 15px;background:#515151;color:#bfbfbf}.-task-ces-info-left{display:inline-block;width:100px;text-align:right}.page--over{position:fixed;top:0;left:80px;right:0;z-index:8000;height:100%;color:#fff}.-task-list-inner{background:#eff2f7;margin:10px;padding:5px}.-task-list-title{font-size:14px;color:#666;word-wrap:break-word;font-weight:400;max-width:80%}.greytab-inner{background:#fff}.blacktab-inner{background:#333}.task-padding16{padding:16px}@keyframes bounce-down{25%{transform:translateY(-10px)}50%,100%{transform:translateY(0)}}a.shixun-task-btn{display:inline-block;font-weight:700;border:none;padding:0 12px;color:#666;letter-spacing:1px;text-align:center;font-size:14px;height:30px;line-height:30px;border-radius:3px}.loading-center{text-align:center;align-items:center;justify-content:center}.center{vertical-align:middle;text-align:center}.searchFor{width:auto}.searchFor .searchCon{width:250px;border-bottom:1px solid #ccc;float:left;height:30px}.searchFor .searchCon input{border:none;outline:none;height:29px;width:91%}.searchFor .search_close{font-size:18px;float:right;color:#666;height:29px;line-height:29px;cursor:pointer}.tab_color{color:#bfbfbf!important}.comment-input{width:100%;margin:10px;margin-right:17px}.comment-input textarea{border:none!important;width:100%;outline:none;height:30px;border-radius:4px;padding-left:5px;float:left}.option-item{border:1px solid #e2e2e2}.option-item{display:block;width:38px;height:38px;text-align:center;line-height:38px;border-radius:4px}.check-option-bg{background:#ff7500;color:#fff!important;border:1px solid #ff7500}.position-delete{position:absolute;right:-22px;top:12px;cursor:pointer}.-center{align-items:center;min-height:66px}.markdown{letter-spacing:0;line-height:1.6;word-wrap:break-word;word-break:break-word}.markdown_anchors{position:relative}.markdown_anchors:hover .anchors{display:inline-block}.markdown_anchors .anchors:hover{text-decoration:none}.markdown_anchors .anchors{color:inherit;margin-left:-14px;display:none}.markdown code{padding:0;line-height:23px;margin:0;font-family:微软雅黑,宋体}.load{width:auto;top:50%;margin-top:-100px;position:relative}.empty{background:#494a4c;display:inline;margin:0 2px;padding:0 3px}.update_back_main{display:none;position:fixed;left:0;top:0;background:rgba(0,0,0,.3);width:100%;z-index:7001;height:100%}.tip-panel-animate-left{position:absolute;z-index:9000;left:80px;top:290px;background:#fff;width:430px;height:140px;border-radius:3px}.tip-panel-animate{position:absolute;z-index:10001;right:4px;top:40px;background:#fff;width:430px;height:140px;border-radius:3px;display:none}.tip-operator-btn{width:100%;border-top:1px solid #eee;height:40px;position:absolute;right:0;bottom:0;text-align:center}.tip-operator-btn a,.tip-operator-btn span{height:100%;text-align:center;line-height:40px;width:50%}.tip-operator-btn a:hover,.tip-operator-btn span:hover{background-color:#f9f9f9}.tip-operator-btn a:first-child,.tip-operator-btn span:first-child{border-right:1px solid #eee;width:49.5%}.animate-tip{animation:rightToleft 1s}.animate-tip-hide{animation:leftToright 1s}@keyframes rightToleft{from{right:-400px}to{right:4px}}@keyframes leftToright{from{right:4px}to{right:-420px}}@keyframes rightToleft-l{from{left:-400px}to{left:80px}}@keyframes leftToright-l{from{left:80px}to{left:-420px}}.photo_display{box-sizing:border-box;width:100%;position:fixed;top:0;left:0;padding-top:64px;padding-left:80px;background:0 0;height:100%;z-index:100}.photo_display .task-popup{width:100%!important;height:100%!important}#picture-content img{max-width:100%;height:400px;display:block;margin:0 auto;margin-bottom:20px}@font-face{font-family:iconfont;src:url(iconfont.woff2?t=1631773579834)format('woff2'),url(iconfont.woff?t=1631773579834)format('woff'),url(iconfont.ttf?t=1631773579834)format('truetype')}html body{font-size:14px;line-height:2;background:#fafafa;font-family:iconfont;color:#05101a;height:100%;position:relative;padding-right:0!important}html,body{height:100%}body,h2,h3,h4,h6,hr,p,blockquote,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td,span{margin:0;padding:0;margin-bottom:0!important}table,input,textarea,select,button{outline:none;border-radius:3px;font-family:微软雅黑,宋体;font-size:14px;line-height:1.9;border:1px solid #eaeaea;background:#fff;color:#05101a}textarea{resize:none}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#ccc}input::-moz-placeholder,textarea::-moz-placeholder{color:#ccc}input::-moz-placeholder,textarea::-moz-placeholder{color:#ccc}input::-ms-input-placeholder,textarea::-ms-input-placeholder{color:#ccc}div,img,tr,td,table{border:0}a:link,a:visited{text-decoration:none;color:#05101a}ol,ul,li{list-style-type:none}select:disabled,input:disabled{background-color:#eee}.clearfix:after{clear:both;content:".";display:block;font-size:0;height:0;line-height:0;visibility:hidden}.clearfix{clear:both;zoom:1}.cl{clear:both;overflow:hidden}.fl{float:left!important}.fr{float:right!important}.break-word{word-break:break-all;word-wrap:break-word}.break-word-firefox{white-space:pre-wrap!important;word-break:break-all}.justify{text-align:justify}.indent{text-indent:2em}.edu-max-h200{height:200px;overflow:auto}.edu-h270{height:270px}.edu-position{position:relative}a.edu-txt-w100,.edu-txt-w100{width:100px;display:inline-block;text-align:center}a.edu-txt-w80,.edu-txt-w80{width:80px;display:inline-block;text-align:center}.task-hide{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.task-hide-2{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.none{display:none!important}.block{display:block}.boxsizing{box-sizing:border-box}.iconfont{font-size:18px!important}.font-n{font-weight:400!important}.font-bd{font-weight:700}.font-n{font-weight:400}.font-12{font-size:12px!important}.font-13{font-size:13px!important}.font-14{font-size:14px!important}.font-15{font-size:15px!important}.font-16{font-size:16px!important}.weight400{font-weight:400}.weight500{font-weight:500}.weight{font-weight:700}.font-17{font-size:17px!important}.font-18{font-size:18px!important}.font-20{font-size:20px!important}.font-22{font-size:22px!important}.font-25{font-size:25px!important}.font-26{font-size:26px!important}.font-24{font-size:24px!important}.font-28{font-size:28px!important}.font-30{font-size:30px!important}.font-32{font-size:32px!important}.font-36{font-size:36px!important}.font-40{font-size:40px!important}.font-50{font-size:50px!important}.font-80{font-size:80px!important}.color-grey-b{color:#bbb!important}a.decoration{text-decoration:underline}.panel-form-label{display:inline-block;width:10%;min-width:90px;text-align:right;line-height:40px;font-weight:400}.mt1{margin-top:1px}.mt2{margin-top:2px}.mt3{margin-top:3px}.mt4{margin-top:4px}.mt5{margin-top:5px!important}.mt6{margin-top:6px}.mt7{margin-top:7px!important}.mt8{margin-top:8px!important}.mt9{margin-top:9px}.mt10{margin-top:10px!important}.mt12{margin-top:12px}.mt13{margin-top:13px}.mt14{margin-top:14px}.mt15{margin-top:15px!important}.mt16{margin-top:16px}.mt17{margin-top:17px}.mt18{margin-top:18px}.mt20{margin-top:20px!important}.mt22{margin-top:22px!important}.mt23{margin-top:23px!important}.mt24{margin-top:24px!important}.mt25{margin-top:25px}.mt28{margin-top:28px}.mt30{margin-top:30px!important}.mt34{margin-top:34px!important}.mt35{margin-top:35px!important}.mt36{margin-top:36px!important}.mt40{margin-top:40px}.mt45{margin-top:45px}.mt50{margin-top:50px}.mt56{margin-top:56px}.mt60{margin-top:60px}.mt70{margin-top:70px}.mt80{margin-top:80px}.mt100{margin-top:100px}.mb0{margin-bottom:0!important}.mb3{margin-bottom:3px}.mb5{margin-bottom:5px}.mb7{margin-bottom:7px}.mb10{margin-bottom:10px}.mb12{margin-bottom:12px}.mb13{margin-bottom:13px}.mb14{margin-bottom:14px}.mb15{margin-bottom:15px!important}.mb16{margin-bottom:16px}.mb20{margin-bottom:20px!important}.mb25{margin-bottom:25px}.mb26{margin-bottom:26px}.mb30{margin-bottom:30px!important}.mb40{margin-bottom:40px!important}.mb50{margin-bottom:50px!important}.mb60{margin-bottom:60px!important}.mb70{margin-bottom:70px!important}.mb80{margin-bottom:80px!important}.mb100{margin-bottom:100px!important}.ml-3{margin-left:-3px}.ml1{margin-left:1px}.ml2{margin-left:2px}.ml3{margin-left:3px}.ml4{margin-left:4px}.ml5{margin-left:5px}.ml6{margin-left:6px}.ml8{margin-left:8px}.ml10{margin-left:10px}.ml12{margin-left:12px!important}.ml13{margin-left:13px!important}.ml15{margin-left:15px}.ml18{margin-left:18px}.ml20{margin-left:20px}.ml22{margin-left:22px}.ml25{margin-left:25px}.ml30{margin-left:30px}.ml33{margin-left:33px}.ml35{margin-left:35px}.ml40{margin-left:40px}.ml50{margin-left:50px}.ml60{margin-left:60px}.ml80{margin-left:80px}.ml85{margin-left:85px}.ml180{margin-left:180px}.mr3{margin-right:3px}.mr4{margin-right:4px}.mr5{margin-right:5px}.mr8{margin-right:8px}.mr10{margin-right:10px}.mr12{margin-right:12px!important}.mr15{margin-right:15px}.mr18{margin-right:18px}.mr20{margin-right:20px}.mr25{margin-right:25px}.mr30{margin-right:30px}.mr35{margin-right:35px}.mr40{margin-right:40px}.mr50{margin-right:50px}.mr60{margin-right:60px}.mr70{margin-right:70px}.mr80{margin-right:80px}.mr90{margin-right:90px}.ml61{margin-left:61px}.pt5{padding-top:5px!important}.pt10{padding-top:10px}.pt15{padding-top:15px}.pt20{padding-top:20px!important}.pt25{padding-top:25px}.pt30{padding-top:30px}.pt35{padding-top:35px}.pt37{padding-top:37px}.pt40{padding-top:40px}.pt50{padding-top:50px}.pt60{padding-top:60px}.pt80{padding-top:80px}.pb5{padding-bottom:5px!important}.pb10{padding-bottom:10px}.pb15{padding-bottom:15px}.pb20{padding-bottom:20px}.pb25{padding-bottom:20px}.pb25{padding-bottom:20px}.pb28{padding-bottom:28px}.pb30{padding-bottom:30px}.pb40{padding-bottom:40px}.pb47{padding-bottom:47px}.pb50{padding-bottom:50px}.pb60{padding-bottom:60px}.pb100{padding-bottom:100px}.pr5{padding-right:5px}.pr10{padding-right:10px}.pr15{padding-right:15px}.pr20{padding-right:20px!important}.pr30{padding-right:30px!important}.pr35{padding-right:35px!important}.pl0{padding-left:0!important}.pl5{padding-left:5px}.pl8{padding-left:8px}.pl10{padding-left:10px}.pl15{padding-left:15px}.pl20{padding-left:20px}.pl25{padding-left:25px}.pl28{padding-left:28px}.pl30{padding-left:30px!important}.pl33{padding-left:33px}.pl35{padding-left:35px}.pl40{padding-left:40px}.pl50{padding-left:50px}.pl60{padding-left:60px}.pr5{padding-right:5px}.pr10{padding-right:10px}.pr15{padding-right:15px}.pr20{padding-right:20px!important}.pr25{padding-right:25px!important}.pr30{padding-right:30px!important}.pr40{padding-right:40px}.padding5-10{padding:5px 10px;box-sizing:border-box}.padding5-20{padding:5px 20px;box-sizing:border-box}.padding10{padding:10px;box-sizing:border-box}.padding15{padding:15px;box-sizing:border-box}.padding20{padding:20px;box-sizing:border-box}.padding10-20{padding:10px 20px;box-sizing:border-box}.padding10-15{padding:10px 15px;box-sizing:border-box}.padding10-30{padding:10px 30px;box-sizing:border-box}.padding20-30{padding:20px 30px;box-sizing:border-box}.padding30{padding:30px;box-sizing:border-box}.padding30-20{padding:30px 20px;box-sizing:border-box}.padding40{padding:40px;box-sizing:border-box}.padding40-30{padding:40px 30px;box-sizing:border-box}.padding40-20{padding:40px 20px;box-sizing:border-box}.lineh-12{line-height:12px!important}.lineh-15{line-height:15px!important}.lineh-17{line-height:17px!important}.lineh-20{line-height:20px!important}.lineh-24{line-height:24px!important}.lineh-25{line-height:25px!important}.lineh-30{line-height:30px!important}.lineh-35{line-height:35px!important}.lineh-40{line-height:40px!important}.break_word{word-break:break-all;word-wrap:break-word}.break_word_firefox{white-space:pre-wrap!important;word-break:break-all}.pr{position:relative}.df{display:flex;display:-webkit-flex;display:-ms-flex}.flex1{flex:1}input::-ms-clear{display:none}::-webkit-scrollbar{width:7px;height:10px;background-color:#f5f5f5}.ant-modal-close{top:8px!important}.newContainer{min-height:100%;height:auto!important;height:100%;position:relative}.educontent{width:1200px;margin:0 auto;box-sizing:border-box}.newMain{margin:0 auto;min-width:1200px}.edu-txt-center{text-align:center!important}.edu-txt-left{text-align:left!important}.edu-txt-right{text-align:right!important}.edu-back-white{background-color:#fff}.edu-back-greyf5{background-color:#f5f5f5!important}.edu-back-skyblue{background:#f4faff}.edu-back-blue{background-color:#459be6!important}.edu-bg-light-blue{background:#f7f9fd;padding:5px}.color-red{color:red!important}.color-white{color:#fff!important}.color-dark{color:#05101a!important}.color-ooo{color:#000!important}.color-grey-name{color:#1a0b00!important}.color-grey-3{color:#333!important}.color-grey-eb{color:#ebebeb!important}.color-grey-c{color:#ccc!important}a.hoverLine:hover{text-decoration:underline}.color-grey-cd{color:#cdcdcd!important}.color-grey-d{color:#ddd}.color-grey-9{color:#999!important}a:hover{color:#6684fe}.color-grey-98{color:#989898!important}.color-grey-8{color:#888!important}.color-grey-6{color:#666!important}.color-grey-B2{color:#b2b2b2!important}.color-grey-B3{color:#b3b3b3!important}.color-grey-B4{color:#b4b4b4!important}.color-grey-74{color:#747a7f!important}a.color-grey-name:hover,a.color-dark:hover,a.color-grey-6:hover,a.color-grey-3:hover,a.color-ooo:hover{color:#2a61ff!important}.color-blue{color:#2a61ff!important}.color-blue-file{color:#4598fa!important}.color-blue_4C{color:#4cacff!important}.color-orange{color:#ff6800!important}.color-orange-tip{color:#ff954c!important}.color-orange-tips{color:#ff8204!important}a.color-orange:hover,a.color-orange-tip:hover{color:#f06200!important}.color-yellow{color:#efc003!important}.color-yellow-ff{color:#ffa800!important}.color-green{color:#29bd8b!important}a.color-green:hover{color:#28ac7f!important}.radius{border-radius:50%}.radius4{border-radius:4px}.ring-green{width:18px;height:18px;display:block;border-radius:50%;background-color:#29bd8b;text-align:center}.ring-op-green{width:18px;height:18px;display:block;border-radius:50%;background-color:rgba(41,189,139,.6);text-align:center}.ring-grey{width:18px;height:18px;line-height:18px;display:block;border-radius:50%;background-color:rgba(204,204,204,.5);text-align:center}.ring-blue{width:18px;height:18px;display:block;border-radius:50%;background-color:#4cacff;text-align:center}.input-flex-35{flex:1;height:35px;padding:5px;box-sizing:border-box}.input-flex-40{flex:1;height:40px;padding:5px;box-sizing:border-box}.input-100-45{width:100%;height:45px;padding:5px;box-sizing:border-box}.input-60-40{width:60%;height:40px;padding:5px;box-sizing:border-box}.greyInput{background-color:#f5f5f5;outline:none}.greyInput:focus{background-color:#fff;border:1px solid #ddd}.winput-240-40{width:240px;height:40px;padding:5px;box-sizing:border-box}.winput-120-35{width:120px;height:35px;padding:5px;box-sizing:border-box}.winput-100-130{width:100%;height:130px;padding:5px;box-sizing:border-box}.winput-100-150{width:100%;height:150px;padding:5px;box-sizing:border-box}.width100{width:100%!important}.width89{width:89%}.width50{width:50%}.width40{width:40%}.width45{width:45%}.width10{width:10%}.width20{width:20%}.width15{width:15%}a.edu-txt-w100,.edu-txt-w100{width:100px;display:inline-block;text-align:center}a.edu-txt-w80,.edu-txt-w80{width:80px;display:inline-block;text-align:center}.minH-440{min-height:440px}.minH-500{min-height:500px}.minH-560{min-height:560px}.minH-650{min-height:650px}.minH-670{min-height:670px}.over210{height:210px;overflow-y:auto}.over280{height:280px;overflow-y:auto}.bor-bottom-greyE{border-bottom:1px solid #eee!important}.bor-left-greyE{border-left:1px solid #eee!important}.bor-top-greyE{border-top:1px solid #eee!important}.bor-grey-e{border:1px solid #eee}.bor-red{border:1px solid #db0505!important}a.decoration{text-decoration:underline!important}.edu-menu-panel{position:relative;cursor:pointer}.edu-menu-list{position:absolute;padding:5px 0;box-shadow:0 2px 8px rgba(0,0,0,.2);display:none;width:120px;background:#fff;right:-5px;border-radius:0 0 4px 4px;color:#05101a;font-size:14px;z-index:9}.edu-menu-list li{width:100%;padding:0 15px;box-sizing:border-box;height:35px;line-height:35px;cursor:pointer}.edu-menu-list li a{width:100%;height:100%;display:block;color:#323232}.edu-menu-panel:hover i,.edu-menu-panel:hover{color:#4cacff}.edu-menu-panel:hover .edu-menu-list{display:block}.edu-menu-list li:hover{background:#4cacff}.edu-menu-list li:hover a{color:#fff!important}.ul-leftline:after{position:absolute;top:0;content:"";width:1px;background-color:#eee;height:100%;right:0}.overPart{width:240px;height:30px;position:absolute;right:0;top:-27px;background:0 0}.handler_bg{background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0ZDhlNWY5My05NmI0LTRlNWQtOGFjYi03ZTY4OGYyMTU2ZTYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NTEyNTVEMURGMkVFMTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NTEyNTVEMUNGMkVFMTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2MTc5NzNmZS02OTQxLTQyOTYtYTIwNi02NDI2YTNkOWU5YmUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NGQ4ZTVmOTMtOTZiNC00ZTVkLThhY2ItN2U2ODhmMjE1NmU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+YiRG4AAAALFJREFUeNpi/P//PwMlgImBQkA9A+bOnfsIiBOxKcInh+yCaCDuByoswaIOpxwjciACFegBqZ1AvBSIS5OTk/8TkmNEjwWgQiUgtQuIjwAxUF3yX3xyGIEIFLwHpKyAWB+I1xGSwxULIGf9A7mQkBwTlhBXAFLHgPgqEAcTkmNCU6AL9d8WII4HOvk3ITkWJAXWUMlOoGQHmsE45ViQ2KuBuASoYC4Wf+OUYxz6mQkgwAAN9mIrUReCXgAAAABJRU5ErkJggg==)no-repeat 50%}.handler_ok_bg{background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0ZDhlNWY5My05NmI0LTRlNWQtOGFjYi03ZTY4OGYyMTU2ZTYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDlBRDI3NjVGMkQ2MTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDlBRDI3NjRGMkQ2MTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDphNWEzMWNhMC1hYmViLTQxNWEtYTEwZS04Y2U5NzRlN2Q4YTEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NGQ4ZTVmOTMtOTZiNC00ZTVkLThhY2ItN2U2ODhmMjE1NmU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+k+sHwwAAASZJREFUeNpi/P//PwMyKD8uZw+kUoDYEYgloMIvgHg/EM/ptHx0EFk9I8wAoEZ+IDUPiIMY8IN1QJwENOgj3ACo5gNAbMBAHLgAxA4gQ5igAnNJ0MwAVTsX7IKyY7L2UNuJAf+AmAmJ78AEDTBiwGYg5gbifCSxFCZoaBMCy4A4GOjnH0D6DpK4IxNSVIHAfSDOAeLraJrjgJp/AwPbHMhejiQnwYRmUzNQ4VQgDQqXK0ia/0I17wJiPmQNTNBEAgMlQIWiQA2vgWw7QppBekGxsAjIiEUSBNnsBDWEAY9mEFgMMgBk00E0iZtA7AHEctDQ58MRuA6wlLgGFMoMpIG1QFeGwAIxGZo8GUhIysmwQGSAZgwHaEZhICIzOaBkJkqyM0CAAQDGx279Jf50AAAAAABJRU5ErkJggg==)no-repeat 50%}.-task-title{opacity:0;position:absolute;left:0;top:0;display:none;z-index:100000}.data-tip-down,.data-tip-left,.data-tip-right,.data-tip-top{position:relative;box-shadow:0 0 8px #000;background:#000;color:#fff;max-width:300px;word-wrap:break-word;text-align:center;border-radius:4px;padding:0 10px;border:1px solid #000;display:none}.data-tip-down:after,.data-tip-down:before,.data-tip-left:before,.data-tip-right:before,.data-tip-left:after,.data-tip-right:after,.data-tip-top:after,.data-tip-top:before{position:absolute;content:'';width:0;height:0}.data-tip-down:after,.data-tip-down:before{left:45%;top:-10px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:10px solid #000}.data-tip-down:before{top:-11px;border-bottom:10px solid #000}.data-tip-left:after,.data-tip-left:before{left:-10px;top:50%;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:10px solid #000}.data-tip-left:before{left:-12px;border-right:10px solid #000}.data-tip-right:after,.data-tip-right:before{right:-10px;top:50%;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:10px solid #000}.data-tip-right:before{right:-10px;border-left:10px solid #000}.data-tip-top:after,.data-tip-top:before{left:45%;bottom:-10px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:10px solid #000}.data-tip-top:before{bottom:-11px}.edu-pop-table{width:100%;border:1px solid #eee;border-bottom:none;background:#fff;color:#888;cursor:default}.edu-pop-table tr{height:40px}.edu-txt-center{text-align:center}.edu-txt-left{text-align:left}.edu-txt-right{text-align:right}.edu-pop-table tr th{color:#333;border-bottom:1px solid #eee}.edu-pop-table tr td{border-bottom:1px solid #eee}.edu-pop-table.head-color thead tr{background:#fafbfb}.edu-pop-table.head-color{border:none}.edu-pop-table.head-color tr:last-child td{border:none}.edu-pop-table.interval-td{border-bottom:1px solid #eee}.edu-pop-table.interval-td thead tr{background:#fafbfb}.edu-pop-table.interval-td tbody tr:nth-child(even){background:#fafbfb}.edu-pop-table.interval-td tbody tr td{border:none}.edu-pop-table-all{width:100%;border:1px solid #eee;background:#fff;color:#888;border-collapse:collapse}.edu-pop-table-all tr{height:30px}.edu-pop-table-all tr th{color:#333;border:1px solid #eee}.edu-pop-table-all tr td{border:1px solid #eee;padding:5px}img.edu-nodata-img{width:300px;margin:50px auto 20px;display:block;width:128px}.edu-nodata-p{font-size:20px;text-align:center;color:#999;border-bottom:none!important;box-sizing:border-box}.notice{height:25px;margin-left:150px}.edu-position-hide{position:absolute;top:15px;left:-20px;box-shadow:0 2px 8px rgba(146,153,169,.5);background:#fff;z-index:1001;padding:5px 0;z-index:999999}.edu-position-hide li a{display:inline-block;height:30px;width:100px;line-height:30px;text-align:center;font-size:12px!important}.edu-position-hide li a:hover{background:#f1f1f1;color:#05101a}.edu-position-hidebox i{color:#bcbcbc}.edu-position-hidebox i:hover{color:#4cacff}.edu-position-hidebox a{color:#05101a}.edu-position-hidebox:hover .edu-position-hide{display:block}.white-btn{text-align:center;cursor:pointer;display:inline-block;padding:0 8px;border:1px solid #ccc;color:#666;letter-spacing:1px;font-size:14px;height:26px;line-height:26px;border-radius:3px}a.white-btn.orange-btn{border:1px solid #ff7500;color:#ff7500!important}a.white-btn.orange-btn:hover{border:1px solid #f06200;color:#f06200!important}.defalutGreyBorder{display:block;padding:0 10px;border:1px solid #ccc;height:30px;line-height:30px;border-radius:4px}a.task-btn{cursor:pointer;display:inline-block;border:none;padding:0 12px;color:#fff;background:#cdcdcd!important;letter-spacing:1px;text-align:center;font-size:14px;height:30px;line-height:30px;border-radius:2px;font-weight:400}.user_default_btn{cursor:pointer;font-size:14px;display:block;width:120px;text-align:center;height:40px;line-height:40px!important;border-radius:4px;box-sizing:border-box}.user_orange_btn{color:#fff!important;background-color:#ff6800}.user_orange_btn:hover{background-color:#f06200}.user_grey_btn{color:#fff!important;background-color:#ccc;cursor:default}.user_private_btn{color:#646464!important;background-color:#fff;border:1px solid #989898}.user_private_btn:hover{color:#b2b2b2!important;border:1px solid #b2b2b2}.btn_auto{border-radius:5px;background:#fff;padding:0 18px}.edu-default-btn{display:block;border-radius:4px}a.edu-greenback-btn{padding:0 10px;background:#29bd8b;color:#fff!important;border:1px solid #29bd8b}a.edu-greenback-btn:hover{background-color:#28ac7f}a.edu-blueback-btn{padding:0 10px;background:#4cacff;color:#fff!important;border:1px solid #4cacff}a.edu-blueline-btn{padding:0 10px;color:#4cacff!important;border:1px solid #4cacff}a.edu-blueback-btn:hover{background-color:#459be6}a.edu-blueline-btn:hover{border:1px solid #459be6;color:#459be6!important}a.edu-orangeback-btn{background-color:#ff7500;color:#fff!important;border:1px solid #ff7500}a.edu-orangeback-btn:hover{background-color:#f06200}a.edu-orangeline-btn{color:#ff7500!important;border:1px solid #ff7500}a.edu-orangeline-btn:hover{color:#f06200!important;border:1px solid #f06200}a.edu-greyline-btn{padding:0 10px;background:#fff;color:#666!important;border:1px solid #eaeaea;line-height:33px;height:33px}a.edu-greyline-btn:hover{border:1px solid #b2b2b2;color:#b2b2b2!important}.defalutCancelbtn{display:block;border:1px solid #cdcdcd;background-color:#fafafa;color:#999!important;width:120px;text-align:center;height:30px;line-height:30px;border-radius:2px;width:130px;height:40px;background:rgba(77,124,254,0);border:1px solid #4cacff;border-radius:4px;line-height:40px;font-size:16px;font-family:MicrosoftYaHei;font-weight:400;color:#4cacff!important}.defalutCancelbtn:hover{border:1px solid #b2b2b2;color:#b2b2b2!important}.defalutSubmitbtn{display:block;border:1px solid #4cacff;background-color:#4cacff;color:#fff!important;width:120px;text-align:center;line-height:40px;border-radius:2px;width:130px;height:40px;background:#4cacff;border-radius:4px;font-size:16px;font-family:MicrosoftYaHei;font-weight:400;color:#fff}.delectshixuncdbtn{display:block;border:1px solid #cdcdcd;background-color:#fafafa;color:#999!important;width:120px;text-align:center;height:30px;line-height:30px;border-radius:2px;width:130px;height:40px;background:rgba(77,124,254,0);border-radius:4px;line-height:40px;font-size:16px;font-family:MicrosoftYaHei;font-weight:400}.defalutSubmitbtn:hover{background-color:#459be6;border:1px solid #459be6}a.task-btn-orange{background:#4cacff!important;color:#fff!important}a:hover.task-btn-orange{background:#459be6}.user_blue_btn{border:1px solid #4cacff;color:#4cacff!important}a.user_bluebg_btn{background-color:#4cacff;color:#fff}.pointer{cursor:pointer}.cdefault{cursor:default!important}.new_li .markdown-body ul>li,.markdown-body ul>li{list-style-type:disc!important;margin-bottom:0!important}.new_li .markdown-body ol>li,.markdown-body ol>li{list-style-type:decimal!important}.new_li li{margin-bottom:0!important}.markdown-body p{font-size:16px!important}.task-popup{width:30%;background:#fff;border:1px solid #e8e8e8;border-radius:10px}.task-popup-text-center{text-align:center;color:#333}.task-popup-title{border-bottom:1px solid #eee;padding:0 15px;text-align:center;box-sizing:border-box;line-height:70px;height:70px;border-radius:10px 10px 0 0;font-size:16px;font-weight:700}.task-popup-content{padding:15px}.task-popup-submit{margin:0 auto 15px;width:160px}.task-popup-sure{margin:0 auto 15px;width:54px}.task-popup-OK{margin:15px auto;text-align:center}#closeIcon{position:absolute;color:#fefefe}.task_popup_con{padding:20px}.alert{padding:10px;border:1px solid transparent;text-align:center}.alert-orange{background-color:#fff9e9;border-color:#f6d0b1;color:#ee4a20}.pages_user_show a:hover,.pages_user_show li.active a{background-color:#4cacff;color:#fff;border:1px solid #4cacff}.pages_user_show a{border-radius:2px;display:inline-block;border:1px solid #d1d1d1;background-color:#fff;color:#888;float:left;text-align:center;padding:2px 10px;line-height:1.9;margin:0 5px}.pages_user_show li{float:left;list-style-type:none}.pages_user_show ul li{list-style-type:none!important}.pages_user_show ul li a{color:#888}.leftPanel{width:22%;float:left}.leftPanel li.nav{padding:10px 0;box-sizing:border-box}.leftPanel li.nav a{padding-left:40px;display:block;width:100%;box-sizing:border-box;border-left:2px solid #fff;height:24px;line-height:24px}.leftPanel li.nav.active a{border-left:2px solid #4cacff}.rightPanel{width:78%;float:right}.ringauto{width:20px;height:20px;line-height:20px;text-align:center;border-radius:50%;background-color:#f4faff;margin-right:5px}#ajax-indicator{position:absolute;background-color:#eee;border:1px solid #bbb;top:35%;left:40%;width:20%;font-weight:700;text-align:center;padding:.6em;z-index:100000;opacity:.5}html>body #ajax-indicator{position:fixed}#ajax-indicator span{color:#fff;color:#333;background-position:0 40%;background-repeat:no-repeat;background-image:url(/images/loading.gif);padding-left:26px;vertical-align:bottom;z-index:100000}.bestChoose.active{color:#4cacff}.edu-filter-cir-grey{color:#666!important;width:auto;padding:0 15px;font-size:14px!important;text-align:center;background:#f3f3f3;border-radius:10px;display:block;height:25px;line-height:25px}.edu-filter-cir-grey:hover{background:#4cacff;color:#fff!important}.edu-filter-cir-grey.active{background:#4cacff;color:#fff!important;font-size:14px!important}.with10{width:10%;box-sizing:border-box}.with13{width:13%;box-sizing:border-box}.with14{width:14%;box-sizing:border-box}.with15{width:15%;box-sizing:border-box}.with20{width:20%;box-sizing:border-box}.with22{width:22%;box-sizing:border-box}.with23{width:23%;box-sizing:border-box}.with25{width:25%;box-sizing:border-box}.with30{width:30%;box-sizing:border-box}.with35{width:35%;box-sizing:border-box}.with40{width:40%;box-sizing:border-box}.with45{width:45%;box-sizing:border-box}.with49{width:49%;box-sizing:border-box}.with50{width:50%;box-sizing:border-box}.with52{width:52%;box-sizing:border-box}.with48{width:48%;box-sizing:border-box}.with60{width:60%;box-sizing:border-box}.with65{width:65%;box-sizing:border-box}.with70{width:70%;box-sizing:border-box}.with75{width:75%;box-sizing:border-box}.with78{width:78%;box-sizing:border-box}.with80{width:80%;box-sizing:border-box}.with100{width:100%}.transform-90{transform:rotate(-90deg);-ms-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-webkit-transform:rotate(-90deg);-o-transform:rotate(-90deg)}.btn-cir{display:inline-block;padding:0 5px;border-radius:25px;line-height:20px;font-size:12px}.btn-cir-red{background:red;color:#fff;font-weight:400;cursor:default}.btn-cir-red:hover{background:red;color:#fff!important}.edu-filter-btn{cursor:default;display:inline-block;padding:0 9px;color:#666;background:#fff;text-align:center;border-radius:10px;font-size:12px;height:18px;line-height:18px}.edu-filter-btn-red{border:1px solid #dd1717;color:#dd1717}.edu-filter-btn-green{border:1px solid #29bd8b;color:#29bd8b!important}.edu-activity-orange{background-color:#ff6800;color:#fff!important;cursor:pointer;border:1px solid #ff6800}.edu-activity-blue{background-color:#4cacff;color:#fff!important;cursor:pointer;border:1px solid #4cacff}.edu-activity-green{background-color:#29bd8b;color:#fff!important;cursor:pointer;border:1px solid #29bd8b}.color656565{color:#656565}.colorC8161D{color:#c8161d}.bor-reds{border:1px solid red!important;border-radius:4px;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.footer_con-p{color:#898989!important}.markdown-body{text-align:justify;word-break:break-all;width:100%}.RightPaneDrawer .ant-drawer-content{background:#070f1a;overflow:hidden!important}.deletebuttom{border:transparent}.RightPaneDrawer .jupyter_data_list{max-height:340px}.privateTag{display:block;padding:0 6px;border-radius:12px;border:1px solid #2fc25b;height:18px;line-height:18px;font-size:12px;margin-left:10px;color:#2fc25b}.privateTag.red{color:#ff6832;border:1px solid #ff6832}.head-nav::-webkit-scrollbar{display:none}.head-nav{text-align:center;height:58px;box-sizing:border-box;text-overflow:ellipsis;white-space:nowrap;flex:1;white-space:nowrap;overflow-y:auto;display:flex;align-self:flex-start}.head-nav li{height:58px;line-height:58px;cursor:pointer;font-size:16px}.head-nav a{color:#fff;margin:0 20px}.head-nav li a:hover,.head-nav li.active a{color:#5091ff}.head-right{box-sizing:border-box;height:60px;display:flex;align-items:center}.educontent .icon{padding-left:0!important;padding-top:0!important;padding-bottom:0!important}em.vertical-line{display:inline-block;width:2px;background:#999;height:10px}.newslight{display:block;width:5px;height:5px;border-radius:50%;left:25px;top:3px;position:absolute;background:#ff6800}.rateTrangle{display:block;border-width:8px;position:absolute;top:-8px;left:35px;border-style:dashed solid dashed dashed;border-color:transparent transparent #fff transparent;font-size:0;line-height:0;z-index:2}#commentsStar{height:30px;padding-top:7px;box-sizing:border-box}.search-all{width:216px;margin:0 auto;position:relative;background-color:#24292d}.search-all .search-clear{font-size:14px;display:inline-block;width:50px;text-align:center;color:#656565;line-height:60px;cursor:pointer}.footercon{border-bottom:1px solid #47494d}.inner-footernav{width:560px;margin:0 auto}.inner-footernav li{float:left;height:50px;width:80px;text-align:center}.inner-footernav li a{width:100%;text-align:center;line-height:50px;color:#888}.inner-footer_con{width:1200px;margin:0 auto}.intermediatecenter{width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center}.footer_con-p{color:#888;margin-top:10px}.banner{width:100%;height:345px;position:relative;overflow:hidden;border-radius:10px}.banner .img{position:absolute;left:0;top:0}.banner .img li{float:left;width:1200px;height:345px}.banner .img li a{display:block;width:100%;height:100%}.banner .img li img{width:100%;height:345px}.banner .num{position:absolute;width:100%;bottom:30px;left:0;text-align:center;font-size:0}.banner .num li{width:7px;height:7px;background:rgba(225,225,225,.3);border-radius:50%;display:inline-block;margin:0 5px;cursor:pointer}.banner .num li.on{width:12px;border-radius:8px}.moreitem{position:absolute;right:5px;top:35px;height:15px;color:#656565}.square-list{width:100%;box-sizing:border-box;margin-top:20px;flex-wrap:wrap;display:flex}.square-Item{position:relative;width:280px;margin-right:26px;margin-bottom:26px;float:left;border-radius:6px;background-color:#fff;box-shadow:0 0 12px rgba(0,0,0,.1)}.square-Item:hover{box-shadow:0 0 12px rgba(0,0,0,.3)}.square-Item:hover .closeSquare{display:block}.square-Item:nth-child(4n+0){margin-right:0}.square-Item .square-img{display:block;width:100%}.square-Item .square-img img{width:100%;border-radius:6px 6px 0 0;vertical-align:bottom;height:210px}.square-main{padding:15px 20px;box-sizing:border-box}.course-bottom{height:48px;padding:10px 0;box-sizing:border-box}.squareIconSpan{line-height:25px}.square-Item.smallSquare{width:32%;margin-right:1.33%;margin-bottom:10px;min-height:210px;border:none}.square-Item.smallSquare:hover{bottom:0;box-shadow:0 0 12px rgba(0,0,0,.1)}.smallSquare:nth-child(3n+0){margin-right:0}.partimg{height:180px;width:100%;border-radius:6px 6px 0 0}.tag-green{position:absolute;left:10px;bottom:90px}.tag-green .tag-name{display:block;width:auto;background:rgba(0,0,0,.56);border:1px solid rgba(255,255,255,.56);border-radius:3px;font-size:12px;background-size:100% 100%;padding:0 8px;color:#fff;float:left}.tag-orange{position:absolute;right:0;top:12px}.tag-orange .tag-name{display:block;width:auto;background-color:#ff6800;background-size:100% 100%;padding:0 8px;color:#fff;float:left;height:28px;line-height:28px;border-top-left-radius:4px;border-bottom-left-radius:4px}.user_navlist{position:absolute;left:0;width:160px;top:0;height:100%}.user_navlist_black{position:relative;width:100%;height:100%;border-radius:8px 0 0 8px;background:rgba(0,0,0,.8)}.user_navlist_white{position:absolute;left:160px;background:#fff;width:622px;min-height:345px;top:0;z-index:1;display:none;padding:0 30px;box-sizing:border-box;box-shadow:0 0 10px rgba(76,76,76,.2);z-index:99}.user_navlist_white a{color:#989898;margin-right:15px;font-size:14px;display:block;float:left;height:30px;line-height:30px}.user_navlist_white a:hover{color:#4cacff}.headIcon{height:100%;box-sizing:border-box;margin:0!important}.black_nav_list{padding:4px 0;box-sizing:border-box;height:100%}.black_nav_list li{line-height:40px;height:40px;color:#fff;cursor:pointer}.black_nav_span{display:block;margin:0 20px;border-bottom:1px solid #4b4b4b;padding-left:8px;color:#fafafa}.welcome_shixun_index:last-child .black_nav_span{border-bottom:none}.black_nav_list li:hover{background:#fff}.black_nav_list li:hover .black_nav_span{color:#05101a!important}.black_nav_list li:hover>a{color:#4cacff!important}.black_nav_list li:hover .user_navlist_white{display:block}.navlistpanel-line{border-bottom:1px solid #ebebeb}.navlistpanel-line:last-child{border-bottom:none}.little-title{width:100%;height:20px;line-height:20px;color:#05101a;font-size:15px;margin-bottom:8px}.ranking{text-align:center;margin-top:40px}.grade{width:auto;display:inline-block}.grade li{float:left;margin:0 10px;width:60px}.ranking a img{width:60px;height:60px;border-radius:50%;box-shadow:0 0 12px rgba(0,0,0,.2)}.mentor-ranking{background-color:#efefef;background-size:100% 100%}.huangguan{position:absolute;top:-30px;left:13px}#log_reg_content{border-radius:5px;background:#fff;width:100%;text-align:center;position:absolute;top:165px;left:0;padding:40px 30px;box-sizing:border-box}.log_nav{border-bottom:1px solid #eaeaea}.log_nav li{float:left;text-align:center;font-size:16px;padding-bottom:15px;cursor:pointer}.log_nav li.active{border-bottom:2px solid #459be5}.log-botton{width:100%;text-align:center;color:#fff!important;display:block;background:#cbcbcb;height:45px;line-height:45px;border-radius:4px;letter-spacing:2px;cursor:pointer}.log-botton:hover{color:#fff!important}.log-botton.active{background:#4cacff}.gain-code{width:48%;display:block;float:right;height:45px;line-height:45px;text-align:center;background:#cbcbcb;color:#fff!important;border-radius:4px;cursor:pointer}.gain-code:hover{color:#fff!important}.user-main-half{width:100%;height:465px;background:#fff;margin-bottom:20px;position:relative}.user-headImg{width:100%;height:160px;background-image:url(/images/educoder/userhead.jpg);position:absolute;width:100%;left:0;top:0}.user-headCon{position:absolute;width:100%;left:0;top:0;min-height:465px}.inline{width:auto;display:inline-block}.headtab{width:188px;height:60px;text-align:center}.headtab span,.headtab a{display:block;width:100%;text-align:center}.headtab span{color:#989898;font-size:14px}.headtab a{color:#fff;font-size:24px}.headphoto{text-align:center;background:#fff;width:115px;height:115px;padding:3px;border-radius:50%;position:relative;float:left;margin-top:19px;box-sizing:border-box}.headphoto img{width:109px;border-radius:50%;height:109px}.headphoto-black{display:none;cursor:pointer;position:absolute;top:3px;left:3px;width:109px;height:109px;text-align:center;line-height:112px;border-radius:50%;background-color:rgba(0,0,0,.3);color:#fff}.myName{display:block;width:auto;color:#05101a;font-size:24px;height:28px;line-height:28px;margin-top:5px}.mypost{color:#686868;font-size:14px;display:block;width:auto;height:20px;line-height:20px}.mysign-span{margin:0 auto;color:#05101a;font-size:14px;display:block;width:280px;cursor:pointer;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mysign-input{margin:0 auto;color:#05101a;font-size:14px;width:280px;height:28px;border:none;outline:none;text-align:center}.v-h-line{display:block;width:1px;height:40px;background-color:#999;margin-top:12px}.user-bar{position:relative;width:100%;height:8px;background-color:#cdcdcd;border-radius:4px}.user-bar p{position:absolute;left:0;top:0;height:100%;background-color:#4cacff;border-radius:4px}.publicpart{position:absolute;left:1px;top:1px;width:0;height:0;border-left:80px solid #4cacff;border-bottom:80px solid transparent;z-index:1}.publicpart.orangeBlack{border-left:80px solid #ff6800}.smalltrangle{display:block;position:absolute;left:1px;top:1px;border-left:25px solid #fff;border-bottom:25px solid transparent;z-index:2}.publicword{transform:rotate(-45deg);text-align:center;color:#fff;font-size:14px;display:block;position:absolute;width:50px;left:0;z-index:3;top:15px}.closeSquare{position:absolute;width:100%;left:0;top:0;text-align:center;background-color:rgba(0,0,0,.5);height:100%;z-index:5;display:none;cursor:default}.substance{padding:40px 40px 0;box-sizing:border-box;text-align:center;border-bottom:1px solid #eaeaea;min-height:241px}.subName{line-height:20px;height:40px;text-align:center;color:#1a0b00;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}.secondNav li{color:#676767;margin:0 20px;float:left}.secondNav li a:hover{color:#4cacff}.secondNav li.active a{color:#4cacff}.dataBank_Item{margin-bottom:3px;width:100%;border-bottom:1px solid #eee;padding:17px 37px 17px 20px;box-sizing:border-box;background:#fff;display:flex;cursor:pointer}.dataBank_Item:hover{box-shadow:0 0 15px rgba(76,76,76,.2)}.dataBank_Item:last-child{border:none}.dataItemLeft{margin-right:20px;width:20px}.dataItemRight{flex:1}.dataTitle{color:#05101a;display:block;float:left;max-width:400px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.itembottom span.bottomspan{display:block;width:200px;text-align:left}.search_course_list{height:150px;overflow-y:auto}.search_course_list li{height:30px}.userdata{width:622px;margin:0 auto;background:#fff;margin-bottom:80px;padding:40px;box-sizing:border-box;border-radius:4px}.shaiTitle{display:block;padding-right:20px}.shaiContent li.shaiItem.active{background-color:#4cacff!important;color:#fff!important}.shaiContent li.shaiItem{padding:3px 15px;float:left;border-radius:4px;color:#4c4c4c;cursor:pointer;margin-right:15px;display:block}.shaiContent li.shaiItem:hover{background-color:#4cacff!important;color:#fff!important}.shaiAllItem{max-width:1138px}.subshaicontent{display:none;box-sizing:border-box;position:absolute;width:100%;top:33px;left:0;background-color:#fff;box-shadow:0 1px 4px rgba(76,76,76,.2);padding:0 20px;z-index:99999;border-radius:4px;max-height:800px;overflow-y:auto}.subshaicontent-part{border-bottom:1px solid #eee}.subshaicontent-part:last-child{border-bottom:none}.subshaicontent a:hover,.subshaicontent a.active{color:#4cacff}.subshaicontent a{float:left;margin-right:20px;color:#999;cursor:pointer}.search-new{width:248px;height:32px;position:relative}.search-span{display:block;position:absolute;width:100%;height:100%;left:0;top:0;background-color:#f4f4f4;border:1px solid #eaeaea;border-radius:4px;z-index:1}.search-new-input{height:32px;padding-left:5px;width:225px;border:none;box-sizing:border-box;background:0 0;outline:none;position:absolute;left:0;top:1px;z-index:2}.search-new img,.search-new a{cursor:pointer;position:absolute;right:2px;top:2px;z-index:2}.search-new a{top:0}.search-new-input:focus+.search-span{background-color:#fff}.controlblue{width:0;height:15px;background-color:#4cacff;border-radius:7px;position:absolute;left:0;top:0;z-index:1}.controlring{width:13px;height:13px;border-radius:50%;background-color:#fff;position:absolute;left:1px;top:1px;z-index:2}@font-face{font-family:panmen-webfont;src:url(../fonts/panmen-webfont.ttf)}.shixunDetail_top{width:100%;background-image:url(/images/educoder/shixun-detail.jpg);height:240px;justify-content:center;align-items:center;display:-webkit-flex;background-size:cover;background-position:50%;background-repeat:no-repeat}.task-item{margin-top:30px;padding-bottom:30px;border-bottom:1px solid #eee}.task-item:last-child{border-bottom:none}.recomments{margin-bottom:20px}.recomments:first-child{margin-top:0}.recomments:last-child{margin-bottom:0;border:none;padding-bottom:0}.url-input{border:none;padding:0;font-size:12px;color:#999;outline:none}.TPMtaskName{max-width:500px}.recomment-name{max-width:222px;display:block}.task-colspan{min-width:25%;text-align:left;display:block;float:left;color:#999}.challenge_nav{padding:20px 20px 0;border-bottom:1px solid #eee}.challenge_nav li{width:auto;float:left;margin-right:20px;position:relative}.challenge_nav li.active:after{position:absolute;content:'';width:76%;background-color:#4cacff;height:3px;border-radius:2px;left:25%;bottom:0}.challenge_nav li a{display:block;width:100%;padding-bottom:20px}.add_choose_type{width:60px;height:20px;line-height:19px;border-radius:2px;background-color:#eaeaea;color:#999!important;display:block;float:left;text-align:center;margin-top:4px}.task_tag_span{float:left;padding:0 10px;background-color:#eee;color:#999;border-radius:2px;margin-right:10px;margin-bottom:8px}.task_tag_span span{float:left}.task_tag_span a{font-size:18px;margin-left:5px;float:left;line-height:28px;height:28px;cursor:pointer}.task_tag_span a:hover{color:#666!important}.show_content_grey{padding:10px 15px;background-color:#f4f4f4;color:#05101a;text-align:justify;word-break:break-all;border-radius:4px;width:100%;box-sizing:border-box}.empty{background:#494a4c;display:inline;margin:0 2px;padding:0 3px}.option-item{border:1px solid #e2e2e2}.option-item{display:block;width:38px;height:38px;text-align:center;line-height:38px;border-radius:4px;cursor:pointer}.check-option-bg{background:#ff7500;color:#fff!important;border:1px solid #ff7500}.position-delete{position:absolute;right:-22px;top:12px;cursor:pointer}.position-delete:hover i{color:#4cacff!important}.rankings li{line-height:40px;height:40px}.rankingindex{width:24px;text-align:center}.collaborators-item{border-bottom:1px solid #eee;cursor:default;padding-top:30px;padding-left:20px}.collaborators-item:last-child{border-bottom:none}.upload_select_box{width:100%;box-sizing:border-box;height:240px;overflow-y:auto;padding:10px;background:#f4faff;color:#333}.pullreques_name{width:120px;text-align:left;margin-right:10px}.pullreques_pull_txt{display:block;margin-left:10px;max-width:640px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.versionFileList li{border-bottom:1px solid #eee}.versionFileList li:last-child{border-bottom:none}.old{background:#ffecec}.old:hover{background:#fffaf1}.new{background:#eaffea}.new:hover{background:#fffaf1}.pathNavLine{position:absolute;bottom:-8px;width:100%}.path-nav li{float:left;padding:0 30px;height:42px}.path-nav li a{color:#fff;font-size:16px;display:block;height:40px}.path-nav li.active a{border-bottom:3px solid #4cacff;color:#4cacff}.subhead{width:100%;margin-bottom:40px;background-size:100% 100%;background-image:url(/images/educoder/path-detail.jpg);height:240px;justify-content:center;align-items:center;display:-webkit-flex;background-size:cover;background-position:50%;background-repeat:no-repeat}.subhead_content{width:1200px;margin:0 auto}.pathInfo li{text-align:center;float:left;margin-right:30px}.pathInfo li span{display:block}.produce-content{padding:40px 20px;background-color:#fff;box-sizing:border-box}.lesson-saved-list-item{border-bottom:1px solid #ebebeb;padding:37px 0}.title-line{padding:0 20px}.paragraph{height:50px;padding:10px 20px 10px 47px;box-sizing:border-box}.paragraph:hover{background-color:#f0f8ff}.lesson-saved-list-item:last-child{border:none}.click_add{text-align:center;height:90px;line-height:90px;background-color:#fff;border-top:1px solid #ebebeb;cursor:pointer}.mustlearn{padding:40px 25px}.teacherTeam{padding:40px 25px 0}.teacherTeamItem{border-bottom:1px solid #eaeaea;padding:40px 0}.teacherTeamItem:first-child{padding-top:0!important}.teacherTeamItem:last-child{border:none}.addTeamMember{height:70px;text-align:center;line-height:70px}.adding-stage-item{padding:0 20px 20px 50px;position:relative}.colseThispart{position:absolute;right:-6px;top:-6px;z-index:2;line-height:15px}.progressRing{display:block;width:16px;height:16px;float:left;position:relative;z-index:1}.progressRing-over{color:#459be6;position:absolute;top:-10px}.progressRing-part{color:#b3dcff;position:absolute;top:-10px}.myProgressNav{width:100%;position:relative;height:10px;border-radius:5px;background-color:#eaeaea}.myProgressGreen{position:absolute;top:0;left:0;border-radius:5px;height:100%;background-color:#29bd8b}.lesson-saved-list-item .title-line .edit:hover,.lesson-saved-list-item .title-line .delete:hover{color:#ff7500!important}li.li-width63{width:63%;text-align:left}.courseHead{width:100%;margin-bottom:40px;background-size:100% 100%;background-image:url(/images/educoder/courtailsbdpicture.jpg);height:240px;justify-content:center;align-items:center;display:-webkit-flex;background-size:cover;background-position:50%;background-repeat:no-repeat}.invite-tip{position:absolute;top:-5px;right:140px;color:#fff;box-sizing:border-box;width:170px;text-align:center;border-radius:2px;background-color:rgba(5,16,26,.6);z-index:5000}.inviteTipbtn a{font-size:14px;width:100%;height:30px;line-height:30px;display:block;color:#747a7f;background-color:rgba(5,16,26,.4)}.inviteTipbtn a:hover{color:#4cacff!important}.top-black-trangle{display:block;border-width:8px;position:absolute;top:-16px;right:4px;border-style:dashed solid dashed dashed;border-color:transparent transparent rgba(5,16,26,.6)transparent;font-size:0;line-height:0}.loadMore{width:100%;background-color:#fff;color:#4cacff!important;text-align:center;display:block;letter-spacing:1px;box-sizing:border-box;height:110px;line-height:110px}.activity-left-name{display:block;max-width:126px;float:left}.panel-inner-fourm{padding:15px 20px;border-bottom:1px solid #eee}.panel-inner-fourm:hover{background:#eff9fd}.resources{width:100%!important;padding:15px;float:left;box-sizing:border-box;border-top:1px solid #eee}.resources:last-child{border-bottom:none}#sourceTag li{font-size:12px;color:#4e7a9b;background-color:#e5f3ff;padding:0 4px;height:20px;line-height:20px;margin-left:5px;display:inline-block;cursor:pointer}#sourceTag li a{color:#4e7a9b!important}#sourceTag li.active{background-color:#4cacff;color:#fff}#sourceTag li.active a{background-color:#4cacff;color:#fff!important}.new-info{height:18px;min-width:18px;line-height:18px;padding:0 2px;box-sizing:border-box;text-align:center;background-color:#ff6800;color:#fff;border-radius:30px;display:block;position:absolute;right:40px;top:13px;font-size:12px}.ridingNav li{float:left;margin:0 20px;color:#999;font-size:16px;height:60px;line-height:60px;position:relative}.ridingNav li a{display:block;width:100%;height:100%;color:#999}.ridingNav li.active a{color:#05101a}.ridingNav li.active:after{content:'';position:absolute;bottom:0;width:100%;height:2px;border-radius:1px;background-color:#05101a}.new-point{display:block;width:4px;height:4px;border-radius:50%;background-color:#ff6800}.ridinglist:hover{background-color:#f5f5f5}.ridinglist .ridinglist-sub{border-bottom:1px solid #f5f5f5;padding:25px 0;cursor:pointer}.ridinglist:last-child .ridinglist-sub{border-bottom:none}.private-item{padding:30px 30px 30px 25px;border-bottom:1px solid #f5f5f5;cursor:pointer}.private-item:hover{background-color:#f5f5f5}.private-item:last-child{border-bottom:none}.writeLetter_Info{position:relative;width:100%;height:260px;background-color:#f6f6f6;cursor:default;border-radius:3px}.writeLetter_text{width:100%;border:none;background-color:#f6f6f6;outline:none;height:100%;padding:5px 5px 30px;border:1px solid #eaeaea;box-sizing:border-box;resize:none}.longchar{position:absolute;background-color:#f6f6f6;bottom:1px;color:#999;right:10px}.writeLetter_text:focus+.longchar{background-color:#fff}.recently_person{position:absolute;width:100%;top:35px;max-height:300px;overflow-y:auto;border-radius:4px;box-shadow:0 1px 6px rgba(76,76,76,.2);left:0;z-index:1;background-color:#fff;cursor:pointer;display:none}.recently_item{padding:10px 20px}.recently_name{float:left;line-height:48px;display:block}.recently_item:hover{background-color:#f9f9f9}.private-list{min-height:660px;max-height:831px;overflow-y:auto;overflow-x:hidden}.private-list .private-part{padding-left:20px;cursor:pointer}.private-part:hover{background-color:#f5f5f5}.private-part.active{background-color:#f5f5f5}.privatePartName{max-width:70px;float:left}.newLetter{display:block;width:4px;height:4px;background-color:#ff6800;border-radius:50%;float:right}.part-line{padding:30px 20px 30px 0;border-bottom:1px solid #f5f5f5}.private-part:last-child .part-line{border:none}.dialogPanel{padding:0 20px;height:545px;overflow-y:auto}.letter-time{width:auto;padding:0 10px;background-color:#999;color:#fff;border-radius:10px;height:20px;line-height:20px}.OtherSide,.ThisSide{margin-top:30px}.OtherSide-info .trangle{position:absolute;left:-5px;top:10px;width:0;height:0;border-top:6px solid transparent;border-right:5px solid #f5f5f5;border-bottom:6px solid transparent}.OtherSide-info .sms{max-width:300px;padding:10px 15px;box-sizing:border-box;background-color:#f5f5f5;color:#666;border-radius:6px;text-align:justify}.OtherSide-info .sms img{max-width:80px;cursor:pointer}.ThisSide-info .sms p{line-height:20px}.sms{min-height:48px}.ThisSide .trangle{position:absolute;right:-5px;top:10px;width:0;height:0;border-top:6px solid transparent;border-left:5px solid #4cacff;border-bottom:6px solid transparent}.ThisSide-info .sms{max-width:300px;padding:10px 15px;box-sizing:border-box;background-color:#4cacff;color:#fff;border-radius:6px;text-align:justify}.ThisSide-info .sms p{line-height:20px}.ThisSide-info .sms img{max-width:80px;cursor:pointer}.action{color:#05101a}.announcement{padding:20px 0;border-bottom:1px solid #eee}.announcement:last-child{border-bottom:none}.part{width:540px;margin:0 auto 10px;background-color:rgba(25,27,32,.6)}.both{clear:both}.left{float:left}.right{float:right}.statistics_position{position:absolute;bottom:22px;left:0;width:100%;left:0}ul.count_ul li{width:300px;position:relative;float:left}ul.count_ul li span:first-child{display:block;width:100%;color:#989898;margin-bottom:20px}ul.count_ul li span:last-child{display:block;width:100%;color:#fff;font-size:24px;line-height:20px}ul.count_ul li:not(:last-child):after{position:absolute;content:'';width:1px;height:36px;background-color:#999;right:0;top:16px}.static_shadow{box-shadow:0 0 9px rgba(174,175,177,.2)}.subject_statistics_top{height:240px;width:100%;position:relative;background-image:url(/images/educoder/subject_statistics.jpg);background-size:100% 100%}#course_list{overflow-y:auto;background:#fff}.popup_tip_box{right:-160px;top:55px}.homepagePostSetting{display:none}.nodata{text-align:center;background-color:initial;border-color:transparent;color:#000}#attachments_fields span{font-size:12px;color:#ccc}.ml20mr20Color{color:#676767}.color-dark-grey{color:#999!important}.colorFFF{color:#fff!important}.left{float:left}.cancellation{position:absolute;top:62px;left:177px;color:#fff!important}.tabeltext-alignleft{text-align:center}.newshixun_tab_div{padding:0 22px 0 -5px;max-height:90px;overflow-y:auto}.newcolor-orange{color:#ff6800}.color4CACFF{color:#4cacff!important;font-size:16px}.color979797{font-size:14px;color:#979797!important;padding-left:2%}.marginTop{margin-right:33%;margin-top:20px}.shixuns_count{color:#05101a;font-size:14px}#shixun_search_form_div{margin-top:20px;margin-bottom:20px!important}.editormd-html-preview{width:100%!important;color:#323232!important}.mt4{margin-top:4px}.newMain,.newFooter{max-width:unset}.educontentTop{width:1178px!important}.inner-footer_con{width:auto}.careershover{margin-right:30px!important}.careershover ul li a{color:#000!important}.careershover ul li{height:35px!important;line-height:35px!important}.edu-menu-listnew{width:165px!important;top:60px;left:-42px}.edu-menu-listnew li a{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#000!important}.edu-menu-listnew li a:hover{color:#fff!important}.ListTableLine>p{margin-bottom:0;padding:0 30px;background-color:#f5f5f5;line-height:40px;height:56px;padding-top:8px;box-sizing:border-box}.ListTableLine>p span{float:left;color:#666;box-sizing:border-box}.ListTableLine li{min-height:48px;padding:10px 0;box-sizing:border-box;margin:0 30px;border-bottom:1px solid #eaeaea}.ListTableLine li>span{float:left;box-sizing:border-box}.ListTableLine .column-1{width:100px;text-align:left;padding-left:5px;box-sizing:border-box}.ListTableLine .column-1{width:100px;text-align:left;padding-left:5px;box-sizing:border-box}.ListTableLine .column-2{width:180px;text-align:center;padding-left:5px;box-sizing:border-box}.ListTableLine .column-3{width:330px;text-align:left;padding-left:5px;box-sizing:border-box}.ListTableLine .column-4{width:400px;text-align:left;padding-left:5px;box-sizing:border-box}#traningNav{padding:30px 30px 0 0}#traningNav>li{float:left;padding:0 30px 30px;font-size:16px}#traningNav>li>a,#traningNav li>i{color:#666!important;position:relative}#traningNav>li.active>a,#traningNav li.active>i{color:#05101a!important}#traningNav>li.active>a:after{content:'';position:absolute;width:64px;left:50%;margin-left:-32px;height:2px;background-color:#05101a;bottom:-35px}.gaugeOutfit{position:relative;height:70px;width:120px;background:linear-gradient(30deg,transparent 49.5%,#eee 50%,#eee 50%,transparent 50.5%)}.gaugeOutfit span:first-child{position:absolute;left:8px;top:46px}.gaugeOutfit span:last-child{position:absolute;right:8px;top:14px}.sustainLine td:not(:first-child):hover{background-color:rgba(41,189,139,.1);cursor:pointer}.packinput .ant-input{height:50px;width:749px;border-color:#e1edf8!important}.packinput{width:749px}.packinput .ant-input-group-addon .ant-btn{width:140px!important;font-size:18px;height:50px;background:#4cacff}.setissues{width:280px;height:50px;background:#4cacff;border-radius:4px;margin-left:15px}.pagetype li{color:#8f8f8f!important}.mbf10{margin-bottom:-10px}.PackageIndexNEIBanner{width:1200px;height:110px;background:#fff;box-shadow:0 2px 6px rgba(125,125,125,.26);border-radius:8px}.padding110{padding:39px 110px 0;box-sizing:border-box}.borderccc{border:1px solid #ccc}.input-100-40s{width:100%;padding:5px;box-sizing:border-box}.fafafas{background-color:#fafafa!important;height:40px}.fafafas:focus{background-color:#fff!important}.fafas .ant-input{background-color:#fafafa!important;height:40px}.fafas .ant-input:focus{background-color:#fff!important}.fafas .ant-input-group-addon .ant-btn{width:140px!important;font-size:14px;height:40px;background:#4cacff}.newFormbox .upload_filename{line-height:32px}.newFormbox .attachment span{line-height:23px}.newFormbox .attachment .remove-upload{line-height:28px}.newFormbox .attachment .icon-fujian{font-size:14px!important;line-height:14px;margin-top:9px}.newFormbox{height:20px}.defalutCancelbtns{display:block;border:1px solid #4cacff!important;background-color:#fff;color:#4cacff!important;width:130px;height:40px;text-align:center;line-height:40px;border-radius:4px}.defalutSubmitbtns{background-color:#4cacff;height:40px}.defalutSubmitbtnmodels{width:127px;height:30px;background-color:#4cacff}.padding200{padding:115px 200px 215px}.fontcircle{font-size:80px;display:inherit}.sumbtongs{font-size:24px;display:inherit;text-align:center}.terraces{font-size:16px;display:inherit;text-align:center;color:#999}.padding251{padding:0 245px}.ml17{margin-left:17px}.project-package-items{display:-webkit-flex;display:flex;flex-direction:row;margin:0!important;padding:20px;background:#fff;margin-bottom:0!important;box-shadow:none!important}.publicpart.orangeGreen{border-left:80px solid #29bd8b}.publicwords{left:3px;top:18px}.project-packages-list .project-package-items .item-image{width:100px!important}.height185{height:185px}.ContacttheTA{width:80px;height:26px;font-size:14px;line-height:26px;display:block;border:1px solid #4cacff!important;background-color:#fff;color:#4cacff!important;text-align:center;border-radius:4px}.ContacttheTAs{width:80px;height:26px;font-size:14px;line-height:24px;border:1px solid #fff!important;background-color:#4cacff;color:#fff!important;text-align:center;border-radius:4px}.ml28{margin-left:28px}.longboxs{font-size:16px;font-family:MicrosoftYaHei-Bold;font-weight:700;color:#05101a;border-left:4px solid #4cacff;padding-left:10px;margin-bottom:20px}.padding020{padding:0 20px 20px}.mtf3{margin-top:-3px}.task-btn-nebules{background:#fff!important;color:#4cacff!important;border:1px solid #4cacff!important;margin-left:20px;cursor:pointer;display:inline-block;padding:0 12px;letter-spacing:1px;text-align:center;font-size:14px;height:30px;line-height:30px;border-radius:2px}.packageabsolute{position:absolute;right:-16px;top:-7px}.relativef{position:relative}.homehove:hover .ptext{color:#4cacff!important}.homehove:hover .ContacttheTAs{display:block}.topsj{position:absolute;top:-6px}.bottomsj{position:absolute;bottom:-6px}.pagenoedits{margin-left:20px;color:#ccc}.pagemancenter{text-align:center}.ml0{margin-left:0}.tabelcli{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:850px;display:table-cell}.mtf10{margin-top:-10px}.padding26{padding:26px;box-sizing:border-box}.pd26{padding:26px}.pd30a0{padding:30px 30px 16px}.shaiContent li.shaiItem:hover span{color:#fff!important}.shaiContent li.shaiItem:hover i.iconfont{color:#4cacff!important}.detail_for_paragraph p{white-space:pre-wrap}.square-main p{margin-bottom:0!important}.markdown-body{text-align:justify;word-break:break-all}.RightPaneDrawer .ant-drawer-content{background:#070f1a;overflow:hidden!important}.deletebuttom{border:transparent}.RightPaneDrawer .jupyter_data_list{max-height:340px}.ant-btn-primary{text-shadow:none!important;box-shadow:none!important}.ant-notification{z-index:10001!important}input.ant-input-lg::placeholder{font-size:14px!important}p{margin-bottom:0!important}.toprightNum{position:absolute;right:0;top:4px;color:#999}.ant-input,.ant-input .ant-input-suffix{background-color:#fff!important}.has-error .ant-input{background-color:#fef1f0!important}.CodeMirror-merge{position:relative;white-space:pre}.CodeMirror-merge,.CodeMirror-merge .CodeMirror{min-height:50px}.CodeMirror-merge-2pane .CodeMirror-merge-pane{width:48%}.CodeMirror-merge-2pane .CodeMirror-merge-gap{width:4%}.CodeMirror-merge-3pane .CodeMirror-merge-pane{width:31%}.CodeMirror-merge-3pane .CodeMirror-merge-gap{width:3.5%}.CodeMirror-merge-pane{display:inline-block;white-space:normal;vertical-align:top}.CodeMirror-merge-pane-rightmost{position:absolute;right:0;z-index:1}.CodeMirror-merge-gap{z-index:2;display:inline-block;height:100%;-moz-box-sizing:border-box;box-sizing:border-box;overflow:hidden;position:relative;background:#515151}.CodeMirror-merge-scrolllock-wrap{position:absolute;bottom:0;left:50%}.CodeMirror-merge-scrolllock{position:relative;left:-50%;cursor:pointer;color:#d8d8d8;line-height:1}.CodeMirror-merge-copybuttons-left,.CodeMirror-merge-copybuttons-right{position:absolute;left:0;top:0;right:0;bottom:0;line-height:1}.CodeMirror-merge-copy{position:absolute;cursor:pointer;color:#ce374b;z-index:3}.CodeMirror-merge-copy-reverse{position:absolute;cursor:pointer;color:#44c}.CodeMirror-merge-copybuttons-left .CodeMirror-merge-copy{left:2px}.CodeMirror-merge-copybuttons-right .CodeMirror-merge-copy{right:2px}.CodeMirror-merge-r-inserted,.CodeMirror-merge-l-inserted{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAAGUlEQVQI12MwuCXy3+CWyH8GBgYGJgYkAABZbAQ9ELXurwAAAABJRU5ErkJggg==);background-position:0 100%;background-repeat:repeat-x}.CodeMirror-merge-r-deleted,.CodeMirror-merge-l-deleted{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAAGUlEQVQI12M4Kyb2/6yY2H8GBgYGJgYkAABURgPz6Ks7wQAAAABJRU5ErkJggg==);background-position:0 100%;background-repeat:repeat-x}.CodeMirror-merge-r-chunk{background:#9a6868}.CodeMirror-merge-r-chunk-start{}.CodeMirror-merge-r-chunk-end{}.CodeMirror-merge-r-connect{fill:#9a6868}.CodeMirror-merge-l-chunk{background:#eef}.CodeMirror-merge-l-chunk-start{border-top:1px solid #88e}.CodeMirror-merge-l-chunk-end{border-bottom:1px solid #88e}.CodeMirror-merge-l-connect{fill:#eef;stroke:#88e;stroke-width:1px}.CodeMirror-merge-l-chunk.CodeMirror-merge-r-chunk{background:#dfd}.CodeMirror-merge-l-chunk-start.CodeMirror-merge-r-chunk-start{border-top:1px solid #4e4}.CodeMirror-merge-l-chunk-end.CodeMirror-merge-r-chunk-end{border-bottom:1px solid #4e4}.CodeMirror-merge-collapsed-widget:before{content:"(...)"}.CodeMirror-merge-collapsed-widget{cursor:pointer;color:#88b;background:#eef;border:1px solid #ddf;font-size:90%;padding:0 3px;border-radius:4px}.CodeMirror-merge-collapsed-line .CodeMirror-gutter-elt{display:none} \ No newline at end of file diff --git a/src/forge/Component/User.jsx b/src/forge/Component/User.jsx index 0d970173..198667b0 100644 --- a/src/forge/Component/User.jsx +++ b/src/forge/Component/User.jsx @@ -22,15 +22,15 @@ export default ({ url , name , column , id , login })=>{ return( id? - + { url && } {name} - + : - + { url && } {name} - + ) } \ No newline at end of file diff --git a/src/forge/Main/CoderDepot.jsx b/src/forge/Main/CoderDepot.jsx index 1dd21b42..6c25207f 100644 --- a/src/forge/Main/CoderDepot.jsx +++ b/src/forge/Main/CoderDepot.jsx @@ -410,7 +410,7 @@ function CoderDepot(props){ const baseOperate = projectDetail && projectDetail.permission && projectDetail.permission !=="Reporter" && projectDetail.type !==2 && pullsFlag && props.platform; const fileOperate = type === "dir" && projectDetail && projectDetail.type !==2 && ((projectDetail.permission && projectDetail.permission !=="Reporter") || (current_user && current_user.admin)); return( - +
{mirror_status ===0 && setOpenModal(false)} onOk={okUpdate}/> } { @@ -435,11 +435,11 @@ function CoderDepot(props){
{ projectDetail && - - +
+
- - +
+
{ props && (props.platform && mirror_status ===0) ? @@ -467,7 +467,7 @@ function CoderDepot(props){ /> : - +
{ props.platform ? @@ -482,8 +482,8 @@ function CoderDepot(props){ {projectDetail && projectDetail.branches_count} } - - +
+
{ props.platform ? @@ -497,11 +497,11 @@ function CoderDepot(props){ {projectDetail && projectDetail.tags_count} } - +
} - - +
+
{ baseOperate && @@ -533,8 +533,8 @@ function CoderDepot(props){ - - +
+
{ (dirInfo && dirInfo.length>0) || fileInfo ?
@@ -602,18 +602,18 @@ function CoderDepot(props){ {/* readme文件显示(显示文件详情时不显示readme文件) */} { (readme && readme.replace_content) ? :"" }
- +
{ (!(treeValuePath && treeValuePath.length > 0) && !fileInfo ) && - - +
+
- 关于 +
关于 { projectDetail.permission && (projectDetail.permission==="Admin" || projectDetail.permission==="Owner" || projectDetail.permission==="Manager") && setOpenModal(true)} className="iconfont icon-a-shezhi color-grey-9 font-15 pointer"> } - +
{desc &&

{desc}

} {/* 项目标签 */} {topics &&
@@ -675,14 +675,14 @@ function CoderDepot(props){ {mirror_status ===0 && } {/* 语言 */} { mirror_status ===0 && } - - +
+
} - +
}
- +
) } diff --git a/src/forge/Main/Detail.js b/src/forge/Main/Detail.js index 05b595d8..938accea 100644 --- a/src/forge/Main/Detail.js +++ b/src/forge/Main/Detail.js @@ -619,9 +619,9 @@ class Detail extends Component {
- +
- +
{project && project.author && {project.author.name} @@ -631,7 +631,7 @@ class Detail extends Component {
{projectDetail && projectDetail.private && 私有} {!platform && 只读} - +
{ projectDetail && projectDetail.forked_from_project_id && projectDetail.fork_info ? @@ -699,7 +699,7 @@ class Detail extends Component { }
-
+
{/*
{ projectDetail && projectDetail.forked_from_project_id && projectDetail.fork_info ? diff --git a/src/index.css b/src/index.css index 3e6b6a37..266cbcdf 100644 --- a/src/index.css +++ b/src/index.css @@ -186,4 +186,57 @@ i.color-orange05:hover { .color-light-green { color: #29bd8b !important; +} + +.AlignTop { + display:flex; + align-items: flex-start +} +.WhiteBack { + background-color:#fff; + border-radius:5px +} +.Box { + display:flex; + align-items:flex-start +} +.LongWidth { + flex:1; + width:0; + border-radius:5px; + margin-bottom:30px +} +.ShortWidth { + width:300px; + border-radius:5px; + margin-bottom:30px +} +.Gap { + padding-left:20px; + box-sizing:border-box; +} +.AlignCenter { + display:flex; + align-items: center +} +.FlexAJ { + display:flex; + align-items: center; + justify-content: space-between +} +.mt25 { + margin-top:25px +} +.User { + display:flex; + font-weight: bold; + align-items: center +} +.User img { + width:30px; + height:30px; + border-radius:50% +} +.User span { + margin-left:8px } \ No newline at end of file From 9ebb0538ca857fe1574c97317829c2bf975e4097 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E5=BF=83=E5=AE=87?= Date: Thu, 9 May 2024 14:48:23 +0800 Subject: [PATCH 16/25] =?UTF-8?q?=E6=A0=B7=E5=BC=8Fcont.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/forge/Main/CoderDepotReadme.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/forge/Main/CoderDepotReadme.jsx b/src/forge/Main/CoderDepotReadme.jsx index 38dbefba..c1ca3ab9 100644 --- a/src/forge/Main/CoderDepotReadme.jsx +++ b/src/forge/Main/CoderDepotReadme.jsx @@ -43,7 +43,7 @@ function CoderDepotReadme({ operate , history , readme , ChangeFile }){
- +
@@ -53,7 +53,7 @@ function CoderDepotReadme({ operate , history , readme , ChangeFile }){ {readme.name} - +
{ operate ? ChangeFile(readme && readme.path, false)}> From 0ec2e090ad10a25187e93e14b4a11e6d04ad2557 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E5=BF=83=E5=AE=87?= Date: Thu, 9 May 2024 15:09:23 +0800 Subject: [PATCH 17/25] =?UTF-8?q?=E6=A0=B7=E5=BC=8Ftest?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/forge/Main/CoderDepot.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/forge/Main/CoderDepot.jsx b/src/forge/Main/CoderDepot.jsx index 6c25207f..8a31d294 100644 --- a/src/forge/Main/CoderDepot.jsx +++ b/src/forge/Main/CoderDepot.jsx @@ -48,7 +48,7 @@ function CoderDepot(props){ const [ lastCommitAuthor,setLastCommitAuthor ] = useState((projectEntries.last_commit && projectEntries.last_commit.author) || undefined); const [ type ,setType ] = useState('dir'); const [ hide , setHide ] = useState(true); - const [ hideBtn , setHideBtn ] = useState(false); + const [ hideBtn , setHideBtn ] = useState(true); const [ commitCount ,setCommitCount ] = useState(projectEntries.commits_count || 0); const [ dirInfo ,setDirInfo ] = useState(projectEntries.entries || undefined);//文件夹目录列表 const [ fileInfo ,setFileInfo ] = useState(undefined);//文件内容信息 @@ -551,7 +551,7 @@ function CoderDepot(props){
} - { hideBtn && changeHide(hide)}> } + { hideBtn && __CLIENT__ && changeHide(hide)}> } {lastCommit.time_from_now} { From 8f659d03584abac13cfa6965a2c64de38cc2e8be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E5=BF=83=E5=AE=87?= Date: Thu, 9 May 2024 15:23:05 +0800 Subject: [PATCH 18/25] =?UTF-8?q?=E6=A0=B7=E5=BC=8Fcont.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/forge/Main/CoderDepot.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/forge/Main/CoderDepot.jsx b/src/forge/Main/CoderDepot.jsx index 8a31d294..7a1a0abb 100644 --- a/src/forge/Main/CoderDepot.jsx +++ b/src/forge/Main/CoderDepot.jsx @@ -230,7 +230,7 @@ function CoderDepot(props){ let ele = document.getElementById("ptxt"); if(ele){ let h = ele.offsetHeight; - if( h > 36 ) setHideBtn(true); + if( h <= 36 ) setHideBtn(false); } } },[projectDetail,lastCommit]) @@ -551,7 +551,7 @@ function CoderDepot(props){
} - { hideBtn && __CLIENT__ && changeHide(hide)}> } + { hideBtn && __CLIENT__ &&
changeHide(hide)}>
} {lastCommit.time_from_now} { From b98ff36c7c389e73726825df933c8ac44e9e74a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E5=BF=83=E5=AE=87?= Date: Thu, 9 May 2024 15:59:22 +0800 Subject: [PATCH 19/25] =?UTF-8?q?=E6=A0=B7=E5=BC=8Fcont.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/css/gitlink.min.css | 2 +- src/forge/Branch/branch.scss | 36 +++++++++++++++++++----------------- 2 files changed, 20 insertions(+), 18 deletions(-) diff --git a/public/css/gitlink.min.css b/public/css/gitlink.min.css index 8163a184..3a015116 100644 --- a/public/css/gitlink.min.css +++ b/public/css/gitlink.min.css @@ -1 +1 @@ -@charset "utf-8";.header{width:100%;height:51px;min-width:1200px;background:#171616}.animate{-webkit-transition:all .3s;-moz-transition:all .3s;-ms-transition:all .3s;-ms-transition:all .3s;transition:all .3s;backface-visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden}.footer{width:100%;height:100px;background-color:#fff}.footer_con-p{color:#888;margin-top:10px}.inner-footer_con{width:1200px;margin:0 auto}.panel-inner-fourm{padding:20px;border-bottom:1px solid #eee}.panel-inner-fourm:hover{background:#eff9fd}a.panel-list-title,.panel-list-title{display:inline-block;font-size:16px;color:#333;font-weight:400;max-width:82%}a:hover.panel-list-title{color:#ff7500}.panel-list-img{width:60px;height:60px;border-radius:100px}a.panel-name-small{display:inline-block;max-width:100px;color:#29bd8b;font-size:12px}.panel-lightgrey,.panel-lightgrey span{font-size:12px;color:#888}.panel-comment_item{width:100%}.panel-comment_item .t_area{color:#888}.comment_item_cont{padding:15px;border-bottom:1px solid #e3e3e3}.comment_item_cont .J_Comment_Face{height:50px}.comment_item_cont .J_Comment_Face img{width:50px;height:50px;border-radius:100px}.panel-comment_item .t_content{width:93%;margin-left:15px}.panel-comment_item a.content-username{font-size:14px;margin-right:15px;display:inline-block;max-width:100px;color:#888}.J_Comment_Info{height:20px;line-height:22px}.panel-comment_item .comment_orig_content{margin:10px 0;color:#999}.panel-comment_item .comment_orig_content .comment_orig_content{margin-top:0;color:#666}.panel-comment_item .comment_content{color:#666}.comment_content img{max-width:100%}.orig_reply{font-size:12px}.homepagePostReplyPortrait a img{border-radius:100px}.pages_user_show a:hover,.pages_user_show a.active{background-color:#fc7033;color:#fff;border:1px solid #fc7033}.pages_user_show a{display:inline-block;border:1px solid #d1d1d1;color:#888;float:left;text-align:center;padding:3px 10px;line-height:1.9;margin:0 5px}.pages_user_show li{float:left;list-style-type:none}.pages_user_show ul li{list-style-type:none!important}.pages_user_show ul li a{color:#888}.panel-form-label{display:inline-block;width:10%;min-width:90px;text-align:right;line-height:40px;font-weight:400}.panel-box-sizing{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;border-radius:3px}input.task-form-80,textarea.task-form-80,select.task-form-80,.task-form-80{padding:5px;width:80%;box-sizing:border-box}input.task-form-100,textarea.task-form-100,select.task-form-100,.task-form-100{padding:5px;width:100%}input.task-height-40,textarea.task-height-40,.task-height-40,select.task-height-40{height:40px}input.task-height-150,textarea.task-height-150,.task-height-150{height:150px}.handler_bg{background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0ZDhlNWY5My05NmI0LTRlNWQtOGFjYi03ZTY4OGYyMTU2ZTYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NTEyNTVEMURGMkVFMTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NTEyNTVEMUNGMkVFMTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2MTc5NzNmZS02OTQxLTQyOTYtYTIwNi02NDI2YTNkOWU5YmUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NGQ4ZTVmOTMtOTZiNC00ZTVkLThhY2ItN2U2ODhmMjE1NmU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+YiRG4AAAALFJREFUeNpi/P//PwMlgImBQkA9A+bOnfsIiBOxKcInh+yCaCDuByoswaIOpxwjciACFegBqZ1AvBSIS5OTk/8TkmNEjwWgQiUgtQuIjwAxUF3yX3xyGIEIFLwHpKyAWB+I1xGSwxULIGf9A7mQkBwTlhBXAFLHgPgqEAcTkmNCU6AL9d8WII4HOvk3ITkWJAXWUMlOoGQHmsE45ViQ2KuBuASoYC4Wf+OUYxz6mQkgwAAN9mIrUReCXgAAAABJRU5ErkJggg==)no-repeat 50%}.handler_ok_bg{background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0ZDhlNWY5My05NmI0LTRlNWQtOGFjYi03ZTY4OGYyMTU2ZTYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDlBRDI3NjVGMkQ2MTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDlBRDI3NjRGMkQ2MTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDphNWEzMWNhMC1hYmViLTQxNWEtYTEwZS04Y2U5NzRlN2Q4YTEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NGQ4ZTVmOTMtOTZiNC00ZTVkLThhY2ItN2U2ODhmMjE1NmU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+k+sHwwAAASZJREFUeNpi/P//PwMyKD8uZw+kUoDYEYgloMIvgHg/EM/ptHx0EFk9I8wAoEZ+IDUPiIMY8IN1QJwENOgj3ACo5gNAbMBAHLgAxA4gQ5igAnNJ0MwAVTsX7IKyY7L2UNuJAf+AmAmJ78AEDTBiwGYg5gbifCSxFCZoaBMCy4A4GOjnH0D6DpK4IxNSVIHAfSDOAeLraJrjgJp/AwPbHMhejiQnwYRmUzNQ4VQgDQqXK0ia/0I17wJiPmQNTNBEAgMlQIWiQA2vgWw7QppBekGxsAjIiEUSBNnsBDWEAY9mEFgMMgBk00E0iZtA7AHEctDQ58MRuA6wlLgGFMoMpIG1QFeGwAIxGZo8GUhIysmwQGSAZgwHaEZhICIzOaBkJkqyM0CAAQDGx279Jf50AAAAAABJRU5ErkJggg==)no-repeat 50%}img.edu-nodata-img{width:200px;margin:50px auto 20px;display:block}.edu-nodata-p{font-size:16px;text-align:center;color:#888;border-bottom:none!important}.user_bg_shadow{-webkit-box-shadow:0 0 8px 0 rgba(142,142,142,.1);-moz-box-shadow:0 0 8px 0 rgba(142,142,142,.1);box-shadow:0 0 8px rgba(142,142,142,.1)}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#ccc}input::-moz-placeholder,textarea::-moz-placeholder{color:#ccc}input::-moz-placeholder,textarea::-moz-placeholder{color:#ccc}input::-ms-input-placeholder,textarea::-ms-input-placeholder{color:#ccc}.btn-cir{display:inline-block;padding:0 5px;border-radius:25px;line-height:20px;font-size:12px}.btn-cir:hover{background:#fff;color:#333}.all_work_border{border:1px solid #4c515d}.btn-cir-red{background:red;color:#fff;font-weight:400}.btn-cir-red:hover{background:red}.btn-cir-orange{background:#ff7500;color:#fff;font-weight:400;border:1px solid #ff7500}.btn-top{display:inline-block;padding:0 5px;line-height:20px;font-size:12px;border-radius:3px}.btn-cir-big{background:#999;color:#fff;display:inline-block;padding:0 10px;border-radius:25px;line-height:25px;height:25px;font-size:12px}.panel-inner-icon{width:22px;height:22px;line-height:22px;border-radius:50%;background:#29bd8b;display:block;text-align:center}.panel-inner-icon{width:22px;height:22px;line-height:22px;border-radius:50%;background:#29bd8b;display:block;text-align:center}@keyframes ball-scale{0%{width:0;height:0}100%{width:80px;height:80px}}.shixun_work_div{overflow-y:auto;max-height:90px}html{height:100%}.w20_center{width:20px;text-align:center}.user-info{width:80px;height:100px;padding-top:15px}a.user-info-img{display:block;width:50px;height:50px;margin:0 auto}a.user-info-img img{border-radius:100px;border:2px solid #666}a.user-info-img img:hover{border:2px solid #888}a.user-info-name{display:block;font-size:16px;color:#fff;max-width:100px;margin:10px auto;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.leftnav-box{width:80px;height:60px;background:#292b3a;padding:10px 0;margin-bottom:2px}a.leftnav-box-inner{display:block;width:77px;border-left:3px solid #292b3a;background:#292b3a;text-align:center;padding:10px 0;color:#575f6c}a:hover.leftnav-box-inner,a.leftnav-active{border-left:3px solid #3498db;color:#fff!important}a:hover.leftnav-box-inner .btn-cir{background:#fff;color:#333}#tab_nav{height:42px;background:#fff;border-bottom:1px solid #eee}#tab_nav li{float:left;padding:0 30px;text-align:center;height:40px;line-height:40px}#tab_nav li a{font-size:14px}.tab_hover{border-bottom:2px solid #3498db;background:#fff;color:#3498db}.tab_hover a{color:#3498db!important}.undis{display:none}.dis{display:block}.tab-info{}.info-partly{display:block;box-flex:1;flex:1;-webkit-flex:1;position:relative}.task-popup-text-center{text-align:center;color:#333}.task-popup-title{border-bottom:1px solid #eee;padding:10px 15px}.task-popup-submit{margin:0 auto 15px;width:120px}.panel-form-label{display:inline-block;width:10%;min-width:90px;text-align:right;line-height:40px;color:#666}.panel-box-sizing{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.mb20{margin-bottom:20px}#game_task_pass img{cursor:pointer}.-fit{position:absolute;top:0;right:0;bottom:0;left:0}.-layout-v{display:flex;flex-direction:column;-webkit-flex-direction:column}.page--leftnav{position:fixed;top:0;left:0;right:0;z-index:9001;width:80px;height:100%;background:#282c37}.page--body{position:relative;margin-top:54px}.-flex{box-flex:1;flex:1;-webkit-flex:1}.split-panel.-fit{position:absolute}.split-panel{position:relative;overflow:hidden;min-height:200px;height:100%}.-stretch{align-items:stretch}.-layout{display:flex}.split-panel--first{overflow:hidden}.-relative{position:relative}.-bg-white{background-color:#eee}.-vertical{flex-direction:column;box-flex-direction:column;-webkit-flex-direction:column}.-layout-h{display:flex;flex-direction:row;box-flex-direction:row;-webkit-flex-direction:row}.-horizontal{flex-direction:row-reverse;box-flex-direction:row-reverse;-webkit-flex-direction:row-reverse}.-scroll{overflow:auto}.-flex-basic40{width:40%;box-flex:auto;flex:auto;-webkit-flex:auto}.-flex-basic50{width:60%;box-flex:auto;flex:auto;-webkit-flex:auto}.b-label{width:4px;cursor:ew-resize;background:#2b2b2b}.h-center{height:4px;cursor:ns-resize;background:#333}.-changebg{height:3px}.-bg-weightblack{background:#000}.-flex-basic70{box-flex:4 9 auto;flex:4 9 auto;-webkit-flex:4 9 auto;height:70%}.-flex-basic60{box-flex:2 1 auto;flex:2 1 auto;-webkit-flex:2 1 auto;height:30%}.-header-title{max-width:500px;font-weight:400}.-header-right{background:#333;border-radius:25px;padding:5px 15px;height:30px;position:absolute;right:10px;line-height:30px}.-bg-black{background:#2b2b2b;color:#f4f1ed}.-bg-darkblack{background:#1d1d1d;color:#fff}#blacktab_nav{height:40px;background:#292929}#blacktab_nav li{float:left;padding:0 50px;text-align:center;height:40px;line-height:40px}#blacktab_nav .add-webssh{position:relative}#blacktab_nav .add-webssh span{position:absolute;top:0;right:5px;color:#fff;cursor:pointer}#blacktab_nav li a{font-size:14px}#blacktab_nav li.code-file-tab{padding:0;width:120px;box-sizing:border-box;padding:0 15px}.code-flie-list{display:none;position:absolute;z-index:5;top:40px;background:#515151;width:300px;left:0;color:#fff}.blue-line{border-left:3px solid #199ed8!important;padding-left:5px}.codefile-all{max-height:122px;overflow-y:auto;overflow-x:hidden}.codefile-all p{text-align:left;cursor:pointer;height:22px;line-height:22px;margin-bottom:3px;padding-left:5px;border-left:3px solid #515151;width:273px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.codefile-all p:hover{background:#ccc;color:#333}.blacktab_hover a{color:#fff}.-task-ces-top{padding:5px 15px;background:#515151;color:#bfbfbf}.-task-ces-info-left{display:inline-block;width:100px;text-align:right}.page--over{position:fixed;top:0;left:80px;right:0;z-index:8000;height:100%;color:#fff}.-task-list-inner{background:#eff2f7;margin:10px;padding:5px}.-task-list-title{font-size:14px;color:#666;word-wrap:break-word;font-weight:400;max-width:80%}.greytab-inner{background:#fff}.blacktab-inner{background:#333}.task-padding16{padding:16px}@keyframes bounce-down{25%{transform:translateY(-10px)}50%,100%{transform:translateY(0)}}a.shixun-task-btn{display:inline-block;font-weight:700;border:none;padding:0 12px;color:#666;letter-spacing:1px;text-align:center;font-size:14px;height:30px;line-height:30px;border-radius:3px}.loading-center{text-align:center;align-items:center;justify-content:center}.center{vertical-align:middle;text-align:center}.searchFor{width:auto}.searchFor .searchCon{width:250px;border-bottom:1px solid #ccc;float:left;height:30px}.searchFor .searchCon input{border:none;outline:none;height:29px;width:91%}.searchFor .search_close{font-size:18px;float:right;color:#666;height:29px;line-height:29px;cursor:pointer}.tab_color{color:#bfbfbf!important}.comment-input{width:100%;margin:10px;margin-right:17px}.comment-input textarea{border:none!important;width:100%;outline:none;height:30px;border-radius:4px;padding-left:5px;float:left}.option-item{border:1px solid #e2e2e2}.option-item{display:block;width:38px;height:38px;text-align:center;line-height:38px;border-radius:4px}.check-option-bg{background:#ff7500;color:#fff!important;border:1px solid #ff7500}.position-delete{position:absolute;right:-22px;top:12px;cursor:pointer}.-center{align-items:center;min-height:66px}.markdown{letter-spacing:0;line-height:1.6;word-wrap:break-word;word-break:break-word}.markdown_anchors{position:relative}.markdown_anchors:hover .anchors{display:inline-block}.markdown_anchors .anchors:hover{text-decoration:none}.markdown_anchors .anchors{color:inherit;margin-left:-14px;display:none}.markdown code{padding:0;line-height:23px;margin:0;font-family:微软雅黑,宋体}.load{width:auto;top:50%;margin-top:-100px;position:relative}.empty{background:#494a4c;display:inline;margin:0 2px;padding:0 3px}.update_back_main{display:none;position:fixed;left:0;top:0;background:rgba(0,0,0,.3);width:100%;z-index:7001;height:100%}.tip-panel-animate-left{position:absolute;z-index:9000;left:80px;top:290px;background:#fff;width:430px;height:140px;border-radius:3px}.tip-panel-animate{position:absolute;z-index:10001;right:4px;top:40px;background:#fff;width:430px;height:140px;border-radius:3px;display:none}.tip-operator-btn{width:100%;border-top:1px solid #eee;height:40px;position:absolute;right:0;bottom:0;text-align:center}.tip-operator-btn a,.tip-operator-btn span{height:100%;text-align:center;line-height:40px;width:50%}.tip-operator-btn a:hover,.tip-operator-btn span:hover{background-color:#f9f9f9}.tip-operator-btn a:first-child,.tip-operator-btn span:first-child{border-right:1px solid #eee;width:49.5%}.animate-tip{animation:rightToleft 1s}.animate-tip-hide{animation:leftToright 1s}@keyframes rightToleft{from{right:-400px}to{right:4px}}@keyframes leftToright{from{right:4px}to{right:-420px}}@keyframes rightToleft-l{from{left:-400px}to{left:80px}}@keyframes leftToright-l{from{left:80px}to{left:-420px}}.photo_display{box-sizing:border-box;width:100%;position:fixed;top:0;left:0;padding-top:64px;padding-left:80px;background:0 0;height:100%;z-index:100}.photo_display .task-popup{width:100%!important;height:100%!important}#picture-content img{max-width:100%;height:400px;display:block;margin:0 auto;margin-bottom:20px}@font-face{font-family:iconfont;src:url(iconfont.woff2?t=1631773579834)format('woff2'),url(iconfont.woff?t=1631773579834)format('woff'),url(iconfont.ttf?t=1631773579834)format('truetype')}html body{font-size:14px;line-height:2;background:#fafafa;font-family:iconfont;color:#05101a;height:100%;position:relative;padding-right:0!important}html,body{height:100%}body,h2,h3,h4,h6,hr,p,blockquote,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td,span{margin:0;padding:0;margin-bottom:0!important}table,input,textarea,select,button{outline:none;border-radius:3px;font-family:微软雅黑,宋体;font-size:14px;line-height:1.9;border:1px solid #eaeaea;background:#fff;color:#05101a}textarea{resize:none}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#ccc}input::-moz-placeholder,textarea::-moz-placeholder{color:#ccc}input::-moz-placeholder,textarea::-moz-placeholder{color:#ccc}input::-ms-input-placeholder,textarea::-ms-input-placeholder{color:#ccc}div,img,tr,td,table{border:0}a:link,a:visited{text-decoration:none;color:#05101a}ol,ul,li{list-style-type:none}select:disabled,input:disabled{background-color:#eee}.clearfix:after{clear:both;content:".";display:block;font-size:0;height:0;line-height:0;visibility:hidden}.clearfix{clear:both;zoom:1}.cl{clear:both;overflow:hidden}.fl{float:left!important}.fr{float:right!important}.break-word{word-break:break-all;word-wrap:break-word}.break-word-firefox{white-space:pre-wrap!important;word-break:break-all}.justify{text-align:justify}.indent{text-indent:2em}.edu-max-h200{height:200px;overflow:auto}.edu-h270{height:270px}.edu-position{position:relative}a.edu-txt-w100,.edu-txt-w100{width:100px;display:inline-block;text-align:center}a.edu-txt-w80,.edu-txt-w80{width:80px;display:inline-block;text-align:center}.task-hide{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.task-hide-2{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.none{display:none!important}.block{display:block}.boxsizing{box-sizing:border-box}.iconfont{font-size:18px!important}.font-n{font-weight:400!important}.font-bd{font-weight:700}.font-n{font-weight:400}.font-12{font-size:12px!important}.font-13{font-size:13px!important}.font-14{font-size:14px!important}.font-15{font-size:15px!important}.font-16{font-size:16px!important}.weight400{font-weight:400}.weight500{font-weight:500}.weight{font-weight:700}.font-17{font-size:17px!important}.font-18{font-size:18px!important}.font-20{font-size:20px!important}.font-22{font-size:22px!important}.font-25{font-size:25px!important}.font-26{font-size:26px!important}.font-24{font-size:24px!important}.font-28{font-size:28px!important}.font-30{font-size:30px!important}.font-32{font-size:32px!important}.font-36{font-size:36px!important}.font-40{font-size:40px!important}.font-50{font-size:50px!important}.font-80{font-size:80px!important}.color-grey-b{color:#bbb!important}a.decoration{text-decoration:underline}.panel-form-label{display:inline-block;width:10%;min-width:90px;text-align:right;line-height:40px;font-weight:400}.mt1{margin-top:1px}.mt2{margin-top:2px}.mt3{margin-top:3px}.mt4{margin-top:4px}.mt5{margin-top:5px!important}.mt6{margin-top:6px}.mt7{margin-top:7px!important}.mt8{margin-top:8px!important}.mt9{margin-top:9px}.mt10{margin-top:10px!important}.mt12{margin-top:12px}.mt13{margin-top:13px}.mt14{margin-top:14px}.mt15{margin-top:15px!important}.mt16{margin-top:16px}.mt17{margin-top:17px}.mt18{margin-top:18px}.mt20{margin-top:20px!important}.mt22{margin-top:22px!important}.mt23{margin-top:23px!important}.mt24{margin-top:24px!important}.mt25{margin-top:25px}.mt28{margin-top:28px}.mt30{margin-top:30px!important}.mt34{margin-top:34px!important}.mt35{margin-top:35px!important}.mt36{margin-top:36px!important}.mt40{margin-top:40px}.mt45{margin-top:45px}.mt50{margin-top:50px}.mt56{margin-top:56px}.mt60{margin-top:60px}.mt70{margin-top:70px}.mt80{margin-top:80px}.mt100{margin-top:100px}.mb0{margin-bottom:0!important}.mb3{margin-bottom:3px}.mb5{margin-bottom:5px}.mb7{margin-bottom:7px}.mb10{margin-bottom:10px}.mb12{margin-bottom:12px}.mb13{margin-bottom:13px}.mb14{margin-bottom:14px}.mb15{margin-bottom:15px!important}.mb16{margin-bottom:16px}.mb20{margin-bottom:20px!important}.mb25{margin-bottom:25px}.mb26{margin-bottom:26px}.mb30{margin-bottom:30px!important}.mb40{margin-bottom:40px!important}.mb50{margin-bottom:50px!important}.mb60{margin-bottom:60px!important}.mb70{margin-bottom:70px!important}.mb80{margin-bottom:80px!important}.mb100{margin-bottom:100px!important}.ml-3{margin-left:-3px}.ml1{margin-left:1px}.ml2{margin-left:2px}.ml3{margin-left:3px}.ml4{margin-left:4px}.ml5{margin-left:5px}.ml6{margin-left:6px}.ml8{margin-left:8px}.ml10{margin-left:10px}.ml12{margin-left:12px!important}.ml13{margin-left:13px!important}.ml15{margin-left:15px}.ml18{margin-left:18px}.ml20{margin-left:20px}.ml22{margin-left:22px}.ml25{margin-left:25px}.ml30{margin-left:30px}.ml33{margin-left:33px}.ml35{margin-left:35px}.ml40{margin-left:40px}.ml50{margin-left:50px}.ml60{margin-left:60px}.ml80{margin-left:80px}.ml85{margin-left:85px}.ml180{margin-left:180px}.mr3{margin-right:3px}.mr4{margin-right:4px}.mr5{margin-right:5px}.mr8{margin-right:8px}.mr10{margin-right:10px}.mr12{margin-right:12px!important}.mr15{margin-right:15px}.mr18{margin-right:18px}.mr20{margin-right:20px}.mr25{margin-right:25px}.mr30{margin-right:30px}.mr35{margin-right:35px}.mr40{margin-right:40px}.mr50{margin-right:50px}.mr60{margin-right:60px}.mr70{margin-right:70px}.mr80{margin-right:80px}.mr90{margin-right:90px}.ml61{margin-left:61px}.pt5{padding-top:5px!important}.pt10{padding-top:10px}.pt15{padding-top:15px}.pt20{padding-top:20px!important}.pt25{padding-top:25px}.pt30{padding-top:30px}.pt35{padding-top:35px}.pt37{padding-top:37px}.pt40{padding-top:40px}.pt50{padding-top:50px}.pt60{padding-top:60px}.pt80{padding-top:80px}.pb5{padding-bottom:5px!important}.pb10{padding-bottom:10px}.pb15{padding-bottom:15px}.pb20{padding-bottom:20px}.pb25{padding-bottom:20px}.pb25{padding-bottom:20px}.pb28{padding-bottom:28px}.pb30{padding-bottom:30px}.pb40{padding-bottom:40px}.pb47{padding-bottom:47px}.pb50{padding-bottom:50px}.pb60{padding-bottom:60px}.pb100{padding-bottom:100px}.pr5{padding-right:5px}.pr10{padding-right:10px}.pr15{padding-right:15px}.pr20{padding-right:20px!important}.pr30{padding-right:30px!important}.pr35{padding-right:35px!important}.pl0{padding-left:0!important}.pl5{padding-left:5px}.pl8{padding-left:8px}.pl10{padding-left:10px}.pl15{padding-left:15px}.pl20{padding-left:20px}.pl25{padding-left:25px}.pl28{padding-left:28px}.pl30{padding-left:30px!important}.pl33{padding-left:33px}.pl35{padding-left:35px}.pl40{padding-left:40px}.pl50{padding-left:50px}.pl60{padding-left:60px}.pr5{padding-right:5px}.pr10{padding-right:10px}.pr15{padding-right:15px}.pr20{padding-right:20px!important}.pr25{padding-right:25px!important}.pr30{padding-right:30px!important}.pr40{padding-right:40px}.padding5-10{padding:5px 10px;box-sizing:border-box}.padding5-20{padding:5px 20px;box-sizing:border-box}.padding10{padding:10px;box-sizing:border-box}.padding15{padding:15px;box-sizing:border-box}.padding20{padding:20px;box-sizing:border-box}.padding10-20{padding:10px 20px;box-sizing:border-box}.padding10-15{padding:10px 15px;box-sizing:border-box}.padding10-30{padding:10px 30px;box-sizing:border-box}.padding20-30{padding:20px 30px;box-sizing:border-box}.padding30{padding:30px;box-sizing:border-box}.padding30-20{padding:30px 20px;box-sizing:border-box}.padding40{padding:40px;box-sizing:border-box}.padding40-30{padding:40px 30px;box-sizing:border-box}.padding40-20{padding:40px 20px;box-sizing:border-box}.lineh-12{line-height:12px!important}.lineh-15{line-height:15px!important}.lineh-17{line-height:17px!important}.lineh-20{line-height:20px!important}.lineh-24{line-height:24px!important}.lineh-25{line-height:25px!important}.lineh-30{line-height:30px!important}.lineh-35{line-height:35px!important}.lineh-40{line-height:40px!important}.break_word{word-break:break-all;word-wrap:break-word}.break_word_firefox{white-space:pre-wrap!important;word-break:break-all}.pr{position:relative}.df{display:flex;display:-webkit-flex;display:-ms-flex}.flex1{flex:1}input::-ms-clear{display:none}::-webkit-scrollbar{width:7px;height:10px;background-color:#f5f5f5}.ant-modal-close{top:8px!important}.newContainer{min-height:100%;height:auto!important;height:100%;position:relative}.educontent{width:1200px;margin:0 auto;box-sizing:border-box}.newMain{margin:0 auto;min-width:1200px}.edu-txt-center{text-align:center!important}.edu-txt-left{text-align:left!important}.edu-txt-right{text-align:right!important}.edu-back-white{background-color:#fff}.edu-back-greyf5{background-color:#f5f5f5!important}.edu-back-skyblue{background:#f4faff}.edu-back-blue{background-color:#459be6!important}.edu-bg-light-blue{background:#f7f9fd;padding:5px}.color-red{color:red!important}.color-white{color:#fff!important}.color-dark{color:#05101a!important}.color-ooo{color:#000!important}.color-grey-name{color:#1a0b00!important}.color-grey-3{color:#333!important}.color-grey-eb{color:#ebebeb!important}.color-grey-c{color:#ccc!important}a.hoverLine:hover{text-decoration:underline}.color-grey-cd{color:#cdcdcd!important}.color-grey-d{color:#ddd}.color-grey-9{color:#999!important}a:hover{color:#6684fe}.color-grey-98{color:#989898!important}.color-grey-8{color:#888!important}.color-grey-6{color:#666!important}.color-grey-B2{color:#b2b2b2!important}.color-grey-B3{color:#b3b3b3!important}.color-grey-B4{color:#b4b4b4!important}.color-grey-74{color:#747a7f!important}a.color-grey-name:hover,a.color-dark:hover,a.color-grey-6:hover,a.color-grey-3:hover,a.color-ooo:hover{color:#2a61ff!important}.color-blue{color:#2a61ff!important}.color-blue-file{color:#4598fa!important}.color-blue_4C{color:#4cacff!important}.color-orange{color:#ff6800!important}.color-orange-tip{color:#ff954c!important}.color-orange-tips{color:#ff8204!important}a.color-orange:hover,a.color-orange-tip:hover{color:#f06200!important}.color-yellow{color:#efc003!important}.color-yellow-ff{color:#ffa800!important}.color-green{color:#29bd8b!important}a.color-green:hover{color:#28ac7f!important}.radius{border-radius:50%}.radius4{border-radius:4px}.ring-green{width:18px;height:18px;display:block;border-radius:50%;background-color:#29bd8b;text-align:center}.ring-op-green{width:18px;height:18px;display:block;border-radius:50%;background-color:rgba(41,189,139,.6);text-align:center}.ring-grey{width:18px;height:18px;line-height:18px;display:block;border-radius:50%;background-color:rgba(204,204,204,.5);text-align:center}.ring-blue{width:18px;height:18px;display:block;border-radius:50%;background-color:#4cacff;text-align:center}.input-flex-35{flex:1;height:35px;padding:5px;box-sizing:border-box}.input-flex-40{flex:1;height:40px;padding:5px;box-sizing:border-box}.input-100-45{width:100%;height:45px;padding:5px;box-sizing:border-box}.input-60-40{width:60%;height:40px;padding:5px;box-sizing:border-box}.greyInput{background-color:#f5f5f5;outline:none}.greyInput:focus{background-color:#fff;border:1px solid #ddd}.winput-240-40{width:240px;height:40px;padding:5px;box-sizing:border-box}.winput-120-35{width:120px;height:35px;padding:5px;box-sizing:border-box}.winput-100-130{width:100%;height:130px;padding:5px;box-sizing:border-box}.winput-100-150{width:100%;height:150px;padding:5px;box-sizing:border-box}.width100{width:100%!important}.width89{width:89%}.width50{width:50%}.width40{width:40%}.width45{width:45%}.width10{width:10%}.width20{width:20%}.width15{width:15%}a.edu-txt-w100,.edu-txt-w100{width:100px;display:inline-block;text-align:center}a.edu-txt-w80,.edu-txt-w80{width:80px;display:inline-block;text-align:center}.minH-440{min-height:440px}.minH-500{min-height:500px}.minH-560{min-height:560px}.minH-650{min-height:650px}.minH-670{min-height:670px}.over210{height:210px;overflow-y:auto}.over280{height:280px;overflow-y:auto}.bor-bottom-greyE{border-bottom:1px solid #eee!important}.bor-left-greyE{border-left:1px solid #eee!important}.bor-top-greyE{border-top:1px solid #eee!important}.bor-grey-e{border:1px solid #eee}.bor-red{border:1px solid #db0505!important}a.decoration{text-decoration:underline!important}.edu-menu-panel{position:relative;cursor:pointer}.edu-menu-list{position:absolute;padding:5px 0;box-shadow:0 2px 8px rgba(0,0,0,.2);display:none;width:120px;background:#fff;right:-5px;border-radius:0 0 4px 4px;color:#05101a;font-size:14px;z-index:9}.edu-menu-list li{width:100%;padding:0 15px;box-sizing:border-box;height:35px;line-height:35px;cursor:pointer}.edu-menu-list li a{width:100%;height:100%;display:block;color:#323232}.edu-menu-panel:hover i,.edu-menu-panel:hover{color:#4cacff}.edu-menu-panel:hover .edu-menu-list{display:block}.edu-menu-list li:hover{background:#4cacff}.edu-menu-list li:hover a{color:#fff!important}.ul-leftline:after{position:absolute;top:0;content:"";width:1px;background-color:#eee;height:100%;right:0}.overPart{width:240px;height:30px;position:absolute;right:0;top:-27px;background:0 0}.handler_bg{background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0ZDhlNWY5My05NmI0LTRlNWQtOGFjYi03ZTY4OGYyMTU2ZTYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NTEyNTVEMURGMkVFMTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NTEyNTVEMUNGMkVFMTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2MTc5NzNmZS02OTQxLTQyOTYtYTIwNi02NDI2YTNkOWU5YmUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NGQ4ZTVmOTMtOTZiNC00ZTVkLThhY2ItN2U2ODhmMjE1NmU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+YiRG4AAAALFJREFUeNpi/P//PwMlgImBQkA9A+bOnfsIiBOxKcInh+yCaCDuByoswaIOpxwjciACFegBqZ1AvBSIS5OTk/8TkmNEjwWgQiUgtQuIjwAxUF3yX3xyGIEIFLwHpKyAWB+I1xGSwxULIGf9A7mQkBwTlhBXAFLHgPgqEAcTkmNCU6AL9d8WII4HOvk3ITkWJAXWUMlOoGQHmsE45ViQ2KuBuASoYC4Wf+OUYxz6mQkgwAAN9mIrUReCXgAAAABJRU5ErkJggg==)no-repeat 50%}.handler_ok_bg{background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0ZDhlNWY5My05NmI0LTRlNWQtOGFjYi03ZTY4OGYyMTU2ZTYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDlBRDI3NjVGMkQ2MTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDlBRDI3NjRGMkQ2MTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDphNWEzMWNhMC1hYmViLTQxNWEtYTEwZS04Y2U5NzRlN2Q4YTEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NGQ4ZTVmOTMtOTZiNC00ZTVkLThhY2ItN2U2ODhmMjE1NmU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+k+sHwwAAASZJREFUeNpi/P//PwMyKD8uZw+kUoDYEYgloMIvgHg/EM/ptHx0EFk9I8wAoEZ+IDUPiIMY8IN1QJwENOgj3ACo5gNAbMBAHLgAxA4gQ5igAnNJ0MwAVTsX7IKyY7L2UNuJAf+AmAmJ78AEDTBiwGYg5gbifCSxFCZoaBMCy4A4GOjnH0D6DpK4IxNSVIHAfSDOAeLraJrjgJp/AwPbHMhejiQnwYRmUzNQ4VQgDQqXK0ia/0I17wJiPmQNTNBEAgMlQIWiQA2vgWw7QppBekGxsAjIiEUSBNnsBDWEAY9mEFgMMgBk00E0iZtA7AHEctDQ58MRuA6wlLgGFMoMpIG1QFeGwAIxGZo8GUhIysmwQGSAZgwHaEZhICIzOaBkJkqyM0CAAQDGx279Jf50AAAAAABJRU5ErkJggg==)no-repeat 50%}.-task-title{opacity:0;position:absolute;left:0;top:0;display:none;z-index:100000}.data-tip-down,.data-tip-left,.data-tip-right,.data-tip-top{position:relative;box-shadow:0 0 8px #000;background:#000;color:#fff;max-width:300px;word-wrap:break-word;text-align:center;border-radius:4px;padding:0 10px;border:1px solid #000;display:none}.data-tip-down:after,.data-tip-down:before,.data-tip-left:before,.data-tip-right:before,.data-tip-left:after,.data-tip-right:after,.data-tip-top:after,.data-tip-top:before{position:absolute;content:'';width:0;height:0}.data-tip-down:after,.data-tip-down:before{left:45%;top:-10px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:10px solid #000}.data-tip-down:before{top:-11px;border-bottom:10px solid #000}.data-tip-left:after,.data-tip-left:before{left:-10px;top:50%;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:10px solid #000}.data-tip-left:before{left:-12px;border-right:10px solid #000}.data-tip-right:after,.data-tip-right:before{right:-10px;top:50%;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:10px solid #000}.data-tip-right:before{right:-10px;border-left:10px solid #000}.data-tip-top:after,.data-tip-top:before{left:45%;bottom:-10px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:10px solid #000}.data-tip-top:before{bottom:-11px}.edu-pop-table{width:100%;border:1px solid #eee;border-bottom:none;background:#fff;color:#888;cursor:default}.edu-pop-table tr{height:40px}.edu-txt-center{text-align:center}.edu-txt-left{text-align:left}.edu-txt-right{text-align:right}.edu-pop-table tr th{color:#333;border-bottom:1px solid #eee}.edu-pop-table tr td{border-bottom:1px solid #eee}.edu-pop-table.head-color thead tr{background:#fafbfb}.edu-pop-table.head-color{border:none}.edu-pop-table.head-color tr:last-child td{border:none}.edu-pop-table.interval-td{border-bottom:1px solid #eee}.edu-pop-table.interval-td thead tr{background:#fafbfb}.edu-pop-table.interval-td tbody tr:nth-child(even){background:#fafbfb}.edu-pop-table.interval-td tbody tr td{border:none}.edu-pop-table-all{width:100%;border:1px solid #eee;background:#fff;color:#888;border-collapse:collapse}.edu-pop-table-all tr{height:30px}.edu-pop-table-all tr th{color:#333;border:1px solid #eee}.edu-pop-table-all tr td{border:1px solid #eee;padding:5px}img.edu-nodata-img{width:300px;margin:50px auto 20px;display:block;width:128px}.edu-nodata-p{font-size:20px;text-align:center;color:#999;border-bottom:none!important;box-sizing:border-box}.notice{height:25px;margin-left:150px}.edu-position-hide{position:absolute;top:15px;left:-20px;box-shadow:0 2px 8px rgba(146,153,169,.5);background:#fff;z-index:1001;padding:5px 0;z-index:999999}.edu-position-hide li a{display:inline-block;height:30px;width:100px;line-height:30px;text-align:center;font-size:12px!important}.edu-position-hide li a:hover{background:#f1f1f1;color:#05101a}.edu-position-hidebox i{color:#bcbcbc}.edu-position-hidebox i:hover{color:#4cacff}.edu-position-hidebox a{color:#05101a}.edu-position-hidebox:hover .edu-position-hide{display:block}.white-btn{text-align:center;cursor:pointer;display:inline-block;padding:0 8px;border:1px solid #ccc;color:#666;letter-spacing:1px;font-size:14px;height:26px;line-height:26px;border-radius:3px}a.white-btn.orange-btn{border:1px solid #ff7500;color:#ff7500!important}a.white-btn.orange-btn:hover{border:1px solid #f06200;color:#f06200!important}.defalutGreyBorder{display:block;padding:0 10px;border:1px solid #ccc;height:30px;line-height:30px;border-radius:4px}a.task-btn{cursor:pointer;display:inline-block;border:none;padding:0 12px;color:#fff;background:#cdcdcd!important;letter-spacing:1px;text-align:center;font-size:14px;height:30px;line-height:30px;border-radius:2px;font-weight:400}.user_default_btn{cursor:pointer;font-size:14px;display:block;width:120px;text-align:center;height:40px;line-height:40px!important;border-radius:4px;box-sizing:border-box}.user_orange_btn{color:#fff!important;background-color:#ff6800}.user_orange_btn:hover{background-color:#f06200}.user_grey_btn{color:#fff!important;background-color:#ccc;cursor:default}.user_private_btn{color:#646464!important;background-color:#fff;border:1px solid #989898}.user_private_btn:hover{color:#b2b2b2!important;border:1px solid #b2b2b2}.btn_auto{border-radius:5px;background:#fff;padding:0 18px}.edu-default-btn{display:block;border-radius:4px}a.edu-greenback-btn{padding:0 10px;background:#29bd8b;color:#fff!important;border:1px solid #29bd8b}a.edu-greenback-btn:hover{background-color:#28ac7f}a.edu-blueback-btn{padding:0 10px;background:#4cacff;color:#fff!important;border:1px solid #4cacff}a.edu-blueline-btn{padding:0 10px;color:#4cacff!important;border:1px solid #4cacff}a.edu-blueback-btn:hover{background-color:#459be6}a.edu-blueline-btn:hover{border:1px solid #459be6;color:#459be6!important}a.edu-orangeback-btn{background-color:#ff7500;color:#fff!important;border:1px solid #ff7500}a.edu-orangeback-btn:hover{background-color:#f06200}a.edu-orangeline-btn{color:#ff7500!important;border:1px solid #ff7500}a.edu-orangeline-btn:hover{color:#f06200!important;border:1px solid #f06200}a.edu-greyline-btn{padding:0 10px;background:#fff;color:#666!important;border:1px solid #eaeaea;line-height:33px;height:33px}a.edu-greyline-btn:hover{border:1px solid #b2b2b2;color:#b2b2b2!important}.defalutCancelbtn{display:block;border:1px solid #cdcdcd;background-color:#fafafa;color:#999!important;width:120px;text-align:center;height:30px;line-height:30px;border-radius:2px;width:130px;height:40px;background:rgba(77,124,254,0);border:1px solid #4cacff;border-radius:4px;line-height:40px;font-size:16px;font-family:MicrosoftYaHei;font-weight:400;color:#4cacff!important}.defalutCancelbtn:hover{border:1px solid #b2b2b2;color:#b2b2b2!important}.defalutSubmitbtn{display:block;border:1px solid #4cacff;background-color:#4cacff;color:#fff!important;width:120px;text-align:center;line-height:40px;border-radius:2px;width:130px;height:40px;background:#4cacff;border-radius:4px;font-size:16px;font-family:MicrosoftYaHei;font-weight:400;color:#fff}.delectshixuncdbtn{display:block;border:1px solid #cdcdcd;background-color:#fafafa;color:#999!important;width:120px;text-align:center;height:30px;line-height:30px;border-radius:2px;width:130px;height:40px;background:rgba(77,124,254,0);border-radius:4px;line-height:40px;font-size:16px;font-family:MicrosoftYaHei;font-weight:400}.defalutSubmitbtn:hover{background-color:#459be6;border:1px solid #459be6}a.task-btn-orange{background:#4cacff!important;color:#fff!important}a:hover.task-btn-orange{background:#459be6}.user_blue_btn{border:1px solid #4cacff;color:#4cacff!important}a.user_bluebg_btn{background-color:#4cacff;color:#fff}.pointer{cursor:pointer}.cdefault{cursor:default!important}.new_li .markdown-body ul>li,.markdown-body ul>li{list-style-type:disc!important;margin-bottom:0!important}.new_li .markdown-body ol>li,.markdown-body ol>li{list-style-type:decimal!important}.new_li li{margin-bottom:0!important}.markdown-body p{font-size:16px!important}.task-popup{width:30%;background:#fff;border:1px solid #e8e8e8;border-radius:10px}.task-popup-text-center{text-align:center;color:#333}.task-popup-title{border-bottom:1px solid #eee;padding:0 15px;text-align:center;box-sizing:border-box;line-height:70px;height:70px;border-radius:10px 10px 0 0;font-size:16px;font-weight:700}.task-popup-content{padding:15px}.task-popup-submit{margin:0 auto 15px;width:160px}.task-popup-sure{margin:0 auto 15px;width:54px}.task-popup-OK{margin:15px auto;text-align:center}#closeIcon{position:absolute;color:#fefefe}.task_popup_con{padding:20px}.alert{padding:10px;border:1px solid transparent;text-align:center}.alert-orange{background-color:#fff9e9;border-color:#f6d0b1;color:#ee4a20}.pages_user_show a:hover,.pages_user_show li.active a{background-color:#4cacff;color:#fff;border:1px solid #4cacff}.pages_user_show a{border-radius:2px;display:inline-block;border:1px solid #d1d1d1;background-color:#fff;color:#888;float:left;text-align:center;padding:2px 10px;line-height:1.9;margin:0 5px}.pages_user_show li{float:left;list-style-type:none}.pages_user_show ul li{list-style-type:none!important}.pages_user_show ul li a{color:#888}.leftPanel{width:22%;float:left}.leftPanel li.nav{padding:10px 0;box-sizing:border-box}.leftPanel li.nav a{padding-left:40px;display:block;width:100%;box-sizing:border-box;border-left:2px solid #fff;height:24px;line-height:24px}.leftPanel li.nav.active a{border-left:2px solid #4cacff}.rightPanel{width:78%;float:right}.ringauto{width:20px;height:20px;line-height:20px;text-align:center;border-radius:50%;background-color:#f4faff;margin-right:5px}#ajax-indicator{position:absolute;background-color:#eee;border:1px solid #bbb;top:35%;left:40%;width:20%;font-weight:700;text-align:center;padding:.6em;z-index:100000;opacity:.5}html>body #ajax-indicator{position:fixed}#ajax-indicator span{color:#fff;color:#333;background-position:0 40%;background-repeat:no-repeat;background-image:url(/images/loading.gif);padding-left:26px;vertical-align:bottom;z-index:100000}.bestChoose.active{color:#4cacff}.edu-filter-cir-grey{color:#666!important;width:auto;padding:0 15px;font-size:14px!important;text-align:center;background:#f3f3f3;border-radius:10px;display:block;height:25px;line-height:25px}.edu-filter-cir-grey:hover{background:#4cacff;color:#fff!important}.edu-filter-cir-grey.active{background:#4cacff;color:#fff!important;font-size:14px!important}.with10{width:10%;box-sizing:border-box}.with13{width:13%;box-sizing:border-box}.with14{width:14%;box-sizing:border-box}.with15{width:15%;box-sizing:border-box}.with20{width:20%;box-sizing:border-box}.with22{width:22%;box-sizing:border-box}.with23{width:23%;box-sizing:border-box}.with25{width:25%;box-sizing:border-box}.with30{width:30%;box-sizing:border-box}.with35{width:35%;box-sizing:border-box}.with40{width:40%;box-sizing:border-box}.with45{width:45%;box-sizing:border-box}.with49{width:49%;box-sizing:border-box}.with50{width:50%;box-sizing:border-box}.with52{width:52%;box-sizing:border-box}.with48{width:48%;box-sizing:border-box}.with60{width:60%;box-sizing:border-box}.with65{width:65%;box-sizing:border-box}.with70{width:70%;box-sizing:border-box}.with75{width:75%;box-sizing:border-box}.with78{width:78%;box-sizing:border-box}.with80{width:80%;box-sizing:border-box}.with100{width:100%}.transform-90{transform:rotate(-90deg);-ms-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-webkit-transform:rotate(-90deg);-o-transform:rotate(-90deg)}.btn-cir{display:inline-block;padding:0 5px;border-radius:25px;line-height:20px;font-size:12px}.btn-cir-red{background:red;color:#fff;font-weight:400;cursor:default}.btn-cir-red:hover{background:red;color:#fff!important}.edu-filter-btn{cursor:default;display:inline-block;padding:0 9px;color:#666;background:#fff;text-align:center;border-radius:10px;font-size:12px;height:18px;line-height:18px}.edu-filter-btn-red{border:1px solid #dd1717;color:#dd1717}.edu-filter-btn-green{border:1px solid #29bd8b;color:#29bd8b!important}.edu-activity-orange{background-color:#ff6800;color:#fff!important;cursor:pointer;border:1px solid #ff6800}.edu-activity-blue{background-color:#4cacff;color:#fff!important;cursor:pointer;border:1px solid #4cacff}.edu-activity-green{background-color:#29bd8b;color:#fff!important;cursor:pointer;border:1px solid #29bd8b}.color656565{color:#656565}.colorC8161D{color:#c8161d}.bor-reds{border:1px solid red!important;border-radius:4px;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.footer_con-p{color:#898989!important}.markdown-body{text-align:justify;word-break:break-all;width:100%}.RightPaneDrawer .ant-drawer-content{background:#070f1a;overflow:hidden!important}.deletebuttom{border:transparent}.RightPaneDrawer .jupyter_data_list{max-height:340px}.privateTag{display:block;padding:0 6px;border-radius:12px;border:1px solid #2fc25b;height:18px;line-height:18px;font-size:12px;margin-left:10px;color:#2fc25b}.privateTag.red{color:#ff6832;border:1px solid #ff6832}.head-nav::-webkit-scrollbar{display:none}.head-nav{text-align:center;height:58px;box-sizing:border-box;text-overflow:ellipsis;white-space:nowrap;flex:1;white-space:nowrap;overflow-y:auto;display:flex;align-self:flex-start}.head-nav li{height:58px;line-height:58px;cursor:pointer;font-size:16px}.head-nav a{color:#fff;margin:0 20px}.head-nav li a:hover,.head-nav li.active a{color:#5091ff}.head-right{box-sizing:border-box;height:60px;display:flex;align-items:center}.educontent .icon{padding-left:0!important;padding-top:0!important;padding-bottom:0!important}em.vertical-line{display:inline-block;width:2px;background:#999;height:10px}.newslight{display:block;width:5px;height:5px;border-radius:50%;left:25px;top:3px;position:absolute;background:#ff6800}.rateTrangle{display:block;border-width:8px;position:absolute;top:-8px;left:35px;border-style:dashed solid dashed dashed;border-color:transparent transparent #fff transparent;font-size:0;line-height:0;z-index:2}#commentsStar{height:30px;padding-top:7px;box-sizing:border-box}.search-all{width:216px;margin:0 auto;position:relative;background-color:#24292d}.search-all .search-clear{font-size:14px;display:inline-block;width:50px;text-align:center;color:#656565;line-height:60px;cursor:pointer}.footercon{border-bottom:1px solid #47494d}.inner-footernav{width:560px;margin:0 auto}.inner-footernav li{float:left;height:50px;width:80px;text-align:center}.inner-footernav li a{width:100%;text-align:center;line-height:50px;color:#888}.inner-footer_con{width:1200px;margin:0 auto}.intermediatecenter{width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center}.footer_con-p{color:#888;margin-top:10px}.banner{width:100%;height:345px;position:relative;overflow:hidden;border-radius:10px}.banner .img{position:absolute;left:0;top:0}.banner .img li{float:left;width:1200px;height:345px}.banner .img li a{display:block;width:100%;height:100%}.banner .img li img{width:100%;height:345px}.banner .num{position:absolute;width:100%;bottom:30px;left:0;text-align:center;font-size:0}.banner .num li{width:7px;height:7px;background:rgba(225,225,225,.3);border-radius:50%;display:inline-block;margin:0 5px;cursor:pointer}.banner .num li.on{width:12px;border-radius:8px}.moreitem{position:absolute;right:5px;top:35px;height:15px;color:#656565}.square-list{width:100%;box-sizing:border-box;margin-top:20px;flex-wrap:wrap;display:flex}.square-Item{position:relative;width:280px;margin-right:26px;margin-bottom:26px;float:left;border-radius:6px;background-color:#fff;box-shadow:0 0 12px rgba(0,0,0,.1)}.square-Item:hover{box-shadow:0 0 12px rgba(0,0,0,.3)}.square-Item:hover .closeSquare{display:block}.square-Item:nth-child(4n+0){margin-right:0}.square-Item .square-img{display:block;width:100%}.square-Item .square-img img{width:100%;border-radius:6px 6px 0 0;vertical-align:bottom;height:210px}.square-main{padding:15px 20px;box-sizing:border-box}.course-bottom{height:48px;padding:10px 0;box-sizing:border-box}.squareIconSpan{line-height:25px}.square-Item.smallSquare{width:32%;margin-right:1.33%;margin-bottom:10px;min-height:210px;border:none}.square-Item.smallSquare:hover{bottom:0;box-shadow:0 0 12px rgba(0,0,0,.1)}.smallSquare:nth-child(3n+0){margin-right:0}.partimg{height:180px;width:100%;border-radius:6px 6px 0 0}.tag-green{position:absolute;left:10px;bottom:90px}.tag-green .tag-name{display:block;width:auto;background:rgba(0,0,0,.56);border:1px solid rgba(255,255,255,.56);border-radius:3px;font-size:12px;background-size:100% 100%;padding:0 8px;color:#fff;float:left}.tag-orange{position:absolute;right:0;top:12px}.tag-orange .tag-name{display:block;width:auto;background-color:#ff6800;background-size:100% 100%;padding:0 8px;color:#fff;float:left;height:28px;line-height:28px;border-top-left-radius:4px;border-bottom-left-radius:4px}.user_navlist{position:absolute;left:0;width:160px;top:0;height:100%}.user_navlist_black{position:relative;width:100%;height:100%;border-radius:8px 0 0 8px;background:rgba(0,0,0,.8)}.user_navlist_white{position:absolute;left:160px;background:#fff;width:622px;min-height:345px;top:0;z-index:1;display:none;padding:0 30px;box-sizing:border-box;box-shadow:0 0 10px rgba(76,76,76,.2);z-index:99}.user_navlist_white a{color:#989898;margin-right:15px;font-size:14px;display:block;float:left;height:30px;line-height:30px}.user_navlist_white a:hover{color:#4cacff}.headIcon{height:100%;box-sizing:border-box;margin:0!important}.black_nav_list{padding:4px 0;box-sizing:border-box;height:100%}.black_nav_list li{line-height:40px;height:40px;color:#fff;cursor:pointer}.black_nav_span{display:block;margin:0 20px;border-bottom:1px solid #4b4b4b;padding-left:8px;color:#fafafa}.welcome_shixun_index:last-child .black_nav_span{border-bottom:none}.black_nav_list li:hover{background:#fff}.black_nav_list li:hover .black_nav_span{color:#05101a!important}.black_nav_list li:hover>a{color:#4cacff!important}.black_nav_list li:hover .user_navlist_white{display:block}.navlistpanel-line{border-bottom:1px solid #ebebeb}.navlistpanel-line:last-child{border-bottom:none}.little-title{width:100%;height:20px;line-height:20px;color:#05101a;font-size:15px;margin-bottom:8px}.ranking{text-align:center;margin-top:40px}.grade{width:auto;display:inline-block}.grade li{float:left;margin:0 10px;width:60px}.ranking a img{width:60px;height:60px;border-radius:50%;box-shadow:0 0 12px rgba(0,0,0,.2)}.mentor-ranking{background-color:#efefef;background-size:100% 100%}.huangguan{position:absolute;top:-30px;left:13px}#log_reg_content{border-radius:5px;background:#fff;width:100%;text-align:center;position:absolute;top:165px;left:0;padding:40px 30px;box-sizing:border-box}.log_nav{border-bottom:1px solid #eaeaea}.log_nav li{float:left;text-align:center;font-size:16px;padding-bottom:15px;cursor:pointer}.log_nav li.active{border-bottom:2px solid #459be5}.log-botton{width:100%;text-align:center;color:#fff!important;display:block;background:#cbcbcb;height:45px;line-height:45px;border-radius:4px;letter-spacing:2px;cursor:pointer}.log-botton:hover{color:#fff!important}.log-botton.active{background:#4cacff}.gain-code{width:48%;display:block;float:right;height:45px;line-height:45px;text-align:center;background:#cbcbcb;color:#fff!important;border-radius:4px;cursor:pointer}.gain-code:hover{color:#fff!important}.user-main-half{width:100%;height:465px;background:#fff;margin-bottom:20px;position:relative}.user-headImg{width:100%;height:160px;background-image:url(/images/educoder/userhead.jpg);position:absolute;width:100%;left:0;top:0}.user-headCon{position:absolute;width:100%;left:0;top:0;min-height:465px}.inline{width:auto;display:inline-block}.headtab{width:188px;height:60px;text-align:center}.headtab span,.headtab a{display:block;width:100%;text-align:center}.headtab span{color:#989898;font-size:14px}.headtab a{color:#fff;font-size:24px}.headphoto{text-align:center;background:#fff;width:115px;height:115px;padding:3px;border-radius:50%;position:relative;float:left;margin-top:19px;box-sizing:border-box}.headphoto img{width:109px;border-radius:50%;height:109px}.headphoto-black{display:none;cursor:pointer;position:absolute;top:3px;left:3px;width:109px;height:109px;text-align:center;line-height:112px;border-radius:50%;background-color:rgba(0,0,0,.3);color:#fff}.myName{display:block;width:auto;color:#05101a;font-size:24px;height:28px;line-height:28px;margin-top:5px}.mypost{color:#686868;font-size:14px;display:block;width:auto;height:20px;line-height:20px}.mysign-span{margin:0 auto;color:#05101a;font-size:14px;display:block;width:280px;cursor:pointer;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mysign-input{margin:0 auto;color:#05101a;font-size:14px;width:280px;height:28px;border:none;outline:none;text-align:center}.v-h-line{display:block;width:1px;height:40px;background-color:#999;margin-top:12px}.user-bar{position:relative;width:100%;height:8px;background-color:#cdcdcd;border-radius:4px}.user-bar p{position:absolute;left:0;top:0;height:100%;background-color:#4cacff;border-radius:4px}.publicpart{position:absolute;left:1px;top:1px;width:0;height:0;border-left:80px solid #4cacff;border-bottom:80px solid transparent;z-index:1}.publicpart.orangeBlack{border-left:80px solid #ff6800}.smalltrangle{display:block;position:absolute;left:1px;top:1px;border-left:25px solid #fff;border-bottom:25px solid transparent;z-index:2}.publicword{transform:rotate(-45deg);text-align:center;color:#fff;font-size:14px;display:block;position:absolute;width:50px;left:0;z-index:3;top:15px}.closeSquare{position:absolute;width:100%;left:0;top:0;text-align:center;background-color:rgba(0,0,0,.5);height:100%;z-index:5;display:none;cursor:default}.substance{padding:40px 40px 0;box-sizing:border-box;text-align:center;border-bottom:1px solid #eaeaea;min-height:241px}.subName{line-height:20px;height:40px;text-align:center;color:#1a0b00;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}.secondNav li{color:#676767;margin:0 20px;float:left}.secondNav li a:hover{color:#4cacff}.secondNav li.active a{color:#4cacff}.dataBank_Item{margin-bottom:3px;width:100%;border-bottom:1px solid #eee;padding:17px 37px 17px 20px;box-sizing:border-box;background:#fff;display:flex;cursor:pointer}.dataBank_Item:hover{box-shadow:0 0 15px rgba(76,76,76,.2)}.dataBank_Item:last-child{border:none}.dataItemLeft{margin-right:20px;width:20px}.dataItemRight{flex:1}.dataTitle{color:#05101a;display:block;float:left;max-width:400px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.itembottom span.bottomspan{display:block;width:200px;text-align:left}.search_course_list{height:150px;overflow-y:auto}.search_course_list li{height:30px}.userdata{width:622px;margin:0 auto;background:#fff;margin-bottom:80px;padding:40px;box-sizing:border-box;border-radius:4px}.shaiTitle{display:block;padding-right:20px}.shaiContent li.shaiItem.active{background-color:#4cacff!important;color:#fff!important}.shaiContent li.shaiItem{padding:3px 15px;float:left;border-radius:4px;color:#4c4c4c;cursor:pointer;margin-right:15px;display:block}.shaiContent li.shaiItem:hover{background-color:#4cacff!important;color:#fff!important}.shaiAllItem{max-width:1138px}.subshaicontent{display:none;box-sizing:border-box;position:absolute;width:100%;top:33px;left:0;background-color:#fff;box-shadow:0 1px 4px rgba(76,76,76,.2);padding:0 20px;z-index:99999;border-radius:4px;max-height:800px;overflow-y:auto}.subshaicontent-part{border-bottom:1px solid #eee}.subshaicontent-part:last-child{border-bottom:none}.subshaicontent a:hover,.subshaicontent a.active{color:#4cacff}.subshaicontent a{float:left;margin-right:20px;color:#999;cursor:pointer}.search-new{width:248px;height:32px;position:relative}.search-span{display:block;position:absolute;width:100%;height:100%;left:0;top:0;background-color:#f4f4f4;border:1px solid #eaeaea;border-radius:4px;z-index:1}.search-new-input{height:32px;padding-left:5px;width:225px;border:none;box-sizing:border-box;background:0 0;outline:none;position:absolute;left:0;top:1px;z-index:2}.search-new img,.search-new a{cursor:pointer;position:absolute;right:2px;top:2px;z-index:2}.search-new a{top:0}.search-new-input:focus+.search-span{background-color:#fff}.controlblue{width:0;height:15px;background-color:#4cacff;border-radius:7px;position:absolute;left:0;top:0;z-index:1}.controlring{width:13px;height:13px;border-radius:50%;background-color:#fff;position:absolute;left:1px;top:1px;z-index:2}@font-face{font-family:panmen-webfont;src:url(../fonts/panmen-webfont.ttf)}.shixunDetail_top{width:100%;background-image:url(/images/educoder/shixun-detail.jpg);height:240px;justify-content:center;align-items:center;display:-webkit-flex;background-size:cover;background-position:50%;background-repeat:no-repeat}.task-item{margin-top:30px;padding-bottom:30px;border-bottom:1px solid #eee}.task-item:last-child{border-bottom:none}.recomments{margin-bottom:20px}.recomments:first-child{margin-top:0}.recomments:last-child{margin-bottom:0;border:none;padding-bottom:0}.url-input{border:none;padding:0;font-size:12px;color:#999;outline:none}.TPMtaskName{max-width:500px}.recomment-name{max-width:222px;display:block}.task-colspan{min-width:25%;text-align:left;display:block;float:left;color:#999}.challenge_nav{padding:20px 20px 0;border-bottom:1px solid #eee}.challenge_nav li{width:auto;float:left;margin-right:20px;position:relative}.challenge_nav li.active:after{position:absolute;content:'';width:76%;background-color:#4cacff;height:3px;border-radius:2px;left:25%;bottom:0}.challenge_nav li a{display:block;width:100%;padding-bottom:20px}.add_choose_type{width:60px;height:20px;line-height:19px;border-radius:2px;background-color:#eaeaea;color:#999!important;display:block;float:left;text-align:center;margin-top:4px}.task_tag_span{float:left;padding:0 10px;background-color:#eee;color:#999;border-radius:2px;margin-right:10px;margin-bottom:8px}.task_tag_span span{float:left}.task_tag_span a{font-size:18px;margin-left:5px;float:left;line-height:28px;height:28px;cursor:pointer}.task_tag_span a:hover{color:#666!important}.show_content_grey{padding:10px 15px;background-color:#f4f4f4;color:#05101a;text-align:justify;word-break:break-all;border-radius:4px;width:100%;box-sizing:border-box}.empty{background:#494a4c;display:inline;margin:0 2px;padding:0 3px}.option-item{border:1px solid #e2e2e2}.option-item{display:block;width:38px;height:38px;text-align:center;line-height:38px;border-radius:4px;cursor:pointer}.check-option-bg{background:#ff7500;color:#fff!important;border:1px solid #ff7500}.position-delete{position:absolute;right:-22px;top:12px;cursor:pointer}.position-delete:hover i{color:#4cacff!important}.rankings li{line-height:40px;height:40px}.rankingindex{width:24px;text-align:center}.collaborators-item{border-bottom:1px solid #eee;cursor:default;padding-top:30px;padding-left:20px}.collaborators-item:last-child{border-bottom:none}.upload_select_box{width:100%;box-sizing:border-box;height:240px;overflow-y:auto;padding:10px;background:#f4faff;color:#333}.pullreques_name{width:120px;text-align:left;margin-right:10px}.pullreques_pull_txt{display:block;margin-left:10px;max-width:640px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.versionFileList li{border-bottom:1px solid #eee}.versionFileList li:last-child{border-bottom:none}.old{background:#ffecec}.old:hover{background:#fffaf1}.new{background:#eaffea}.new:hover{background:#fffaf1}.pathNavLine{position:absolute;bottom:-8px;width:100%}.path-nav li{float:left;padding:0 30px;height:42px}.path-nav li a{color:#fff;font-size:16px;display:block;height:40px}.path-nav li.active a{border-bottom:3px solid #4cacff;color:#4cacff}.subhead{width:100%;margin-bottom:40px;background-size:100% 100%;background-image:url(/images/educoder/path-detail.jpg);height:240px;justify-content:center;align-items:center;display:-webkit-flex;background-size:cover;background-position:50%;background-repeat:no-repeat}.subhead_content{width:1200px;margin:0 auto}.pathInfo li{text-align:center;float:left;margin-right:30px}.pathInfo li span{display:block}.produce-content{padding:40px 20px;background-color:#fff;box-sizing:border-box}.lesson-saved-list-item{border-bottom:1px solid #ebebeb;padding:37px 0}.title-line{padding:0 20px}.paragraph{height:50px;padding:10px 20px 10px 47px;box-sizing:border-box}.paragraph:hover{background-color:#f0f8ff}.lesson-saved-list-item:last-child{border:none}.click_add{text-align:center;height:90px;line-height:90px;background-color:#fff;border-top:1px solid #ebebeb;cursor:pointer}.mustlearn{padding:40px 25px}.teacherTeam{padding:40px 25px 0}.teacherTeamItem{border-bottom:1px solid #eaeaea;padding:40px 0}.teacherTeamItem:first-child{padding-top:0!important}.teacherTeamItem:last-child{border:none}.addTeamMember{height:70px;text-align:center;line-height:70px}.adding-stage-item{padding:0 20px 20px 50px;position:relative}.colseThispart{position:absolute;right:-6px;top:-6px;z-index:2;line-height:15px}.progressRing{display:block;width:16px;height:16px;float:left;position:relative;z-index:1}.progressRing-over{color:#459be6;position:absolute;top:-10px}.progressRing-part{color:#b3dcff;position:absolute;top:-10px}.myProgressNav{width:100%;position:relative;height:10px;border-radius:5px;background-color:#eaeaea}.myProgressGreen{position:absolute;top:0;left:0;border-radius:5px;height:100%;background-color:#29bd8b}.lesson-saved-list-item .title-line .edit:hover,.lesson-saved-list-item .title-line .delete:hover{color:#ff7500!important}li.li-width63{width:63%;text-align:left}.courseHead{width:100%;margin-bottom:40px;background-size:100% 100%;background-image:url(/images/educoder/courtailsbdpicture.jpg);height:240px;justify-content:center;align-items:center;display:-webkit-flex;background-size:cover;background-position:50%;background-repeat:no-repeat}.invite-tip{position:absolute;top:-5px;right:140px;color:#fff;box-sizing:border-box;width:170px;text-align:center;border-radius:2px;background-color:rgba(5,16,26,.6);z-index:5000}.inviteTipbtn a{font-size:14px;width:100%;height:30px;line-height:30px;display:block;color:#747a7f;background-color:rgba(5,16,26,.4)}.inviteTipbtn a:hover{color:#4cacff!important}.top-black-trangle{display:block;border-width:8px;position:absolute;top:-16px;right:4px;border-style:dashed solid dashed dashed;border-color:transparent transparent rgba(5,16,26,.6)transparent;font-size:0;line-height:0}.loadMore{width:100%;background-color:#fff;color:#4cacff!important;text-align:center;display:block;letter-spacing:1px;box-sizing:border-box;height:110px;line-height:110px}.activity-left-name{display:block;max-width:126px;float:left}.panel-inner-fourm{padding:15px 20px;border-bottom:1px solid #eee}.panel-inner-fourm:hover{background:#eff9fd}.resources{width:100%!important;padding:15px;float:left;box-sizing:border-box;border-top:1px solid #eee}.resources:last-child{border-bottom:none}#sourceTag li{font-size:12px;color:#4e7a9b;background-color:#e5f3ff;padding:0 4px;height:20px;line-height:20px;margin-left:5px;display:inline-block;cursor:pointer}#sourceTag li a{color:#4e7a9b!important}#sourceTag li.active{background-color:#4cacff;color:#fff}#sourceTag li.active a{background-color:#4cacff;color:#fff!important}.new-info{height:18px;min-width:18px;line-height:18px;padding:0 2px;box-sizing:border-box;text-align:center;background-color:#ff6800;color:#fff;border-radius:30px;display:block;position:absolute;right:40px;top:13px;font-size:12px}.ridingNav li{float:left;margin:0 20px;color:#999;font-size:16px;height:60px;line-height:60px;position:relative}.ridingNav li a{display:block;width:100%;height:100%;color:#999}.ridingNav li.active a{color:#05101a}.ridingNav li.active:after{content:'';position:absolute;bottom:0;width:100%;height:2px;border-radius:1px;background-color:#05101a}.new-point{display:block;width:4px;height:4px;border-radius:50%;background-color:#ff6800}.ridinglist:hover{background-color:#f5f5f5}.ridinglist .ridinglist-sub{border-bottom:1px solid #f5f5f5;padding:25px 0;cursor:pointer}.ridinglist:last-child .ridinglist-sub{border-bottom:none}.private-item{padding:30px 30px 30px 25px;border-bottom:1px solid #f5f5f5;cursor:pointer}.private-item:hover{background-color:#f5f5f5}.private-item:last-child{border-bottom:none}.writeLetter_Info{position:relative;width:100%;height:260px;background-color:#f6f6f6;cursor:default;border-radius:3px}.writeLetter_text{width:100%;border:none;background-color:#f6f6f6;outline:none;height:100%;padding:5px 5px 30px;border:1px solid #eaeaea;box-sizing:border-box;resize:none}.longchar{position:absolute;background-color:#f6f6f6;bottom:1px;color:#999;right:10px}.writeLetter_text:focus+.longchar{background-color:#fff}.recently_person{position:absolute;width:100%;top:35px;max-height:300px;overflow-y:auto;border-radius:4px;box-shadow:0 1px 6px rgba(76,76,76,.2);left:0;z-index:1;background-color:#fff;cursor:pointer;display:none}.recently_item{padding:10px 20px}.recently_name{float:left;line-height:48px;display:block}.recently_item:hover{background-color:#f9f9f9}.private-list{min-height:660px;max-height:831px;overflow-y:auto;overflow-x:hidden}.private-list .private-part{padding-left:20px;cursor:pointer}.private-part:hover{background-color:#f5f5f5}.private-part.active{background-color:#f5f5f5}.privatePartName{max-width:70px;float:left}.newLetter{display:block;width:4px;height:4px;background-color:#ff6800;border-radius:50%;float:right}.part-line{padding:30px 20px 30px 0;border-bottom:1px solid #f5f5f5}.private-part:last-child .part-line{border:none}.dialogPanel{padding:0 20px;height:545px;overflow-y:auto}.letter-time{width:auto;padding:0 10px;background-color:#999;color:#fff;border-radius:10px;height:20px;line-height:20px}.OtherSide,.ThisSide{margin-top:30px}.OtherSide-info .trangle{position:absolute;left:-5px;top:10px;width:0;height:0;border-top:6px solid transparent;border-right:5px solid #f5f5f5;border-bottom:6px solid transparent}.OtherSide-info .sms{max-width:300px;padding:10px 15px;box-sizing:border-box;background-color:#f5f5f5;color:#666;border-radius:6px;text-align:justify}.OtherSide-info .sms img{max-width:80px;cursor:pointer}.ThisSide-info .sms p{line-height:20px}.sms{min-height:48px}.ThisSide .trangle{position:absolute;right:-5px;top:10px;width:0;height:0;border-top:6px solid transparent;border-left:5px solid #4cacff;border-bottom:6px solid transparent}.ThisSide-info .sms{max-width:300px;padding:10px 15px;box-sizing:border-box;background-color:#4cacff;color:#fff;border-radius:6px;text-align:justify}.ThisSide-info .sms p{line-height:20px}.ThisSide-info .sms img{max-width:80px;cursor:pointer}.action{color:#05101a}.announcement{padding:20px 0;border-bottom:1px solid #eee}.announcement:last-child{border-bottom:none}.part{width:540px;margin:0 auto 10px;background-color:rgba(25,27,32,.6)}.both{clear:both}.left{float:left}.right{float:right}.statistics_position{position:absolute;bottom:22px;left:0;width:100%;left:0}ul.count_ul li{width:300px;position:relative;float:left}ul.count_ul li span:first-child{display:block;width:100%;color:#989898;margin-bottom:20px}ul.count_ul li span:last-child{display:block;width:100%;color:#fff;font-size:24px;line-height:20px}ul.count_ul li:not(:last-child):after{position:absolute;content:'';width:1px;height:36px;background-color:#999;right:0;top:16px}.static_shadow{box-shadow:0 0 9px rgba(174,175,177,.2)}.subject_statistics_top{height:240px;width:100%;position:relative;background-image:url(/images/educoder/subject_statistics.jpg);background-size:100% 100%}#course_list{overflow-y:auto;background:#fff}.popup_tip_box{right:-160px;top:55px}.homepagePostSetting{display:none}.nodata{text-align:center;background-color:initial;border-color:transparent;color:#000}#attachments_fields span{font-size:12px;color:#ccc}.ml20mr20Color{color:#676767}.color-dark-grey{color:#999!important}.colorFFF{color:#fff!important}.left{float:left}.cancellation{position:absolute;top:62px;left:177px;color:#fff!important}.tabeltext-alignleft{text-align:center}.newshixun_tab_div{padding:0 22px 0 -5px;max-height:90px;overflow-y:auto}.newcolor-orange{color:#ff6800}.color4CACFF{color:#4cacff!important;font-size:16px}.color979797{font-size:14px;color:#979797!important;padding-left:2%}.marginTop{margin-right:33%;margin-top:20px}.shixuns_count{color:#05101a;font-size:14px}#shixun_search_form_div{margin-top:20px;margin-bottom:20px!important}.editormd-html-preview{width:100%!important;color:#323232!important}.mt4{margin-top:4px}.newMain,.newFooter{max-width:unset}.educontentTop{width:1178px!important}.inner-footer_con{width:auto}.careershover{margin-right:30px!important}.careershover ul li a{color:#000!important}.careershover ul li{height:35px!important;line-height:35px!important}.edu-menu-listnew{width:165px!important;top:60px;left:-42px}.edu-menu-listnew li a{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#000!important}.edu-menu-listnew li a:hover{color:#fff!important}.ListTableLine>p{margin-bottom:0;padding:0 30px;background-color:#f5f5f5;line-height:40px;height:56px;padding-top:8px;box-sizing:border-box}.ListTableLine>p span{float:left;color:#666;box-sizing:border-box}.ListTableLine li{min-height:48px;padding:10px 0;box-sizing:border-box;margin:0 30px;border-bottom:1px solid #eaeaea}.ListTableLine li>span{float:left;box-sizing:border-box}.ListTableLine .column-1{width:100px;text-align:left;padding-left:5px;box-sizing:border-box}.ListTableLine .column-1{width:100px;text-align:left;padding-left:5px;box-sizing:border-box}.ListTableLine .column-2{width:180px;text-align:center;padding-left:5px;box-sizing:border-box}.ListTableLine .column-3{width:330px;text-align:left;padding-left:5px;box-sizing:border-box}.ListTableLine .column-4{width:400px;text-align:left;padding-left:5px;box-sizing:border-box}#traningNav{padding:30px 30px 0 0}#traningNav>li{float:left;padding:0 30px 30px;font-size:16px}#traningNav>li>a,#traningNav li>i{color:#666!important;position:relative}#traningNav>li.active>a,#traningNav li.active>i{color:#05101a!important}#traningNav>li.active>a:after{content:'';position:absolute;width:64px;left:50%;margin-left:-32px;height:2px;background-color:#05101a;bottom:-35px}.gaugeOutfit{position:relative;height:70px;width:120px;background:linear-gradient(30deg,transparent 49.5%,#eee 50%,#eee 50%,transparent 50.5%)}.gaugeOutfit span:first-child{position:absolute;left:8px;top:46px}.gaugeOutfit span:last-child{position:absolute;right:8px;top:14px}.sustainLine td:not(:first-child):hover{background-color:rgba(41,189,139,.1);cursor:pointer}.packinput .ant-input{height:50px;width:749px;border-color:#e1edf8!important}.packinput{width:749px}.packinput .ant-input-group-addon .ant-btn{width:140px!important;font-size:18px;height:50px;background:#4cacff}.setissues{width:280px;height:50px;background:#4cacff;border-radius:4px;margin-left:15px}.pagetype li{color:#8f8f8f!important}.mbf10{margin-bottom:-10px}.PackageIndexNEIBanner{width:1200px;height:110px;background:#fff;box-shadow:0 2px 6px rgba(125,125,125,.26);border-radius:8px}.padding110{padding:39px 110px 0;box-sizing:border-box}.borderccc{border:1px solid #ccc}.input-100-40s{width:100%;padding:5px;box-sizing:border-box}.fafafas{background-color:#fafafa!important;height:40px}.fafafas:focus{background-color:#fff!important}.fafas .ant-input{background-color:#fafafa!important;height:40px}.fafas .ant-input:focus{background-color:#fff!important}.fafas .ant-input-group-addon .ant-btn{width:140px!important;font-size:14px;height:40px;background:#4cacff}.newFormbox .upload_filename{line-height:32px}.newFormbox .attachment span{line-height:23px}.newFormbox .attachment .remove-upload{line-height:28px}.newFormbox .attachment .icon-fujian{font-size:14px!important;line-height:14px;margin-top:9px}.newFormbox{height:20px}.defalutCancelbtns{display:block;border:1px solid #4cacff!important;background-color:#fff;color:#4cacff!important;width:130px;height:40px;text-align:center;line-height:40px;border-radius:4px}.defalutSubmitbtns{background-color:#4cacff;height:40px}.defalutSubmitbtnmodels{width:127px;height:30px;background-color:#4cacff}.padding200{padding:115px 200px 215px}.fontcircle{font-size:80px;display:inherit}.sumbtongs{font-size:24px;display:inherit;text-align:center}.terraces{font-size:16px;display:inherit;text-align:center;color:#999}.padding251{padding:0 245px}.ml17{margin-left:17px}.project-package-items{display:-webkit-flex;display:flex;flex-direction:row;margin:0!important;padding:20px;background:#fff;margin-bottom:0!important;box-shadow:none!important}.publicpart.orangeGreen{border-left:80px solid #29bd8b}.publicwords{left:3px;top:18px}.project-packages-list .project-package-items .item-image{width:100px!important}.height185{height:185px}.ContacttheTA{width:80px;height:26px;font-size:14px;line-height:26px;display:block;border:1px solid #4cacff!important;background-color:#fff;color:#4cacff!important;text-align:center;border-radius:4px}.ContacttheTAs{width:80px;height:26px;font-size:14px;line-height:24px;border:1px solid #fff!important;background-color:#4cacff;color:#fff!important;text-align:center;border-radius:4px}.ml28{margin-left:28px}.longboxs{font-size:16px;font-family:MicrosoftYaHei-Bold;font-weight:700;color:#05101a;border-left:4px solid #4cacff;padding-left:10px;margin-bottom:20px}.padding020{padding:0 20px 20px}.mtf3{margin-top:-3px}.task-btn-nebules{background:#fff!important;color:#4cacff!important;border:1px solid #4cacff!important;margin-left:20px;cursor:pointer;display:inline-block;padding:0 12px;letter-spacing:1px;text-align:center;font-size:14px;height:30px;line-height:30px;border-radius:2px}.packageabsolute{position:absolute;right:-16px;top:-7px}.relativef{position:relative}.homehove:hover .ptext{color:#4cacff!important}.homehove:hover .ContacttheTAs{display:block}.topsj{position:absolute;top:-6px}.bottomsj{position:absolute;bottom:-6px}.pagenoedits{margin-left:20px;color:#ccc}.pagemancenter{text-align:center}.ml0{margin-left:0}.tabelcli{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:850px;display:table-cell}.mtf10{margin-top:-10px}.padding26{padding:26px;box-sizing:border-box}.pd26{padding:26px}.pd30a0{padding:30px 30px 16px}.shaiContent li.shaiItem:hover span{color:#fff!important}.shaiContent li.shaiItem:hover i.iconfont{color:#4cacff!important}.detail_for_paragraph p{white-space:pre-wrap}.square-main p{margin-bottom:0!important}.markdown-body{text-align:justify;word-break:break-all}.RightPaneDrawer .ant-drawer-content{background:#070f1a;overflow:hidden!important}.deletebuttom{border:transparent}.RightPaneDrawer .jupyter_data_list{max-height:340px}.ant-btn-primary{text-shadow:none!important;box-shadow:none!important}.ant-notification{z-index:10001!important}input.ant-input-lg::placeholder{font-size:14px!important}p{margin-bottom:0!important}.toprightNum{position:absolute;right:0;top:4px;color:#999}.ant-input,.ant-input .ant-input-suffix{background-color:#fff!important}.has-error .ant-input{background-color:#fef1f0!important}.CodeMirror-merge{position:relative;white-space:pre}.CodeMirror-merge,.CodeMirror-merge .CodeMirror{min-height:50px}.CodeMirror-merge-2pane .CodeMirror-merge-pane{width:48%}.CodeMirror-merge-2pane .CodeMirror-merge-gap{width:4%}.CodeMirror-merge-3pane .CodeMirror-merge-pane{width:31%}.CodeMirror-merge-3pane .CodeMirror-merge-gap{width:3.5%}.CodeMirror-merge-pane{display:inline-block;white-space:normal;vertical-align:top}.CodeMirror-merge-pane-rightmost{position:absolute;right:0;z-index:1}.CodeMirror-merge-gap{z-index:2;display:inline-block;height:100%;-moz-box-sizing:border-box;box-sizing:border-box;overflow:hidden;position:relative;background:#515151}.CodeMirror-merge-scrolllock-wrap{position:absolute;bottom:0;left:50%}.CodeMirror-merge-scrolllock{position:relative;left:-50%;cursor:pointer;color:#d8d8d8;line-height:1}.CodeMirror-merge-copybuttons-left,.CodeMirror-merge-copybuttons-right{position:absolute;left:0;top:0;right:0;bottom:0;line-height:1}.CodeMirror-merge-copy{position:absolute;cursor:pointer;color:#ce374b;z-index:3}.CodeMirror-merge-copy-reverse{position:absolute;cursor:pointer;color:#44c}.CodeMirror-merge-copybuttons-left .CodeMirror-merge-copy{left:2px}.CodeMirror-merge-copybuttons-right .CodeMirror-merge-copy{right:2px}.CodeMirror-merge-r-inserted,.CodeMirror-merge-l-inserted{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAAGUlEQVQI12MwuCXy3+CWyH8GBgYGJgYkAABZbAQ9ELXurwAAAABJRU5ErkJggg==);background-position:0 100%;background-repeat:repeat-x}.CodeMirror-merge-r-deleted,.CodeMirror-merge-l-deleted{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAAGUlEQVQI12M4Kyb2/6yY2H8GBgYGJgYkAABURgPz6Ks7wQAAAABJRU5ErkJggg==);background-position:0 100%;background-repeat:repeat-x}.CodeMirror-merge-r-chunk{background:#9a6868}.CodeMirror-merge-r-chunk-start{}.CodeMirror-merge-r-chunk-end{}.CodeMirror-merge-r-connect{fill:#9a6868}.CodeMirror-merge-l-chunk{background:#eef}.CodeMirror-merge-l-chunk-start{border-top:1px solid #88e}.CodeMirror-merge-l-chunk-end{border-bottom:1px solid #88e}.CodeMirror-merge-l-connect{fill:#eef;stroke:#88e;stroke-width:1px}.CodeMirror-merge-l-chunk.CodeMirror-merge-r-chunk{background:#dfd}.CodeMirror-merge-l-chunk-start.CodeMirror-merge-r-chunk-start{border-top:1px solid #4e4}.CodeMirror-merge-l-chunk-end.CodeMirror-merge-r-chunk-end{border-bottom:1px solid #4e4}.CodeMirror-merge-collapsed-widget:before{content:"(...)"}.CodeMirror-merge-collapsed-widget{cursor:pointer;color:#88b;background:#eef;border:1px solid #ddf;font-size:90%;padding:0 3px;border-radius:4px}.CodeMirror-merge-collapsed-line .CodeMirror-gutter-elt{display:none} \ No newline at end of file +@charset "utf-8";.header{width:100%;height:51px;min-width:1200px;background:#171616}.animate{-webkit-transition:all .3s;-moz-transition:all .3s;-ms-transition:all .3s;-ms-transition:all .3s;transition:all .3s;backface-visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden}.footer{width:100%;height:100px;background-color:#fff}.footer_con-p{color:#888;margin-top:10px}.inner-footer_con{width:1200px;margin:0 auto}.panel-inner-fourm{padding:20px;border-bottom:1px solid #eee}.panel-inner-fourm:hover{background:#eff9fd}a.panel-list-title,.panel-list-title{display:inline-block;font-size:16px;color:#333;font-weight:400;max-width:82%}a:hover.panel-list-title{color:#ff7500}.panel-list-img{width:60px;height:60px;border-radius:100px}a.panel-name-small{display:inline-block;max-width:100px;color:#29bd8b;font-size:12px}.panel-lightgrey,.panel-lightgrey span{font-size:12px;color:#888}.panel-comment_item{width:100%}.panel-comment_item .t_area{color:#888}.comment_item_cont{padding:15px;border-bottom:1px solid #e3e3e3}.comment_item_cont .J_Comment_Face{height:50px}.comment_item_cont .J_Comment_Face img{width:50px;height:50px;border-radius:100px}.panel-comment_item .t_content{width:93%;margin-left:15px}.panel-comment_item a.content-username{font-size:14px;margin-right:15px;display:inline-block;max-width:100px;color:#888}.J_Comment_Info{height:20px;line-height:22px}.panel-comment_item .comment_orig_content{margin:10px 0;color:#999}.panel-comment_item .comment_orig_content .comment_orig_content{margin-top:0;color:#666}.panel-comment_item .comment_content{color:#666}.comment_content img{max-width:100%}.orig_reply{font-size:12px}.homepagePostReplyPortrait a img{border-radius:100px}.pages_user_show a:hover,.pages_user_show a.active{background-color:#fc7033;color:#fff;border:1px solid #fc7033}.pages_user_show a{display:inline-block;border:1px solid #d1d1d1;color:#888;float:left;text-align:center;padding:3px 10px;line-height:1.9;margin:0 5px}.pages_user_show li{float:left;list-style-type:none}.pages_user_show ul li{list-style-type:none!important}.pages_user_show ul li a{color:#888}.panel-form-label{display:inline-block;width:10%;min-width:90px;text-align:right;line-height:40px;font-weight:400}.panel-box-sizing{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box;border-radius:3px}input.task-form-80,textarea.task-form-80,select.task-form-80,.task-form-80{padding:5px;width:80%;box-sizing:border-box}input.task-form-100,textarea.task-form-100,select.task-form-100,.task-form-100{padding:5px;width:100%}input.task-height-40,textarea.task-height-40,.task-height-40,select.task-height-40{height:40px}input.task-height-150,textarea.task-height-150,.task-height-150{height:150px}.handler_bg{background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0ZDhlNWY5My05NmI0LTRlNWQtOGFjYi03ZTY4OGYyMTU2ZTYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NTEyNTVEMURGMkVFMTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NTEyNTVEMUNGMkVFMTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2MTc5NzNmZS02OTQxLTQyOTYtYTIwNi02NDI2YTNkOWU5YmUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NGQ4ZTVmOTMtOTZiNC00ZTVkLThhY2ItN2U2ODhmMjE1NmU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+YiRG4AAAALFJREFUeNpi/P//PwMlgImBQkA9A+bOnfsIiBOxKcInh+yCaCDuByoswaIOpxwjciACFegBqZ1AvBSIS5OTk/8TkmNEjwWgQiUgtQuIjwAxUF3yX3xyGIEIFLwHpKyAWB+I1xGSwxULIGf9A7mQkBwTlhBXAFLHgPgqEAcTkmNCU6AL9d8WII4HOvk3ITkWJAXWUMlOoGQHmsE45ViQ2KuBuASoYC4Wf+OUYxz6mQkgwAAN9mIrUReCXgAAAABJRU5ErkJggg==)no-repeat 50%}.handler_ok_bg{background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0ZDhlNWY5My05NmI0LTRlNWQtOGFjYi03ZTY4OGYyMTU2ZTYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDlBRDI3NjVGMkQ2MTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDlBRDI3NjRGMkQ2MTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDphNWEzMWNhMC1hYmViLTQxNWEtYTEwZS04Y2U5NzRlN2Q4YTEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NGQ4ZTVmOTMtOTZiNC00ZTVkLThhY2ItN2U2ODhmMjE1NmU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+k+sHwwAAASZJREFUeNpi/P//PwMyKD8uZw+kUoDYEYgloMIvgHg/EM/ptHx0EFk9I8wAoEZ+IDUPiIMY8IN1QJwENOgj3ACo5gNAbMBAHLgAxA4gQ5igAnNJ0MwAVTsX7IKyY7L2UNuJAf+AmAmJ78AEDTBiwGYg5gbifCSxFCZoaBMCy4A4GOjnH0D6DpK4IxNSVIHAfSDOAeLraJrjgJp/AwPbHMhejiQnwYRmUzNQ4VQgDQqXK0ia/0I17wJiPmQNTNBEAgMlQIWiQA2vgWw7QppBekGxsAjIiEUSBNnsBDWEAY9mEFgMMgBk00E0iZtA7AHEctDQ58MRuA6wlLgGFMoMpIG1QFeGwAIxGZo8GUhIysmwQGSAZgwHaEZhICIzOaBkJkqyM0CAAQDGx279Jf50AAAAAABJRU5ErkJggg==)no-repeat 50%}img.edu-nodata-img{width:200px;margin:50px auto 20px;display:block}.edu-nodata-p{font-size:16px;text-align:center;color:#888;border-bottom:none!important}.user_bg_shadow{-webkit-box-shadow:0 0 8px 0 rgba(142,142,142,.1);-moz-box-shadow:0 0 8px 0 rgba(142,142,142,.1);box-shadow:0 0 8px rgba(142,142,142,.1)}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#ccc}input::-moz-placeholder,textarea::-moz-placeholder{color:#ccc}input::-moz-placeholder,textarea::-moz-placeholder{color:#ccc}input::-ms-input-placeholder,textarea::-ms-input-placeholder{color:#ccc}.btn-cir{display:inline-block;padding:0 5px;border-radius:25px;line-height:20px;font-size:12px}.btn-cir:hover{background:#fff;color:#333}.all_work_border{border:1px solid #4c515d}.btn-cir-red{background:red;color:#fff;font-weight:400}.btn-cir-red:hover{background:red}.btn-cir-orange{background:#ff7500;color:#fff;font-weight:400;border:1px solid #ff7500}.btn-top{display:inline-block;padding:0 5px;line-height:20px;font-size:12px;border-radius:3px}.btn-cir-big{background:#999;color:#fff;display:inline-block;padding:0 10px;border-radius:25px;line-height:25px;height:25px;font-size:12px}.panel-inner-icon{width:22px;height:22px;line-height:22px;border-radius:50%;background:#29bd8b;display:block;text-align:center}.panel-inner-icon{width:22px;height:22px;line-height:22px;border-radius:50%;background:#29bd8b;display:block;text-align:center}@keyframes ball-scale{0%{width:0;height:0}100%{width:80px;height:80px}}.shixun_work_div{overflow-y:auto;max-height:90px}html{height:100%}.w20_center{width:20px;text-align:center}.user-info{width:80px;height:100px;padding-top:15px}a.user-info-img{display:block;width:50px;height:50px;margin:0 auto}a.user-info-img img{border-radius:100px;border:2px solid #666}a.user-info-img img:hover{border:2px solid #888}a.user-info-name{display:block;font-size:16px;color:#fff;max-width:100px;margin:10px auto;text-align:center;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.leftnav-box{width:80px;height:60px;background:#292b3a;padding:10px 0;margin-bottom:2px}a.leftnav-box-inner{display:block;width:77px;border-left:3px solid #292b3a;background:#292b3a;text-align:center;padding:10px 0;color:#575f6c}a:hover.leftnav-box-inner,a.leftnav-active{border-left:3px solid #3498db;color:#fff!important}a:hover.leftnav-box-inner .btn-cir{background:#fff;color:#333}#tab_nav{height:42px;background:#fff;border-bottom:1px solid #eee}#tab_nav li{float:left;padding:0 30px;text-align:center;height:40px;line-height:40px}#tab_nav li a{font-size:14px}.tab_hover{border-bottom:2px solid #3498db;background:#fff;color:#3498db}.tab_hover a{color:#3498db!important}.undis{display:none}.dis{display:block}.tab-info{}.info-partly{display:block;box-flex:1;flex:1;-webkit-flex:1;position:relative}.task-popup-text-center{text-align:center;color:#333}.task-popup-title{border-bottom:1px solid #eee;padding:10px 15px}.task-popup-submit{margin:0 auto 15px;width:120px}.panel-form-label{display:inline-block;width:10%;min-width:90px;text-align:right;line-height:40px;color:#666}.panel-box-sizing{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;-o-box-sizing:border-box;-ms-box-sizing:border-box;box-sizing:border-box}.mb20{margin-bottom:20px}#game_task_pass img{cursor:pointer}.-fit{position:absolute;top:0;right:0;bottom:0;left:0}.-layout-v{display:flex;flex-direction:column;-webkit-flex-direction:column}.page--leftnav{position:fixed;top:0;left:0;right:0;z-index:9001;width:80px;height:100%;background:#282c37}.page--body{position:relative;margin-top:54px}.-flex{box-flex:1;flex:1;-webkit-flex:1}.split-panel.-fit{position:absolute}.split-panel{position:relative;overflow:hidden;min-height:200px;height:100%}.-stretch{align-items:stretch}.-layout{display:flex}.split-panel--first{overflow:hidden}.-relative{position:relative}.-bg-white{background-color:#eee}.-vertical{flex-direction:column;box-flex-direction:column;-webkit-flex-direction:column}.-layout-h{display:flex;flex-direction:row;box-flex-direction:row;-webkit-flex-direction:row}.-horizontal{flex-direction:row-reverse;box-flex-direction:row-reverse;-webkit-flex-direction:row-reverse}.-scroll{overflow:auto}.-flex-basic40{width:40%;box-flex:auto;flex:auto;-webkit-flex:auto}.-flex-basic50{width:60%;box-flex:auto;flex:auto;-webkit-flex:auto}.b-label{width:4px;cursor:ew-resize;background:#2b2b2b}.h-center{height:4px;cursor:ns-resize;background:#333}.-changebg{height:3px}.-bg-weightblack{background:#000}.-flex-basic70{box-flex:4 9 auto;flex:4 9 auto;-webkit-flex:4 9 auto;height:70%}.-flex-basic60{box-flex:2 1 auto;flex:2 1 auto;-webkit-flex:2 1 auto;height:30%}.-header-title{max-width:500px;font-weight:400}.-header-right{background:#333;border-radius:25px;padding:5px 15px;height:30px;position:absolute;right:10px;line-height:30px}.-bg-black{background:#2b2b2b;color:#f4f1ed}.-bg-darkblack{background:#1d1d1d;color:#fff}#blacktab_nav{height:40px;background:#292929}#blacktab_nav li{float:left;padding:0 50px;text-align:center;height:40px;line-height:40px}#blacktab_nav .add-webssh{position:relative}#blacktab_nav .add-webssh span{position:absolute;top:0;right:5px;color:#fff;cursor:pointer}#blacktab_nav li a{font-size:14px}#blacktab_nav li.code-file-tab{padding:0;width:120px;box-sizing:border-box;padding:0 15px}.code-flie-list{display:none;position:absolute;z-index:5;top:40px;background:#515151;width:300px;left:0;color:#fff}.blue-line{border-left:3px solid #199ed8!important;padding-left:5px}.codefile-all{max-height:122px;overflow-y:auto;overflow-x:hidden}.codefile-all p{text-align:left;cursor:pointer;height:22px;line-height:22px;margin-bottom:3px;padding-left:5px;border-left:3px solid #515151;width:273px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.codefile-all p:hover{background:#ccc;color:#333}.blacktab_hover a{color:#fff}.-task-ces-top{padding:5px 15px;background:#515151;color:#bfbfbf}.-task-ces-info-left{display:inline-block;width:100px;text-align:right}.page--over{position:fixed;top:0;left:80px;right:0;z-index:8000;height:100%;color:#fff}.-task-list-inner{background:#eff2f7;margin:10px;padding:5px}.-task-list-title{font-size:14px;color:#666;word-wrap:break-word;font-weight:400;max-width:80%}.greytab-inner{background:#fff}.blacktab-inner{background:#333}.task-padding16{padding:16px}@keyframes bounce-down{25%{transform:translateY(-10px)}50%,100%{transform:translateY(0)}}a.shixun-task-btn{display:inline-block;font-weight:700;border:none;padding:0 12px;color:#666;letter-spacing:1px;text-align:center;font-size:14px;height:30px;line-height:30px;border-radius:3px}.loading-center{text-align:center;align-items:center;justify-content:center}.center{vertical-align:middle;text-align:center}.searchFor{width:auto}.searchFor .searchCon{width:250px;border-bottom:1px solid #ccc;float:left;height:30px}.searchFor .searchCon input{border:none;outline:none;height:29px;width:91%}.searchFor .search_close{font-size:18px;float:right;color:#666;height:29px;line-height:29px;cursor:pointer}.tab_color{color:#bfbfbf!important}.comment-input{width:100%;margin:10px;margin-right:17px}.comment-input textarea{border:none!important;width:100%;outline:none;height:30px;border-radius:4px;padding-left:5px;float:left}.option-item{border:1px solid #e2e2e2}.option-item{display:block;width:38px;height:38px;text-align:center;line-height:38px;border-radius:4px}.check-option-bg{background:#ff7500;color:#fff!important;border:1px solid #ff7500}.position-delete{position:absolute;right:-22px;top:12px;cursor:pointer}.-center{align-items:center;min-height:66px}.markdown{letter-spacing:0;line-height:1.6;word-wrap:break-word;word-break:break-word}.markdown_anchors{position:relative}.markdown_anchors:hover .anchors{display:inline-block}.markdown_anchors .anchors:hover{text-decoration:none}.markdown_anchors .anchors{color:inherit;margin-left:-14px;display:none}.markdown code{padding:0;line-height:23px;margin:0;font-family:微软雅黑,宋体}.load{width:auto;top:50%;margin-top:-100px;position:relative}.empty{background:#494a4c;display:inline;margin:0 2px;padding:0 3px}.update_back_main{display:none;position:fixed;left:0;top:0;background:rgba(0,0,0,.3);width:100%;z-index:7001;height:100%}.tip-panel-animate-left{position:absolute;z-index:9000;left:80px;top:290px;background:#fff;width:430px;height:140px;border-radius:3px}.tip-panel-animate{position:absolute;z-index:10001;right:4px;top:40px;background:#fff;width:430px;height:140px;border-radius:3px;display:none}.tip-operator-btn{width:100%;border-top:1px solid #eee;height:40px;position:absolute;right:0;bottom:0;text-align:center}.tip-operator-btn a,.tip-operator-btn span{height:100%;text-align:center;line-height:40px;width:50%}.tip-operator-btn a:hover,.tip-operator-btn span:hover{background-color:#f9f9f9}.tip-operator-btn a:first-child,.tip-operator-btn span:first-child{border-right:1px solid #eee;width:49.5%}.animate-tip{animation:rightToleft 1s}.animate-tip-hide{animation:leftToright 1s}@keyframes rightToleft{from{right:-400px}to{right:4px}}@keyframes leftToright{from{right:4px}to{right:-420px}}@keyframes rightToleft-l{from{left:-400px}to{left:80px}}@keyframes leftToright-l{from{left:80px}to{left:-420px}}.photo_display{box-sizing:border-box;width:100%;position:fixed;top:0;left:0;padding-top:64px;padding-left:80px;background:0 0;height:100%;z-index:100}.photo_display .task-popup{width:100%!important;height:100%!important}#picture-content img{max-width:100%;height:400px;display:block;margin:0 auto;margin-bottom:20px}@font-face{font-family:iconfont;src:url(iconfont.woff2?t=1631773579834)format('woff2'),url(iconfont.woff?t=1631773579834)format('woff'),url(iconfont.ttf?t=1631773579834)format('truetype')}html body{font-size:14px;line-height:2;background:#fafafa;font-family:iconfont;color:#05101a;height:100%;position:relative;padding-right:0!important}html,body{height:100%}body,h2,h3,h4,h6,hr,p,blockquote,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td,span{margin:0;padding:0;margin-bottom:0!important}table,input,textarea,select,button{outline:none;border-radius:3px;font-family:微软雅黑,宋体;font-size:14px;line-height:1.9;border:1px solid #eaeaea;background:#fff;color:#05101a}textarea{resize:none}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#ccc}input::-moz-placeholder,textarea::-moz-placeholder{color:#ccc}input::-moz-placeholder,textarea::-moz-placeholder{color:#ccc}input::-ms-input-placeholder,textarea::-ms-input-placeholder{color:#ccc}div,img,tr,td,table{border:0}a:link,a:visited{text-decoration:none;color:#05101a}ol,ul,li{list-style-type:none}select:disabled,input:disabled{background-color:#eee}.clearfix:after{clear:both;content:".";display:block;font-size:0;height:0;line-height:0;visibility:hidden}.clearfix{clear:both;zoom:1}.cl{clear:both;overflow:hidden}.fl{float:left!important}.fr{float:right!important}.break-word{word-break:break-all;word-wrap:break-word}.break-word-firefox{white-space:pre-wrap!important;word-break:break-all}.justify{text-align:justify}.indent{text-indent:2em}.edu-max-h200{height:200px;overflow:auto}.edu-h270{height:270px}.edu-position{position:relative}a.edu-txt-w100,.edu-txt-w100{width:100px;display:inline-block;text-align:center}a.edu-txt-w80,.edu-txt-w80{width:80px;display:inline-block;text-align:center}.task-hide{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.task-hide-2{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.none{display:none!important}.block{display:block}.boxsizing{box-sizing:border-box}.iconfont{font-size:18px!important}.font-n{font-weight:400!important}.font-bd{font-weight:700}.font-n{font-weight:400}.font-12{font-size:12px!important}.font-13{font-size:13px!important}.font-14{font-size:14px!important}.font-15{font-size:15px!important}.font-16{font-size:16px!important}.weight400{font-weight:400}.weight500{font-weight:500}.weight{font-weight:700}.font-17{font-size:17px!important}.font-18{font-size:18px!important}.font-20{font-size:20px!important}.font-22{font-size:22px!important}.font-25{font-size:25px!important}.font-26{font-size:26px!important}.font-24{font-size:24px!important}.font-28{font-size:28px!important}.font-30{font-size:30px!important}.font-32{font-size:32px!important}.font-36{font-size:36px!important}.font-40{font-size:40px!important}.font-50{font-size:50px!important}.font-80{font-size:80px!important}.color-grey-b{color:#bbb!important}a.decoration{text-decoration:underline}.panel-form-label{display:inline-block;width:10%;min-width:90px;text-align:right;line-height:40px;font-weight:400}.mt1{margin-top:1px}.mt2{margin-top:2px}.mt3{margin-top:3px}.mt4{margin-top:4px}.mt5{margin-top:5px!important}.mt6{margin-top:6px}.mt7{margin-top:7px!important}.mt8{margin-top:8px!important}.mt9{margin-top:9px}.mt10{margin-top:10px!important}.mt12{margin-top:12px}.mt13{margin-top:13px}.mt14{margin-top:14px}.mt15{margin-top:15px!important}.mt16{margin-top:16px}.mt17{margin-top:17px}.mt18{margin-top:18px}.mt20{margin-top:20px!important}.mt22{margin-top:22px!important}.mt23{margin-top:23px!important}.mt24{margin-top:24px!important}.mt25{margin-top:25px}.mt28{margin-top:28px}.mt30{margin-top:30px!important}.mt34{margin-top:34px!important}.mt35{margin-top:35px!important}.mt36{margin-top:36px!important}.mt40{margin-top:40px}.mt45{margin-top:45px}.mt50{margin-top:50px}.mt56{margin-top:56px}.mt60{margin-top:60px}.mt70{margin-top:70px}.mt80{margin-top:80px}.mt100{margin-top:100px}.mb0{margin-bottom:0!important}.mb3{margin-bottom:3px}.mb5{margin-bottom:5px}.mb7{margin-bottom:7px}.mb10{margin-bottom:10px}.mb12{margin-bottom:12px}.mb13{margin-bottom:13px}.mb14{margin-bottom:14px}.mb15{margin-bottom:15px!important}.mb16{margin-bottom:16px}.mb20{margin-bottom:20px!important}.mb25{margin-bottom:25px}.mb26{margin-bottom:26px}.mb30{margin-bottom:30px!important}.mb40{margin-bottom:40px!important}.mb50{margin-bottom:50px!important}.mb60{margin-bottom:60px!important}.mb70{margin-bottom:70px!important}.mb80{margin-bottom:80px!important}.mb100{margin-bottom:100px!important}.ml-3{margin-left:-3px}.ml1{margin-left:1px}.ml2{margin-left:2px}.ml3{margin-left:3px}.ml4{margin-left:4px}.ml5{margin-left:5px}.ml6{margin-left:6px}.ml8{margin-left:8px}.ml10{margin-left:10px}.ml12{margin-left:12px!important}.ml13{margin-left:13px!important}.ml15{margin-left:15px}.ml18{margin-left:18px}.ml20{margin-left:20px}.ml22{margin-left:22px}.ml25{margin-left:25px}.ml30{margin-left:30px}.ml33{margin-left:33px}.ml35{margin-left:35px}.ml40{margin-left:40px}.ml50{margin-left:50px}.ml60{margin-left:60px}.ml80{margin-left:80px}.ml85{margin-left:85px}.ml180{margin-left:180px}.mr3{margin-right:3px}.mr4{margin-right:4px}.mr5{margin-right:5px}.mr8{margin-right:8px}.mr10{margin-right:10px}.mr12{margin-right:12px!important}.mr15{margin-right:15px}.mr18{margin-right:18px}.mr20{margin-right:20px}.mr25{margin-right:25px}.mr30{margin-right:30px}.mr35{margin-right:35px}.mr40{margin-right:40px}.mr50{margin-right:50px}.mr60{margin-right:60px}.mr70{margin-right:70px}.mr80{margin-right:80px}.mr90{margin-right:90px}.ml61{margin-left:61px}.pt5{padding-top:5px!important}.pt10{padding-top:10px}.pt15{padding-top:15px}.pt20{padding-top:20px!important}.pt25{padding-top:25px}.pt30{padding-top:30px}.pt35{padding-top:35px}.pt37{padding-top:37px}.pt40{padding-top:40px}.pt50{padding-top:50px}.pt60{padding-top:60px}.pt80{padding-top:80px}.pb5{padding-bottom:5px!important}.pb10{padding-bottom:10px}.pb15{padding-bottom:15px}.pb20{padding-bottom:20px}.pb25{padding-bottom:20px}.pb25{padding-bottom:20px}.pb28{padding-bottom:28px}.pb30{padding-bottom:30px}.pb40{padding-bottom:40px}.pb47{padding-bottom:47px}.pb50{padding-bottom:50px}.pb60{padding-bottom:60px}.pb100{padding-bottom:100px}.pr5{padding-right:5px}.pr10{padding-right:10px}.pr15{padding-right:15px}.pr20{padding-right:20px!important}.pr30{padding-right:30px!important}.pr35{padding-right:35px!important}.pl0{padding-left:0!important}.pl5{padding-left:5px}.pl8{padding-left:8px}.pl10{padding-left:10px}.pl15{padding-left:15px}.pl20{padding-left:20px}.pl25{padding-left:25px}.pl28{padding-left:28px}.pl30{padding-left:30px!important}.pl33{padding-left:33px}.pl35{padding-left:35px}.pl40{padding-left:40px}.pl50{padding-left:50px}.pl60{padding-left:60px}.pr5{padding-right:5px}.pr10{padding-right:10px}.pr15{padding-right:15px}.pr20{padding-right:20px!important}.pr25{padding-right:25px!important}.pr30{padding-right:30px!important}.pr40{padding-right:40px}.padding5-10{padding:5px 10px;box-sizing:border-box}.padding5-20{padding:5px 20px;box-sizing:border-box}.padding10{padding:10px;box-sizing:border-box}.padding15{padding:15px;box-sizing:border-box}.padding20{padding:20px;box-sizing:border-box}.padding10-20{padding:10px 20px;box-sizing:border-box}.padding10-15{padding:10px 15px;box-sizing:border-box}.padding10-30{padding:10px 30px;box-sizing:border-box}.padding20-30{padding:20px 30px;box-sizing:border-box}.padding30{padding:30px;box-sizing:border-box}.padding30-20{padding:30px 20px;box-sizing:border-box}.padding40{padding:40px;box-sizing:border-box}.padding40-30{padding:40px 30px;box-sizing:border-box}.padding40-20{padding:40px 20px;box-sizing:border-box}.lineh-12{line-height:12px!important}.lineh-15{line-height:15px!important}.lineh-17{line-height:17px!important}.lineh-20{line-height:20px!important}.lineh-24{line-height:24px!important}.lineh-25{line-height:25px!important}.lineh-30{line-height:30px!important}.lineh-35{line-height:35px!important}.lineh-40{line-height:40px!important}.break_word{word-break:break-all;word-wrap:break-word}.break_word_firefox{white-space:pre-wrap!important;word-break:break-all}.pr{position:relative}.df{display:flex;display:-webkit-flex;display:-ms-flex}.flex1{flex:1}input::-ms-clear{display:none}::-webkit-scrollbar{width:7px;height:10px;background-color:#f5f5f5}.ant-modal-close{top:8px!important}.newContainer{min-height:100%;height:auto!important;height:100%;position:relative}.educontent{width:1200px;margin:0 auto;box-sizing:border-box}.newMain{margin:0 auto;min-width:1200px}.edu-txt-center{text-align:center!important}.edu-txt-left{text-align:left!important}.edu-txt-right{text-align:right!important}.edu-back-white{background-color:#fff}.edu-back-greyf5{background-color:#f5f5f5!important}.edu-back-skyblue{background:#f4faff}.edu-back-blue{background-color:#459be6!important}.edu-bg-light-blue{background:#f7f9fd;padding:5px}.color-red{color:red!important}.color-white{color:#fff!important}.color-dark{color:#05101a!important}.color-ooo{color:#000!important}.color-grey-name{color:#1a0b00!important}.color-grey-3{color:#333!important}.color-grey-eb{color:#ebebeb!important}.color-grey-c{color:#ccc!important}a.hoverLine:hover{text-decoration:underline}.color-grey-cd{color:#cdcdcd!important}.color-grey-d{color:#ddd}.color-grey-9{color:#999!important}a:hover{color:#6684fe}.color-grey-98{color:#989898!important}.color-grey-8{color:#888!important}.color-grey-6{color:#666!important}.color-grey-B2{color:#b2b2b2!important}.color-grey-B3{color:#b3b3b3!important}.color-grey-B4{color:#b4b4b4!important}.color-grey-74{color:#747a7f!important}a.color-grey-name:hover,a.color-dark:hover,a.color-grey-6:hover,a.color-grey-3:hover,a.color-ooo:hover{color:#2a61ff!important}.color-blue{color:#2a61ff!important}.color-blue-file{color:#4598fa!important}.color-blue_4C{color:#4cacff!important}.color-orange{color:#ff6800!important}.color-orange-tip{color:#ff954c!important}.color-orange-tips{color:#ff8204!important}a.color-orange:hover,a.color-orange-tip:hover{color:#f06200!important}.color-yellow{color:#efc003!important}.color-yellow-ff{color:#ffa800!important}.color-green{color:#29bd8b!important}a.color-green:hover{color:#28ac7f!important}.radius{border-radius:50%}.radius4{border-radius:4px}.ring-green{width:18px;height:18px;display:block;border-radius:50%;background-color:#29bd8b;text-align:center}.ring-op-green{width:18px;height:18px;display:block;border-radius:50%;background-color:rgba(41,189,139,.6);text-align:center}.ring-grey{width:18px;height:18px;line-height:18px;display:block;border-radius:50%;background-color:rgba(204,204,204,.5);text-align:center}.ring-blue{width:18px;height:18px;display:block;border-radius:50%;background-color:#4cacff;text-align:center}.input-flex-35{flex:1;height:35px;padding:5px;box-sizing:border-box}.input-flex-40{flex:1;height:40px;padding:5px;box-sizing:border-box}.input-100-45{width:100%;height:45px;padding:5px;box-sizing:border-box}.input-60-40{width:60%;height:40px;padding:5px;box-sizing:border-box}.greyInput{background-color:#f5f5f5;outline:none}.greyInput:focus{background-color:#fff;border:1px solid #ddd}.winput-240-40{width:240px;height:40px;padding:5px;box-sizing:border-box}.winput-120-35{width:120px;height:35px;padding:5px;box-sizing:border-box}.winput-100-130{width:100%;height:130px;padding:5px;box-sizing:border-box}.winput-100-150{width:100%;height:150px;padding:5px;box-sizing:border-box}.width100{width:100%!important}.width89{width:89%}.width50{width:50%}.width40{width:40%}.width45{width:45%}.width10{width:10%}.width20{width:20%}.width15{width:15%}a.edu-txt-w100,.edu-txt-w100{width:100px;display:inline-block;text-align:center}a.edu-txt-w80,.edu-txt-w80{width:80px;display:inline-block;text-align:center}.minH-440{min-height:440px}.minH-500{min-height:500px}.minH-560{min-height:560px}.minH-650{min-height:650px}.minH-670{min-height:670px}.over210{height:210px;overflow-y:auto}.over280{height:280px;overflow-y:auto}.bor-bottom-greyE{border-bottom:1px solid #eee!important}.bor-left-greyE{border-left:1px solid #eee!important}.bor-top-greyE{border-top:1px solid #eee!important}.bor-grey-e{border:1px solid #eee}.bor-red{border:1px solid #db0505!important}a.decoration{text-decoration:underline!important}.edu-menu-panel{position:relative;cursor:pointer}.edu-menu-list{position:absolute;padding:5px 0;box-shadow:0 2px 8px rgba(0,0,0,.2);display:none;width:120px;background:#fff;right:-5px;border-radius:0 0 4px 4px;color:#05101a;font-size:14px;z-index:9}.edu-menu-list li{width:100%;padding:0 15px;box-sizing:border-box;height:35px;line-height:35px;cursor:pointer}.edu-menu-list li a{width:100%;height:100%;display:block;color:#323232}.edu-menu-panel:hover i,.edu-menu-panel:hover{color:#4cacff}.edu-menu-panel:hover .edu-menu-list{display:block}.edu-menu-list li:hover{background:#4cacff}.edu-menu-list li:hover a{color:#fff!important}.ul-leftline:after{position:absolute;top:0;content:"";width:1px;background-color:#eee;height:100%;right:0}.overPart{width:240px;height:30px;position:absolute;right:0;top:-27px;background:0 0}.handler_bg{background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0ZDhlNWY5My05NmI0LTRlNWQtOGFjYi03ZTY4OGYyMTU2ZTYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NTEyNTVEMURGMkVFMTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NTEyNTVEMUNGMkVFMTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo2MTc5NzNmZS02OTQxLTQyOTYtYTIwNi02NDI2YTNkOWU5YmUiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NGQ4ZTVmOTMtOTZiNC00ZTVkLThhY2ItN2U2ODhmMjE1NmU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+YiRG4AAAALFJREFUeNpi/P//PwMlgImBQkA9A+bOnfsIiBOxKcInh+yCaCDuByoswaIOpxwjciACFegBqZ1AvBSIS5OTk/8TkmNEjwWgQiUgtQuIjwAxUF3yX3xyGIEIFLwHpKyAWB+I1xGSwxULIGf9A7mQkBwTlhBXAFLHgPgqEAcTkmNCU6AL9d8WII4HOvk3ITkWJAXWUMlOoGQHmsE45ViQ2KuBuASoYC4Wf+OUYxz6mQkgwAAN9mIrUReCXgAAAABJRU5ErkJggg==)no-repeat 50%}.handler_ok_bg{background:#fff url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA3hpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo0ZDhlNWY5My05NmI0LTRlNWQtOGFjYi03ZTY4OGYyMTU2ZTYiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDlBRDI3NjVGMkQ2MTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDlBRDI3NjRGMkQ2MTFFNEI5NDBCMjQ2M0ExMDQ1OUYiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDphNWEzMWNhMC1hYmViLTQxNWEtYTEwZS04Y2U5NzRlN2Q4YTEiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NGQ4ZTVmOTMtOTZiNC00ZTVkLThhY2ItN2U2ODhmMjE1NmU2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+k+sHwwAAASZJREFUeNpi/P//PwMyKD8uZw+kUoDYEYgloMIvgHg/EM/ptHx0EFk9I8wAoEZ+IDUPiIMY8IN1QJwENOgj3ACo5gNAbMBAHLgAxA4gQ5igAnNJ0MwAVTsX7IKyY7L2UNuJAf+AmAmJ78AEDTBiwGYg5gbifCSxFCZoaBMCy4A4GOjnH0D6DpK4IxNSVIHAfSDOAeLraJrjgJp/AwPbHMhejiQnwYRmUzNQ4VQgDQqXK0ia/0I17wJiPmQNTNBEAgMlQIWiQA2vgWw7QppBekGxsAjIiEUSBNnsBDWEAY9mEFgMMgBk00E0iZtA7AHEctDQ58MRuA6wlLgGFMoMpIG1QFeGwAIxGZo8GUhIysmwQGSAZgwHaEZhICIzOaBkJkqyM0CAAQDGx279Jf50AAAAAABJRU5ErkJggg==)no-repeat 50%}.-task-title{opacity:0;position:absolute;left:0;top:0;display:none;z-index:100000}.data-tip-down,.data-tip-left,.data-tip-right,.data-tip-top{position:relative;box-shadow:0 0 8px #000;background:#000;color:#fff;max-width:300px;word-wrap:break-word;text-align:center;border-radius:4px;padding:0 10px;border:1px solid #000;display:none}.data-tip-down:after,.data-tip-down:before,.data-tip-left:before,.data-tip-right:before,.data-tip-left:after,.data-tip-right:after,.data-tip-top:after,.data-tip-top:before{position:absolute;content:'';width:0;height:0}.data-tip-down:after,.data-tip-down:before{left:45%;top:-10px;border-left:5px solid transparent;border-right:5px solid transparent;border-bottom:10px solid #000}.data-tip-down:before{top:-11px;border-bottom:10px solid #000}.data-tip-left:after,.data-tip-left:before{left:-10px;top:50%;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-right:10px solid #000}.data-tip-left:before{left:-12px;border-right:10px solid #000}.data-tip-right:after,.data-tip-right:before{right:-10px;top:50%;margin-top:-5px;border-top:5px solid transparent;border-bottom:5px solid transparent;border-left:10px solid #000}.data-tip-right:before{right:-10px;border-left:10px solid #000}.data-tip-top:after,.data-tip-top:before{left:45%;bottom:-10px;border-left:5px solid transparent;border-right:5px solid transparent;border-top:10px solid #000}.data-tip-top:before{bottom:-11px}.edu-pop-table{width:100%;border:1px solid #eee;border-bottom:none;background:#fff;color:#888;cursor:default}.edu-pop-table tr{height:40px}.edu-txt-center{text-align:center}.edu-txt-left{text-align:left}.edu-txt-right{text-align:right}.edu-pop-table tr th{color:#333;border-bottom:1px solid #eee}.edu-pop-table tr td{border-bottom:1px solid #eee}.edu-pop-table.head-color thead tr{background:#fafbfb}.edu-pop-table.head-color{border:none}.edu-pop-table.head-color tr:last-child td{border:none}.edu-pop-table.interval-td{border-bottom:1px solid #eee}.edu-pop-table.interval-td thead tr{background:#fafbfb}.edu-pop-table.interval-td tbody tr:nth-child(even){background:#fafbfb}.edu-pop-table.interval-td tbody tr td{border:none}.edu-pop-table-all{width:100%;border:1px solid #eee;background:#fff;color:#888;border-collapse:collapse}.edu-pop-table-all tr{height:30px}.edu-pop-table-all tr th{color:#333;border:1px solid #eee}.edu-pop-table-all tr td{border:1px solid #eee;padding:5px}img.edu-nodata-img{width:300px;margin:50px auto 20px;display:block;width:128px}.edu-nodata-p{font-size:20px;text-align:center;color:#999;border-bottom:none!important;box-sizing:border-box}.notice{height:25px;margin-left:150px}.edu-position-hide{position:absolute;top:15px;left:-20px;box-shadow:0 2px 8px rgba(146,153,169,.5);background:#fff;z-index:1001;padding:5px 0;z-index:999999}.edu-position-hide li a{display:inline-block;height:30px;width:100px;line-height:30px;text-align:center;font-size:12px!important}.edu-position-hide li a:hover{background:#f1f1f1;color:#05101a}.edu-position-hidebox i{color:#bcbcbc}.edu-position-hidebox i:hover{color:#4cacff}.edu-position-hidebox a{color:#05101a}.edu-position-hidebox:hover .edu-position-hide{display:block}.white-btn{text-align:center;cursor:pointer;display:inline-block;padding:0 8px;border:1px solid #ccc;color:#666;letter-spacing:1px;font-size:14px;height:26px;line-height:26px;border-radius:3px}a.white-btn.orange-btn{border:1px solid #ff7500;color:#ff7500!important}a.white-btn.orange-btn:hover{border:1px solid #f06200;color:#f06200!important}.defalutGreyBorder{display:block;padding:0 10px;border:1px solid #ccc;height:30px;line-height:30px;border-radius:4px}a.task-btn{cursor:pointer;display:inline-block;border:none;padding:0 12px;color:#fff;background:#cdcdcd!important;letter-spacing:1px;text-align:center;font-size:14px;height:30px;line-height:30px;border-radius:2px;font-weight:400}.user_default_btn{cursor:pointer;font-size:14px;display:block;width:120px;text-align:center;height:40px;line-height:40px!important;border-radius:4px;box-sizing:border-box}.user_orange_btn{color:#fff!important;background-color:#ff6800}.user_orange_btn:hover{background-color:#f06200}.user_grey_btn{color:#fff!important;background-color:#ccc;cursor:default}.user_private_btn{color:#646464!important;background-color:#fff;border:1px solid #989898}.user_private_btn:hover{color:#b2b2b2!important;border:1px solid #b2b2b2}.btn_auto{border-radius:5px;background:#fff;padding:0 18px}.edu-default-btn{display:block;border-radius:4px}a.edu-greenback-btn{padding:0 10px;background:#29bd8b;color:#fff!important;border:1px solid #29bd8b}a.edu-greenback-btn:hover{background-color:#28ac7f}a.edu-blueback-btn{padding:0 10px;background:#4cacff;color:#fff!important;border:1px solid #4cacff}a.edu-blueline-btn{padding:0 10px;color:#4cacff!important;border:1px solid #4cacff}a.edu-blueback-btn:hover{background-color:#459be6}a.edu-blueline-btn:hover{border:1px solid #459be6;color:#459be6!important}a.edu-orangeback-btn{background-color:#ff7500;color:#fff!important;border:1px solid #ff7500}a.edu-orangeback-btn:hover{background-color:#f06200}a.edu-orangeline-btn{color:#ff7500!important;border:1px solid #ff7500}a.edu-orangeline-btn:hover{color:#f06200!important;border:1px solid #f06200}a.edu-greyline-btn{padding:0 10px;background:#fff;color:#666!important;border:1px solid #eaeaea;line-height:33px;height:33px}a.edu-greyline-btn:hover{border:1px solid #b2b2b2;color:#b2b2b2!important}.defalutCancelbtn{display:block;border:1px solid #cdcdcd;background-color:#fafafa;color:#999!important;width:120px;text-align:center;height:30px;line-height:30px;border-radius:2px;width:130px;height:40px;background:rgba(77,124,254,0);border:1px solid #4cacff;border-radius:4px;line-height:40px;font-size:16px;font-family:MicrosoftYaHei;font-weight:400;color:#4cacff!important}.defalutCancelbtn:hover{border:1px solid #b2b2b2;color:#b2b2b2!important}.defalutSubmitbtn{display:block;border:1px solid #4cacff;background-color:#4cacff;color:#fff!important;width:120px;text-align:center;line-height:40px;border-radius:2px;width:130px;height:40px;background:#4cacff;border-radius:4px;font-size:16px;font-family:MicrosoftYaHei;font-weight:400;color:#fff}.delectshixuncdbtn{display:block;border:1px solid #cdcdcd;background-color:#fafafa;color:#999!important;width:120px;text-align:center;height:30px;line-height:30px;border-radius:2px;width:130px;height:40px;background:rgba(77,124,254,0);border-radius:4px;line-height:40px;font-size:16px;font-family:MicrosoftYaHei;font-weight:400}.defalutSubmitbtn:hover{background-color:#459be6;border:1px solid #459be6}a.task-btn-orange{background:#4cacff!important;color:#fff!important}a:hover.task-btn-orange{background:#459be6}.user_blue_btn{border:1px solid #4cacff;color:#4cacff!important}a.user_bluebg_btn{background-color:#4cacff;color:#fff}.pointer{cursor:pointer}.cdefault{cursor:default!important}.new_li .markdown-body ul>li,.markdown-body ul>li{list-style-type:disc!important;margin-bottom:0!important}.new_li .markdown-body ol>li,.markdown-body ol>li{list-style-type:decimal!important}.new_li li{margin-bottom:0!important}.markdown-body p{font-size:16px!important}.task-popup{width:30%;background:#fff;border:1px solid #e8e8e8;border-radius:10px}.task-popup-text-center{text-align:center;color:#333}.task-popup-title{border-bottom:1px solid #eee;padding:0 15px;text-align:center;box-sizing:border-box;line-height:70px;height:70px;border-radius:10px 10px 0 0;font-size:16px;font-weight:700}.task-popup-content{padding:15px}.task-popup-submit{margin:0 auto 15px;width:160px}.task-popup-sure{margin:0 auto 15px;width:54px}.task-popup-OK{margin:15px auto;text-align:center}#closeIcon{position:absolute;color:#fefefe}.task_popup_con{padding:20px}.alert{padding:10px;border:1px solid transparent;text-align:center}.alert-orange{background-color:#fff9e9;border-color:#f6d0b1;color:#ee4a20}.pages_user_show a:hover,.pages_user_show li.active a{background-color:#4cacff;color:#fff;border:1px solid #4cacff}.pages_user_show a{border-radius:2px;display:inline-block;border:1px solid #d1d1d1;background-color:#fff;color:#888;float:left;text-align:center;padding:2px 10px;line-height:1.9;margin:0 5px}.pages_user_show li{float:left;list-style-type:none}.pages_user_show ul li{list-style-type:none!important}.pages_user_show ul li a{color:#888}.leftPanel{width:22%;float:left}.leftPanel li.nav{padding:10px 0;box-sizing:border-box}.leftPanel li.nav a{padding-left:40px;display:block;width:100%;box-sizing:border-box;border-left:2px solid #fff;height:24px;line-height:24px}.leftPanel li.nav.active a{border-left:2px solid #4cacff}.rightPanel{width:78%;float:right}.ringauto{width:20px;height:20px;line-height:20px;text-align:center;border-radius:50%;background-color:#f4faff;margin-right:5px}#ajax-indicator{position:absolute;background-color:#eee;border:1px solid #bbb;top:35%;left:40%;width:20%;font-weight:700;text-align:center;padding:.6em;z-index:100000;opacity:.5}html>body #ajax-indicator{position:fixed}#ajax-indicator span{color:#fff;color:#333;background-position:0 40%;background-repeat:no-repeat;background-image:url(/images/loading.gif);padding-left:26px;vertical-align:bottom;z-index:100000}.bestChoose.active{color:#4cacff}.edu-filter-cir-grey{color:#666!important;width:auto;padding:0 15px;font-size:14px!important;text-align:center;background:#f3f3f3;border-radius:10px;display:block;height:25px;line-height:25px}.edu-filter-cir-grey:hover{background:#4cacff;color:#fff!important}.edu-filter-cir-grey.active{background:#4cacff;color:#fff!important;font-size:14px!important}.with10{width:10%;box-sizing:border-box}.with13{width:13%;box-sizing:border-box}.with14{width:14%;box-sizing:border-box}.with15{width:15%;box-sizing:border-box}.with20{width:20%;box-sizing:border-box}.with22{width:22%;box-sizing:border-box}.with23{width:23%;box-sizing:border-box}.with25{width:25%;box-sizing:border-box}.with30{width:30%;box-sizing:border-box}.with35{width:35%;box-sizing:border-box}.with40{width:40%;box-sizing:border-box}.with45{width:45%;box-sizing:border-box}.with49{width:49%;box-sizing:border-box}.with50{width:50%;box-sizing:border-box}.with52{width:52%;box-sizing:border-box}.with48{width:48%;box-sizing:border-box}.with60{width:60%;box-sizing:border-box}.with65{width:65%;box-sizing:border-box}.with70{width:70%;box-sizing:border-box}.with75{width:75%;box-sizing:border-box}.with78{width:78%;box-sizing:border-box}.with80{width:80%;box-sizing:border-box}.with100{width:100%}.transform-90{transform:rotate(-90deg);-ms-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-webkit-transform:rotate(-90deg);-o-transform:rotate(-90deg)}.btn-cir{display:inline-block;padding:0 5px;border-radius:25px;line-height:20px;font-size:12px}.btn-cir-red{background:red;color:#fff;font-weight:400;cursor:default}.btn-cir-red:hover{background:red;color:#fff!important}.edu-filter-btn{cursor:default;display:inline-block;padding:0 9px;color:#666;background:#fff;text-align:center;border-radius:10px;font-size:12px;height:18px;line-height:18px}.edu-filter-btn-red{border:1px solid #dd1717;color:#dd1717}.edu-filter-btn-green{border:1px solid #29bd8b;color:#29bd8b!important}.edu-activity-orange{background-color:#ff6800;color:#fff!important;cursor:pointer;border:1px solid #ff6800}.edu-activity-blue{background-color:#4cacff;color:#fff!important;cursor:pointer;border:1px solid #4cacff}.edu-activity-green{background-color:#29bd8b;color:#fff!important;cursor:pointer;border:1px solid #29bd8b}.color656565{color:#656565}.colorC8161D{color:#c8161d}.bor-reds{border:1px solid red!important;border-radius:4px;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.footer_con-p{color:#898989!important}.markdown-body{text-align:justify;word-break:break-all;width:100%}.RightPaneDrawer .ant-drawer-content{background:#070f1a;overflow:hidden!important}.deletebuttom{border:transparent}.RightPaneDrawer .jupyter_data_list{max-height:340px}.privateTag{display:block;padding:0 6px;border-radius:12px;border:1px solid #2fc25b;height:18px;line-height:18px;font-size:12px;margin-left:10px;color:#2fc25b}.privateTag.red{color:#ff6832;border:1px solid #ff6832}.head-nav::-webkit-scrollbar{display:none}.head-nav{text-align:center;height:58px;box-sizing:border-box;text-overflow:ellipsis;white-space:nowrap;flex:1;white-space:nowrap;overflow-y:auto;display:flex;align-self:flex-start}.head-nav li{height:58px;line-height:58px;cursor:pointer;font-size:16px}.head-nav a{color:#fff;margin:0 20px}.head-nav li a:hover,.head-nav li.active a{color:#5091ff}.head-right{box-sizing:border-box;height:60px;display:flex;align-items:center}.educontent .icon{padding-left:0!important;padding-top:0!important;padding-bottom:0!important}em.vertical-line{display:inline-block;width:2px;background:#999;height:10px}.newslight{display:block;width:5px;height:5px;border-radius:50%;left:25px;top:3px;position:absolute;background:#ff6800}.rateTrangle{display:block;border-width:8px;position:absolute;top:-8px;left:35px;border-style:dashed solid dashed dashed;border-color:transparent transparent #fff transparent;font-size:0;line-height:0;z-index:2}#commentsStar{height:30px;padding-top:7px;box-sizing:border-box}.search-all{width:216px;margin:0 auto;position:relative;background-color:#24292d}.search-all .search-clear{font-size:14px;display:inline-block;width:50px;text-align:center;color:#656565;line-height:60px;cursor:pointer}.footercon{border-bottom:1px solid #47494d}.inner-footernav{width:560px;margin:0 auto}.inner-footernav li{float:left;height:50px;width:80px;text-align:center}.inner-footernav li a{width:100%;text-align:center;line-height:50px;color:#888}.inner-footer_con{width:1200px;margin:0 auto}.intermediatecenter{width:100%;display:flex;flex-direction:column;align-items:center;justify-content:center}.footer_con-p{color:#888;margin-top:10px}.banner{width:100%;height:345px;position:relative;overflow:hidden;border-radius:10px}.banner .img{position:absolute;left:0;top:0}.banner .img li{float:left;width:1200px;height:345px}.banner .img li a{display:block;width:100%;height:100%}.banner .img li img{width:100%;height:345px}.banner .num{position:absolute;width:100%;bottom:30px;left:0;text-align:center;font-size:0}.banner .num li{width:7px;height:7px;background:rgba(225,225,225,.3);border-radius:50%;display:inline-block;margin:0 5px;cursor:pointer}.banner .num li.on{width:12px;border-radius:8px}.moreitem{position:absolute;right:5px;top:35px;height:15px;color:#656565}.square-list{width:100%;box-sizing:border-box;margin-top:20px;flex-wrap:wrap;display:flex}.square-Item{position:relative;width:280px;margin-right:26px;margin-bottom:26px;float:left;border-radius:6px;background-color:#fff;box-shadow:0 0 12px rgba(0,0,0,.1)}.square-Item:hover{box-shadow:0 0 12px rgba(0,0,0,.3)}.square-Item:hover .closeSquare{display:block}.square-Item:nth-child(4n+0){margin-right:0}.square-Item .square-img{display:block;width:100%}.square-Item .square-img img{width:100%;border-radius:6px 6px 0 0;vertical-align:bottom;height:210px}.square-main{padding:15px 20px;box-sizing:border-box}.course-bottom{height:48px;padding:10px 0;box-sizing:border-box}.squareIconSpan{line-height:25px}.square-Item.smallSquare{width:32%;margin-right:1.33%;margin-bottom:10px;min-height:210px;border:none}.square-Item.smallSquare:hover{bottom:0;box-shadow:0 0 12px rgba(0,0,0,.1)}.smallSquare:nth-child(3n+0){margin-right:0}.partimg{height:180px;width:100%;border-radius:6px 6px 0 0}.tag-green{position:absolute;left:10px;bottom:90px}.tag-green .tag-name{display:block;width:auto;background:rgba(0,0,0,.56);border:1px solid rgba(255,255,255,.56);border-radius:3px;font-size:12px;background-size:100% 100%;padding:0 8px;color:#fff;float:left}.tag-orange{position:absolute;right:0;top:12px}.tag-orange .tag-name{display:block;width:auto;background-color:#ff6800;background-size:100% 100%;padding:0 8px;color:#fff;float:left;height:28px;line-height:28px;border-top-left-radius:4px;border-bottom-left-radius:4px}.user_navlist{position:absolute;left:0;width:160px;top:0;height:100%}.user_navlist_black{position:relative;width:100%;height:100%;border-radius:8px 0 0 8px;background:rgba(0,0,0,.8)}.user_navlist_white{position:absolute;left:160px;background:#fff;width:622px;min-height:345px;top:0;z-index:1;display:none;padding:0 30px;box-sizing:border-box;box-shadow:0 0 10px rgba(76,76,76,.2);z-index:99}.user_navlist_white a{color:#989898;margin-right:15px;font-size:14px;display:block;float:left;height:30px;line-height:30px}.user_navlist_white a:hover{color:#4cacff}.headIcon{height:100%;box-sizing:border-box;margin:0!important}.black_nav_list{padding:4px 0;box-sizing:border-box;height:100%}.black_nav_list li{line-height:40px;height:40px;color:#fff;cursor:pointer}.black_nav_span{display:block;margin:0 20px;border-bottom:1px solid #4b4b4b;padding-left:8px;color:#fafafa}.welcome_shixun_index:last-child .black_nav_span{border-bottom:none}.black_nav_list li:hover{background:#fff}.black_nav_list li:hover .black_nav_span{color:#05101a!important}.black_nav_list li:hover>a{color:#4cacff!important}.black_nav_list li:hover .user_navlist_white{display:block}.navlistpanel-line{border-bottom:1px solid #ebebeb}.navlistpanel-line:last-child{border-bottom:none}.little-title{width:100%;height:20px;line-height:20px;color:#05101a;font-size:15px;margin-bottom:8px}.ranking{text-align:center;margin-top:40px}.grade{width:auto;display:inline-block}.grade li{float:left;margin:0 10px;width:60px}.ranking a img{width:60px;height:60px;border-radius:50%;box-shadow:0 0 12px rgba(0,0,0,.2)}.mentor-ranking{background-color:#efefef;background-size:100% 100%}.huangguan{position:absolute;top:-30px;left:13px}#log_reg_content{border-radius:5px;background:#fff;width:100%;text-align:center;position:absolute;top:165px;left:0;padding:40px 30px;box-sizing:border-box}.log_nav{border-bottom:1px solid #eaeaea}.log_nav li{float:left;text-align:center;font-size:16px;padding-bottom:15px;cursor:pointer}.log_nav li.active{border-bottom:2px solid #459be5}.log-botton{width:100%;text-align:center;color:#fff!important;display:block;background:#cbcbcb;height:45px;line-height:45px;border-radius:4px;letter-spacing:2px;cursor:pointer}.log-botton:hover{color:#fff!important}.log-botton.active{background:#4cacff}.gain-code{width:48%;display:block;float:right;height:45px;line-height:45px;text-align:center;background:#cbcbcb;color:#fff!important;border-radius:4px;cursor:pointer}.gain-code:hover{color:#fff!important}.user-main-half{width:100%;height:465px;background:#fff;margin-bottom:20px;position:relative}.user-headImg{width:100%;height:160px;background-image:url(/images/educoder/userhead.jpg);position:absolute;width:100%;left:0;top:0}.user-headCon{position:absolute;width:100%;left:0;top:0;min-height:465px}.inline{width:auto;display:inline-block}.headtab{width:188px;height:60px;text-align:center}.headtab span,.headtab a{display:block;width:100%;text-align:center}.headtab span{color:#989898;font-size:14px}.headtab a{color:#fff;font-size:24px}.headphoto{text-align:center;background:#fff;width:115px;height:115px;padding:3px;border-radius:50%;position:relative;float:left;margin-top:19px;box-sizing:border-box}.headphoto img{width:109px;border-radius:50%;height:109px}.headphoto-black{display:none;cursor:pointer;position:absolute;top:3px;left:3px;width:109px;height:109px;text-align:center;line-height:112px;border-radius:50%;background-color:rgba(0,0,0,.3);color:#fff}.myName{display:block;width:auto;color:#05101a;font-size:24px;height:28px;line-height:28px;margin-top:5px}.mypost{color:#686868;font-size:14px;display:block;width:auto;height:20px;line-height:20px}.mysign-span{margin:0 auto;color:#05101a;font-size:14px;display:block;width:280px;cursor:pointer;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mysign-input{margin:0 auto;color:#05101a;font-size:14px;width:280px;height:28px;border:none;outline:none;text-align:center}.v-h-line{display:block;width:1px;height:40px;background-color:#999;margin-top:12px}.user-bar{position:relative;width:100%;height:8px;background-color:#cdcdcd;border-radius:4px}.user-bar p{position:absolute;left:0;top:0;height:100%;background-color:#4cacff;border-radius:4px}.publicpart{position:absolute;left:1px;top:1px;width:0;height:0;border-left:80px solid #4cacff;border-bottom:80px solid transparent;z-index:1}.publicpart.orangeBlack{border-left:80px solid #ff6800}.smalltrangle{display:block;position:absolute;left:1px;top:1px;border-left:25px solid #fff;border-bottom:25px solid transparent;z-index:2}.publicword{transform:rotate(-45deg);text-align:center;color:#fff;font-size:14px;display:block;position:absolute;width:50px;left:0;z-index:3;top:15px}.closeSquare{position:absolute;width:100%;left:0;top:0;text-align:center;background-color:rgba(0,0,0,.5);height:100%;z-index:5;display:none;cursor:default}.substance{padding:40px 40px 0;box-sizing:border-box;text-align:center;border-bottom:1px solid #eaeaea;min-height:241px}.subName{line-height:20px;height:40px;text-align:center;color:#1a0b00;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden}.secondNav li{color:#676767;margin:0 20px;float:left}.secondNav li a:hover{color:#4cacff}.secondNav li.active a{color:#4cacff}.dataBank_Item{margin-bottom:3px;width:100%;border-bottom:1px solid #eee;padding:17px 37px 17px 20px;box-sizing:border-box;background:#fff;display:flex;cursor:pointer}.dataBank_Item:hover{box-shadow:0 0 15px rgba(76,76,76,.2)}.dataBank_Item:last-child{border:none}.dataItemLeft{margin-right:20px;width:20px}.dataItemRight{flex:1}.dataTitle{color:#05101a;display:block;float:left;max-width:400px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}.itembottom span.bottomspan{display:block;width:200px;text-align:left}.search_course_list{height:150px;overflow-y:auto}.search_course_list li{height:30px}.userdata{width:622px;margin:0 auto;background:#fff;margin-bottom:80px;padding:40px;box-sizing:border-box;border-radius:4px}.shaiTitle{display:block;padding-right:20px}.shaiContent li.shaiItem.active{background-color:#4cacff!important;color:#fff!important}.shaiContent li.shaiItem{padding:3px 15px;float:left;border-radius:4px;color:#4c4c4c;cursor:pointer;margin-right:15px;display:block}.shaiContent li.shaiItem:hover{background-color:#4cacff!important;color:#fff!important}.shaiAllItem{max-width:1138px}.subshaicontent{display:none;box-sizing:border-box;position:absolute;width:100%;top:33px;left:0;background-color:#fff;box-shadow:0 1px 4px rgba(76,76,76,.2);padding:0 20px;z-index:99999;border-radius:4px;max-height:800px;overflow-y:auto}.subshaicontent-part{border-bottom:1px solid #eee}.subshaicontent-part:last-child{border-bottom:none}.subshaicontent a:hover,.subshaicontent a.active{color:#4cacff}.subshaicontent a{float:left;margin-right:20px;color:#999;cursor:pointer}.search-new{width:248px;height:32px;position:relative}.search-span{display:block;position:absolute;width:100%;height:100%;left:0;top:0;background-color:#f4f4f4;border:1px solid #eaeaea;border-radius:4px;z-index:1}.search-new-input{height:32px;padding-left:5px;width:225px;border:none;box-sizing:border-box;background:0 0;outline:none;position:absolute;left:0;top:1px;z-index:2}.search-new img,.search-new a{cursor:pointer;position:absolute;right:2px;top:2px;z-index:2}.search-new a{top:0}.search-new-input:focus+.search-span{background-color:#fff}.controlblue{width:0;height:15px;background-color:#4cacff;border-radius:7px;position:absolute;left:0;top:0;z-index:1}.controlring{width:13px;height:13px;border-radius:50%;background-color:#fff;position:absolute;left:1px;top:1px;z-index:2}@font-face{font-family:panmen-webfont;src:url(../fonts/panmen-webfont.ttf)}.shixunDetail_top{width:100%;background-image:url(/images/educoder/shixun-detail.jpg);height:240px;justify-content:center;align-items:center;display:-webkit-flex;background-size:cover;background-position:50%;background-repeat:no-repeat}.task-item{margin-top:30px;padding-bottom:30px;border-bottom:1px solid #eee}.task-item:last-child{border-bottom:none}.recomments{margin-bottom:20px}.recomments:first-child{margin-top:0}.recomments:last-child{margin-bottom:0;border:none;padding-bottom:0}.url-input{border:none;padding:0;font-size:12px;color:#999;outline:none}.TPMtaskName{max-width:500px}.recomment-name{max-width:222px;display:block}.task-colspan{min-width:25%;text-align:left;display:block;float:left;color:#999}.challenge_nav{padding:20px 20px 0;border-bottom:1px solid #eee}.challenge_nav li{width:auto;float:left;margin-right:20px;position:relative}.challenge_nav li.active:after{position:absolute;content:'';width:76%;background-color:#4cacff;height:3px;border-radius:2px;left:25%;bottom:0}.challenge_nav li a{display:block;width:100%;padding-bottom:20px}.add_choose_type{width:60px;height:20px;line-height:19px;border-radius:2px;background-color:#eaeaea;color:#999!important;display:block;float:left;text-align:center;margin-top:4px}.task_tag_span{float:left;padding:0 10px;background-color:#eee;color:#999;border-radius:2px;margin-right:10px;margin-bottom:8px}.task_tag_span span{float:left}.task_tag_span a{font-size:18px;margin-left:5px;float:left;line-height:28px;height:28px;cursor:pointer}.task_tag_span a:hover{color:#666!important}.show_content_grey{padding:10px 15px;background-color:#f4f4f4;color:#05101a;text-align:justify;word-break:break-all;border-radius:4px;width:100%;box-sizing:border-box}.empty{background:#494a4c;display:inline;margin:0 2px;padding:0 3px}.option-item{border:1px solid #e2e2e2}.option-item{display:block;width:38px;height:38px;text-align:center;line-height:38px;border-radius:4px;cursor:pointer}.check-option-bg{background:#ff7500;color:#fff!important;border:1px solid #ff7500}.position-delete{position:absolute;right:-22px;top:12px;cursor:pointer}.position-delete:hover i{color:#4cacff!important}.rankings li{line-height:40px;height:40px}.rankingindex{width:24px;text-align:center}.collaborators-item{border-bottom:1px solid #eee;cursor:default;padding-top:30px;padding-left:20px}.collaborators-item:last-child{border-bottom:none}.upload_select_box{width:100%;box-sizing:border-box;height:240px;overflow-y:auto;padding:10px;background:#f4faff;color:#333}.pullreques_name{width:120px;text-align:left;margin-right:10px}.pullreques_pull_txt{display:block;margin-left:10px;max-width:640px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.versionFileList li{border-bottom:1px solid #eee}.versionFileList li:last-child{border-bottom:none}.old{background:#ffecec}.old:hover{background:#fffaf1}.new{background:#eaffea}.new:hover{background:#fffaf1}.pathNavLine{position:absolute;bottom:-8px;width:100%}.path-nav li{float:left;padding:0 30px;height:42px}.path-nav li a{color:#fff;font-size:16px;display:block;height:40px}.path-nav li.active a{border-bottom:3px solid #4cacff;color:#4cacff}.subhead{width:100%;margin-bottom:40px;background-size:100% 100%;background-image:url(/images/educoder/path-detail.jpg);height:240px;justify-content:center;align-items:center;display:-webkit-flex;background-size:cover;background-position:50%;background-repeat:no-repeat}.subhead_content{width:1200px;margin:0 auto}.pathInfo li{text-align:center;float:left;margin-right:30px}.pathInfo li span{display:block}.produce-content{padding:40px 20px;background-color:#fff;box-sizing:border-box}.lesson-saved-list-item{border-bottom:1px solid #ebebeb;padding:37px 0}.title-line{padding:0 20px}.paragraph{height:50px;padding:10px 20px 10px 47px;box-sizing:border-box}.paragraph:hover{background-color:#f0f8ff}.lesson-saved-list-item:last-child{border:none}.click_add{text-align:center;height:90px;line-height:90px;background-color:#fff;border-top:1px solid #ebebeb;cursor:pointer}.mustlearn{padding:40px 25px}.teacherTeam{padding:40px 25px 0}.teacherTeamItem{border-bottom:1px solid #eaeaea;padding:40px 0}.teacherTeamItem:first-child{padding-top:0!important}.teacherTeamItem:last-child{border:none}.addTeamMember{height:70px;text-align:center;line-height:70px}.adding-stage-item{padding:0 20px 20px 50px;position:relative}.colseThispart{position:absolute;right:-6px;top:-6px;z-index:2;line-height:15px}.progressRing{display:block;width:16px;height:16px;float:left;position:relative;z-index:1}.progressRing-over{color:#459be6;position:absolute;top:-10px}.progressRing-part{color:#b3dcff;position:absolute;top:-10px}.myProgressNav{width:100%;position:relative;height:10px;border-radius:5px;background-color:#eaeaea}.myProgressGreen{position:absolute;top:0;left:0;border-radius:5px;height:100%;background-color:#29bd8b}.lesson-saved-list-item .title-line .edit:hover,.lesson-saved-list-item .title-line .delete:hover{color:#ff7500!important}li.li-width63{width:63%;text-align:left}.courseHead{width:100%;margin-bottom:40px;background-size:100% 100%;background-image:url(/images/educoder/courtailsbdpicture.jpg);height:240px;justify-content:center;align-items:center;display:-webkit-flex;background-size:cover;background-position:50%;background-repeat:no-repeat}.invite-tip{position:absolute;top:-5px;right:140px;color:#fff;box-sizing:border-box;width:170px;text-align:center;border-radius:2px;background-color:rgba(5,16,26,.6);z-index:5000}.inviteTipbtn a{font-size:14px;width:100%;height:30px;line-height:30px;display:block;color:#747a7f;background-color:rgba(5,16,26,.4)}.inviteTipbtn a:hover{color:#4cacff!important}.top-black-trangle{display:block;border-width:8px;position:absolute;top:-16px;right:4px;border-style:dashed solid dashed dashed;border-color:transparent transparent rgba(5,16,26,.6)transparent;font-size:0;line-height:0}.loadMore{width:100%;background-color:#fff;color:#4cacff!important;text-align:center;display:block;letter-spacing:1px;box-sizing:border-box;height:110px;line-height:110px}.activity-left-name{display:block;max-width:126px;float:left}.panel-inner-fourm{padding:15px 20px;border-bottom:1px solid #eee}.panel-inner-fourm:hover{background:#eff9fd}.resources{width:100%!important;padding:15px;float:left;box-sizing:border-box;border-top:1px solid #eee}.resources:last-child{border-bottom:none}#sourceTag li{font-size:12px;color:#4e7a9b;background-color:#e5f3ff;padding:0 4px;height:20px;line-height:20px;margin-left:5px;display:inline-block;cursor:pointer}#sourceTag li a{color:#4e7a9b!important}#sourceTag li.active{background-color:#4cacff;color:#fff}#sourceTag li.active a{background-color:#4cacff;color:#fff!important}.new-info{height:18px;min-width:18px;line-height:18px;padding:0 2px;box-sizing:border-box;text-align:center;background-color:#ff6800;color:#fff;border-radius:30px;display:block;position:absolute;right:40px;top:13px;font-size:12px}.ridingNav li{float:left;margin:0 20px;color:#999;font-size:16px;height:60px;line-height:60px;position:relative}.ridingNav li a{display:block;width:100%;height:100%;color:#999}.ridingNav li.active a{color:#05101a}.ridingNav li.active:after{content:'';position:absolute;bottom:0;width:100%;height:2px;border-radius:1px;background-color:#05101a}.new-point{display:block;width:4px;height:4px;border-radius:50%;background-color:#ff6800}.ridinglist:hover{background-color:#f5f5f5}.ridinglist .ridinglist-sub{border-bottom:1px solid #f5f5f5;padding:25px 0;cursor:pointer}.ridinglist:last-child .ridinglist-sub{border-bottom:none}.private-item{padding:30px 30px 30px 25px;border-bottom:1px solid #f5f5f5;cursor:pointer}.private-item:hover{background-color:#f5f5f5}.private-item:last-child{border-bottom:none}.writeLetter_Info{position:relative;width:100%;height:260px;background-color:#f6f6f6;cursor:default;border-radius:3px}.writeLetter_text{width:100%;border:none;background-color:#f6f6f6;outline:none;height:100%;padding:5px 5px 30px;border:1px solid #eaeaea;box-sizing:border-box;resize:none}.longchar{position:absolute;background-color:#f6f6f6;bottom:1px;color:#999;right:10px}.writeLetter_text:focus+.longchar{background-color:#fff}.recently_person{position:absolute;width:100%;top:35px;max-height:300px;overflow-y:auto;border-radius:4px;box-shadow:0 1px 6px rgba(76,76,76,.2);left:0;z-index:1;background-color:#fff;cursor:pointer;display:none}.recently_item{padding:10px 20px}.recently_name{float:left;line-height:48px;display:block}.recently_item:hover{background-color:#f9f9f9}.private-list{min-height:660px;max-height:831px;overflow-y:auto;overflow-x:hidden}.private-list .private-part{padding-left:20px;cursor:pointer}.private-part:hover{background-color:#f5f5f5}.private-part.active{background-color:#f5f5f5}.privatePartName{max-width:70px;float:left}.newLetter{display:block;width:4px;height:4px;background-color:#ff6800;border-radius:50%;float:right}.part-line{padding:30px 20px 30px 0;border-bottom:1px solid #f5f5f5}.private-part:last-child .part-line{border:none}.dialogPanel{padding:0 20px;height:545px;overflow-y:auto}.letter-time{width:auto;padding:0 10px;background-color:#999;color:#fff;border-radius:10px;height:20px;line-height:20px}.OtherSide,.ThisSide{margin-top:30px}.OtherSide-info .trangle{position:absolute;left:-5px;top:10px;width:0;height:0;border-top:6px solid transparent;border-right:5px solid #f5f5f5;border-bottom:6px solid transparent}.OtherSide-info .sms{max-width:300px;padding:10px 15px;box-sizing:border-box;background-color:#f5f5f5;color:#666;border-radius:6px;text-align:justify}.OtherSide-info .sms img{max-width:80px;cursor:pointer}.ThisSide-info .sms p{line-height:20px}.sms{min-height:48px}.ThisSide .trangle{position:absolute;right:-5px;top:10px;width:0;height:0;border-top:6px solid transparent;border-left:5px solid #4cacff;border-bottom:6px solid transparent}.ThisSide-info .sms{max-width:300px;padding:10px 15px;box-sizing:border-box;background-color:#4cacff;color:#fff;border-radius:6px;text-align:justify}.ThisSide-info .sms p{line-height:20px}.ThisSide-info .sms img{max-width:80px;cursor:pointer}.action{color:#05101a}.announcement{padding:20px 0;border-bottom:1px solid #eee}.announcement:last-child{border-bottom:none}.part{width:540px;margin:0 auto 10px;background-color:rgba(25,27,32,.6)}.both{clear:both}.left{float:left}.right{float:right}.statistics_position{position:absolute;bottom:22px;left:0;width:100%;left:0}ul.count_ul li{width:300px;position:relative;float:left}ul.count_ul li span:first-child{display:block;width:100%;color:#989898;margin-bottom:20px}ul.count_ul li span:last-child{display:block;width:100%;color:#fff;font-size:24px;line-height:20px}ul.count_ul li:not(:last-child):after{position:absolute;content:'';width:1px;height:36px;background-color:#999;right:0;top:16px}.static_shadow{box-shadow:0 0 9px rgba(174,175,177,.2)}.subject_statistics_top{height:240px;width:100%;position:relative;background-image:url(/images/educoder/subject_statistics.jpg);background-size:100% 100%}#course_list{overflow-y:auto;background:#fff}.popup_tip_box{right:-160px;top:55px}.homepagePostSetting{display:none}.nodata{text-align:center;background-color:initial;border-color:transparent;color:#000}#attachments_fields span{font-size:12px;color:#ccc}.ml20mr20Color{color:#676767}.color-dark-grey{color:#999!important}.colorFFF{color:#fff!important}.left{float:left}.cancellation{position:absolute;top:62px;left:177px;color:#fff!important}.tabeltext-alignleft{text-align:center}.newshixun_tab_div{padding:0 22px 0 -5px;max-height:90px;overflow-y:auto}.newcolor-orange{color:#ff6800}.color4CACFF{color:#4cacff!important;font-size:16px}.color979797{font-size:14px;color:#979797!important;padding-left:2%}.marginTop{margin-right:33%;margin-top:20px}.shixuns_count{color:#05101a;font-size:14px}#shixun_search_form_div{margin-top:20px;margin-bottom:20px!important}.editormd-html-preview{width:100%!important;color:#323232!important}.mt4{margin-top:4px}.newMain,.newFooter{max-width:unset}.educontentTop{width:1178px!important}.inner-footer_con{width:auto}.careershover{margin-right:30px!important}.careershover ul li a{color:#000!important}.careershover ul li{height:35px!important;line-height:35px!important}.edu-menu-listnew{width:165px!important;top:60px;left:-42px}.edu-menu-listnew li a{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;color:#000!important}.edu-menu-listnew li a:hover{color:#fff!important}.ListTableLine>p{margin-bottom:0;padding:0 30px;background-color:#f5f5f5;line-height:40px;height:56px;padding-top:8px;box-sizing:border-box}.ListTableLine>p span{float:left;color:#666;box-sizing:border-box}.ListTableLine li{min-height:48px;padding:10px 0;box-sizing:border-box;margin:0 30px;border-bottom:1px solid #eaeaea}.ListTableLine li>span{float:left;box-sizing:border-box}.ListTableLine .column-1{width:100px;text-align:left;padding-left:5px;box-sizing:border-box}.ListTableLine .column-1{width:100px;text-align:left;padding-left:5px;box-sizing:border-box}.ListTableLine .column-2{width:180px;text-align:center;padding-left:5px;box-sizing:border-box}.ListTableLine .column-3{width:330px;text-align:left;padding-left:5px;box-sizing:border-box}.ListTableLine .column-4{width:400px;text-align:left;padding-left:5px;box-sizing:border-box}#traningNav{padding:30px 30px 0 0}#traningNav>li{float:left;padding:0 30px 30px;font-size:16px}#traningNav>li>a,#traningNav li>i{color:#666!important;position:relative}#traningNav>li.active>a,#traningNav li.active>i{color:#05101a!important}#traningNav>li.active>a:after{content:'';position:absolute;width:64px;left:50%;margin-left:-32px;height:2px;background-color:#05101a;bottom:-35px}.gaugeOutfit{position:relative;height:70px;width:120px;background:linear-gradient(30deg,transparent 49.5%,#eee 50%,#eee 50%,transparent 50.5%)}.gaugeOutfit span:first-child{position:absolute;left:8px;top:46px}.gaugeOutfit span:last-child{position:absolute;right:8px;top:14px}.sustainLine td:not(:first-child):hover{background-color:rgba(41,189,139,.1);cursor:pointer}.packinput .ant-input{height:50px;width:749px;border-color:#e1edf8!important}.packinput{width:749px}.packinput .ant-input-group-addon .ant-btn{width:140px!important;font-size:18px;height:50px;background:#4cacff}.setissues{width:280px;height:50px;background:#4cacff;border-radius:4px;margin-left:15px}.pagetype li{color:#8f8f8f!important}.mbf10{margin-bottom:-10px}.PackageIndexNEIBanner{width:1200px;height:110px;background:#fff;box-shadow:0 2px 6px rgba(125,125,125,.26);border-radius:8px}.padding110{padding:39px 110px 0;box-sizing:border-box}.borderccc{border:1px solid #ccc}.input-100-40s{width:100%;padding:5px;box-sizing:border-box}.fafafas{background-color:#fafafa!important;height:40px}.fafafas:focus{background-color:#fff!important}.fafas .ant-input{background-color:#fafafa!important;height:40px}.fafas .ant-input:focus{background-color:#fff!important}.fafas .ant-input-group-addon .ant-btn{width:140px!important;font-size:14px;height:40px;background:#4cacff}.newFormbox .upload_filename{line-height:32px}.newFormbox .attachment span{line-height:23px}.newFormbox .attachment .remove-upload{line-height:28px}.newFormbox .attachment .icon-fujian{font-size:14px!important;line-height:14px;margin-top:9px}.newFormbox{height:20px}.defalutCancelbtns{display:block;border:1px solid #4cacff!important;background-color:#fff;color:#4cacff!important;width:130px;height:40px;text-align:center;line-height:40px;border-radius:4px}.defalutSubmitbtns{background-color:#4cacff;height:40px}.defalutSubmitbtnmodels{width:127px;height:30px;background-color:#4cacff}.padding200{padding:115px 200px 215px}.fontcircle{font-size:80px;display:inherit}.sumbtongs{font-size:24px;display:inherit;text-align:center}.terraces{font-size:16px;display:inherit;text-align:center;color:#999}.padding251{padding:0 245px}.ml17{margin-left:17px}.project-package-items{display:-webkit-flex;display:flex;flex-direction:row;margin:0!important;padding:20px;background:#fff;margin-bottom:0!important;box-shadow:none!important}.publicpart.orangeGreen{border-left:80px solid #29bd8b}.publicwords{left:3px;top:18px}.project-packages-list .project-package-items .item-image{width:100px!important}.height185{height:185px}.ContacttheTA{width:80px;height:26px;font-size:14px;line-height:26px;display:block;border:1px solid #4cacff!important;background-color:#fff;color:#4cacff!important;text-align:center;border-radius:4px}.ContacttheTAs{width:80px;height:26px;font-size:14px;line-height:24px;border:1px solid #fff!important;background-color:#4cacff;color:#fff!important;text-align:center;border-radius:4px}.ml28{margin-left:28px}.longboxs{font-size:16px;font-family:MicrosoftYaHei-Bold;font-weight:700;color:#05101a;border-left:4px solid #4cacff;padding-left:10px;margin-bottom:20px}.padding020{padding:0 20px 20px}.mtf3{margin-top:-3px}.task-btn-nebules{background:#fff!important;color:#4cacff!important;border:1px solid #4cacff!important;margin-left:20px;cursor:pointer;display:inline-block;padding:0 12px;letter-spacing:1px;text-align:center;font-size:14px;height:30px;line-height:30px;border-radius:2px}.packageabsolute{position:absolute;right:-16px;top:-7px}.relativef{position:relative}.homehove:hover .ptext{color:#4cacff!important}.homehove:hover .ContacttheTAs{display:block}.topsj{position:absolute;top:-6px}.bottomsj{position:absolute;bottom:-6px}.pagenoedits{margin-left:20px;color:#ccc}.pagemancenter{text-align:center}.ml0{margin-left:0}.tabelcli{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;max-width:850px;display:table-cell}.mtf10{margin-top:-10px}.padding26{padding:26px;box-sizing:border-box}.pd26{padding:26px}.pd30a0{padding:30px 30px 16px}.shaiContent li.shaiItem:hover span{color:#fff!important}.shaiContent li.shaiItem:hover i.iconfont{color:#4cacff!important}.detail_for_paragraph p{white-space:pre-wrap}.square-main p{margin-bottom:0!important}.markdown-body{text-align:justify;word-break:break-all}.RightPaneDrawer .ant-drawer-content{background:#070f1a;overflow:hidden!important}.deletebuttom{border:transparent}.RightPaneDrawer .jupyter_data_list{max-height:340px}.ant-btn-primary{text-shadow:none!important;box-shadow:none!important}.ant-notification{z-index:10001!important}input.ant-input-lg::placeholder{font-size:14px!important}p{margin-bottom:0!important}.toprightNum{position:absolute;right:0;top:4px;color:#999}.ant-input,.ant-input .ant-input-suffix{background-color:#fff!important}.has-error .ant-input{background-color:#fef1f0!important}.CodeMirror-merge{position:relative;white-space:pre}.CodeMirror-merge,.CodeMirror-merge .CodeMirror{min-height:50px}.CodeMirror-merge-2pane .CodeMirror-merge-pane{width:48%}.CodeMirror-merge-2pane .CodeMirror-merge-gap{width:4%}.CodeMirror-merge-3pane .CodeMirror-merge-pane{width:31%}.CodeMirror-merge-3pane .CodeMirror-merge-gap{width:3.5%}.CodeMirror-merge-pane{display:inline-block;white-space:normal;vertical-align:top}.CodeMirror-merge-pane-rightmost{position:absolute;right:0;z-index:1}.CodeMirror-merge-gap{z-index:2;display:inline-block;height:100%;-moz-box-sizing:border-box;box-sizing:border-box;overflow:hidden;position:relative;background:#515151}.CodeMirror-merge-scrolllock-wrap{position:absolute;bottom:0;left:50%}.CodeMirror-merge-scrolllock{position:relative;left:-50%;cursor:pointer;color:#d8d8d8;line-height:1}.CodeMirror-merge-copybuttons-left,.CodeMirror-merge-copybuttons-right{position:absolute;left:0;top:0;right:0;bottom:0;line-height:1}.CodeMirror-merge-copy{position:absolute;cursor:pointer;color:#ce374b;z-index:3}.CodeMirror-merge-copy-reverse{position:absolute;cursor:pointer;color:#44c}.CodeMirror-merge-copybuttons-left .CodeMirror-merge-copy{left:2px}.CodeMirror-merge-copybuttons-right .CodeMirror-merge-copy{right:2px}.CodeMirror-merge-r-inserted,.CodeMirror-merge-l-inserted{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAAGUlEQVQI12MwuCXy3+CWyH8GBgYGJgYkAABZbAQ9ELXurwAAAABJRU5ErkJggg==);background-position:0 100%;background-repeat:repeat-x}.CodeMirror-merge-r-deleted,.CodeMirror-merge-l-deleted{background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAACCAYAAACddGYaAAAAGUlEQVQI12M4Kyb2/6yY2H8GBgYGJgYkAABURgPz6Ks7wQAAAABJRU5ErkJggg==);background-position:0 100%;background-repeat:repeat-x}.CodeMirror-merge-r-chunk{background:#9a6868}.CodeMirror-merge-r-chunk-start{}.CodeMirror-merge-r-chunk-end{}.CodeMirror-merge-r-connect{fill:#9a6868}.CodeMirror-merge-l-chunk{background:#eef}.CodeMirror-merge-l-chunk-start{border-top:1px solid #88e}.CodeMirror-merge-l-chunk-end{border-bottom:1px solid #88e}.CodeMirror-merge-l-connect{fill:#eef;stroke:#88e;stroke-width:1px}.CodeMirror-merge-l-chunk.CodeMirror-merge-r-chunk{background:#dfd}.CodeMirror-merge-l-chunk-start.CodeMirror-merge-r-chunk-start{border-top:1px solid #4e4}.CodeMirror-merge-l-chunk-end.CodeMirror-merge-r-chunk-end{border-bottom:1px solid #4e4}.CodeMirror-merge-collapsed-widget:before{content:"(...)"}.CodeMirror-merge-collapsed-widget{cursor:pointer;color:#88b;background:#eef;border:1px solid #ddf;font-size:90%;padding:0 3px;border-radius:4px}.CodeMirror-merge-collapsed-line .CodeMirror-gutter-elt{display:none}.cursor{cursor: pointer} \ No newline at end of file diff --git a/src/forge/Branch/branch.scss b/src/forge/Branch/branch.scss index e1970722..716c71ca 100644 --- a/src/forge/Branch/branch.scss +++ b/src/forge/Branch/branch.scss @@ -123,24 +123,26 @@ text-align: center; } -.urlMenu{ - line-height: 30px; - margin-bottom: 10px; - padding:15px 20px 0px 20px; - border-bottom: none; - li.ant-menu-item{ - height: 30px; +.downMenu { + .urlMenu{ line-height: 30px; - padding:0px 5px; - margin-right: 20px!important; - &.ant-menu-item-selected,&.ant-menu-item-active{ - color: #333; - } - &.ant-menu-item-selected{ - border-color:#466aff!important; - } - &.ant-menu-item-active{ - border-color:transparent ; + margin-bottom: 10px; + padding:15px 20px 0px 20px; + border-bottom: none; + li.ant-menu-item{ + height: 30px; + line-height: 30px; + padding:0px 5px; + margin-right: 20px!important; + &.ant-menu-item-selected,&.ant-menu-item-active{ + color: #333; + } + &.ant-menu-item-selected{ + border-color:#466aff!important; + } + &.ant-menu-item-active{ + border-color:transparent ; + } } } } From 21be664fcee45347121998030abb4b1477fc751e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E5=BF=83=E5=AE=87?= Date: Thu, 9 May 2024 17:22:07 +0800 Subject: [PATCH 20/25] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=88=86=E6=94=AF?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E5=8C=B9=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Routes.js | 6 ++++++ src/forge/Main/Detail.js | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/Routes.js b/Routes.js index c7400765..869b1f9d 100644 --- a/Routes.js +++ b/Routes.js @@ -35,6 +35,12 @@ export const deepRoutes = [ onlyHead: true, // component: Information }, + { + key: "detailBranch", + path: "/:owner/:projectsId/tree/:branchName", + onlyHead: false, + component: Detail, + }, { key: "detail", path: "/:owner/:projectsId", diff --git a/src/forge/Main/Detail.js b/src/forge/Main/Detail.js index 938accea..73f468d9 100644 --- a/src/forge/Main/Detail.js +++ b/src/forge/Main/Detail.js @@ -972,9 +972,9 @@ Detail.preFetch = ({ store, match, query }) => { const promises = [ dispatch(setProjectDetail(match.params)), dispatch(setProject(match.params)), - dispatch(setProjectEntries({...match.params, branch: ''})), + dispatch(setProjectEntries({...match.params, branch: match.params.branchName ? match.params.branchName : ''})), dispatch(setProjectMenuList(match.params)), - dispatch(setProjectReadMe({...match.params, branch: ''})) + dispatch(setProjectReadMe({...match.params, branch: match.params.branchName ? match.params.branchName : ''})) ]; const data = await Promise.all(promises); resolve({ From 18285e5d1ecee637ae9240cf4622d55b05312d62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E5=BF=83=E5=AE=87?= Date: Fri, 10 May 2024 08:48:41 +0800 Subject: [PATCH 21/25] bug fix --- src/forge/Main/CoderRootIndex.js | 1 + src/forge/Main/Detail.js | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/forge/Main/CoderRootIndex.js b/src/forge/Main/CoderRootIndex.js index cd15d45e..897ae5a2 100644 --- a/src/forge/Main/CoderRootIndex.js +++ b/src/forge/Main/CoderRootIndex.js @@ -4,6 +4,7 @@ import { Route , Switch } from 'react-router-dom'; import Loadable from 'react-loadable'; import Loading from '../../Loading'; import './Index.scss'; +import 'codemirror/lib/codemirror.css'; const FileNew = Loadable({ loader: () => import('../Newfile/Index'), diff --git a/src/forge/Main/Detail.js b/src/forge/Main/Detail.js index 73f468d9..a126ffb0 100644 --- a/src/forge/Main/Detail.js +++ b/src/forge/Main/Detail.js @@ -933,7 +933,7 @@ class Detail extends Component { () + (props) => ( __CLIENT__ && ) } > Date: Sat, 11 May 2024 10:25:13 +0800 Subject: [PATCH 22/25] =?UTF-8?q?=E4=BC=98=E5=8C=96=E4=BB=A3=E7=A0=81?= =?UTF-8?q?=E3=80=81=E6=81=A2=E5=A4=8D=E5=9B=BE=E7=89=87=E6=94=BE=E5=A4=A7?= =?UTF-8?q?=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 1 + server/index.js | 35 ++++++++++--------- server/render.js | 9 ++--- server/setHead.js | 1 + src/forge/Main/Detail.js | 10 +++--- src/modules/page/layers/ImageLayer.js | 3 ++ .../page/layers/ImageLayerOfCommentHOC.js | 4 ++- 7 files changed, 37 insertions(+), 26 deletions(-) diff --git a/package.json b/package.json index e2d3f53f..f0c3872d 100644 --- a/package.json +++ b/package.json @@ -159,6 +159,7 @@ "analyz": "NODE_ENV=production npm_config_report=true npm run build", "dev": "npm-run-all --parallel dev:**", "dev:server": "cross-env NODE_ENV=dev nodemon --exec babel-node \"./buildserver/bundle.js\" --watch config --watch server", + "test:build:server": "cross-env NODE_ENV=localtest webpack --config config/webpack.server.js", "dev:build:server": "cross-env NODE_ENV=dev webpack --config config/webpack.server.js", "pm2": "pm2 start pm2.json" }, diff --git a/server/index.js b/server/index.js index f0742578..95c57e10 100644 --- a/server/index.js +++ b/server/index.js @@ -29,25 +29,26 @@ const options = (target) => { }; } -const proxy = createProxyMiddleware(options(`http://localhost:${ rubyPort }`)); -// const proxy = createProxyMiddleware(options(url)); +let proxy = createProxyMiddleware(options(`http://localhost:${ rubyPort }`)); + +if (process.env.NODE_ENV === 'dev') { + // 本地调试用设置代理 + proxy = createProxyMiddleware(options(url)); + app.use(['/api/zone', '/api/cms'], (req, res) => { + const proxy = createProxyMiddleware(options(zoneUrl)); + proxy(req, res); + }); + app.use(['/api', '/images', '/system', '/favicon', '/robots.txt', '/sitemap*.xml', '/sitemap*.txt', '/favicon.ico', '/admins', '/assets', '/attachments', '/oauth'], (req, res) => { + proxy(req, res); + }); +} else { + // 设置代理 + app.use(['/api', '/admins', '/attachments', '/oauth', '/competitions', '/projects', '/auth'], (req, res) => { + proxy(req, res); + }); +} -// 本地调试用设置代理 -// app.use(['/api/zone', '/api/cms'], (req, res) => { -// const proxy = createProxyMiddleware(options(zoneUrl)); -// proxy(req, res); -// }); - -// 本地调试用设置代理 -// app.use(['/api', '/images', '/system', '/favicon', '/robots.txt', '/sitemap*.xml', '/sitemap*.txt', '/favicon.ico', '/admins', '/assets', '/attachments', '/oauth'], (req, res) => { -// proxy(req, res); -// }); - -// 设置代理 -app.use(['/api', '/admins', '/attachments', '/oauth', '/competitions', '/projects', '/auth'], (req, res) => { - proxy(req, res); -}); // 匹配路径,匹配到的返回处理后的html,没匹配到转发到后端 app.get('*',async function (req,res) { diff --git a/server/render.js b/server/render.js index cb363ee4..b19741ec 100644 --- a/server/render.js +++ b/server/render.js @@ -3,12 +3,9 @@ import {renderToString} from "react-dom/server"; import {StaticRouter, matchPath} from "react-router-dom"; import StyleContext from 'isomorphic-style-loader/StyleContext' import {renderRoutes} from "react-router-config"; - import Routes, { deepRoutes, specialRoute } from "../Routes"; import { Provider } from "react-redux"; import { serverStore } from "../src/redux/stores/configureStore"; -// import App from "../src/App"; -// import { Route } from 'react-router-dom'; import { setDefaultMeta } from '../src/common/UrlTool' import Logger from "./log"; import { changeHead } from './setHead' @@ -72,7 +69,7 @@ export const render = async (req,res)=>{ query: req.path, }); - // + // 当前只做了项目详情页,没获取到数据使用原来的 if(!store.getState().projectReducer.projectBase.id) { return false } @@ -80,6 +77,7 @@ export const render = async (req,res)=>{ let content = '' + // 匹配路由、并且不是特定一级路由、且不是只动态修改head的,在服务端渲染页面 if (_route && !specialRoute.includes(_match.url && _match.url.replace('/', '')) && !_route.onlyHead) { content = renderToString(( @@ -104,6 +102,8 @@ export const render = async (req,res)=>{ script.setAttribute('id', 'initState') } script.textContent = `window.__initState__ = ${ JSON.stringify(store.getState()) }` + + // 目前直接把详情页涉及到的css抽出来塞到返回的html里,没有使用insertCss const styleNode = domObj.window.document.createElement('style') styleNode.type = 'text/css' // styleNode.innerHTML = `${ [...css].join('') }` @@ -128,6 +128,7 @@ export const render = async (req,res)=>{ data=data.replace('
',`
${rootString}
`); return data; } + res.send(prepHTML(html, content)) store = null diff --git a/server/setHead.js b/server/setHead.js index cdaf072d..11d874da 100644 --- a/server/setHead.js +++ b/server/setHead.js @@ -6,6 +6,7 @@ export const changeHead = async ({ key }, params) => { let res let data switch (key) { + // 详情页不再修改head,直接ssr渲染页面 // case 'detail': // res = await getProjectDetailFunc(params.owner, params.projectsId); // data = res.data diff --git a/src/forge/Main/Detail.js b/src/forge/Main/Detail.js index a126ffb0..f99b603b 100644 --- a/src/forge/Main/Detail.js +++ b/src/forge/Main/Detail.js @@ -15,9 +15,8 @@ import types from '../../redux/actions/actionTypes' import { getProjectFunc, getProjectDetailFunc } from '../../services/project' import '../css/index.scss' import './list.scss'; -// import styles from './list.scss' -// import styles1 from '../css/index.scss' -// import withStyles from 'isomorphic-style-loader/withStyles'; +import '../../modules/courses/css/Courses.css' +import { ImageLayerOfCommentHOC } from "../../modules/page/layers/ImageLayerOfCommentHOC"; import Loadable from 'react-loadable'; @@ -986,4 +985,7 @@ Detail.preFetch = ({ store, match, query }) => { export default withRouter(connect( mapStateToProps, mapDispatchToProps -)(Detail)); \ No newline at end of file +)(ImageLayerOfCommentHOC({ + imgSelector: ".imageLayerParent img, .imageLayerParent .imageTarget", + parentSelector: ".newContainer", +})(Detail))); \ No newline at end of file diff --git a/src/modules/page/layers/ImageLayer.js b/src/modules/page/layers/ImageLayer.js index e58cabf3..c0f2f0c6 100644 --- a/src/modules/page/layers/ImageLayer.js +++ b/src/modules/page/layers/ImageLayer.js @@ -22,6 +22,9 @@ class ImageLayer extends Component { render() { let { showImage, imageSrc, } = this.props; + if (__SERVER__) { + return null + } return ReactDOM.createPortal(
{showImage ? diff --git a/src/modules/page/layers/ImageLayerOfCommentHOC.js b/src/modules/page/layers/ImageLayerOfCommentHOC.js index 3e51d8c1..25589751 100644 --- a/src/modules/page/layers/ImageLayerOfCommentHOC.js +++ b/src/modules/page/layers/ImageLayerOfCommentHOC.js @@ -47,7 +47,9 @@ export function ImageLayerOfCommentHOC(options = {}) { } componentWillUnmount() { - $(options.parentSelector || ".commentsDelegateParent", 'click', this.onDelegateClick) + if (__CLIENT__) { + $(options.parentSelector || ".commentsDelegateParent", 'click', this.onDelegateClick) + } } onImageLayerClose = () => { From e05832149066cd2f1a2bc48231d73381b70cf5e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E5=BF=83=E5=AE=87?= Date: Sat, 11 May 2024 10:47:59 +0800 Subject: [PATCH 23/25] cont. --- server/index.js | 3 ++- src/forge/Main/Detail.js | 7 +++++-- src/services/project.js | 9 +++++++++ 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/server/index.js b/server/index.js index 95c57e10..233a1285 100644 --- a/server/index.js +++ b/server/index.js @@ -29,7 +29,7 @@ const options = (target) => { }; } -let proxy = createProxyMiddleware(options(`http://localhost:${ rubyPort }`)); +let proxy if (process.env.NODE_ENV === 'dev') { // 本地调试用设置代理 @@ -42,6 +42,7 @@ if (process.env.NODE_ENV === 'dev') { proxy(req, res); }); } else { + proxy = createProxyMiddleware(options(`http://localhost:${ rubyPort }`)); // 设置代理 app.use(['/api', '/admins', '/attachments', '/oauth', '/competitions', '/projects', '/auth'], (req, res) => { proxy(req, res); diff --git a/src/forge/Main/Detail.js b/src/forge/Main/Detail.js index f99b603b..43617d78 100644 --- a/src/forge/Main/Detail.js +++ b/src/forge/Main/Detail.js @@ -982,10 +982,13 @@ Detail.preFetch = ({ store, match, query }) => { }); }; -export default withRouter(connect( +export default __CLIENT__ ? withRouter(connect( mapStateToProps, mapDispatchToProps )(ImageLayerOfCommentHOC({ imgSelector: ".imageLayerParent img, .imageLayerParent .imageTarget", parentSelector: ".newContainer", -})(Detail))); \ No newline at end of file +})(Detail))) : withRouter(connect( + mapStateToProps, + mapDispatchToProps +)(Detail)); \ No newline at end of file diff --git a/src/services/project.js b/src/services/project.js index 431ca4c8..caab6cbd 100644 --- a/src/services/project.js +++ b/src/services/project.js @@ -14,6 +14,15 @@ const axiosInstance = axios.create({ withCredentials: true }); +axiosInstance.interceptors.response.use( + response => { + return response; + }, + error => { + console.log(error); + } +) + // export async function getProjectFunc (owner, projectsId) { From a2a7810c8a5dbcbb05e7724c61ae0db0f1328cc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=BB=84=E5=BF=83=E5=AE=87?= Date: Sat, 11 May 2024 14:03:42 +0800 Subject: [PATCH 24/25] =?UTF-8?q?route=20=E7=B2=BE=E7=A1=AE=E5=8C=B9?= =?UTF-8?q?=E9=85=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/render.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/render.js b/server/render.js index b19741ec..c2f61752 100644 --- a/server/render.js +++ b/server/render.js @@ -24,7 +24,7 @@ export const render = async (req,res)=>{ function matchSubRoutes(routes, url) { for (const route of routes) { // 检查当前路由是否匹配 - let match = matchPath(url, route.path); + let match = matchPath(url, { path: route.path, exact: true }); if (match) { // 如果当前路由匹配,并且它有子路由,递归检查子路由 if (route.routes) { From 18746dedb12bc83f01de39eaaab6b14285d0de0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B0=A2=E6=80=9D?= <2897217417@qq.com> Date: Sat, 11 May 2024 14:10:10 +0800 Subject: [PATCH 25/25] =?UTF-8?q?commit=20id=E6=94=AF=E6=8C=81=E8=B7=B3?= =?UTF-8?q?=E8=BD=AC=E5=88=B0=E4=BB=A3=E7=A0=81=E5=BA=93=EF=BC=8Cwebhook?= =?UTF-8?q?=E5=9C=B0=E5=9D=80=E5=A4=8D=E5=88=B6=E9=94=99=E8=AF=AFbug=20fix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/forge/Server/reposyncer/component/recordList.jsx | 4 ++-- src/forge/Server/reposyncer/component/setting.jsx | 11 ++++++----- src/forge/Server/reposyncer/index.scss | 4 ---- 3 files changed, 8 insertions(+), 11 deletions(-) diff --git a/src/forge/Server/reposyncer/component/recordList.jsx b/src/forge/Server/reposyncer/component/recordList.jsx index 801ca93d..24c03b82 100644 --- a/src/forge/Server/reposyncer/component/recordList.jsx +++ b/src/forge/Server/reposyncer/component/recordList.jsx @@ -45,11 +45,11 @@ function RecordList(props){ // 同步状态errorBox let columns = [ - { title: '序号', dataIndex: 'index', className:"recordColumns", render: (text, item, index) => {(current-1)*pageSize+index + 1} }, + { title: '序号', dataIndex: 'index', className:"recordColumns", align: 'center', render: (text, item, index) => {(current-1)*pageSize+index + 1} }, { title: '代码变更方', dataIndex: 'change_from', className:"recordColumns"}, { title: '同步时间', dataIndex: 'sync_time', className:"recordColumns"}, { title: '同步状态', dataIndex: 'sync_status', className:"recordColumns", render: (text)=>sync_status(text)}, - { title: 'commit id', dataIndex: 'commit_id', className:"primaryColor recordColumns"}, + { title: 'commit id', dataIndex: 'commit_id', className:"recordColumns", render: (text) =>{ return {text}}}, { title: '同步日志', dataIndex: 'action', align: 'center', className:"primaryColor recordColumns"}, ] diff --git a/src/forge/Server/reposyncer/component/setting.jsx b/src/forge/Server/reposyncer/component/setting.jsx index 1ab7c952..ece673cd 100644 --- a/src/forge/Server/reposyncer/component/setting.jsx +++ b/src/forge/Server/reposyncer/component/setting.jsx @@ -12,8 +12,9 @@ function RecordList(props){ const {sync_repositories_unique=[]} = storeDetail || {}; const [token, setToken] = useState({}); - function inviteClick() { - const copyEle = document.querySelector('#webhook'); // 获取要复制的节点 + function inviteClick(idName) { + console.log('idName', idName); + const copyEle = document.querySelector(idName); // 获取要复制的节点 if (!copyEle) { console.error("您的CopyTool未设置正确的inputId"); return; @@ -35,7 +36,7 @@ function RecordList(props){ 同步分支列表 同步配置 - {sync_repositories_unique.map(item => { + {sync_repositories_unique.map((item, index) => { const {type, external_repo_address, sync_repository_ids} = item return
同步仓库平台
@@ -44,11 +45,11 @@ function RecordList(props){
Webhook接受请求地址
复制链接} + addonAfter={{inviteClick(`#webhook${index}`)}}>复制链接} />
同步仓库授权
{ diff --git a/src/forge/Server/reposyncer/index.scss b/src/forge/Server/reposyncer/index.scss index a026467c..576c7d26 100644 --- a/src/forge/Server/reposyncer/index.scss +++ b/src/forge/Server/reposyncer/index.scss @@ -318,13 +318,9 @@ } .storeSetting{ .infoBox{ - width: 70%; padding: 3px 15px; background-color: rgba(70,106,255,0.03); } - .webhookCopyBox{ - width: 70%; - } .branchTable{ width: 30%; }