index.html 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540
  1. <!DOCTYPE html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  4. <title>moe</title>
  5. <script type="text/javascript" src="/js/jquery.min.js"></script>
  6. <link rel="stylesheet" href="/css/bootstrap.min.css">
  7. <script type="text/javascript" src="/js/bootstrap.min.js"></script>
  8. <link rel="preconnect" href="https://fonts.googleapis.com">
  9. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  10. <link href="/css/css2.css" rel="stylesheet">
  11. <link rel="stylesheet" href="/css/style.css">
  12. <script>
  13. var status = 0, oid, user, pwd, paused = [], isadmin
  14. const rot = '43.143.233.184:81', root = 'https://43.143.233.184:81/'
  15. function getDate(date) {
  16. return new Date(date).toLocaleDateString()
  17. }
  18. function getCookie(name) {
  19. let arr = document.cookie.match(new RegExp("(^| )" + name + "=([^;]*)(;|$)"));
  20. if (arr != null) return arr[2];
  21. return null;
  22. }
  23. function delCookie(name, path = 'u') {
  24. var exp = new Date();
  25. exp.setTime(exp.getTime() - 1);
  26. var cval = getCookie(name);
  27. if (cval != null)
  28. document.cookie = name + "=" + cval + ";expires=" + exp.toGMTString() + ((path == 'u') ? '' : ';path=' + path)
  29. }
  30. function getUrl(e) {
  31. return e.replace('dd.sdsz.com.cn', rot).replace(/^http:/, 'https:').replace(rot.split(':')[0] + '/', rot + '/').replace('service=http%3A%2F%2F' + root, 'service=http%3A%2F%2Fdd.sdsz.com.cn')
  32. }
  33. function setStatus(e, fast) {
  34. console.log('STATUS', e)
  35. status = e
  36. $('body').removeClass('grey')
  37. if (e == 1) {
  38. paused = []
  39. $('#loginSt').text('登录成功')
  40. $('.login').hide(200)
  41. $('#loginSt').addClass('label-success')
  42. $('#loginSt').removeClass('label-danger')
  43. $('.reqLogin').show(300)
  44. } else if (e == 2) {
  45. $('#loginSt').text('登录失败')
  46. $('#loginSt').removeClass('label-success')
  47. $('#loginSt').addClass('label-danger')
  48. } else if (e == 3) {
  49. delCookie('moe', '/')
  50. document.cookie = 'moe=guest;path=/';
  51. $('#loginSt').text('游客')
  52. $('.login').hide(200)
  53. $('.reqLogin').show(300)
  54. } else {
  55. isadmin = 0
  56. $('.login').show(200)
  57. $('#loginSt').text('未登录')
  58. $('#loginSt').removeClass('label-success')
  59. $('#loginSt').removeClass('label-danger')
  60. $('.reqLogin').hide(300 * !fast)
  61. $('#user').text('-')
  62. $('body').addClass('grey')
  63. }
  64. }
  65. function delCookies(force = 0) {
  66. if (force) {
  67. delCookie('CASTGC', '/')
  68. delCookie('moe', '/')
  69. delCookie('gosh', '/score/')
  70. if (force <= 2) {
  71. delCookie('gosh', '/sso/')
  72. delCookie('gowd', '/sso/')
  73. }
  74. }
  75. if (force >= 2) {
  76. delCookie('JSESSIONID', '/bxn-portal/')
  77. delCookie('JSESSIONID', '/bxn-library/')
  78. delCookie('JSESSIONID', '/bxn-core-uic/')
  79. }
  80. delCookie('JSESSIONID', '/')
  81. delCookie('SSOID', '/')
  82. delCookie('JSESSIONID', '/sso/')
  83. }
  84. function gget(url, call) {
  85. fetch(url, {
  86. "method": "GET",
  87. "credentials": 'include'
  88. }).then(e => e.text()).then(call)
  89. }
  90. function gpost(url, bd, call) {
  91. fetch(url, {
  92. headers: { 'Content-type': 'application/json' },
  93. method: "POST",
  94. credentials: 'include',
  95. body: bd
  96. }).then(e => e.text()).then(call)
  97. }
  98. function getStatus(ds, dt) {
  99. let s = new Date(ds), t = new Date(dt), e = new Date();
  100. if (e < s) return '未开始'
  101. if (e < t) return '进行中'
  102. else return '已结束'
  103. }
  104. function contestTouch() {
  105. gpost('contest/touch', JSON.stringify({
  106. no: $('#tNo').val(),
  107. title: $('#tTitle').val(),
  108. description: $('#tDescription').val(),
  109. dates: new Date($('#tStart')[0].valueAsNumber).toUTCString(),
  110. datet: new Date($('#tEnd')[0].valueAsNumber).toUTCString()
  111. }), e => {
  112. e = JSON.parse(e)
  113. if (e.no) alert('您无权进行此操作')
  114. else {
  115. $('.tNew').toggle(300)
  116. debug('TOUCH', 'contest, affected ' + e.affectedRows + ' rows.')
  117. postLogin();
  118. }
  119. })
  120. }
  121. function contestRm(id, name) {
  122. if (prompt('确认删除?输入“' + name + '”以确认。') != name) return
  123. gpost('contest/rm', `{"id":"${id}"}`, e => {
  124. e = JSON.parse(e)
  125. if (e.no) alert('您无权进行此操作')
  126. else {
  127. debug('RM', 'contest, affected ' + e.affectedRows + ' rows.')
  128. postLogin();
  129. }
  130. })
  131. }
  132. function contestantTouch(id) {
  133. gpost('contestant/touch', JSON.stringify({
  134. name: $(`#c${id}Name`).val(),
  135. description: $(`#c${id}Description`).val(),
  136. img: $(`#c${id}Img`).val(),
  137. contest: id.toString()
  138. }), e => {
  139. e = JSON.parse(e)
  140. if (e.no) alert('您无权进行此操作')
  141. else {
  142. $(`.c${id}New`).toggle(300)
  143. debug('TOUCH', 'contestant, affected ' + e.affectedRows + ' rows.')
  144. getContest(id, 1);
  145. }
  146. })
  147. }
  148. function contestantRm(id, name, tId) {
  149. if (prompt('确认删除?输入“' + name + '”以确认。') != name) return
  150. gpost('contestant/rm', `{"id":"${id}"}`, e => {
  151. e = JSON.parse(e)
  152. if (e.no) alert('您无权进行此操作')
  153. else {
  154. debug('RM', 'contestant, affected ' + e.affectedRows + ' rows.')
  155. getContest(tId, 1);
  156. }
  157. })
  158. }
  159. function getContest(id, force = 0, call = () => { }) {
  160. debug('GET', 'Contest' + id)
  161. if ($('#content-' + id).text() && !force) return call()
  162. $('#content-' + id).empty()
  163. gpost('contestant', `{"contest":"${id}"}`, e => {
  164. e = JSON.parse(e)
  165. if (!e.length) $('#content-' + id).text('...')
  166. else $('#content-' + id).html('<b style="font-size:16px">选手列表</b>:<br>')
  167. for (let i = 0; i < e.length; i++) {
  168. $('#content-' + id).append(`\
  169. <span id="contestant-${e[i].id}" class="contestant">\
  170. <span>${e[i].name}</span>${isadmin ? ` <a href="javascript:contestantRm(${e[i].id},'${e[i].name}',${id})">删除</a>` : ''} \
  171. <img class="img-responsive center-block" src="${e[i].img.split('.png')[0] + '_thumb.png'}">\
  172. <div style="white-space:pre-wrap">${e[i].description}</div>\
  173. </span>`)
  174. }
  175. if (isadmin) $('#content-' + id).append(`
  176. <div>
  177. <button class="btn btn-default admin" onclick="$('.c${id}New').toggle(300)">添加选手 <span class="glyphicon glyphicon-plus"></span></button>
  178. <div class="row c${id}New" style="display:none">
  179. <div class="col-md-6">名称
  180. <input id="c${id}Name" class="form-control" placeholder="伅" autocomplete="off">
  181. </div>
  182. <div class="col-md-6">图片链接
  183. <input class="form-control" id="c${id}Img" placeholder="https://**/*.png" autocomplete="off">
  184. </div>
  185. <div class="col-sm-12" style="margin-top: 10px;">
  186. <textarea id="c${id}Description" class="form-control" placeholder="介绍(请勿使用英文引号和分号)" style="resize: vertical"></textarea>
  187. <button class="btn btn-default" onclick="contestantTouch(${id})" style="margin-top: 10px;">提交 <span class="glyphicon glyphicon-send tSend"></span></button>
  188. </div>
  189. </div>
  190. </div>`)
  191. call()
  192. })
  193. }
  194. function postLogin() {
  195. debug('LOGIN DONE.', 'initiate fetching.')
  196. if (status != 1 && status != 3) return;
  197. if (getCookie('moe') && getCookie('moe')[0] == '!') isadmin = 1
  198. if (status == 1) {
  199. if (!user) user = getCookie('gosh'), pwd = getCookie('gowd')
  200. document.cookie = "gosh=" + user + ";path=/score/;expires=Fri, 05 Feb 2077 12:34:56 GMT";
  201. document.cookie = "gosh=" + user + ";path=/sso/;expires=Fri, 05 Feb 2077 12:34:56 GMT";
  202. document.cookie = "gowd=" + pwd + ";path=/sso/;expires=Fri, 05 Feb 2077 12:34:56 GMT";
  203. if (isadmin) $('#user').text('admin')
  204. else get('bxn-portal/portal/api/proxy?username=true&userId=true&needvalidate=true&t=http%3A%2F%2F202.94.10.118%2Fbxn-library%2Fapi%2Flibrary%2FgetLatestBorrowBook%3Fcategory%3D1&resourceId=103519&cache=nocache&systime=0', e => {
  205. e = JSON.parse(e)
  206. $('#user').text(e.requestParams[0].ownerName)
  207. oid = e.requestParams[0].ownerId
  208. })
  209. }
  210. gget('contest', e => {
  211. e = JSON.parse(e)
  212. $('#contest').empty()
  213. for (let i = 0; i < e.length; i++) {
  214. $('#contest').prepend(`\
  215. <li id="contest-${e[i].id}">\
  216. <span onclick="getContest(${e[i].id},0,()=>{$(this).toggleClass('active').siblings('div').toggle(300)})" class="title">第 ${e[i].no} 届${e[i].title}\
  217. <span class="pull-right" style="color:#999"><span class="admin"><a href="javascript:contestRm(${e[i].id},'第${e[i].no}届${e[i].title}')">删除</a> ${e[i].id} - </span>${getStatus(e[i].dates, e[i].datet)}</span>\
  218. </span>
  219. <div style="display:none;white-space:pre-wrap"><span class="pull-right" style="color:#999">${getDate(e[i].dates)} - ${getDate(e[i].datet)}</span>${e[i].description}</div><div id="content-${e[i].id}" style="display:none"></div>\
  220. </li>`)
  221. }
  222. if (status == 1 && isadmin) $('.admin').show()
  223. else $('.admin').hide()
  224. })
  225. }
  226. function debug(e, str = '') {
  227. $('.debugList').append(`<li class="auto-warp"><b>${e}</b> ${str} <span class="pull-right" style="color:#999">${status}</span></li>`)
  228. }
  229. function login() {
  230. debug('LOGIN.')
  231. if (status == 1) return;
  232. delCookies()
  233. user = $('#loginId').val(), pwd = $('#loginPwd').val()
  234. return fetch(root + "sso/login", {
  235. headers: {
  236. "content-type": "application/x-www-form-urlencoded; charset=UTF-8",
  237. // "user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36"
  238. },
  239. method: "GET",
  240. mode: "cors",
  241. credentials: 'include'
  242. }).then(() => {
  243. return fetch('https://43.143.233.184/moelogin', {
  244. method: 'POST',
  245. headers: { 'Content-type': 'application/json' },
  246. body: JSON.stringify({
  247. user: user,
  248. pwd: pwd,
  249. cook: getCookie('JSESSIONID')
  250. }),
  251. credentials: 'include',
  252. })
  253. }).then(e => e.text()).then(e => { setStatus((e != 'success') + 1), Promise.resolve() })
  254. }
  255. function matches(e) {
  256. return e.match(/(^\[\]$|param":"|<tr>|DOCTYPE|in\?username=|requestParams|\"newmessage\"|Sorry, Page Not Found|北师大实验中学--登录)/s)
  257. }
  258. // 异步递归嘿嘿嘿,再多 302 也不怕;再加上回调函数,真是妙
  259. async function next(e, call, ac, login) {
  260. if (e.length < 3000 && !matches(e) && (!e.match('\/login\\?') || login)) {
  261. return fetch(getUrl(e), {
  262. method: 'GET',
  263. credentials: 'include',
  264. headers: {
  265. Accept: ac
  266. }
  267. }).then(e => e.text()).then(res => { next(res, call, ac, login) })
  268. }
  269. else return call(e), new Promise((resolve, reject) => { })
  270. }
  271. function pre(e, url, call) {
  272. if (e.match('北师大实验中学--登录')) {
  273. debug('OUTDATED CAS! NEED RELOGIN')
  274. delCookie('CASTGC', '/')
  275. tryLogin()
  276. }
  277. if (e.length < 3000 && e.match('\/login\\?')) {
  278. var name = url.split('/')[0], f = paused.filter(e => e.name == name)
  279. debug('FAILED', url)
  280. if (url.match('\/login\\?')) return
  281. if (f.length) f[0].arr.push(url), f[0].carr.push(call)
  282. else {
  283. paused.push({ name: name, arr: [url], carr: [call] })
  284. debug('GET COOKIE...')
  285. get(name + '/casfailed.jsp', () => {
  286. let f = paused.filter(e => e.name == name)[0]
  287. for (let i = 0; i < f.arr.length; i++)get(f.arr[i], f.carr[i])
  288. paused.splice(paused.indexOf(f), 1)
  289. }, '*/*', 1)
  290. }
  291. } else {
  292. $('#bxn' + url.split('bxn')[1].split(/(\/|%2F)/)[0]).addClass('bg-success').addClass('text-success')
  293. if (status == 1) call(e)
  294. }
  295. }
  296. function get(url, call = () => { }, ac = '*/*', login = 0) {
  297. if (isadmin) return
  298. console.log("GET", url)
  299. debug('GET', url)
  300. if (status != 1) return
  301. next(root + url, e => { pre(e, url, call); }, ac, login)
  302. }
  303. let trying = 0
  304. function tryLogin() {
  305. if (trying) return debug('LOGIN', 'already in progress.')
  306. isadmin = 0
  307. if (getCookie('moe') && getCookie('moe')[0] == '!') {
  308. debug('LOGIN', 'admin!')
  309. setStatus(1), postLogin()
  310. } else if (getCookie('CASTGC')) {
  311. debug('LOGIN', 'using CAS.')
  312. setStatus(1), postLogin()
  313. } else if (getCookie('gosh') && getCookie('gosh') != 'null' && getCookie('gowd') != 'null') {
  314. debug('LOGIN', 'using stored cookie.')
  315. setStatus(0)
  316. trying = 1
  317. $('#loginId').val(getCookie('gosh'))
  318. $('#loginPwd').val(getCookie('gowd'))
  319. login().then(() => { status == 2 ? setStatus(0, 1) : (trying = 0, postLogin()); })
  320. } else debug('LOGIN', 'no available method.'), setStatus(0, 1)
  321. }
  322. $().ready(() => {
  323. $('.e').addClass('reqLogin')
  324. $('.e').removeClass('e')
  325. tryLogin()
  326. $("[data-toggle='tooltip']").tooltip();
  327. $('.banner').text('庆祝 moe 建站 ' + Math.ceil((new Date().getTime() - 1676000714191) / 86400000) + ' 天')
  328. })
  329. </script>
  330. <style>
  331. .pass {
  332. font-weight: bold;
  333. font-family: 'Courier New', Courier, monospace;
  334. }
  335. li {
  336. border-bottom: 3px solid #eee;
  337. word-wrap: break-word;
  338. }
  339. li>.title {
  340. transition-duration: 300ms;
  341. display: inline-block;
  342. width: 100%;
  343. cursor: pointer;
  344. font-size: 18px
  345. }
  346. li>.active.title {
  347. font-size: 22px;
  348. font-weight: bold;
  349. }
  350. li>.active~div {
  351. background-image: linear-gradient(to right, #fffaf0, #f4f2ef);
  352. border-left: 3px solid #ccc;
  353. padding-left: 5px;
  354. }
  355. li:hover {
  356. background-color: #eee;
  357. }
  358. .box {
  359. transition-duration: 300ms;
  360. min-height: 210px;
  361. }
  362. .box::before {
  363. content: '';
  364. display: block;
  365. width: 100%;
  366. height: 3px;
  367. margin-top: 10px;
  368. border-bottom: 1px solid;
  369. border-image: linear-gradient(to right, transparent, #6aaad8, #75ddb6, transparent) 1;
  370. }
  371. .box:hover::before {
  372. border-bottom: 3px solid;
  373. border-image: linear-gradient(to right, transparent, #6aaad8, #75ddb6, transparent) 1;
  374. }
  375. body:not(.grey) .box:hover {
  376. background-image: linear-gradient(#faffef, transparent);
  377. }
  378. .page-header.nohr {
  379. margin-bottom: 0;
  380. border-bottom: none;
  381. }
  382. span.full {
  383. width: 100%;
  384. display: inline-block;
  385. cursor: pointer;
  386. }
  387. .breadcrumb {
  388. padding: 0;
  389. margin-bottom: 5px;
  390. }
  391. .auto-warp {
  392. word-wrap: break-word;
  393. word-break: break-all;
  394. overflow: hidden;
  395. transition-duration: 500ms;
  396. max-height: 22.4px;
  397. }
  398. .auto-warp:hover {
  399. max-height: 100px;
  400. }
  401. .contestant {
  402. display: inline-block;
  403. width: 30%;
  404. vertical-align: top;
  405. border-bottom: 3px solid #ddd;
  406. margin-bottom: 5px;
  407. text-align: center;
  408. transition-duration: 100ms;
  409. }
  410. .contestant:hover {
  411. background-color: #ddd;
  412. border-bottom-left-radius: 15px;
  413. }
  414. .grey {
  415. background-color: #e3e3e3;
  416. }
  417. body {
  418. transition-duration: 300ms;
  419. }
  420. </style>
  421. </head>
  422. <body class="grey">
  423. <div class="page-header nohr">
  424. <h2>
  425. <!-- <img src="RC.png" width="32px" style="position:relative;top:-4px"> -->
  426. 实萌
  427. </h2>
  428. <span id="loginSt" class="label label-default">未登录</span>
  429. <span id="user" class="label label-default">-</span>
  430. <button class="btn btn-danger btn-xs e" onclick="postLogin()" title="刷新数据">
  431. <span class="glyphicon glyphicon-refresh"></span>
  432. </button>
  433. <button class="btn btn-danger btn-xs e" onclick="delCookies(1);setStatus(0)" onmouseenter="$('#double-off').css('scale','100%')" onmouseleave="$('#double-off').css('scale','0')" title="退出登录">
  434. <span class="glyphicon glyphicon-log-out"></span>
  435. </button>
  436. <button id="double-off" class="btn btn-danger btn-xs e" onclick="delCookies(2);location.reload()" onmouseenter="$('#double-off').css('scale','100%')" onmouseleave="$('#double-off').css('scale','0')" style="scale:0;transition-duration: 1000ms;" data-toggle="tooltip" data-placement="right" title="全部重置">
  437. <span class="glyphicon glyphicon-off"></span>
  438. </button>
  439. <button class="btn btn-danger btn-xs login" onclick="delCookies(2);location.reload()" data-toggle="tooltip" data-placement="right" title="全部重置">
  440. <span class="glyphicon glyphicon-off"></span>
  441. </button>
  442. </div>
  443. <div class="col-sm-12 e box box-contest">
  444. <div class="page-header">
  445. <h3><span class="glyphicon glyphicon-fire"></span> 比赛列表
  446. </h3>
  447. </div>
  448. <ul id="contest" class="list-unstyled"></ul>
  449. <button class="btn btn-default admin" onclick="$('.tNew').toggle(300)">新建比赛 <span class="glyphicon glyphicon-plus"></span></button>
  450. <div class="tNew" style="display:none">
  451. <div class="col-md-4">
  452. 标题
  453. <div class="input-group">
  454. <div class="input-group-addon">第</div>
  455. <input id="tNo" class="form-control" placeholder="0" autocomplete="off">
  456. <div class="input-group-addon">届</div>
  457. <input id="tTitle" class="form-control" placeholder="测试赛" autocomplete="off">
  458. </div>
  459. </div>
  460. <div class="col-md-4">
  461. 开始时间
  462. <input class="form-control" type="date" id="tStart" min="2022-01-01" value="2023-02-10">
  463. </div>
  464. <div class="col-md-4">
  465. 结束时间
  466. <input class="form-control" type="date" id="tEnd" min="2022-01-01" value="2023-02-10">
  467. </div>
  468. <div class="col-sm-12" style="margin-top: 10px;">
  469. <textarea id="tDescription" class="form-control" placeholder="介绍(请勿使用英文引号和分号)" style="resize: vertical"></textarea>
  470. <button class="btn btn-default" onclick="contestTouch()" style="margin-top: 10px;">提交 <span class="glyphicon glyphicon-send tSend"></span></button>
  471. </div>
  472. </div>
  473. </div>
  474. <div class="col-md-4 col-sm-6 box">
  475. <div class="page-header">
  476. <h3><span class="glyphicon glyphicon-user"></span> 账号
  477. <ul class="btn-group breadcrumb debug" style="display: none;font-size:10px;top:5px">
  478. <li id="bxn-portal" onclick="get('bxn-portal/portal/osforstudent/index')">bxn-portal</li>
  479. <li id="bxn-core-uic" onclick="get('bxn-core-uic/uic/index')">bxn-core-uic</li>
  480. <li id="bxn-library" onclick="get('bxn-library/library/jumpExamreport?jumpUrl=')">bxn-library</li>
  481. <li id="bxn-office" onclick="get('bxn-office/mail/index')">bxn-office</li>
  482. </ul>
  483. </h3>
  484. </div>
  485. <button class="btn btn-default e" onclick="$('.debug').toggle(200)">debug</button>
  486. <div class="login">
  487. (登录数字校园)
  488. <br>
  489. <div class="input-group">
  490. <span class="input-group-addon">账号</span>
  491. <input id="loginId" type="id" class="pass form-control" placeholder="20222222">
  492. </div>
  493. <br>
  494. <div class="input-group">
  495. <span class="input-group-addon">密码</span>
  496. <input id="loginPwd" type="password" class="pass form-control" placeholder="password">
  497. <span class="input-group-btn">
  498. <button class="btn btn-default" type="button" onclick="login().then(postLogin)">
  499. <span class="glyphicon glyphicon-log-in"></span> 登录
  500. </button>
  501. </span>
  502. </div>
  503. <br>
  504. <button class="btn btn-default" onclick="setStatus(3);postLogin()"><span class="glyphicon glyphicon-user"></span> 游客</button><small>(可能不计入投票结果)</small>
  505. </div>
  506. <div class="debug" style="display: none;">
  507. <button class="btn btn-default btn-xs" onclick="$('.debugList').empty()"><span class="glyphicon glyphicon-trash"></span> 清除</button>
  508. <ul class="debugList list-unstyled" style="font-family: 'Courier New', Courier, monospace;"></ul>
  509. </div>
  510. </div>
  511. <div style="position:fixed;bottom:10px;left:10px;color:#ccc">
  512. 北师大实验中学
  513. </div>
  514. <div style="position:fixed;bottom:10px;right:10px;color:#ccc" class="banner"></div>
  515. </body>