This commit is contained in:
theluyuan 2021-10-19 22:38:41 +08:00
commit 7a8ae0731c
270 changed files with 46330 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
node_modules
.DS_Store
dist
dist-ssr
*.local

3
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"recommendations": ["johnsoncodehk.volar"]
}

11
README.md Normal file
View File

@ -0,0 +1,11 @@
# Vue 3 + Typescript + Vite
This template should help get you started developing with Vue 3 and Typescript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more.
## Recommended IDE Setup
- [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=johnsoncodehk.volar)
## Type Support For `.vue` Imports in TS
Since TypeScript cannot handle type information for `.vue` imports, they are shimmed to be a generic Vue component type by default. In most cases this is fine if you don't really care about component prop types outside of templates. However, if you wish to get actual prop types in `.vue` imports (for example to get props validation when using manual `h(...)` calls), you can enable Volar's `.vue` type support plugin by running `Volar: Switch TS Plugin on/off` from VSCode command palette.

13
index.html Normal file
View File

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>

23
package.json Normal file
View File

@ -0,0 +1,23 @@
{
"name": "gaokaobaoming",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build",
"serve": "vite preview"
},
"dependencies": {
"ant-design-vue": "^2.2.8",
"normalize.css": "^8.0.1",
"sass": "^1.43.2",
"vite-plugin-components": "^0.13.3",
"vue": "^3.2.16",
"vue-router": "4"
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.9.3",
"typescript": "^4.4.3",
"vite": "^2.6.4",
"vue-tsc": "^0.3.0"
}
}

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

12
src/App.vue Normal file
View File

@ -0,0 +1,12 @@
<script setup lang="ts">
// This starter template is using Vue 3 <script setup> SFCs
// Check out https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup
</script>
<template>
<router-view></router-view>
</template>
<style>
</style>

8
src/env.d.ts vendored Normal file
View File

@ -0,0 +1,8 @@
/// <reference types="vite/client" />
declare module '*.vue' {
import { DefineComponent } from 'vue'
// eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
const component: DefineComponent<{}, {}, any>
export default component
}

52
src/layout/index.vue Normal file
View File

@ -0,0 +1,52 @@
<template>
<div>
<div class="top">
<a-menu mode="horizontal" @click="navto">
<a-menu-item key="/index">
<template #icon>
<mail-outlined />
</template>
高考咨询
</a-menu-item>
<a-menu-item key="/major">
<template #icon>
<FileSearchOutlined />
</template>
查专业
</a-menu-item>
<a-menu-item key="/university">
<template #icon>
<AuditOutlined />>
</template>
找大学
</a-menu-item>
<a-menu-item key="/fillout">
<template #icon>
<EditOutlined />
</template>
志愿填报
</a-menu-item>
</a-menu>
</div>
<router-view></router-view>
</div>
</template>
<style lang="scss" scoped>
.top {
position: sticky;
z-index: 999;
top: 0;
}
</style>
<script setup lang="ts">
import { MailOutlined, FileSearchOutlined, AuditOutlined, EditOutlined } from '@ant-design/icons-vue';
import { ref } from 'vue';
import { useRouter } from 'vue-router';
const router = useRouter()
function navto({ key }: { key: string }) {
console.log(key)
router.push({ path: key })
}
</script>

19
src/main.ts Normal file
View File

@ -0,0 +1,19 @@
import App from './App.vue'
import "normalize.css"
import { createApp } from 'vue'
import { createRouter,createWebHashHistory, RouteRecordRaw } from "vue-router"
const routes:RouteRecordRaw[] = [{
path:"/",
component:() => import('./layout/index.vue'),
children:[{
path: "index",
component: () => import("./pages/index.vue")
}]
}]
const router = createRouter({
// 4. 内部提供了 history 模式的实现。为了简单起见,我们在这里使用 hash 模式。
history: createWebHashHistory(),
routes, // `routes: routes` 的缩写
})
createApp(App).use(router).mount('#app')

68
src/pages/index.vue Normal file
View File

@ -0,0 +1,68 @@
<template>
<div>
<a-list
item-layout="vertical"
size="large"
:pagination="pagination"
:data-source="listData"
>
<template #renderItem="{ item }">
<a-list-item key="item.title">
<template #actions>
<span v-for="{ type, text } in actions" :key="type">
<component :is="type" style="margin-right: 8px" />
{{ text }}
</span>
</template>
<template #extra>
<img
width="272"
alt="logo"
src="https://gw.alipayobjects.com/zos/rmsportal/mqaQswcyDLcXyDKnZfES.png"
/>
</template>
<a-list-item-meta :description="item.description">
<template #title>
<a :href="item.href">{{ item.title }}</a>
</template>
<template #avatar>
<a-avatar :src="item.avatar" />
</template>
</a-list-item-meta>
{{ item.content }}
</a-list-item>
</template>
</a-list>
</div>
</template>
<style lang="scss" scoped>
</style>
<script setup lang="ts">
import { StarOutlined, LikeOutlined, MessageOutlined } from '@ant-design/icons-vue';
const listData: Record<string, string>[] = [];
for (let i = 0; i < 23; i++) {
listData.push({
href: 'https://www.antdv.com/',
title: `ant design vue part ${i}`,
avatar: 'https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png',
description:
'Ant Design, a design language for background applications, is refined by Ant UED Team.',
content:
'We supply a series of design principles, practical patterns and high quality design resources (Sketch and Axure), to help people create their product prototypes beautifully and efficiently.',
});
}
const pagination = {
onChange: (page: number) => {
console.log(page);
},
pageSize: 10,
};
const actions: Record<string, string>[] = [
{ type: 'StarOutlined', text: '156' },
{ type: 'LikeOutlined', text: '156' },
{ type: 'MessageOutlined', text: '2' },
];
</script>

13
src/pages/major.vue Normal file
View File

@ -0,0 +1,13 @@
<template>
<div>
</div>
</template>
<script setup lang="ts">
</script>
<style lang="scss" scoped>
</style>

15
tsconfig.json Normal file
View File

@ -0,0 +1,15 @@
{
"compilerOptions": {
"target": "esnext",
"useDefineForClassFields": true,
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"lib": ["esnext", "dom"]
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"]
}

12
vite.config.ts Normal file
View File

@ -0,0 +1,12 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import ViteComponents, { AntDesignVueResolver } from 'vite-plugin-components';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue(),ViteComponents({
customComponentResolvers: [AntDesignVueResolver()],
}),]
})

1307
yarn.lock Normal file

File diff suppressed because it is too large Load Diff

BIN
系统原型.rar Normal file

Binary file not shown.

View File

@ -0,0 +1,7 @@
$axure.loadDocument(
(function() {
var _ = function() { var r={},a=arguments; for(var i=0; i<a.length; i+=2) r[a[i]]=a[i+1]; return r; }
var _creator = function() { return _(b,_(c,d,e,f,g,d,h,d,i,d,j,k,l,d,m,f,n,f,o,d,p,f),q,_(r,[_(s,t,u,v,w,x,y,z),_(s,A,u,B,w,C,y,A,D,[_(s,E,u,F,w,x,y,G),_(s,H,u,I,w,x,y,J),_(s,K,u,L,w,x,y,M)]),_(s,N,u,O,w,x,y,P),_(s,A,u,Q,w,C,y,A,D,[_(s,A,u,R,w,C,y,A,D,[_(s,S,u,T,w,x,y,U),_(s,V,u,W,w,x,y,X),_(s,Y,u,Z,w,x,y,ba),_(s,bb,u,bc,w,x,y,bd),_(s,be,u,bf,w,x,y,bg)]),_(s,A,u,bh,w,C,y,A,D,[_(s,bi,u,Z,w,x,y,bj),_(s,bk,u,bc,w,x,y,bl),_(s,bm,u,T,w,x,y,bn),_(s,bo,u,bf,w,x,y,bp)]),_(s,bq,u,Q,w,x,y,br)]),_(s,A,u,bs,w,C,y,A,D,[_(s,bt,u,bu,w,x,y,bv),_(s,bw,u,bx,w,x,y,by),_(s,bz,u,bA,w,x,y,bB),_(s,bC,u,bs,w,x,y,bD)]),_(s,A,u,bE,w,C,y,A,D,[_(s,bF,u,bG,w,x,y,bH),_(s,bI,u,bJ,w,x,y,bK),_(s,bL,u,bM,w,x,y,bN)])]),bO,[bP,bQ,bR],bS,[bT,bU,bV],bW,_(bX,A),bY,_(bZ,_(s,ca,cb,cc,cd,ce,cf,cg,ch,ci,cj,_(ck,cl,cm,cn,co,cp),cq,cr,cs,f,ct,cu,cv,cg,cw,cg,cx,cy,cz,f,cA,_(cB,cC,cD,cC),cE,_(cF,cC,cG,cC),cH,d,cI,f,cJ,ca,cK,_(ck,cl,cm,cL),cM,_(ck,cl,cm,cN),cO,cP,cQ,cl,co,cP,cR,cS,cT,cU,cV,cW,cX,cW,cY,cW,cZ,cW,da,_(),db,null,dc,null,dd,cS,de,_(df,f,dg,dh,di,dh,dj,dh,dk,cC,cm,_(dl,dm,dn,dm,dp,dm,dq,dr)),ds,_(df,f,dg,cC,di,dh,dj,dh,dk,cC,cm,_(dl,dm,dn,dm,dp,dm,dq,dr)),dt,_(df,f,dg,cp,di,cp,dj,dh,dk,cC,cm,_(dl,dm,dn,dm,dp,dm,dq,du)),dv,dw),dx,_(dy,_(s,dz),db,_(s,dA,cO,cS),dB,_(s,dC,cK,_(ck,cl,cm,dD)),dE,_(s,dF,cR,ci),dG,_(s,dH,cq,dI,cd,dJ,cO,cS,cK,_(ck,cl,cm,dK),ct,dL,cT,dM,cV,cS,cX,cS,cY,cS,cZ,cS),dN,_(s,dO,cq,dP,cd,dJ,cO,cS,cK,_(ck,cl,cm,dK),ct,dL,cT,dM,cV,cS,cX,cS,cY,cS,cZ,cS),dQ,_(s,dR,cq,dS,cd,dJ,cO,cS,cK,_(ck,cl,cm,dK),ct,dL,cT,dM,cV,cS,cX,cS,cY,cS,cZ,cS),dT,_(s,dU,cq,dV,cd,dJ,cO,cS,cK,_(ck,cl,cm,dK),ct,dL,cT,dM,cV,cS,cX,cS,cY,cS,cZ,cS),dW,_(s,dX,cd,dJ,cO,cS,cK,_(ck,cl,cm,dK),ct,dL,cT,dM,cV,cS,cX,cS,cY,cS,cZ,cS),dY,_(s,dZ,cq,ea,cd,dJ,cO,cS,cK,_(ck,cl,cm,dK),ct,dL,cT,dM,cV,cS,cX,cS,cY,cS,cZ,cS),eb,_(s,ec,cO,cS,cK,_(ck,cl,cm,dK),ct,dL,cT,dM,cV,cS,cX,cS,cY,cS,cZ,cS),ed,_(s,ee,cK,_(ck,cl,cm,dK)),ef,_(s,eg,ct,dL,cT,dM),eh,_(s,ei),ej,_(s,ek,cK,_(ck,cl,cm,dK)),el,_(s,em,cj,_(ck,cl,cm,en,co,cp)),eo,_(s,ep,cK,_(ck,cl,cm,eq)),er,_(s,es,cK,_(ck,et,eu,_(cB,ev,cD,cC),ew,_(cB,ev,cD,cp),ex,[_(cm,cL,ey,cC),_(cm,dD,ey,cC),_(cm,ez,ey,cp),_(cm,cL,ey,cp)])),eA,_(s,eB,cO,cS,cK,_(ck,cl,cm,cn)),eC,_(s,eD,cj,_(ck,cl,cm,eE,co,cp),ct,dL,cT,cU)),eF,_(eG,ep,eH,em,eI,eB)));};
var b="configuration",c="showPageNotes",d=true,e="showPageNoteNames",f=false,g="showAnnotations",h="showAnnotationsSidebar",i="showConsole",j="linkStyle",k="displayMultipleTargetsOnly",l="linkFlowsToPages",m="linkFlowsToPagesNewWindow",n="useLabels",o="useViews",p="loadFeedbackPlugin",q="sitemap",r="rootNodes",s="id",t="pylho2",u="pageName",v="首页",w="type",x="Wireframe",y="url",z="首页.html",A="",B="登录和注册",C="Folder",D="children",E="nl2kre",F="登录页面",G="登录页面.html",H="vlrp2p",I="注册页面",J="注册页面.html",K="x1b2jz",L="完善个人信息",M="完善个人信息.html",N="djkyhl",O="高考资讯",P="高考资讯.html",Q="查专业",R="本科普通教育",S="06dtiq",T="专业名称",U="专业名称.html",V="kle3z1",W="哲学简介",X="哲学简介.html",Y="a2f5px",Z="专业类",ba="专业类.html",bb="ylny5k",bc="专业大类",bd="专业大类.html",be="qf3c1o",bf="专业代码",bg="专业代码.html",bh="本科职业教育",bi="fshgve",bj="专业类_1.html",bk="zxsr5z",bl="专业大类_1.html",bm="2zng5i",bn="专业名称_1.html",bo="m8uoc5",bp="专业代码_1.html",bq="pzyh75",br="查专业.html",bs="找大学",bt="si6wt4",bu="北京大学介绍",bv="北京大学介绍.html",bw="q0flq4",bx="新版找大学",by="新版找大学.html",bz="m7l8cs",bA="大学列表",bB="大学列表.html",bC="595w2m",bD="找大学.html",bE="志愿填报",bF="osumxg",bG="填报志愿",bH="填报志愿.html",bI="5fvkwn",bJ="志愿列表",bK="志愿列表.html",bL="8doux6",bM="志愿购物车",bN="志愿购物车.html",bO="additionalJs",bP="plugins/sitemap/sitemap.js",bQ="plugins/page_notes/page_notes.js",bR="plugins/debug/debug.js",bS="additionalCss",bT="plugins/sitemap/styles/sitemap.css",bU="plugins/page_notes/styles/page_notes.css",bV="plugins/debug/styles/debug.css",bW="globalVariables",bX="onloadvariable",bY="stylesheet",bZ="defaultStyle",ca="627587b6038d43cca051c114ac41ad32",cb="fontName",cc="'Arial Normal', 'Arial', sans-serif",cd="fontWeight",ce="400",cf="fontStyle",cg="normal",ch="fontStretch",ci="5",cj="foreGroundFill",ck="fillType",cl="solid",cm="color",cn=0xFF333333,co="opacity",cp=1,cq="fontSize",cr="13px",cs="underline",ct="horizontalAlignment",cu="center",cv="lineSpacing",cw="characterSpacing",cx="letterCase",cy="none",cz="strikethrough",cA="location",cB="x",cC=0,cD="y",cE="size",cF="width",cG="height",cH="visible",cI="limbo",cJ="baseStyle",cK="fill",cL=0xFFFFFFFF,cM="borderFill",cN=0xFF797979,cO="borderWidth",cP="1",cQ="linePattern",cR="cornerRadius",cS="0",cT="verticalAlignment",cU="middle",cV="paddingLeft",cW="2",cX="paddingTop",cY="paddingRight",cZ="paddingBottom",da="stateStyles",db="image",dc="imageFilter",dd="rotation",de="outerShadow",df="on",dg="offsetX",dh=5,di="offsetY",dj="blurRadius",dk="spread",dl="r",dm=0,dn="g",dp="b",dq="a",dr=0.349019607843137,ds="innerShadow",dt="textShadow",du=0.647058823529412,dv="viewOverride",dw="19e82109f102476f933582835c373474",dx="customStyles",dy="box_1",dz="4b7bfc596114427989e10bb0b557d0ce",dA="75a91ee5b9d042cfa01b8d565fe289c0",dB="placeholder",dC="c50e74f669b24b37bd9c18da7326bccd",dD=0xFFF2F2F2,dE="button",dF="c9f35713a1cf4e91a0f2dbac65e6fb5c",dG="heading_1",dH="1111111151944dfba49f67fd55eb1f88",dI="32px",dJ="bold",dK=0xFFFFFF,dL="left",dM="top",dN="heading_2",dO="b3a15c9ddde04520be40f94c8168891e",dP="24px",dQ="heading_3",dR="8c7a4c5ad69a4369a5f7788171ac0b32",dS="18px",dT="heading_4",dU="e995c891077945c89c0b5fe110d15a0b",dV="14px",dW="heading_5",dX="386b19ef4be143bd9b6c392ded969f89",dY="heading_6",dZ="fc3b9a13b5574fa098ef0a1db9aac861",ea="10px",eb="paragraph",ec="4988d43d80b44008a4a415096f1632af",ed="line",ee="619b2148ccc1497285562264d51992f9",ef="checkbox",eg="bccdabddb5454e438d4613702b55674b",eh="table_cell",ei="33ea2511485c479dbf973af3302f2352",ej="menu_item",ek="2036b2baccbc41f0b9263a6981a11a42",el="form_hint",em="4889d666e8ad4c5e81e59863039a5cc0",en=0xFF999999,eo="form_disabled",ep="9bd0236217a94d89b0314c8c7fc75f16",eq=0xFFF0F0F0,er="flow_shape",es="df01900e3c4e43f284bafec04b0864c4",et="linearGradient",eu="startPoint",ev=0.5,ew="endPoint",ex="stops",ey="offset",ez=0xFFE4E4E4,eA="icon",eB="26c731cb771b44a88eb8b6e97e78c80e",eC="text_field",eD="928f50531fee406ab0f733d2c93a7e63",eE=0xFF000000,eF="duplicateStyles",eG="627011ba78eb456a891aa8fe31ec3fee",eH="59da4e360fe14792857b31bbb3a99213",eI="5a30893901354bfe85953fed02e280f5";
return _creator();
})());

View File

@ -0,0 +1,87 @@
.ax_default {
font-family:'Arial Normal', 'Arial', sans-serif;
font-weight:400;
font-style:normal;
font-size:13px;
letter-spacing:normal;
color:#333333;
vertical-align:none;
text-align:center;
line-height:normal;
text-transform:none;
}
.box_1 {
}
.image {
}
.placeholder {
}
.button {
}
.heading_1 {
font-family:'Arial Normal', 'Arial', sans-serif;
font-weight:bold;
font-style:normal;
font-size:32px;
text-align:left;
}
.heading_2 {
font-family:'Arial Normal', 'Arial', sans-serif;
font-weight:bold;
font-style:normal;
font-size:24px;
text-align:left;
}
.heading_3 {
font-family:'Arial Normal', 'Arial', sans-serif;
font-weight:bold;
font-style:normal;
font-size:18px;
text-align:left;
}
.heading_4 {
font-family:'Arial Normal', 'Arial', sans-serif;
font-weight:bold;
font-style:normal;
font-size:14px;
text-align:left;
}
.heading_5 {
font-family:'Arial Normal', 'Arial', sans-serif;
font-weight:bold;
font-style:normal;
text-align:left;
}
.heading_6 {
font-family:'Arial Normal', 'Arial', sans-serif;
font-weight:bold;
font-style:normal;
font-size:10px;
text-align:left;
}
.paragraph {
text-align:left;
}
.line {
}
.checkbox {
text-align:left;
}
.table_cell {
}
.menu_item {
}
.form_hint {
color:#999999;
}
.form_disabled {
}
.flow_shape {
}
.icon {
}
.text_field {
color:#000000;
text-align:left;
}
textarea, select, input, button { outline: none; }

View File

@ -0,0 +1,7 @@
$axure.loadCurrentPage(
(function() {
var _ = function() { var r={},a=arguments; for(var i=0; i<a.length; i+=2) r[a[i]]=a[i+1]; return r; }
var _creator = function() { return _(b,c,d,e,f,_(g,h,i,_(j,k,l,k)),m,[],n,_(h,o),p,[q],r,_(s,t,u,v,g,w,x,_(),y,[],z,_(A,B,C,D,E,_(F,G,H,I),J,null,K,L,L,M,N,O,null,P,Q,R,S,T,U,V,Q,W,X,_(F,G,H,Y),Z,Q,ba,bb,_(bc,bd,be,bf,bg,bf,bh,bf,bi,k,H,_(bj,bk,bl,bk,bm,bk,bn,bo)),i,_(j,k,l,k)),bp,_(),bq,_(),br,_(bs,[_(bt,bu,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bC,bD,i,_(j,bE,l,bF),A,bG,bH,bI,X,_(F,G,H,I)),bp,_(),bJ,_(),bK,bd),_(bt,bL,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bC,bD,i,_(j,bE,l,bF),A,bG,bM,_(bN,k,bO,bF),X,_(F,G,H,I),bH,bI),bp,_(),bJ,_(),bK,bd),_(bt,bP,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bC,bD,i,_(j,bE,l,bF),A,bG,bM,_(bN,k,bO,bQ),X,_(F,G,H,I),bH,bI),bp,_(),bJ,_(),bK,bd),_(bt,bR,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bC,bD,i,_(j,bE,l,bF),A,bG,bM,_(bN,k,bO,bS),X,_(F,G,H,I),bH,bI),bp,_(),bJ,_(),bK,bd)])),bT,_(),bU,_(bV,_(bW,bX),bY,_(bW,bZ),ca,_(bW,cb),cc,_(bW,cd)));};
var b="url",c="专业代码.html",d="generationDate",e=new Date(1633591959038.4),f="defaultAdaptiveView",g="name",h="",i="size",j="width",k=0,l="height",m="adaptiveViews",n="sketchKeys",o="s0",p="variables",q="OnLoadVariable",r="page",s="packageId",t="bad3c776794a4fe2bcf64c1679aecfc1",u="type",v="Axure:Page",w="专业代码",x="notes",y="annotations",z="style",A="baseStyle",B="627587b6038d43cca051c114ac41ad32",C="pageAlignment",D="center",E="fill",F="fillType",G="solid",H="color",I=0xFFFFFFFF,J="image",K="imageAlignment",L="near",M="imageRepeat",N="auto",O="favicon",P="sketchFactor",Q="0",R="colorStyle",S="appliedColor",T="fontName",U="Applied Font",V="borderWidth",W="borderVisibility",X="borderFill",Y=0xFF797979,Z="cornerRadius",ba="cornerVisibility",bb="outerShadow",bc="on",bd=false,be="offsetX",bf=5,bg="offsetY",bh="blurRadius",bi="spread",bj="r",bk=0,bl="g",bm="b",bn="a",bo=0.349019607843137,bp="adaptiveStyles",bq="interactionMap",br="diagram",bs="objects",bt="id",bu="14ec2e21b8dd439c907036e1c7c93dfe",bv="label",bw="friendlyType",bx="Rectangle",by="vectorShape",bz="styleType",bA="visible",bB=true,bC="fontWeight",bD="700",bE=176,bF=29,bG="4b7bfc596114427989e10bb0b557d0ce",bH="fontSize",bI="16px",bJ="imageOverrides",bK="generateCompound",bL="29af4264b6f1466b836d93ebb975fa65",bM="location",bN="x",bO="y",bP="b8981f1b3bc745cb9ac545dad99f5f6b",bQ=58,bR="887a4e57c9a941a1a55cf2788dc27ba0",bS=87,bT="masters",bU="objectPaths",bV="14ec2e21b8dd439c907036e1c7c93dfe",bW="scriptId",bX="u74",bY="29af4264b6f1466b836d93ebb975fa65",bZ="u75",ca="b8981f1b3bc745cb9ac545dad99f5f6b",cb="u76",cc="887a4e57c9a941a1a55cf2788dc27ba0",cd="u77";
return _creator();
})());

View File

@ -0,0 +1,206 @@
body {
margin:0px;
background-image:none;
position:relative;
left:0px;
width:176px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
.form_sketch {
border-color:transparent;
background-color:transparent;
}
#base {
position:absolute;
z-index:0;
}
#u74_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:176px;
height:29px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u74 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:176px;
height:29px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u74 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u74_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u75_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:176px;
height:29px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u75 {
border-width:0px;
position:absolute;
left:0px;
top:29px;
width:176px;
height:29px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u75 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u75_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u76_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:176px;
height:29px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u76 {
border-width:0px;
position:absolute;
left:0px;
top:58px;
width:176px;
height:29px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u76 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u76_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u77_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:176px;
height:29px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u77 {
border-width:0px;
position:absolute;
left:0px;
top:87px;
width:176px;
height:29px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u77 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u77_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}

View File

@ -0,0 +1,7 @@
$axure.loadCurrentPage(
(function() {
var _ = function() { var r={},a=arguments; for(var i=0; i<a.length; i+=2) r[a[i]]=a[i+1]; return r; }
var _creator = function() { return _(b,c,d,e,f,_(g,h,i,_(j,k,l,k)),m,[],n,_(h,o),p,[q],r,_(s,t,u,v,g,w,x,_(),y,[],z,_(A,B,C,D,E,_(F,G,H,I),J,null,K,L,L,M,N,O,null,P,Q,R,S,T,U,V,Q,W,X,_(F,G,H,Y),Z,Q,ba,bb,_(bc,bd,be,bf,bg,bf,bh,bf,bi,k,H,_(bj,bk,bl,bk,bm,bk,bn,bo)),i,_(j,k,l,k)),bp,_(),bq,_(),br,_(bs,[_(bt,bu,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bC,bD,i,_(j,bE,l,bF),A,bG,X,_(F,G,H,I),bH,bI),bp,_(),bJ,_(),bK,bd),_(bt,bL,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bC,bD,i,_(j,bE,l,bF),A,bG,bM,_(bN,k,bO,bF),X,_(F,G,H,I),bH,bI),bp,_(),bJ,_(),bK,bd),_(bt,bP,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bC,bD,i,_(j,bE,l,bF),A,bG,bM,_(bN,k,bO,bQ),X,_(F,G,H,I),bH,bI),bp,_(),bJ,_(),bK,bd),_(bt,bR,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bC,bD,i,_(j,bE,l,bF),A,bG,bM,_(bN,k,bO,bS),X,_(F,G,H,I),bH,bI),bp,_(),bJ,_(),bK,bd)])),bT,_(),bU,_(bV,_(bW,bX),bY,_(bW,bZ),ca,_(bW,cb),cc,_(bW,cd)));};
var b="url",c="专业代码_1.html",d="generationDate",e=new Date(1633591959074.4),f="defaultAdaptiveView",g="name",h="",i="size",j="width",k=0,l="height",m="adaptiveViews",n="sketchKeys",o="s0",p="variables",q="OnLoadVariable",r="page",s="packageId",t="c7d8e25c640a4c85b5d6c35c9515d931",u="type",v="Axure:Page",w="专业代码",x="notes",y="annotations",z="style",A="baseStyle",B="627587b6038d43cca051c114ac41ad32",C="pageAlignment",D="center",E="fill",F="fillType",G="solid",H="color",I=0xFFFFFFFF,J="image",K="imageAlignment",L="near",M="imageRepeat",N="auto",O="favicon",P="sketchFactor",Q="0",R="colorStyle",S="appliedColor",T="fontName",U="Applied Font",V="borderWidth",W="borderVisibility",X="borderFill",Y=0xFF797979,Z="cornerRadius",ba="cornerVisibility",bb="outerShadow",bc="on",bd=false,be="offsetX",bf=5,bg="offsetY",bh="blurRadius",bi="spread",bj="r",bk=0,bl="g",bm="b",bn="a",bo=0.349019607843137,bp="adaptiveStyles",bq="interactionMap",br="diagram",bs="objects",bt="id",bu="14ec2e21b8dd439c907036e1c7c93dfe",bv="label",bw="friendlyType",bx="Rectangle",by="vectorShape",bz="styleType",bA="visible",bB=true,bC="fontWeight",bD="700",bE=176,bF=29,bG="4b7bfc596114427989e10bb0b557d0ce",bH="fontSize",bI="16px",bJ="imageOverrides",bK="generateCompound",bL="29af4264b6f1466b836d93ebb975fa65",bM="location",bN="x",bO="y",bP="b8981f1b3bc745cb9ac545dad99f5f6b",bQ=58,bR="887a4e57c9a941a1a55cf2788dc27ba0",bS=87,bT="masters",bU="objectPaths",bV="14ec2e21b8dd439c907036e1c7c93dfe",bW="scriptId",bX="u91",bY="29af4264b6f1466b836d93ebb975fa65",bZ="u92",ca="b8981f1b3bc745cb9ac545dad99f5f6b",cb="u93",cc="887a4e57c9a941a1a55cf2788dc27ba0",cd="u94";
return _creator();
})());

View File

@ -0,0 +1,206 @@
body {
margin:0px;
background-image:none;
position:relative;
left:0px;
width:176px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
.form_sketch {
border-color:transparent;
background-color:transparent;
}
#base {
position:absolute;
z-index:0;
}
#u91_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:176px;
height:29px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u91 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:176px;
height:29px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u91 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u91_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u92_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:176px;
height:29px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u92 {
border-width:0px;
position:absolute;
left:0px;
top:29px;
width:176px;
height:29px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u92 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u92_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u93_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:176px;
height:29px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u93 {
border-width:0px;
position:absolute;
left:0px;
top:58px;
width:176px;
height:29px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u93 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u93_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u94_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:176px;
height:29px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u94 {
border-width:0px;
position:absolute;
left:0px;
top:87px;
width:176px;
height:29px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u94 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u94_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}

View File

@ -0,0 +1,7 @@
$axure.loadCurrentPage(
(function() {
var _ = function() { var r={},a=arguments; for(var i=0; i<a.length; i+=2) r[a[i]]=a[i+1]; return r; }
var _creator = function() { return _(b,c,d,e,f,_(g,h,i,_(j,k,l,k)),m,[],n,_(h,o),p,[q],r,_(s,t,u,v,g,w,x,_(),y,[],z,_(A,B,C,D,E,_(F,G,H,I),J,null,K,L,L,M,N,O,null,P,Q,R,S,T,U,V,Q,W,X,_(F,G,H,Y),Z,Q,ba,bb,_(bc,bd,be,bf,bg,bf,bh,bf,bi,k,H,_(bj,bk,bl,bk,bm,bk,bn,bo)),i,_(j,k,l,k)),bp,_(),bq,_(),br,_(bs,[_(bt,bu,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bC,bD,bE,_(F,G,H,bF,bG,bH),i,_(j,bI,l,bJ),A,bK,X,_(F,G,H,I),bL,_(bM,_(E,_(F,G,H,bN))),bO,bP),bp,_(),bQ,_(),bq,_(bR,_(bS,bT,bU,bV,bW,[_(bU,h,bX,h,bY,bd,bZ,ca,cb,[_(cc,cd,bU,ce,cf,cg,ch,_(ci,_(h,ce)),cj,ck,cl,_(cm,r,b,cn,co,bB))])])),cp,bB,cq,bd),_(bt,cr,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bC,bD,bE,_(F,G,H,bF,bG,bH),i,_(j,bI,l,bJ),A,bK,cs,_(ct,k,cu,bJ),X,_(F,G,H,I),bL,_(bM,_(E,_(F,G,H,bN))),bO,bP),bp,_(),bQ,_(),cq,bd),_(bt,cv,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bC,bD,bE,_(F,G,H,bF,bG,bH),i,_(j,bI,l,bJ),A,bK,cs,_(ct,k,cu,cw),X,_(F,G,H,I),bO,bP),bp,_(),bQ,_(),cq,bd),_(bt,cx,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bC,bD,bE,_(F,G,H,bF,bG,bH),i,_(j,bI,l,bJ),A,bK,cs,_(ct,k,cu,cy),X,_(F,G,H,I),bO,bP),bp,_(),bQ,_(),cq,bd)])),cz,_(),cA,_(cB,_(cC,cD),cE,_(cC,cF),cG,_(cC,cH),cI,_(cC,cJ)));};
var b="url",c="专业名称.html",d="generationDate",e=new Date(1633591959005.4),f="defaultAdaptiveView",g="name",h="",i="size",j="width",k=0,l="height",m="adaptiveViews",n="sketchKeys",o="s0",p="variables",q="OnLoadVariable",r="page",s="packageId",t="d1144326c3c74e4bb2fca26fe64ba00a",u="type",v="Axure:Page",w="专业名称",x="notes",y="annotations",z="style",A="baseStyle",B="627587b6038d43cca051c114ac41ad32",C="pageAlignment",D="center",E="fill",F="fillType",G="solid",H="color",I=0xFFFFFFFF,J="image",K="imageAlignment",L="near",M="imageRepeat",N="auto",O="favicon",P="sketchFactor",Q="0",R="colorStyle",S="appliedColor",T="fontName",U="Applied Font",V="borderWidth",W="borderVisibility",X="borderFill",Y=0xFF797979,Z="cornerRadius",ba="cornerVisibility",bb="outerShadow",bc="on",bd=false,be="offsetX",bf=5,bg="offsetY",bh="blurRadius",bi="spread",bj="r",bk=0,bl="g",bm="b",bn="a",bo=0.349019607843137,bp="adaptiveStyles",bq="interactionMap",br="diagram",bs="objects",bt="id",bu="97bb53abd52e4ec8b0907ecbc5a55a1b",bv="label",bw="friendlyType",bx="Rectangle",by="vectorShape",bz="styleType",bA="visible",bB=true,bC="fontWeight",bD="700",bE="foreGroundFill",bF=0xFF555555,bG="opacity",bH=1,bI=387,bJ=29,bK="4b7bfc596114427989e10bb0b557d0ce",bL="stateStyles",bM="mouseOver",bN=0xFF80FFFF,bO="fontSize",bP="16px",bQ="imageOverrides",bR="onClick",bS="eventType",bT="OnClick",bU="description",bV="Click or Tap",bW="cases",bX="conditionString",bY="isNewIfGroup",bZ="caseColorHex",ca="AB68FF",cb="actions",cc="action",cd="linkFrame",ce="Open 哲学简介 in Parent Frame",cf="displayName",cg="Open Link in Frame",ch="actionInfoDescriptions",ci="哲学简介 in Parent Frame",cj="linkType",ck="parentFrame",cl="target",cm="targetType",cn="哲学简介.html",co="includeVariables",cp="tabbable",cq="generateCompound",cr="f1246ba47e40406fa589697f930fd9ae",cs="location",ct="x",cu="y",cv="e4a49909a1b042d68db6bd45aeefae00",cw=58,cx="f6c0c023550441cfaa9d604e2f5e41af",cy=87,cz="masters",cA="objectPaths",cB="97bb53abd52e4ec8b0907ecbc5a55a1b",cC="scriptId",cD="u63",cE="f1246ba47e40406fa589697f930fd9ae",cF="u64",cG="e4a49909a1b042d68db6bd45aeefae00",cH="u65",cI="f6c0c023550441cfaa9d604e2f5e41af",cJ="u66";
return _creator();
})());

View File

@ -0,0 +1,264 @@
body {
margin:0px;
background-image:none;
position:relative;
left:0px;
width:387px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
.form_sketch {
border-color:transparent;
background-color:transparent;
}
#base {
position:absolute;
z-index:0;
}
#u63_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:29px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u63 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:29px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u63 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u63_div.mouseOver {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:29px;
background:inherit;
background-color:rgba(128, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u63.mouseOver {
}
#u63_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u64_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:29px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u64 {
border-width:0px;
position:absolute;
left:0px;
top:29px;
width:387px;
height:29px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u64 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u64_div.mouseOver {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:29px;
background:inherit;
background-color:rgba(128, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u64.mouseOver {
}
#u64_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u65_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:29px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u65 {
border-width:0px;
position:absolute;
left:0px;
top:58px;
width:387px;
height:29px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u65 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u65_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u66_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:29px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u66 {
border-width:0px;
position:absolute;
left:0px;
top:87px;
width:387px;
height:29px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u66 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u66_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}

View File

@ -0,0 +1,7 @@
$axure.loadCurrentPage(
(function() {
var _ = function() { var r={},a=arguments; for(var i=0; i<a.length; i+=2) r[a[i]]=a[i+1]; return r; }
var _creator = function() { return _(b,c,d,e,f,_(g,h,i,_(j,k,l,k)),m,[],n,_(h,o),p,[q],r,_(s,t,u,v,g,w,x,_(),y,[],z,_(A,B,C,D,E,_(F,G,H,I),J,null,K,L,L,M,N,O,null,P,Q,R,S,T,U,V,Q,W,X,_(F,G,H,Y),Z,Q,ba,bb,_(bc,bd,be,bf,bg,bf,bh,bf,bi,k,H,_(bj,bk,bl,bk,bm,bk,bn,bo)),i,_(j,k,l,k)),bp,_(),bq,_(),br,_(bs,[_(bt,bu,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bC,bD,i,_(j,bE,l,bF),A,bG,bH,bI,X,_(F,G,H,I)),bp,_(),bJ,_(),bK,bd),_(bt,bL,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bC,bD,i,_(j,bE,l,bF),A,bG,bM,_(bN,k,bO,bF),X,_(F,G,H,I),bH,bI),bp,_(),bJ,_(),bK,bd),_(bt,bP,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bC,bD,i,_(j,bE,l,bF),A,bG,bM,_(bN,k,bO,bQ),X,_(F,G,H,I),bH,bI),bp,_(),bJ,_(),bK,bd),_(bt,bR,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bC,bD,i,_(j,bE,l,bF),A,bG,bM,_(bN,k,bO,bS),X,_(F,G,H,I),bH,bI),bp,_(),bJ,_(),bK,bd)])),bT,_(),bU,_(bV,_(bW,bX),bY,_(bW,bZ),ca,_(bW,cb),cc,_(bW,cd)));};
var b="url",c="专业名称_1.html",d="generationDate",e=new Date(1633591959066.4),f="defaultAdaptiveView",g="name",h="",i="size",j="width",k=0,l="height",m="adaptiveViews",n="sketchKeys",o="s0",p="variables",q="OnLoadVariable",r="page",s="packageId",t="97586085a34b4727866cf3004ad4b3ac",u="type",v="Axure:Page",w="专业名称",x="notes",y="annotations",z="style",A="baseStyle",B="627587b6038d43cca051c114ac41ad32",C="pageAlignment",D="center",E="fill",F="fillType",G="solid",H="color",I=0xFFFFFFFF,J="image",K="imageAlignment",L="near",M="imageRepeat",N="auto",O="favicon",P="sketchFactor",Q="0",R="colorStyle",S="appliedColor",T="fontName",U="Applied Font",V="borderWidth",W="borderVisibility",X="borderFill",Y=0xFF797979,Z="cornerRadius",ba="cornerVisibility",bb="outerShadow",bc="on",bd=false,be="offsetX",bf=5,bg="offsetY",bh="blurRadius",bi="spread",bj="r",bk=0,bl="g",bm="b",bn="a",bo=0.349019607843137,bp="adaptiveStyles",bq="interactionMap",br="diagram",bs="objects",bt="id",bu="97bb53abd52e4ec8b0907ecbc5a55a1b",bv="label",bw="friendlyType",bx="Rectangle",by="vectorShape",bz="styleType",bA="visible",bB=true,bC="fontWeight",bD="700",bE=387,bF=29,bG="4b7bfc596114427989e10bb0b557d0ce",bH="fontSize",bI="16px",bJ="imageOverrides",bK="generateCompound",bL="f1246ba47e40406fa589697f930fd9ae",bM="location",bN="x",bO="y",bP="e4a49909a1b042d68db6bd45aeefae00",bQ=58,bR="f6c0c023550441cfaa9d604e2f5e41af",bS=87,bT="masters",bU="objectPaths",bV="97bb53abd52e4ec8b0907ecbc5a55a1b",bW="scriptId",bX="u87",bY="f1246ba47e40406fa589697f930fd9ae",bZ="u88",ca="e4a49909a1b042d68db6bd45aeefae00",cb="u89",cc="f6c0c023550441cfaa9d604e2f5e41af",cd="u90";
return _creator();
})());

View File

@ -0,0 +1,206 @@
body {
margin:0px;
background-image:none;
position:relative;
left:0px;
width:387px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
.form_sketch {
border-color:transparent;
background-color:transparent;
}
#base {
position:absolute;
z-index:0;
}
#u87_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:29px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u87 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:29px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u87 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u87_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u88_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:29px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u88 {
border-width:0px;
position:absolute;
left:0px;
top:29px;
width:387px;
height:29px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u88 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u88_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u89_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:29px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u89 {
border-width:0px;
position:absolute;
left:0px;
top:58px;
width:387px;
height:29px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u89 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u89_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u90_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:29px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u90 {
border-width:0px;
position:absolute;
left:0px;
top:87px;
width:387px;
height:29px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u90 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u90_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}

View File

@ -0,0 +1,7 @@
$axure.loadCurrentPage(
(function() {
var _ = function() { var r={},a=arguments; for(var i=0; i<a.length; i+=2) r[a[i]]=a[i+1]; return r; }
var _creator = function() { return _(b,c,d,e,f,_(g,h,i,_(j,k,l,k)),m,[],n,_(h,o),p,[q],r,_(s,t,u,v,g,w,x,_(),y,[],z,_(A,B,C,D,E,_(F,G,H,I),J,null,K,L,L,M,N,O,null,P,Q,R,S,T,U,V,Q,W,X,_(F,G,H,Y),Z,Q,ba,bb,_(bc,bd,be,bf,bg,bf,bh,bf,bi,k,H,_(bj,bk,bl,bk,bm,bk,bn,bo)),i,_(j,k,l,k)),bp,_(),bq,_(),br,_(bs,[_(bt,bu,bv,bw,bx,by,u,bz,bA,bz,bB,bC,z,_(bD,bE,bF,_(F,G,H,bG,bH,bI),i,_(j,bJ,l,bK),A,bL,bM,_(bN,k,bO,bP),X,_(F,G,H,I),bQ,_(bR,_(E,_(F,G,H,bS)),bT,_(E,_(F,G,H,bU))),bV,bW),bp,_(),bX,_(),bq,_(bY,_(bZ,ca,cb,cc,cd,[_(cb,h,ce,h,cf,bd,cg,ch,ci,[_(cj,ck,cb,cl,cm,cn,co,_(cp,_(h,cq)),cr,_(cs,ct,cu,[_(cs,cv,cw,cx,cy,[_(cs,cz,cA,bd,cB,bd,cC,bd,cD,[bu]),_(cs,cE,cD,cF,cG,[])])])),_(cj,ck,cb,cH,cm,cn,co,_(cI,_(h,cJ)),cr,_(cs,ct,cu,[_(cs,cv,cw,cx,cy,[_(cs,cz,cA,bd,cB,bd,cC,bd,cD,[cK]),_(cs,cE,cD,cL,cG,[])])]))])])),cM,bC,cN,bd),_(bt,cK,bv,cO,bx,by,u,bz,bA,bz,bB,bC,z,_(bD,bE,bF,_(F,G,H,bG,bH,bI),i,_(j,bJ,l,bK),A,bL,bM,_(bN,k,bO,cP),X,_(F,G,H,I),bQ,_(bR,_(E,_(F,G,H,bS)),bT,_(E,_(F,G,H,bU))),bV,bW),bp,_(),bX,_(),bq,_(bY,_(bZ,ca,cb,cc,cd,[_(cb,h,ce,h,cf,bd,cg,ch,ci,[_(cj,ck,cb,cQ,cm,cn,co,_(cR,_(h,cS)),cr,_(cs,ct,cu,[_(cs,cv,cw,cx,cy,[_(cs,cz,cA,bd,cB,bd,cC,bd,cD,[cK]),_(cs,cE,cD,cF,cG,[])])])),_(cj,ck,cb,cT,cm,cn,co,_(cU,_(h,cV)),cr,_(cs,ct,cu,[_(cs,cv,cw,cx,cy,[_(cs,cz,cA,bd,cB,bd,cC,bd,cD,[bu]),_(cs,cE,cD,cL,cG,[])])]))])])),cM,bC,cN,bd),_(bt,cW,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(bD,bE,i,_(j,bJ,l,bK),A,bL,bM,_(bN,k,bO,cX),X,_(F,G,H,I),bV,bW),bp,_(),bX,_(),cN,bd),_(bt,cY,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(bD,bE,i,_(j,cZ,l,bK),A,bL,bM,_(bN,k,bO,da),X,_(F,G,H,I),bV,bW),bp,_(),bX,_(),cN,bd),_(bt,db,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(bD,bE,i,_(j,cZ,l,bK),A,bL,bM,_(bN,bI,bO,dc),X,_(F,G,H,I),bV,bW),bp,_(),bX,_(),cN,bd)])),dd,_(),de,_(df,_(dg,dh),di,_(dg,dj),dk,_(dg,dl),dm,_(dg,dn),dp,_(dg,dq)));};
var b="url",c="专业大类.html",d="generationDate",e=new Date(1633591959029.4),f="defaultAdaptiveView",g="name",h="",i="size",j="width",k=0,l="height",m="adaptiveViews",n="sketchKeys",o="s0",p="variables",q="OnLoadVariable",r="page",s="packageId",t="e081fa4c5f764f5ba8a993434e538fb3",u="type",v="Axure:Page",w="专业大类",x="notes",y="annotations",z="style",A="baseStyle",B="627587b6038d43cca051c114ac41ad32",C="pageAlignment",D="center",E="fill",F="fillType",G="solid",H="color",I=0xFFFFFFFF,J="image",K="imageAlignment",L="near",M="imageRepeat",N="auto",O="favicon",P="sketchFactor",Q="0",R="colorStyle",S="appliedColor",T="fontName",U="Applied Font",V="borderWidth",W="borderVisibility",X="borderFill",Y=0xFF797979,Z="cornerRadius",ba="cornerVisibility",bb="outerShadow",bc="on",bd=false,be="offsetX",bf=5,bg="offsetY",bh="blurRadius",bi="spread",bj="r",bk=0,bl="g",bm="b",bn="a",bo=0.349019607843137,bp="adaptiveStyles",bq="interactionMap",br="diagram",bs="objects",bt="id",bu="4452510ab1174297a4842bc17fc987a1",bv="label",bw="哲学",bx="friendlyType",by="Rectangle",bz="vectorShape",bA="styleType",bB="visible",bC=true,bD="fontWeight",bE="700",bF="foreGroundFill",bG=0xFF000000,bH="opacity",bI=1,bJ=224,bK=28,bL="4b7bfc596114427989e10bb0b557d0ce",bM="location",bN="x",bO="y",bP=-1,bQ="stateStyles",bR="mouseOver",bS=0xFF80FFFF,bT="selected",bU=0xFF3478F7,bV="fontSize",bW="16px",bX="imageOverrides",bY="onClick",bZ="eventType",ca="OnClick",cb="description",cc="Click or Tap",cd="cases",ce="conditionString",cf="isNewIfGroup",cg="caseColorHex",ch="AB68FF",ci="actions",cj="action",ck="setFunction",cl="Set is selected of 哲学 equal to &quot;true&quot;",cm="displayName",cn="Set Selected/Checked",co="actionInfoDescriptions",cp="哲学 to \"true\"",cq="is selected of 哲学 equal to \"true\"",cr="expr",cs="exprType",ct="block",cu="subExprs",cv="fcall",cw="functionName",cx="SetCheckState",cy="arguments",cz="pathLiteral",cA="isThis",cB="isFocused",cC="isTarget",cD="value",cE="stringLiteral",cF="true",cG="stos",cH="Set is selected of 经济学 equal to &quot;false&quot;",cI="经济学 to \"false\"",cJ="is selected of 经济学 equal to \"false\"",cK="bc545ac337844a0faa711c8c0701b7ee",cL="false",cM="tabbable",cN="generateCompound",cO="经济学",cP=27,cQ="Set is selected of 经济学 equal to &quot;true&quot;",cR="经济学 to \"true\"",cS="is selected of 经济学 equal to \"true\"",cT="Set is selected of 哲学 equal to &quot;false&quot;",cU="哲学 to \"false\"",cV="is selected of 哲学 equal to \"false\"",cW="5745d72e4e924a7c9dfaa0b6d648126b",cX=55,cY="f5761ffb3e9e4a92809874c421f22de5",cZ=223,da=83,db="8a2978e8e9774435b1b26ff95f024968",dc=111,dd="masters",de="objectPaths",df="4452510ab1174297a4842bc17fc987a1",dg="scriptId",dh="u69",di="bc545ac337844a0faa711c8c0701b7ee",dj="u70",dk="5745d72e4e924a7c9dfaa0b6d648126b",dl="u71",dm="f5761ffb3e9e4a92809874c421f22de5",dn="u72",dp="8a2978e8e9774435b1b26ff95f024968",dq="u73";
return _creator();
})());

View File

@ -0,0 +1,357 @@
body {
margin:0px;
background-image:none;
position:relative;
left:0px;
width:224px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
.form_sketch {
border-color:transparent;
background-color:transparent;
}
#base {
position:absolute;
z-index:0;
}
#u69_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:224px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#000000;
}
#u69 {
border-width:0px;
position:absolute;
left:0px;
top:-1px;
width:224px;
height:28px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#000000;
}
#u69 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u69_div.mouseOver {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:224px;
height:28px;
background:inherit;
background-color:rgba(128, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#000000;
}
#u69.mouseOver {
}
#u69_div.selected {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:224px;
height:28px;
background:inherit;
background-color:rgba(52, 120, 247, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#000000;
}
#u69.selected {
}
#u69_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u70_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:224px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#000000;
}
#u70 {
border-width:0px;
position:absolute;
left:0px;
top:27px;
width:224px;
height:28px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#000000;
}
#u70 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u70_div.mouseOver {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:224px;
height:28px;
background:inherit;
background-color:rgba(128, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#000000;
}
#u70.mouseOver {
}
#u70_div.selected {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:224px;
height:28px;
background:inherit;
background-color:rgba(52, 120, 247, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#000000;
}
#u70.selected {
}
#u70_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u71_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:224px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u71 {
border-width:0px;
position:absolute;
left:0px;
top:55px;
width:224px;
height:28px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u71 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u71_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u72_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:223px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u72 {
border-width:0px;
position:absolute;
left:0px;
top:83px;
width:223px;
height:28px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u72 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u72_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u73_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:223px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u73 {
border-width:0px;
position:absolute;
left:1px;
top:111px;
width:223px;
height:28px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u73 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u73_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}

View File

@ -0,0 +1,7 @@
$axure.loadCurrentPage(
(function() {
var _ = function() { var r={},a=arguments; for(var i=0; i<a.length; i+=2) r[a[i]]=a[i+1]; return r; }
var _creator = function() { return _(b,c,d,e,f,_(g,h,i,_(j,k,l,k)),m,[],n,_(h,o),p,[q],r,_(s,t,u,v,g,w,x,_(),y,[],z,_(A,B,C,D,E,_(F,G,H,I),J,null,K,L,L,M,N,O,null,P,Q,R,S,T,U,V,Q,W,X,_(F,G,H,Y),Z,Q,ba,bb,_(bc,bd,be,bf,bg,bf,bh,bf,bi,k,H,_(bj,bk,bl,bk,bm,bk,bn,bo)),i,_(j,k,l,k)),bp,_(),bq,_(),br,_(bs,[_(bt,bu,bv,bw,bx,by,u,bz,bA,bz,bB,bC,z,_(bD,bE,bF,_(F,G,H,bG,bH,bI),i,_(j,bJ,l,bK),A,bL,bM,_(bN,k,bO,bP),X,_(F,G,H,I),bQ,_(bR,_(E,_(F,G,H,bS))),bT,bU),bp,_(),bV,_(),bq,_(bW,_(bX,bY,bZ,ca,cb,[_(bZ,h,cc,h,cd,bd,ce,cf,cg,[_(ch,ci,bZ,cj,ck,cl,cm,_(cn,_(h,co)),cp,_(cq,cr,cs,[_(cq,ct,cu,cv,cw,[_(cq,cx,cy,bd,cz,bd,cA,bd,cB,[bu]),_(cq,cC,cB,cD,cE,[])])])),_(ch,ci,bZ,cF,ck,cl,cm,_(cG,_(h,cH)),cp,_(cq,cr,cs,[_(cq,ct,cu,cv,cw,[_(cq,cx,cy,bd,cz,bd,cA,bd,cB,[cI]),_(cq,cC,cB,cJ,cE,[])])]))])])),cK,bC,cL,bd),_(bt,cI,bv,cM,bx,by,u,bz,bA,bz,bB,bC,z,_(bD,bE,bF,_(F,G,H,bG,bH,bI),i,_(j,bJ,l,bK),A,bL,bM,_(bN,k,bO,cN),X,_(F,G,H,I),bQ,_(bR,_(E,_(F,G,H,bS))),bT,bU),bp,_(),bV,_(),bq,_(bW,_(bX,bY,bZ,ca,cb,[_(bZ,h,cc,h,cd,bd,ce,cf,cg,[_(ch,ci,bZ,cO,ck,cl,cm,_(cP,_(h,cQ)),cp,_(cq,cr,cs,[_(cq,ct,cu,cv,cw,[_(cq,cx,cy,bd,cz,bd,cA,bd,cB,[cI]),_(cq,cC,cB,cD,cE,[])])])),_(ch,ci,bZ,cR,ck,cl,cm,_(cS,_(h,cT)),cp,_(cq,cr,cs,[_(cq,ct,cu,cv,cw,[_(cq,cx,cy,bd,cz,bd,cA,bd,cB,[bu]),_(cq,cC,cB,cJ,cE,[])])]))])])),cK,bC,cL,bd),_(bt,cU,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(bD,bE,bF,_(F,G,H,bG,bH,bI),i,_(j,bJ,l,bK),A,bL,bM,_(bN,k,bO,cV),X,_(F,G,H,I),bT,bU),bp,_(),bV,_(),cL,bd),_(bt,cW,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(bD,bE,bF,_(F,G,H,bG,bH,bI),i,_(j,cX,l,bK),A,bL,bM,_(bN,k,bO,cY),X,_(F,G,H,I),bT,bU),bp,_(),bV,_(),cL,bd),_(bt,cZ,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(bD,bE,bF,_(F,G,H,bG,bH,bI),i,_(j,cX,l,bK),A,bL,bM,_(bN,bI,bO,da),X,_(F,G,H,I),bT,bU),bp,_(),bV,_(),cL,bd)])),db,_(),dc,_(dd,_(de,df),dg,_(de,dh),di,_(de,dj),dk,_(de,dl),dm,_(de,dn)));};
var b="url",c="专业大类_1.html",d="generationDate",e=new Date(1633591959057.4),f="defaultAdaptiveView",g="name",h="",i="size",j="width",k=0,l="height",m="adaptiveViews",n="sketchKeys",o="s0",p="variables",q="OnLoadVariable",r="page",s="packageId",t="2630971f7e3d47878755e6c8c7681ca1",u="type",v="Axure:Page",w="专业大类",x="notes",y="annotations",z="style",A="baseStyle",B="627587b6038d43cca051c114ac41ad32",C="pageAlignment",D="center",E="fill",F="fillType",G="solid",H="color",I=0xFFFFFFFF,J="image",K="imageAlignment",L="near",M="imageRepeat",N="auto",O="favicon",P="sketchFactor",Q="0",R="colorStyle",S="appliedColor",T="fontName",U="Applied Font",V="borderWidth",W="borderVisibility",X="borderFill",Y=0xFF797979,Z="cornerRadius",ba="cornerVisibility",bb="outerShadow",bc="on",bd=false,be="offsetX",bf=5,bg="offsetY",bh="blurRadius",bi="spread",bj="r",bk=0,bl="g",bm="b",bn="a",bo=0.349019607843137,bp="adaptiveStyles",bq="interactionMap",br="diagram",bs="objects",bt="id",bu="4452510ab1174297a4842bc17fc987a1",bv="label",bw="农林牧渔",bx="friendlyType",by="Rectangle",bz="vectorShape",bA="styleType",bB="visible",bC=true,bD="fontWeight",bE="700",bF="foreGroundFill",bG=0xFF555555,bH="opacity",bI=1,bJ=224,bK=28,bL="4b7bfc596114427989e10bb0b557d0ce",bM="location",bN="x",bO="y",bP=-1,bQ="stateStyles",bR="selected",bS=0xFF3478F7,bT="fontSize",bU="16px",bV="imageOverrides",bW="onClick",bX="eventType",bY="OnClick",bZ="description",ca="Click or Tap",cb="cases",cc="conditionString",cd="isNewIfGroup",ce="caseColorHex",cf="AB68FF",cg="actions",ch="action",ci="setFunction",cj="Set is selected of 农林牧渔 equal to &quot;true&quot;",ck="displayName",cl="Set Selected/Checked",cm="actionInfoDescriptions",cn="农林牧渔 to \"true\"",co="is selected of 农林牧渔 equal to \"true\"",cp="expr",cq="exprType",cr="block",cs="subExprs",ct="fcall",cu="functionName",cv="SetCheckState",cw="arguments",cx="pathLiteral",cy="isThis",cz="isFocused",cA="isTarget",cB="value",cC="stringLiteral",cD="true",cE="stos",cF="Set is selected of 资源环境与安全 equal to &quot;false&quot;",cG="资源环境与安全 to \"false\"",cH="is selected of 资源环境与安全 equal to \"false\"",cI="bc545ac337844a0faa711c8c0701b7ee",cJ="false",cK="tabbable",cL="generateCompound",cM="资源环境与安全",cN=27,cO="Set is selected of 资源环境与安全 equal to &quot;true&quot;",cP="资源环境与安全 to \"true\"",cQ="is selected of 资源环境与安全 equal to \"true\"",cR="Set is selected of 农林牧渔 equal to &quot;false&quot;",cS="农林牧渔 to \"false\"",cT="is selected of 农林牧渔 equal to \"false\"",cU="5745d72e4e924a7c9dfaa0b6d648126b",cV=55,cW="f5761ffb3e9e4a92809874c421f22de5",cX=223,cY=83,cZ="8a2978e8e9774435b1b26ff95f024968",da=111,db="masters",dc="objectPaths",dd="4452510ab1174297a4842bc17fc987a1",de="scriptId",df="u82",dg="bc545ac337844a0faa711c8c0701b7ee",dh="u83",di="5745d72e4e924a7c9dfaa0b6d648126b",dj="u84",dk="f5761ffb3e9e4a92809874c421f22de5",dl="u85",dm="8a2978e8e9774435b1b26ff95f024968",dn="u86";
return _creator();
})());

View File

@ -0,0 +1,313 @@
body {
margin:0px;
background-image:none;
position:relative;
left:0px;
width:224px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
.form_sketch {
border-color:transparent;
background-color:transparent;
}
#base {
position:absolute;
z-index:0;
}
#u82_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:224px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u82 {
border-width:0px;
position:absolute;
left:0px;
top:-1px;
width:224px;
height:28px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u82 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u82_div.selected {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:224px;
height:28px;
background:inherit;
background-color:rgba(52, 120, 247, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u82.selected {
}
#u82_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u83_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:224px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u83 {
border-width:0px;
position:absolute;
left:0px;
top:27px;
width:224px;
height:28px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u83 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u83_div.selected {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:224px;
height:28px;
background:inherit;
background-color:rgba(52, 120, 247, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u83.selected {
}
#u83_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u84_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:224px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u84 {
border-width:0px;
position:absolute;
left:0px;
top:55px;
width:224px;
height:28px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u84 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u84_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u85_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:223px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u85 {
border-width:0px;
position:absolute;
left:0px;
top:83px;
width:223px;
height:28px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u85 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u85_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u86_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:223px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u86 {
border-width:0px;
position:absolute;
left:1px;
top:111px;
width:223px;
height:28px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u86 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u86_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}

View File

@ -0,0 +1,7 @@
$axure.loadCurrentPage(
(function() {
var _ = function() { var r={},a=arguments; for(var i=0; i<a.length; i+=2) r[a[i]]=a[i+1]; return r; }
var _creator = function() { return _(b,c,d,e,f,_(g,h,i,_(j,k,l,k)),m,[],n,_(h,o),p,[q],r,_(s,t,u,v,g,w,x,_(),y,[],z,_(A,B,C,D,E,_(F,G,H,I),J,null,K,L,L,M,N,O,null,P,Q,R,S,T,U,V,Q,W,X,_(F,G,H,Y),Z,Q,ba,bb,_(bc,bd,be,bf,bg,bf,bh,bf,bi,k,H,_(bj,bk,bl,bk,bm,bk,bn,bo)),i,_(j,k,l,k)),bp,_(),bq,_(),br,_(bs,[_(bt,bu,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bC,bD,i,_(j,bE,l,bF),A,bG,bH,bI,X,_(F,G,H,I)),bp,_(),bJ,_(),bK,bd)])),bL,_(),bM,_(bN,_(bO,bP)));};
var b="url",c="专业类.html",d="generationDate",e=new Date(1633591959018.4),f="defaultAdaptiveView",g="name",h="",i="size",j="width",k=0,l="height",m="adaptiveViews",n="sketchKeys",o="s0",p="variables",q="OnLoadVariable",r="page",s="packageId",t="d040971858df4c9fb5f4ed33e773ec3a",u="type",v="Axure:Page",w="专业类",x="notes",y="annotations",z="style",A="baseStyle",B="627587b6038d43cca051c114ac41ad32",C="pageAlignment",D="center",E="fill",F="fillType",G="solid",H="color",I=0xFFFFFFFF,J="image",K="imageAlignment",L="near",M="imageRepeat",N="auto",O="favicon",P="sketchFactor",Q="0",R="colorStyle",S="appliedColor",T="fontName",U="Applied Font",V="borderWidth",W="borderVisibility",X="borderFill",Y=0xFF797979,Z="cornerRadius",ba="cornerVisibility",bb="outerShadow",bc="on",bd=false,be="offsetX",bf=5,bg="offsetY",bh="blurRadius",bi="spread",bj="r",bk=0,bl="g",bm="b",bn="a",bo=0.349019607843137,bp="adaptiveStyles",bq="interactionMap",br="diagram",bs="objects",bt="id",bu="edbbdc6469a743aead7a819137df631b",bv="label",bw="friendlyType",bx="Rectangle",by="vectorShape",bz="styleType",bA="visible",bB=true,bC="fontWeight",bD="700",bE=176,bF=29,bG="4b7bfc596114427989e10bb0b557d0ce",bH="fontSize",bI="16px",bJ="imageOverrides",bK="generateCompound",bL="masters",bM="objectPaths",bN="edbbdc6469a743aead7a819137df631b",bO="scriptId",bP="u68";
return _creator();
})());

View File

@ -0,0 +1,65 @@
body {
margin:0px;
background-image:none;
position:relative;
left:0px;
width:176px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
.form_sketch {
border-color:transparent;
background-color:transparent;
}
#base {
position:absolute;
z-index:0;
}
#u68_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:176px;
height:29px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u68 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:176px;
height:29px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
}
#u68 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u68_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}

View File

@ -0,0 +1,7 @@
$axure.loadCurrentPage(
(function() {
var _ = function() { var r={},a=arguments; for(var i=0; i<a.length; i+=2) r[a[i]]=a[i+1]; return r; }
var _creator = function() { return _(b,c,d,e,f,_(g,h,i,_(j,k,l,k)),m,[],n,_(h,o),p,[q],r,_(s,t,u,v,g,w,x,_(),y,[],z,_(A,B,C,D,E,_(F,G,H,I),J,null,K,L,L,M,N,O,null,P,Q,R,S,T,U,V,Q,W,X,_(F,G,H,Y),Z,Q,ba,bb,_(bc,bd,be,bf,bg,bf,bh,bf,bi,k,H,_(bj,bk,bl,bk,bm,bk,bn,bo)),i,_(j,k,l,k)),bp,_(),bq,_(),br,_(bs,[_(bt,bu,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bC,bD,bE,_(F,G,H,bF,bG,bH),i,_(j,bI,l,bJ),A,bK,X,_(F,G,H,I),bL,bM),bp,_(),bN,_(),bO,bd),_(bt,bP,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bC,bD,bE,_(F,G,H,bF,bG,bH),i,_(j,bI,l,bJ),A,bK,X,_(F,G,H,I),bQ,_(bR,k,bS,bJ),bL,bM),bp,_(),bN,_(),bO,bd),_(bt,bT,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bC,bD,bE,_(F,G,H,bF,bG,bH),i,_(j,bI,l,bJ),A,bK,X,_(F,G,H,I),bQ,_(bR,k,bS,bU),bL,bM),bp,_(),bN,_(),bO,bd),_(bt,bV,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bC,bD,bE,_(F,G,H,bF,bG,bH),i,_(j,bI,l,bJ),A,bK,X,_(F,G,H,I),bQ,_(bR,k,bS,bW),bL,bM),bp,_(),bN,_(),bO,bd)])),bX,_(),bY,_(bZ,_(ca,cb),cc,_(ca,cd),ce,_(ca,cf),cg,_(ca,ch)));};
var b="url",c="专业类_1.html",d="generationDate",e=new Date(1633591959046.4),f="defaultAdaptiveView",g="name",h="",i="size",j="width",k=0,l="height",m="adaptiveViews",n="sketchKeys",o="s0",p="variables",q="OnLoadVariable",r="page",s="packageId",t="be89079c2e9640bdaa6729c8efa90871",u="type",v="Axure:Page",w="专业类",x="notes",y="annotations",z="style",A="baseStyle",B="627587b6038d43cca051c114ac41ad32",C="pageAlignment",D="center",E="fill",F="fillType",G="solid",H="color",I=0xFFFFFFFF,J="image",K="imageAlignment",L="near",M="imageRepeat",N="auto",O="favicon",P="sketchFactor",Q="0",R="colorStyle",S="appliedColor",T="fontName",U="Applied Font",V="borderWidth",W="borderVisibility",X="borderFill",Y=0xFF797979,Z="cornerRadius",ba="cornerVisibility",bb="outerShadow",bc="on",bd=false,be="offsetX",bf=5,bg="offsetY",bh="blurRadius",bi="spread",bj="r",bk=0,bl="g",bm="b",bn="a",bo=0.349019607843137,bp="adaptiveStyles",bq="interactionMap",br="diagram",bs="objects",bt="id",bu="edbbdc6469a743aead7a819137df631b",bv="label",bw="friendlyType",bx="Rectangle",by="vectorShape",bz="styleType",bA="visible",bB=true,bC="fontWeight",bD="700",bE="foreGroundFill",bF=0xFF555555,bG="opacity",bH=1,bI=176,bJ=29,bK="4b7bfc596114427989e10bb0b557d0ce",bL="fontSize",bM="16px",bN="imageOverrides",bO="generateCompound",bP="520b16efd3904b8d9f7a0c6f73d0f50e",bQ="location",bR="x",bS="y",bT="55304cd8122048d58bbe0dbcc83b21a6",bU=58,bV="72415105280f4cb1a8c9b5aa80353028",bW=87,bX="masters",bY="objectPaths",bZ="edbbdc6469a743aead7a819137df631b",ca="scriptId",cb="u78",cc="520b16efd3904b8d9f7a0c6f73d0f50e",cd="u79",ce="55304cd8122048d58bbe0dbcc83b21a6",cf="u80",cg="72415105280f4cb1a8c9b5aa80353028",ch="u81";
return _creator();
})());

View File

@ -0,0 +1,214 @@
body {
margin:0px;
background-image:none;
position:relative;
left:0px;
width:176px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
.form_sketch {
border-color:transparent;
background-color:transparent;
}
#base {
position:absolute;
z-index:0;
}
#u78_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:176px;
height:29px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u78 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:176px;
height:29px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u78 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u78_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u79_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:176px;
height:29px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u79 {
border-width:0px;
position:absolute;
left:0px;
top:29px;
width:176px;
height:29px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u79 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u79_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u80_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:176px;
height:29px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u80 {
border-width:0px;
position:absolute;
left:0px;
top:58px;
width:176px;
height:29px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u80 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u80_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u81_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:176px;
height:29px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(255, 255, 255, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u81 {
border-width:0px;
position:absolute;
left:0px;
top:87px;
width:176px;
height:29px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:16px;
color:#555555;
}
#u81 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u81_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}

View File

@ -0,0 +1,7 @@
$axure.loadCurrentPage(
(function() {
var _ = function() { var r={},a=arguments; for(var i=0; i<a.length; i+=2) r[a[i]]=a[i+1]; return r; }
var _creator = function() { return _(b,c,d,e,f,_(g,h,i,_(j,k,l,k)),m,[],n,_(h,o),p,[q],r,_(s,t,u,v,g,w,x,_(),y,[],z,_(A,B,C,D,E,_(F,G,H,I),J,null,K,L,L,M,N,O,null,P,Q,R,S,T,U,V,Q,W,X,_(F,G,H,Y),Z,Q,ba,bb,_(bc,bd,be,bf,bg,bf,bh,bf,bi,k,H,_(bj,bk,bl,bk,bm,bk,bn,bo)),i,_(j,k,l,k)),bp,_(),bq,_(),br,_(bs,[_(bt,bu,bv,bw,bx,by,u,bz,bA,bz,bB,bC,z,_(i,_(j,bD,l,bE),A,bF),bp,_(),bG,_(),bH,bd),_(bt,bI,bv,bw,bx,by,u,bz,bA,bz,bB,bC,z,_(i,_(j,bD,l,bE),A,bF),bp,_(),bG,_(),bH,bd),_(bt,bJ,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(bK,bL,i,_(j,bM,l,bN),A,bO,bP,_(bQ,bR,bS,bT)),bp,_(),bG,_(),bH,bd),_(bt,bU,bv,h,bx,bV,u,bW,bA,bW,bB,bC,z,_(i,_(j,bX,l,bY),A,bZ,J,null,bP,_(bQ,ca,bS,bT)),bp,_(),bG,_(),cb,_(cc,cd)),_(bt,ce,bv,h,bx,cf,u,bz,bA,bz,bB,bC,z,_(i,_(j,cg,l,ch),A,ci,bP,_(bQ,cj,bS,ck)),bp,_(),bG,_(),cb,_(cc,cl),bH,bd),_(bt,cm,bv,h,bx,bV,u,bW,bA,bW,bB,bC,z,_(i,_(j,bX,l,bY),A,bZ,J,null,bP,_(bQ,ca,bS,cn)),bp,_(),bG,_(),cb,_(cc,cd)),_(bt,co,bv,h,bx,bV,u,bW,bA,bW,bB,bC,z,_(i,_(j,bX,l,bY),A,bZ,J,null,bP,_(bQ,ca,bS,cp)),bp,_(),bG,_(),cb,_(cc,cd)),_(bt,cq,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(bK,bL,i,_(j,cr,l,bN),A,bO,bP,_(bQ,cs,bS,ct)),bp,_(),bG,_(),bH,bd)])),cu,_(),cv,_(cw,_(cx,cy),cz,_(cx,cA),cB,_(cx,cC),cD,_(cx,cE),cF,_(cx,cG),cH,_(cx,cI),cJ,_(cx,cK),cL,_(cx,cM)));};
var b="url",c="北京大学介绍.html",d="generationDate",e=new Date(1633591959105.4),f="defaultAdaptiveView",g="name",h="",i="size",j="width",k=0,l="height",m="adaptiveViews",n="sketchKeys",o="s0",p="variables",q="OnLoadVariable",r="page",s="packageId",t="cc684f06b0784167980d00a163bbad29",u="type",v="Axure:Page",w="北京大学介绍",x="notes",y="annotations",z="style",A="baseStyle",B="627587b6038d43cca051c114ac41ad32",C="pageAlignment",D="center",E="fill",F="fillType",G="solid",H="color",I=0xFFFFFFFF,J="image",K="imageAlignment",L="near",M="imageRepeat",N="auto",O="favicon",P="sketchFactor",Q="0",R="colorStyle",S="appliedColor",T="fontName",U="Applied Font",V="borderWidth",W="borderVisibility",X="borderFill",Y=0xFF797979,Z="cornerRadius",ba="cornerVisibility",bb="outerShadow",bc="on",bd=false,be="offsetX",bf=5,bg="offsetY",bh="blurRadius",bi="spread",bj="r",bk=0,bl="g",bm="b",bn="a",bo=0.349019607843137,bp="adaptiveStyles",bq="interactionMap",br="diagram",bs="objects",bt="id",bu="e0686b11882a4d06a8a871c9d5687893",bv="label",bw="显示页面",bx="friendlyType",by="Rectangle",bz="vectorShape",bA="styleType",bB="visible",bC=true,bD=1389,bE=674,bF="4b7bfc596114427989e10bb0b557d0ce",bG="imageOverrides",bH="generateCompound",bI="f2fcc619e8e9477cb3c4cb4b23d436c9",bJ="12b59605921348f29a09339e81ffc20a",bK="fontWeight",bL="700",bM=1,bN=37,bO="1111111151944dfba49f67fd55eb1f88",bP="location",bQ="x",bR=560,bS="y",bT=44,bU="9cc319b682714058b4f7b74393dee716",bV="Image",bW="imageBox",bX=300,bY=170,bZ="75a91ee5b9d042cfa01b8d565fe289c0",ca=47,cb="images",cc="normal~",cd="images/高考资讯/u59.svg",ce="52d6baa20a184a18932635919700f0a6",cf="Placeholder",cg=910,ch=482,ci="c50e74f669b24b37bd9c18da7326bccd",cj=405,ck=133,cl="images/高考资讯/u60.svg",cm="4b7047969b2b4394af673d02652be742",cn=252,co="7aa7f00b980d4add89f981fe9c9575fc",cp=470,cq="e12df1cffd7b4f6fac5148f5b3a7a83a",cr=256,cs=567,ct=54,cu="masters",cv="objectPaths",cw="e0686b11882a4d06a8a871c9d5687893",cx="scriptId",cy="u113",cz="f2fcc619e8e9477cb3c4cb4b23d436c9",cA="u114",cB="12b59605921348f29a09339e81ffc20a",cC="u115",cD="9cc319b682714058b4f7b74393dee716",cE="u116",cF="52d6baa20a184a18932635919700f0a6",cG="u117",cH="4b7047969b2b4394af673d02652be742",cI="u118",cJ="7aa7f00b980d4add89f981fe9c9575fc",cK="u119",cL="e12df1cffd7b4f6fac5148f5b3a7a83a",cM="u120";
return _creator();
})());

View File

@ -0,0 +1,303 @@
body {
margin:0px;
background-image:none;
position:relative;
left:0px;
width:1389px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
.form_sketch {
border-color:transparent;
background-color:transparent;
}
#base {
position:absolute;
z-index:0;
}
#u113_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1389px;
height:674px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u113 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1389px;
height:674px;
display:flex;
}
#u113 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u113_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u114_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1389px;
height:674px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u114 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1389px;
height:674px;
display:flex;
}
#u114 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u114_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u115_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1px;
height:37px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
}
#u115 {
border-width:0px;
position:absolute;
left:560px;
top:44px;
width:1px;
height:37px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
}
#u115 .text {
position:absolute;
align-self:flex-start;
padding:0px 0px 0px 0px;
box-sizing:border-box;
width:100%;
}
#u115_text {
border-width:0px;
white-space:nowrap;
text-transform:none;
visibility:hidden;
}
#u116_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:300px;
height:170px;
}
#u116 {
border-width:0px;
position:absolute;
left:47px;
top:44px;
width:300px;
height:170px;
display:flex;
}
#u116 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u116_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u117_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:910px;
height:482px;
}
#u117 {
border-width:0px;
position:absolute;
left:405px;
top:133px;
width:910px;
height:482px;
display:flex;
}
#u117 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u117_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u118_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:300px;
height:170px;
}
#u118 {
border-width:0px;
position:absolute;
left:47px;
top:252px;
width:300px;
height:170px;
display:flex;
}
#u118 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u118_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u119_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:300px;
height:170px;
}
#u119 {
border-width:0px;
position:absolute;
left:47px;
top:470px;
width:300px;
height:170px;
display:flex;
}
#u119 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u119_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u120_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:256px;
height:37px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
}
#u120 {
border-width:0px;
position:absolute;
left:567px;
top:54px;
width:256px;
height:37px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
}
#u120 .text {
position:absolute;
align-self:flex-start;
padding:0px 0px 0px 0px;
box-sizing:border-box;
width:100%;
}
#u120_text {
border-width:0px;
white-space:nowrap;
text-transform:none;
}

View File

@ -0,0 +1,7 @@
$axure.loadCurrentPage(
(function() {
var _ = function() { var r={},a=arguments; for(var i=0; i<a.length; i+=2) r[a[i]]=a[i+1]; return r; }
var _creator = function() { return _(b,c,d,e,f,_(g,h,i,_(j,k,l,k)),m,[],n,_(h,o),p,[q],r,_(s,t,u,v,g,w,x,_(),y,[],z,_(A,B,C,D,E,_(F,G,H,I),J,null,K,L,L,M,N,O,null,P,Q,R,S,T,U,V,Q,W,X,_(F,G,H,Y),Z,Q,ba,bb,_(bc,bd,be,bf,bg,bf,bh,bf,bi,k,H,_(bj,bk,bl,bk,bm,bk,bn,bo)),i,_(j,k,l,k)),bp,_(),bq,_(),br,_(bs,[_(bt,bu,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(A,bC,i,_(j,bD,l,bE),J,null),bp,_(),bF,_(),bG,_(bH,bI))])),bJ,_(),bK,_(bL,_(bM,bN)));};
var b="url",c="哲学简介.html",d="generationDate",e=new Date(1633591959013.4),f="defaultAdaptiveView",g="name",h="",i="size",j="width",k=0,l="height",m="adaptiveViews",n="sketchKeys",o="s0",p="variables",q="OnLoadVariable",r="page",s="packageId",t="dd6eed6ba8ff44339de042009d627621",u="type",v="Axure:Page",w="哲学简介",x="notes",y="annotations",z="style",A="baseStyle",B="627587b6038d43cca051c114ac41ad32",C="pageAlignment",D="center",E="fill",F="fillType",G="solid",H="color",I=0xFFFFFFFF,J="image",K="imageAlignment",L="near",M="imageRepeat",N="auto",O="favicon",P="sketchFactor",Q="0",R="colorStyle",S="appliedColor",T="fontName",U="Applied Font",V="borderWidth",W="borderVisibility",X="borderFill",Y=0xFF797979,Z="cornerRadius",ba="cornerVisibility",bb="outerShadow",bc="on",bd=false,be="offsetX",bf=5,bg="offsetY",bh="blurRadius",bi="spread",bj="r",bk=0,bl="g",bm="b",bn="a",bo=0.349019607843137,bp="adaptiveStyles",bq="interactionMap",br="diagram",bs="objects",bt="id",bu="024357b77a2a4dddae42bb61c60491ee",bv="label",bw="friendlyType",bx="Image",by="imageBox",bz="styleType",bA="visible",bB=true,bC="75a91ee5b9d042cfa01b8d565fe289c0",bD=739,bE=276,bF="imageOverrides",bG="images",bH="normal~",bI="images/哲学简介/u67.png",bJ="masters",bK="objectPaths",bL="024357b77a2a4dddae42bb61c60491ee",bM="scriptId",bN="u67";
return _creator();
})());

View File

@ -0,0 +1,48 @@
body {
margin:0px;
background-image:none;
position:relative;
left:0px;
width:739px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
.form_sketch {
border-color:transparent;
background-color:transparent;
}
#base {
position:absolute;
z-index:0;
}
#u67_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:739px;
height:276px;
}
#u67 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:739px;
height:276px;
display:flex;
}
#u67 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u67_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,7 @@
$axure.loadCurrentPage(
(function() {
var _ = function() { var r={},a=arguments; for(var i=0; i<a.length; i+=2) r[a[i]]=a[i+1]; return r; }
var _creator = function() { return _(b,c,d,e,f,_(g,h,i,_(j,k,l,k)),m,[],n,_(h,o),p,[q],r,_(s,t,u,v,g,w,x,_(),y,[],z,_(A,B,C,D,E,_(F,G,H,I),J,null,K,L,L,M,N,O,null,P,Q,R,S,T,U,V,Q,W,X,_(F,G,H,Y),Z,Q,ba,bb,_(bc,bd,be,bf,bg,bf,bh,bf,bi,k,H,_(bj,bk,bl,bk,bm,bk,bn,bo)),i,_(j,k,l,k)),bp,_(),bq,_(),br,_(bs,[_(bt,bu,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bC,l,bD),A,bE,X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,bI,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bC,l,bJ),A,bE,X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,bK,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bM,bN,X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,bO,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,bL,bR,k),bM,bN,X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,bS,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,bT,bR,k),bM,bN,X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,bU,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,bV,bR,k),bM,bN,X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,bW,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,bX,bR,k),bM,bN,X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,bY,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,bZ,bR,k),bM,bN,X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,ca,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,cb,bR,k),bM,bN,X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,cc,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,cd,bR,k),bM,bN,X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,ce,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,k,bR,cf),cg,_(ch,_(E,_(F,G,H,ci))),X,_(F,G,H,bF)),bp,_(),bG,_(),bq,_(cj,_(ck,cl,cm,cn,co,[_(cm,h,cp,h,cq,bd,cr,cs,ct,[_(cu,cv,cm,cw,cx,cy,cz,_(cA,_(h,cw)),cB,cC,cD,_(cE,r,b,cF,cG,bB))])])),cH,bB,bH,bd),_(bt,cI,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,bL,bR,cf),X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,cJ,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,bT,bR,cf),X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,cK,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,bV,bR,cf),X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,cL,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,bX,bR,cf),X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,cM,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,bZ,bR,cf),X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,cN,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,cb,bR,cf),X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,cO,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,cd,bR,cf),X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,cP,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,k,bR,cQ),X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,cR,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,bL,bR,cQ),X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,cS,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,bT,bR,cQ),X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,cT,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,bV,bR,cQ),X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,cU,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,bX,bR,cQ),X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,cV,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,bZ,bR,cQ),X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,cW,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,cb,bR,cQ),X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,cX,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,cd,bR,cQ),X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,cY,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,k,bR,cZ),X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,da,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,bL,bR,cZ),X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,db,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,bT,bR,cZ),X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,dc,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,bV,bR,cZ),X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,dd,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,bX,bR,cZ),X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,de,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,bZ,bR,cZ),X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,df,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,cb,bR,cZ),X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd),_(bt,dg,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bL,l,bJ),A,bE,bP,_(bQ,cd,bR,cZ),X,_(F,G,H,bF)),bp,_(),bG,_(),bH,bd)])),dh,_(),di,_(dj,_(dk,dl),dm,_(dk,dn),dp,_(dk,dq),dr,_(dk,ds),dt,_(dk,du),dv,_(dk,dw),dx,_(dk,dy),dz,_(dk,dA),dB,_(dk,dC),dD,_(dk,dE),dF,_(dk,dG),dH,_(dk,dI),dJ,_(dk,dK),dL,_(dk,dM),dN,_(dk,dO),dP,_(dk,dQ),dR,_(dk,dS),dT,_(dk,dU),dV,_(dk,dW),dX,_(dk,dY),dZ,_(dk,ea),eb,_(dk,ec),ed,_(dk,ee),ef,_(dk,eg),eh,_(dk,ei),ej,_(dk,ek),el,_(dk,em),en,_(dk,eo),ep,_(dk,eq),er,_(dk,es),et,_(dk,eu),ev,_(dk,ew),ex,_(dk,ey),ez,_(dk,eA)));};
var b="url",c="大学列表.html",d="generationDate",e=new Date(1633591959170.41),f="defaultAdaptiveView",g="name",h="",i="size",j="width",k=0,l="height",m="adaptiveViews",n="sketchKeys",o="s0",p="variables",q="OnLoadVariable",r="page",s="packageId",t="ee594270f9664a378c0c2aa598bb7b86",u="type",v="Axure:Page",w="大学列表",x="notes",y="annotations",z="style",A="baseStyle",B="627587b6038d43cca051c114ac41ad32",C="pageAlignment",D="center",E="fill",F="fillType",G="solid",H="color",I=0xFFFFFFFF,J="image",K="imageAlignment",L="near",M="imageRepeat",N="auto",O="favicon",P="sketchFactor",Q="0",R="colorStyle",S="appliedColor",T="fontName",U="Applied Font",V="borderWidth",W="borderVisibility",X="borderFill",Y=0xFF797979,Z="cornerRadius",ba="cornerVisibility",bb="outerShadow",bc="on",bd=false,be="offsetX",bf=5,bg="offsetY",bh="blurRadius",bi="spread",bj="r",bk=0,bl="g",bm="b",bn="a",bo=0.349019607843137,bp="adaptiveStyles",bq="interactionMap",br="diagram",bs="objects",bt="id",bu="d4d25dbf24f04dfbaa105198a0f3c825",bv="label",bw="friendlyType",bx="Rectangle",by="vectorShape",bz="styleType",bA="visible",bB=true,bC=1189,bD=504,bE="4b7bfc596114427989e10bb0b557d0ce",bF=0xFFF2F2F2,bG="imageOverrides",bH="generateCompound",bI="391e90c80f9e429e961a77fec763749a",bJ=56,bK="09b6939ce7804464b00da8a4f4429160",bL=148,bM="fontSize",bN="20px",bO="01c40c28e68c428895a02236a63fcb50",bP="location",bQ="x",bR="y",bS="42494bb7fcbe4c96a4d1c4497c1ab7ee",bT=296,bU="13e9aa0cb7d3431a9fcddad2765eafaa",bV=444,bW="ca6997885d96450fabb15f9241a35c15",bX=592,bY="d958eb6b81f2467faf442a0bbc4a370f",bZ=740,ca="c3efa42a786e492fa4b4d427482b3fc6",cb=888,cc="6d69e0ffeef64e83bec6a9307a4b8149",cd=1036,ce="6556a2b22a0946b9a5c69706eab755e7",cf=65,cg="stateStyles",ch="mouseOver",ci=0xFF80FFFF,cj="onClick",ck="eventType",cl="OnClick",cm="description",cn="Click or Tap",co="cases",cp="conditionString",cq="isNewIfGroup",cr="caseColorHex",cs="AB68FF",ct="actions",cu="action",cv="linkFrame",cw="Open 北京大学介绍 in Parent Frame",cx="displayName",cy="Open Link in Frame",cz="actionInfoDescriptions",cA="北京大学介绍 in Parent Frame",cB="linkType",cC="parentFrame",cD="target",cE="targetType",cF="北京大学介绍.html",cG="includeVariables",cH="tabbable",cI="ac67f54907cf43f9a6e36c20d4cd66fc",cJ="51e3bda17fdf40caa68b2e22445dabf3",cK="2db5ba6960364c93bf1f4f60189fdee3",cL="24fe15023f0f4ff0bed7ddc3171ad8b5",cM="7dc80cfccebc4376822a202946be6549",cN="d1c3f68500584483bdb78a17a7c1ea1b",cO="919fd0c60933444bb9bf960b248ba3a7",cP="9c485237eb9d4fb9b1dc1257c9a84a34",cQ=121,cR="25f720f68fc741738356f4a0558c6e2f",cS="9aae74dc95a44c64ada13ef50d60604a",cT="daa68f5e9b5d41378fb5e43dab5d1adf",cU="d3724c1b0db6493eaa324be483e7448d",cV="5c39d19eb1b74cce9a499486c85cfe6a",cW="f3a73698248c47758dcd713234ddf427",cX="cd55339879784339a15696b6c51f5f6d",cY="2ce68cd02923467da86271004fa5770c",cZ=177,da="3232859e5d6442cca4eefdd6b16b49b7",db="a229a555cedb4715aca09724b6c7cee9",dc="5fb372df095547c7879ebab184e489ce",dd="9f87d017690e49ca8040ee2b145b5907",de="b617280f8745404193e0d00c53356cab",df="366b07694c9c4284bce6b174f5e6023d",dg="b76de9823c0247959e9b821eee4d1925",dh="masters",di="objectPaths",dj="d4d25dbf24f04dfbaa105198a0f3c825",dk="scriptId",dl="u159",dm="391e90c80f9e429e961a77fec763749a",dn="u160",dp="09b6939ce7804464b00da8a4f4429160",dq="u161",dr="01c40c28e68c428895a02236a63fcb50",ds="u162",dt="42494bb7fcbe4c96a4d1c4497c1ab7ee",du="u163",dv="13e9aa0cb7d3431a9fcddad2765eafaa",dw="u164",dx="ca6997885d96450fabb15f9241a35c15",dy="u165",dz="d958eb6b81f2467faf442a0bbc4a370f",dA="u166",dB="c3efa42a786e492fa4b4d427482b3fc6",dC="u167",dD="6d69e0ffeef64e83bec6a9307a4b8149",dE="u168",dF="6556a2b22a0946b9a5c69706eab755e7",dG="u169",dH="ac67f54907cf43f9a6e36c20d4cd66fc",dI="u170",dJ="51e3bda17fdf40caa68b2e22445dabf3",dK="u171",dL="2db5ba6960364c93bf1f4f60189fdee3",dM="u172",dN="24fe15023f0f4ff0bed7ddc3171ad8b5",dO="u173",dP="7dc80cfccebc4376822a202946be6549",dQ="u174",dR="d1c3f68500584483bdb78a17a7c1ea1b",dS="u175",dT="919fd0c60933444bb9bf960b248ba3a7",dU="u176",dV="9c485237eb9d4fb9b1dc1257c9a84a34",dW="u177",dX="25f720f68fc741738356f4a0558c6e2f",dY="u178",dZ="9aae74dc95a44c64ada13ef50d60604a",ea="u179",eb="daa68f5e9b5d41378fb5e43dab5d1adf",ec="u180",ed="d3724c1b0db6493eaa324be483e7448d",ee="u181",ef="5c39d19eb1b74cce9a499486c85cfe6a",eg="u182",eh="f3a73698248c47758dcd713234ddf427",ei="u183",ej="cd55339879784339a15696b6c51f5f6d",ek="u184",el="2ce68cd02923467da86271004fa5770c",em="u185",en="3232859e5d6442cca4eefdd6b16b49b7",eo="u186",ep="a229a555cedb4715aca09724b6c7cee9",eq="u187",er="5fb372df095547c7879ebab184e489ce",es="u188",et="9f87d017690e49ca8040ee2b145b5907",eu="u189",ev="b617280f8745404193e0d00c53356cab",ew="u190",ex="366b07694c9c4284bce6b174f5e6023d",ey="u191",ez="b76de9823c0247959e9b821eee4d1925",eA="u192";
return _creator();
})());

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,7 @@
$axure.loadCurrentPage(
(function() {
var _ = function() { var r={},a=arguments; for(var i=0; i<a.length; i+=2) r[a[i]]=a[i+1]; return r; }
var _creator = function() { return _(b,c,d,e,f,_(g,h,i,_(j,k,l,k)),m,[],n,_(h,o),p,[q],r,_(s,t,u,v,g,w,x,_(),y,[],z,_(A,B,C,D,E,_(F,G,H,I),J,null,K,L,L,M,N,O,null,P,Q,R,S,T,U,V,Q,W,X,_(F,G,H,Y),Z,Q,ba,bb,_(bc,bd,be,bf,bg,bf,bh,bf,bi,k,H,_(bj,bk,bl,bk,bm,bk,bn,bo)),i,_(j,k,l,k)),bp,_(),bq,_(),br,_(bs,[_(bt,bu,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bC,l,bD),A,bE),bp,_(),bF,_(),bG,bd),_(bt,bH,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bI,l,bJ),A,bE,bK,_(bL,bM,bN,bO)),bp,_(),bF,_(),bG,bd),_(bt,bP,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bQ,l,bJ),A,bE,bK,_(bL,bM,bN,bR)),bp,_(),bF,_(),bG,bd),_(bt,bS,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bT,bU,i,_(j,bO,l,bV),A,bW,bK,_(bL,bX,bN,bY),bZ,ca,cb,cc),bp,_(),bF,_(),bG,bd),_(bt,cd,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bT,bU,i,_(j,bO,l,bV),A,bW,bK,_(bL,ce,bN,cf),bZ,ca,cb,cc),bp,_(),bF,_(),bG,bd),_(bt,cg,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bT,bU,i,_(j,ch,l,ci),A,bW,bK,_(bL,bM,bN,cj),bZ,ck,cb,cl),bp,_(),bF,_(),bG,bd),_(bt,cm,bv,h,bw,cn,u,co,bz,co,bA,bB,z,_(i,_(j,cp,l,bV),A,cq,cr,_(cs,_(A,ct)),cu,Q,cv,Q,cw,cx,bK,_(bL,cy,bN,cz),cb,cc),bp,_(),bF,_(),cA,_(cB,cC,cD,cE,cF,cG,cH,cI),cJ,cK),_(bt,cL,bv,h,bw,cn,u,co,bz,co,bA,bB,z,_(i,_(j,cp,l,bV),A,cq,cr,_(cs,_(A,ct)),cu,Q,cv,Q,cw,cx,bK,_(bL,cM,bN,cz),cb,cc),bp,_(),bF,_(),cA,_(cB,cN,cD,cO,cF,cP,cH,cQ),cJ,cK),_(bt,cR,bv,h,bw,cn,u,co,bz,co,bA,bB,z,_(i,_(j,cp,l,bV),A,cq,cr,_(cs,_(A,ct)),cu,Q,cv,Q,cw,cx,bK,_(bL,cS,bN,cz),cb,cc),bp,_(),bF,_(),cA,_(cB,cT,cD,cU,cF,cV,cH,cW),cJ,cK),_(bt,cX,bv,h,bw,cn,u,co,bz,co,bA,bB,z,_(i,_(j,cp,l,bV),A,cq,cr,_(cs,_(A,ct)),cu,Q,cv,Q,cw,cx,bK,_(bL,cy,bN,cY),cb,cc),bp,_(),bF,_(),cA,_(cB,cZ,cD,da,cF,db,cH,dc),cJ,cK),_(bt,dd,bv,h,bw,cn,u,co,bz,co,bA,bB,z,_(i,_(j,cp,l,bV),A,cq,cr,_(cs,_(A,ct)),cu,Q,cv,Q,cw,cx,bK,_(bL,cM,bN,cY),cb,cc),bp,_(),bF,_(),cA,_(cB,de,cD,df,cF,dg,cH,dh),cJ,cK),_(bt,di,bv,h,bw,cn,u,co,bz,co,bA,bB,z,_(i,_(j,cp,l,bV),A,cq,cr,_(cs,_(A,ct)),cu,Q,cv,Q,cw,cx,bK,_(bL,cS,bN,cY),cb,cc),bp,_(),bF,_(),cA,_(cB,dj,cD,dk,cF,dl,cH,dm),cJ,cK),_(bt,dn,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,dp,l,dq),A,dr,bK,_(bL,ds,bN,dt),Z,du,cb,cc,E,_(F,G,H,dv)),bp,_(),bF,_(),bG,bd),_(bt,dw,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bQ,l,bJ),A,bE,bK,_(bL,dx,bN,bR)),bp,_(),bF,_(),bG,bd),_(bt,dy,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bT,bU,i,_(j,bO,l,bV),A,bW,bK,_(bL,dz,bN,cf),bZ,ca,cb,cc),bp,_(),bF,_(),bG,bd),_(bt,dA,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bI,l,bJ),A,bE,bK,_(bL,bM,bN,dB)),bp,_(),bF,_(),bG,bd),_(bt,dC,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bT,bU,i,_(j,bO,l,bV),A,bW,bK,_(bL,ce,bN,dD),bZ,ca,cb,cc),bp,_(),bF,_(),bG,bd)])),dE,_(),dF,_(dG,_(dH,dI),dJ,_(dH,dK),dL,_(dH,dM),dN,_(dH,dO),dP,_(dH,dQ),dR,_(dH,dS),dT,_(dH,dU),dV,_(dH,dW),dX,_(dH,dY),dZ,_(dH,ea),eb,_(dH,ec),ed,_(dH,ee),ef,_(dH,eg),eh,_(dH,ei),ej,_(dH,ek),el,_(dH,em),en,_(dH,eo)));};
var b="url",c="完善个人信息.html",d="generationDate",e=new Date(1633591958984.4),f="defaultAdaptiveView",g="name",h="",i="size",j="width",k=0,l="height",m="adaptiveViews",n="sketchKeys",o="s0",p="variables",q="OnLoadVariable",r="page",s="packageId",t="e3f0fe8163e44952af864c287747e4c8",u="type",v="Axure:Page",w="完善个人信息",x="notes",y="annotations",z="style",A="baseStyle",B="627587b6038d43cca051c114ac41ad32",C="pageAlignment",D="center",E="fill",F="fillType",G="solid",H="color",I=0xFFFFFFFF,J="image",K="imageAlignment",L="near",M="imageRepeat",N="auto",O="favicon",P="sketchFactor",Q="0",R="colorStyle",S="appliedColor",T="fontName",U="Applied Font",V="borderWidth",W="borderVisibility",X="borderFill",Y=0xFF797979,Z="cornerRadius",ba="cornerVisibility",bb="outerShadow",bc="on",bd=false,be="offsetX",bf=5,bg="offsetY",bh="blurRadius",bi="spread",bj="r",bk=0,bl="g",bm="b",bn="a",bo=0.349019607843137,bp="adaptiveStyles",bq="interactionMap",br="diagram",bs="objects",bt="id",bu="663965fe0e0f4c4c9a5c786b1d84511d",bv="label",bw="friendlyType",bx="Rectangle",by="vectorShape",bz="styleType",bA="visible",bB=true,bC=1389,bD=758,bE="4b7bfc596114427989e10bb0b557d0ce",bF="imageOverrides",bG="generateCompound",bH="b436a06189014121bb4287cda167b5b6",bI=571,bJ=49,bK="location",bL="x",bM=409,bN="y",bO=108,bP="d0a5ff41231c4a2d928b7ac12c7dc695",bQ=245,bR=247,bS="c46ed17f94cf45cb9f6c821eb8cfe421",bT="fontWeight",bU="700",bV=31,bW="1111111151944dfba49f67fd55eb1f88",bX=424,bY=120,bZ="opacity",ca="0.34",cb="fontSize",cc="27px",cd="bc16b154524b4c8180618d1e384d7a3e",ce=425,cf=256,cg="dc93da2806c4459281d6fc63b188737c",ch=168,ci=28,cj=312,ck="0.7",cl="24px",cm="72389fba5cf0424981f8cd936d33fd5e",cn="Checkbox",co="checkbox",cp=111,cq="bccdabddb5454e438d4613702b55674b",cr="stateStyles",cs="disabled",ct="9bd0236217a94d89b0314c8c7fc75f16",cu="paddingTop",cv="paddingBottom",cw="verticalAlignment",cx="middle",cy=445,cz=365,cA="images",cB="normal~",cC="images/完善个人信息/u46.svg",cD="selected~",cE="images/完善个人信息/u46_selected.svg",cF="disabled~",cG="images/完善个人信息/u46_disabled.svg",cH="selectedDisabled~",cI="images/完善个人信息/u46_selectedDisabled.svg",cJ="extraLeft",cK=14,cL="f1613d2f55b04c069d6c8d79bc80a2e7",cM=630,cN="images/完善个人信息/u47.svg",cO="images/完善个人信息/u47_selected.svg",cP="images/完善个人信息/u47_disabled.svg",cQ="images/完善个人信息/u47_selectedDisabled.svg",cR="7a6eed2977d045ac9fc3f42d696a7a4c",cS=803,cT="images/完善个人信息/u48.svg",cU="images/完善个人信息/u48_selected.svg",cV="images/完善个人信息/u48_disabled.svg",cW="images/完善个人信息/u48_selectedDisabled.svg",cX="aef7fb863fe74dfdaa3c77c082cfa751",cY=439,cZ="images/完善个人信息/u49.svg",da="images/完善个人信息/u49_selected.svg",db="images/完善个人信息/u49_disabled.svg",dc="images/完善个人信息/u49_selectedDisabled.svg",dd="4fc25fa8f39647b89869b365090860e2",de="images/完善个人信息/u50.svg",df="images/完善个人信息/u50_selected.svg",dg="images/完善个人信息/u50_disabled.svg",dh="images/完善个人信息/u50_selectedDisabled.svg",di="af2dde81dc534f2caa87a426c3b41a79",dj="images/完善个人信息/u51.svg",dk="images/完善个人信息/u51_selected.svg",dl="images/完善个人信息/u51_disabled.svg",dm="images/完善个人信息/u51_selectedDisabled.svg",dn="82f84a0c40a74c8b8d3e27899dbedf9b",dp=177,dq=68,dr="c9f35713a1cf4e91a0f2dbac65e6fb5c",ds=597,dt=554,du="36",dv=0xFFF19485,dw="48c8b8fd5aa041d38d1515ab529f6048",dx=735,dy="fe2f8ffd525744e797aaf8d516752cdb",dz=751,dA="7a4b6a15e26f4623b1f3760a8bf47d46",dB=180,dC="053e15cc90da4ae684db89a5f5a83767",dD=189,dE="masters",dF="objectPaths",dG="663965fe0e0f4c4c9a5c786b1d84511d",dH="scriptId",dI="u40",dJ="b436a06189014121bb4287cda167b5b6",dK="u41",dL="d0a5ff41231c4a2d928b7ac12c7dc695",dM="u42",dN="c46ed17f94cf45cb9f6c821eb8cfe421",dO="u43",dP="bc16b154524b4c8180618d1e384d7a3e",dQ="u44",dR="dc93da2806c4459281d6fc63b188737c",dS="u45",dT="72389fba5cf0424981f8cd936d33fd5e",dU="u46",dV="f1613d2f55b04c069d6c8d79bc80a2e7",dW="u47",dX="7a6eed2977d045ac9fc3f42d696a7a4c",dY="u48",dZ="aef7fb863fe74dfdaa3c77c082cfa751",ea="u49",eb="4fc25fa8f39647b89869b365090860e2",ec="u50",ed="af2dde81dc534f2caa87a426c3b41a79",ee="u51",ef="82f84a0c40a74c8b8d3e27899dbedf9b",eg="u52",eh="48c8b8fd5aa041d38d1515ab529f6048",ei="u53",ej="fe2f8ffd525744e797aaf8d516752cdb",ek="u54",el="7a4b6a15e26f4623b1f3760a8bf47d46",em="u55",en="053e15cc90da4ae684db89a5f5a83767",eo="u56";
return _creator();
})());

View File

@ -0,0 +1,832 @@
body {
margin:0px;
background-image:none;
position:relative;
left:0px;
width:1389px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
.form_sketch {
border-color:transparent;
background-color:transparent;
}
#base {
position:absolute;
z-index:0;
}
#u40_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1389px;
height:758px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u40 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1389px;
height:758px;
display:flex;
}
#u40 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u40_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u41_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:571px;
height:49px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u41 {
border-width:0px;
position:absolute;
left:409px;
top:108px;
width:571px;
height:49px;
display:flex;
}
#u41 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u41_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u42_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:245px;
height:49px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u42 {
border-width:0px;
position:absolute;
left:409px;
top:247px;
width:245px;
height:49px;
display:flex;
}
#u42 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u42_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u43_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:108px;
height:31px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:27px;
}
#u43 {
border-width:0px;
position:absolute;
left:424px;
top:120px;
width:108px;
height:31px;
display:flex;
opacity:0.34;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:27px;
}
#u43 .text {
position:absolute;
align-self:flex-start;
padding:0px 0px 0px 0px;
box-sizing:border-box;
width:100%;
}
#u43_text {
border-width:0px;
white-space:nowrap;
text-transform:none;
}
#u44_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:108px;
height:31px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:27px;
}
#u44 {
border-width:0px;
position:absolute;
left:425px;
top:256px;
width:108px;
height:31px;
display:flex;
opacity:0.34;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:27px;
}
#u44 .text {
position:absolute;
align-self:flex-start;
padding:0px 0px 0px 0px;
box-sizing:border-box;
width:100%;
}
#u44_text {
border-width:0px;
white-space:nowrap;
text-transform:none;
}
#u45_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:168px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:24px;
}
#u45 {
border-width:0px;
position:absolute;
left:409px;
top:312px;
width:168px;
height:28px;
display:flex;
opacity:0.7;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:24px;
}
#u45 .text {
position:absolute;
align-self:flex-start;
padding:0px 0px 0px 0px;
box-sizing:border-box;
width:100%;
}
#u45_text {
border-width:0px;
white-space:nowrap;
text-transform:none;
}
#u46 label {
left:0px;
width:100%;
}
#u46_img {
border-width:0px;
position:absolute;
left:0px;
top:10px;
width:12px;
height:12px;
}
#u46 {
border-width:0px;
position:absolute;
left:445px;
top:365px;
width:111px;
height:31px;
display:flex;
font-size:27px;
}
#u46 .text {
position:absolute;
align-self:center;
padding:0px 2px 0px 2px;
box-sizing:border-box;
}
#u46_img.selected {
}
#u46.selected {
}
#u46_img.disabled {
}
#u46.disabled {
}
#u46_img.selectedDisabled {
}
#u46.selectedDisabled {
}
#u46_text {
border-width:0px;
position:absolute;
left:14px;
top:0px;
width:95px;
word-wrap:break-word;
text-transform:none;
}
#u46_input {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
opacity:0;
}
#u47 label {
left:0px;
width:100%;
}
#u47_img {
border-width:0px;
position:absolute;
left:0px;
top:10px;
width:12px;
height:12px;
}
#u47 {
border-width:0px;
position:absolute;
left:630px;
top:365px;
width:111px;
height:31px;
display:flex;
font-size:27px;
}
#u47 .text {
position:absolute;
align-self:center;
padding:0px 2px 0px 2px;
box-sizing:border-box;
}
#u47_img.selected {
}
#u47.selected {
}
#u47_img.disabled {
}
#u47.disabled {
}
#u47_img.selectedDisabled {
}
#u47.selectedDisabled {
}
#u47_text {
border-width:0px;
position:absolute;
left:14px;
top:0px;
width:95px;
word-wrap:break-word;
text-transform:none;
}
#u47_input {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
opacity:0;
}
#u48 label {
left:0px;
width:100%;
}
#u48_img {
border-width:0px;
position:absolute;
left:0px;
top:10px;
width:12px;
height:12px;
}
#u48 {
border-width:0px;
position:absolute;
left:803px;
top:365px;
width:111px;
height:31px;
display:flex;
font-size:27px;
}
#u48 .text {
position:absolute;
align-self:center;
padding:0px 2px 0px 2px;
box-sizing:border-box;
}
#u48_img.selected {
}
#u48.selected {
}
#u48_img.disabled {
}
#u48.disabled {
}
#u48_img.selectedDisabled {
}
#u48.selectedDisabled {
}
#u48_text {
border-width:0px;
position:absolute;
left:14px;
top:0px;
width:95px;
word-wrap:break-word;
text-transform:none;
}
#u48_input {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
opacity:0;
}
#u49 label {
left:0px;
width:100%;
}
#u49_img {
border-width:0px;
position:absolute;
left:0px;
top:10px;
width:12px;
height:12px;
}
#u49 {
border-width:0px;
position:absolute;
left:445px;
top:439px;
width:111px;
height:31px;
display:flex;
font-size:27px;
}
#u49 .text {
position:absolute;
align-self:center;
padding:0px 2px 0px 2px;
box-sizing:border-box;
}
#u49_img.selected {
}
#u49.selected {
}
#u49_img.disabled {
}
#u49.disabled {
}
#u49_img.selectedDisabled {
}
#u49.selectedDisabled {
}
#u49_text {
border-width:0px;
position:absolute;
left:14px;
top:0px;
width:95px;
word-wrap:break-word;
text-transform:none;
}
#u49_input {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
opacity:0;
}
#u50 label {
left:0px;
width:100%;
}
#u50_img {
border-width:0px;
position:absolute;
left:0px;
top:10px;
width:12px;
height:12px;
}
#u50 {
border-width:0px;
position:absolute;
left:630px;
top:439px;
width:111px;
height:31px;
display:flex;
font-size:27px;
}
#u50 .text {
position:absolute;
align-self:center;
padding:0px 2px 0px 2px;
box-sizing:border-box;
}
#u50_img.selected {
}
#u50.selected {
}
#u50_img.disabled {
}
#u50.disabled {
}
#u50_img.selectedDisabled {
}
#u50.selectedDisabled {
}
#u50_text {
border-width:0px;
position:absolute;
left:14px;
top:0px;
width:95px;
word-wrap:break-word;
text-transform:none;
}
#u50_input {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
opacity:0;
}
#u51 label {
left:0px;
width:100%;
}
#u51_img {
border-width:0px;
position:absolute;
left:0px;
top:10px;
width:12px;
height:12px;
}
#u51 {
border-width:0px;
position:absolute;
left:803px;
top:439px;
width:111px;
height:31px;
display:flex;
font-size:27px;
}
#u51 .text {
position:absolute;
align-self:center;
padding:0px 2px 0px 2px;
box-sizing:border-box;
}
#u51_img.selected {
}
#u51.selected {
}
#u51_img.disabled {
}
#u51.disabled {
}
#u51_img.selectedDisabled {
}
#u51.selectedDisabled {
}
#u51_text {
border-width:0px;
position:absolute;
left:14px;
top:0px;
width:95px;
word-wrap:break-word;
text-transform:none;
}
#u51_input {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
opacity:0;
}
#u52_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:177px;
height:68px;
background:inherit;
background-color:rgba(241, 148, 133, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:36px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:27px;
}
#u52 {
border-width:0px;
position:absolute;
left:597px;
top:554px;
width:177px;
height:68px;
display:flex;
font-size:27px;
}
#u52 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u52_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u53_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:245px;
height:49px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u53 {
border-width:0px;
position:absolute;
left:735px;
top:247px;
width:245px;
height:49px;
display:flex;
}
#u53 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u53_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u54_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:108px;
height:31px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:27px;
}
#u54 {
border-width:0px;
position:absolute;
left:751px;
top:256px;
width:108px;
height:31px;
display:flex;
opacity:0.34;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:27px;
}
#u54 .text {
position:absolute;
align-self:flex-start;
padding:0px 0px 0px 0px;
box-sizing:border-box;
width:100%;
}
#u54_text {
border-width:0px;
white-space:nowrap;
text-transform:none;
}
#u55_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:571px;
height:49px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u55 {
border-width:0px;
position:absolute;
left:409px;
top:180px;
width:571px;
height:49px;
display:flex;
}
#u55 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u55_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u56_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:108px;
height:31px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:27px;
}
#u56 {
border-width:0px;
position:absolute;
left:425px;
top:189px;
width:108px;
height:31px;
display:flex;
opacity:0.34;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
font-size:27px;
}
#u56 .text {
position:absolute;
align-self:flex-start;
padding:0px 0px 0px 0px;
box-sizing:border-box;
width:100%;
}
#u56_text {
border-width:0px;
white-space:nowrap;
text-transform:none;
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,972 @@
body {
margin:0px;
background-image:none;
position:relative;
left:0px;
width:1189px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
.form_sketch {
border-color:transparent;
background-color:transparent;
}
#base {
position:absolute;
z-index:0;
}
#u257_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1189px;
height:504px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(170, 170, 170, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u257 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1189px;
height:504px;
display:flex;
}
#u257 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u257_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u258_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1189px;
height:56px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(242, 242, 242, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u258 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1189px;
height:56px;
display:flex;
}
#u258 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u258_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u259_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:148px;
height:56px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(242, 242, 242, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:20px;
}
#u259 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:148px;
height:56px;
display:flex;
font-size:20px;
}
#u259 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u259_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u260 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
}
#u261_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:334px;
height:56px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(242, 242, 242, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:20px;
}
#u261 {
border-width:0px;
position:absolute;
left:148px;
top:0px;
width:334px;
height:56px;
display:flex;
font-size:20px;
}
#u261 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u261_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u262_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:334px;
height:56px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(242, 242, 242, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u262 {
border-width:0px;
position:absolute;
left:148px;
top:65px;
width:334px;
height:56px;
display:flex;
}
#u262 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u262_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u263_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:334px;
height:56px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(242, 242, 242, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u263 {
border-width:0px;
position:absolute;
left:148px;
top:121px;
width:334px;
height:56px;
display:flex;
}
#u263 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u263_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u264_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:334px;
height:56px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(242, 242, 242, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u264 {
border-width:0px;
position:absolute;
left:148px;
top:177px;
width:334px;
height:56px;
display:flex;
}
#u264 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u264_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u265 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
}
#u266_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:253px;
height:56px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(242, 242, 242, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:20px;
}
#u266 {
border-width:0px;
position:absolute;
left:482px;
top:0px;
width:253px;
height:56px;
display:flex;
font-size:20px;
}
#u266 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u266_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u267_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:253px;
height:56px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(242, 242, 242, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u267 {
border-width:0px;
position:absolute;
left:482px;
top:65px;
width:253px;
height:56px;
display:flex;
}
#u267 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u267_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u268_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:253px;
height:56px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(242, 242, 242, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u268 {
border-width:0px;
position:absolute;
left:482px;
top:121px;
width:253px;
height:56px;
display:flex;
}
#u268 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u268_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u269_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:253px;
height:56px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(242, 242, 242, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u269 {
border-width:0px;
position:absolute;
left:482px;
top:177px;
width:253px;
height:56px;
display:flex;
}
#u269 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u269_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u270_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:148px;
height:56px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(242, 242, 242, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:20px;
}
#u270 {
border-width:0px;
position:absolute;
left:1036px;
top:0px;
width:148px;
height:56px;
display:flex;
font-size:20px;
}
#u270 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u270_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u271_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:148px;
height:56px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(242, 242, 242, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u271 {
border-width:0px;
position:absolute;
left:0px;
top:65px;
width:148px;
height:56px;
display:flex;
}
#u271 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u271_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u272_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:148px;
height:56px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(242, 242, 242, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u272 {
border-width:0px;
position:absolute;
left:1036px;
top:65px;
width:148px;
height:56px;
display:flex;
}
#u272 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u272_div.selected {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:148px;
height:56px;
background:inherit;
background-color:rgba(170, 170, 170, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(242, 242, 242, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u272.selected {
}
#u272_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u273_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:148px;
height:56px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(242, 242, 242, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u273 {
border-width:0px;
position:absolute;
left:0px;
top:121px;
width:148px;
height:56px;
display:flex;
}
#u273 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u273_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u274_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:148px;
height:56px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(242, 242, 242, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u274 {
border-width:0px;
position:absolute;
left:1036px;
top:121px;
width:148px;
height:56px;
display:flex;
}
#u274 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u274_div.selected {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:148px;
height:56px;
background:inherit;
background-color:rgba(170, 170, 170, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(242, 242, 242, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u274.selected {
}
#u274_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u275_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:148px;
height:56px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(242, 242, 242, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u275 {
border-width:0px;
position:absolute;
left:0px;
top:177px;
width:148px;
height:56px;
display:flex;
}
#u275 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u275_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u276_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:148px;
height:56px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(242, 242, 242, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u276 {
border-width:0px;
position:absolute;
left:1036px;
top:177px;
width:148px;
height:56px;
display:flex;
}
#u276 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u276_div.selected {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:148px;
height:56px;
background:inherit;
background-color:rgba(170, 170, 170, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(242, 242, 242, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u276.selected {
}
#u276_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u277 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
}
#u278_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:301px;
height:56px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(242, 242, 242, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:20px;
}
#u278 {
border-width:0px;
position:absolute;
left:735px;
top:0px;
width:301px;
height:56px;
display:flex;
font-size:20px;
}
#u278 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u278_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u279_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:301px;
height:56px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(242, 242, 242, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u279 {
border-width:0px;
position:absolute;
left:735px;
top:65px;
width:301px;
height:56px;
display:flex;
}
#u279 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u279_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u280_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:301px;
height:56px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(242, 242, 242, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u280 {
border-width:0px;
position:absolute;
left:735px;
top:121px;
width:301px;
height:56px;
display:flex;
}
#u280 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u280_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u281_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:301px;
height:56px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(242, 242, 242, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u281 {
border-width:0px;
position:absolute;
left:735px;
top:177px;
width:301px;
height:56px;
display:flex;
}
#u281 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u281_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,7 @@
$axure.loadCurrentPage(
(function() {
var _ = function() { var r={},a=arguments; for(var i=0; i<a.length; i+=2) r[a[i]]=a[i+1]; return r; }
var _creator = function() { return _(b,c,d,e,f,_(g,h,i,_(j,k,l,k)),m,[],n,_(h,o),p,[q],r,_(s,t,u,v,g,w,x,_(),y,[],z,_(A,B,C,D,E,_(F,G,H,I),J,null,K,L,L,M,N,O,null,P,Q,R,S,T,U,V,Q,W,X,_(F,G,H,Y),Z,Q,ba,bb,_(bc,bd,be,bf,bg,bf,bh,bf,bi,k,H,_(bj,bk,bl,bk,bm,bk,bn,bo)),i,_(j,k,l,k)),bp,_(),bq,_(),br,_(bs,[_(bt,bu,bv,bw,bx,by,u,bz,bA,bz,bB,bC,z,_(i,_(j,bD,l,bE),A,bF),bp,_(),bG,_(),bH,bd),_(bt,bI,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(i,_(j,bD,l,bJ),A,bF),bp,_(),bG,_(),bH,bd),_(bt,bK,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(i,_(j,bL,l,bM),A,bF,bN,_(bO,bP,bQ,bJ)),bp,_(),bG,_(),bH,bd),_(bt,bR,bv,h,bx,bS,u,bT,bA,bT,bB,bC,z,_(),bp,_(),bG,_(),bU,[_(bt,bV,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(i,_(j,bW,l,bX),A,bF,bN,_(bO,bY,bQ,k)),bp,_(),bG,_(),bH,bd),_(bt,bZ,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(i,_(j,ca,l,cb),A,bF,bN,_(bO,cc,bQ,cd)),bp,_(),bG,_(),bH,bd),_(bt,ce,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(i,_(j,bW,l,cf),A,bF,bN,_(bO,bY,bQ,bX)),bp,_(),bG,_(),bH,bd),_(bt,cg,bv,h,bx,ch,u,bz,bA,bz,bB,bC,z,_(i,_(j,ca,l,ci),A,bF,bN,_(bO,cc,bQ,cj)),bp,_(),bG,_(),ck,_(cl,cm),bH,bd),_(bt,cn,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(i,_(j,bW,l,co),A,bF,bN,_(bO,bY,bQ,cp)),bp,_(),bG,_(),bH,bd),_(bt,cq,bv,h,bx,ch,u,bz,bA,bz,bB,bC,z,_(i,_(j,ca,l,ci),A,bF,bN,_(bO,cc,bQ,cr)),bp,_(),bG,_(),ck,_(cl,cm),bH,bd),_(bt,cs,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(i,_(j,ct,l,ci),A,bF,bN,_(bO,cu,bQ,cr)),bp,_(),bG,_(),bH,bd),_(bt,cv,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(i,_(j,ct,l,ci),A,bF,bN,_(bO,cw,bQ,cr)),bp,_(),bG,_(),bH,bd),_(bt,cx,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(i,_(j,ct,l,ci),A,bF,bN,_(bO,cy,bQ,cr)),bp,_(),bG,_(),bH,bd),_(bt,cz,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(i,_(j,ct,l,ci),A,bF,bN,_(bO,cA,bQ,cr)),bp,_(),bG,_(),bH,bd),_(bt,cB,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(i,_(j,ct,l,ci),A,bF,bN,_(bO,cC,bQ,cr)),bp,_(),bG,_(),bH,bd),_(bt,cD,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(i,_(j,ct,l,ci),A,bF,bN,_(bO,cE,bQ,cr)),bp,_(),bG,_(),bH,bd),_(bt,cF,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(i,_(j,ct,l,ci),A,bF,bN,_(bO,cG,bQ,cr)),bp,_(),bG,_(),bH,bd),_(bt,cH,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(i,_(j,ct,l,ci),A,bF,bN,_(bO,cu,bQ,cj)),bp,_(),bG,_(),bH,bd),_(bt,cI,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(i,_(j,ct,l,ci),A,bF,bN,_(bO,cw,bQ,cj)),bp,_(),bG,_(),bH,bd),_(bt,cJ,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(i,_(j,cK,l,cb),A,bF,bN,_(bO,cL,bQ,cd),cM,cN),bp,_(),bG,_(),bH,bd),_(bt,cO,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(i,_(j,cK,l,cb),A,bF,bN,_(bO,cL,bQ,cP)),bp,_(),bG,_(),bH,bd),_(bt,cQ,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(i,_(j,cK,l,cb),A,bF,bN,_(bO,cL,bQ,cP)),bp,_(),bG,_(),bH,bd),_(bt,cR,bv,h,bx,ch,u,bz,bA,bz,bB,bC,z,_(i,_(j,ca,l,ci),A,bF,bN,_(bO,cc,bQ,cS)),bp,_(),bG,_(),ck,_(cl,cm),bH,bd)],cT,bd),_(bt,cU,bv,h,bx,cV,u,cW,bA,cW,bB,bC,z,_(i,_(j,bL,l,bM),bN,_(bO,bP,bQ,bJ)),bp,_(),bG,_(),cX,_(cY,r,b,cZ,da,bC)),_(bt,db,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(i,_(j,dc,l,cP),A,bF,bN,_(bO,bY,bQ,dd)),bp,_(),bG,_(),bH,bd)])),de,_(),df,_(dg,_(dh,di),dj,_(dh,dk),dl,_(dh,dm),dn,_(dh,dp),dq,_(dh,dr),ds,_(dh,dt),du,_(dh,dv),dw,_(dh,dx),dy,_(dh,dz),dA,_(dh,dB),dC,_(dh,dD),dE,_(dh,dF),dG,_(dh,dH),dI,_(dh,dJ),dK,_(dh,dL),dM,_(dh,dN),dO,_(dh,dP),dQ,_(dh,dR),dS,_(dh,dT),dU,_(dh,dV),dW,_(dh,dX),dY,_(dh,dZ),ea,_(dh,eb),ec,_(dh,ed),ee,_(dh,ef)));};
var b="url",c="找大学.html",d="generationDate",e=new Date(1633591959190.41),f="defaultAdaptiveView",g="name",h="",i="size",j="width",k=0,l="height",m="adaptiveViews",n="sketchKeys",o="s0",p="variables",q="OnLoadVariable",r="page",s="packageId",t="bd022dade59147559ebe01eba0d02997",u="type",v="Axure:Page",w="找大学",x="notes",y="annotations",z="style",A="baseStyle",B="627587b6038d43cca051c114ac41ad32",C="pageAlignment",D="center",E="fill",F="fillType",G="solid",H="color",I=0xFFFFFFFF,J="image",K="imageAlignment",L="near",M="imageRepeat",N="auto",O="favicon",P="sketchFactor",Q="0",R="colorStyle",S="appliedColor",T="fontName",U="Applied Font",V="borderWidth",W="borderVisibility",X="borderFill",Y=0xFF797979,Z="cornerRadius",ba="cornerVisibility",bb="outerShadow",bc="on",bd=false,be="offsetX",bf=5,bg="offsetY",bh="blurRadius",bi="spread",bj="r",bk=0,bl="g",bm="b",bn="a",bo=0.349019607843137,bp="adaptiveStyles",bq="interactionMap",br="diagram",bs="objects",bt="id",bu="6ff147696f1e449bac83849c90b01273",bv="label",bw="显示页面",bx="friendlyType",by="Rectangle",bz="vectorShape",bA="styleType",bB="visible",bC=true,bD=1389,bE=674,bF="4b7bfc596114427989e10bb0b557d0ce",bG="imageOverrides",bH="generateCompound",bI="8b9173410b944c70883cd27db698c5b9",bJ=170,bK="0492fb20351548b39ca80d24aebe0fb4",bL=1189,bM=504,bN="location",bO="x",bP=100,bQ="y",bR="1520aa72defc4d27a10722618790a206",bS="Group",bT="layer",bU="objs",bV="def866d3157f418ba010cbf0aa436783",bW=1268,bX=59,bY=61,bZ="c92fdff395b64987970af126868eea2c",ca=65,cb=24,cc=77,cd=10,ce="131886c3e52b4dfd9c8e5d2465e79e45",cf=35,cg="49c5f34faf0d498a9340b7379b2344f3",ch="Shape",ci=19,cj=68,ck="images",cl="normal~",cm="images/找大学/u200.svg",cn="6f966d9020334cadac9883e3b533a377",co=42,cp=94,cq="71040aefd6994010bc7f358b00b90d78",cr=106,cs="fd3e60c4864843218d3cd424aa8bf01b",ct=58,cu=159,cv="0458debd193d4b2880be7a4e509ec64f",cw=233,cx="c45c30ed716e411e890dd0c53048073e",cy=311,cz="1113f268abb44055a10044f6df97cca7",cA=393,cB="e883d00d23b14522a4678520a2bce36f",cC=467,cD="479e9e1f88224e24a1c4f5da957a8187",cE=545,cF="78fff2d6f4cd430ab46b9b7658987f7c",cG=625,cH="4fdfd0f369dd41e3957597417ae41ccf",cI="b90f2e196b7a42f5866a1e63b8845ee7",cJ="5d01069b48b544758cf21806cb37e3bb",cK=1187,cL=142,cM="horizontalAlignment",cN="left",cO="ab2ab43cca374e04a276c057cb5594c8",cP=34,cQ="f297de9b3b394a63841dfe15b07dc2a4",cR="aaf7839cd5c74dce9dce2fd4c9dde448",cS=144,cT="propagate",cU="5759cb7b5c9a468dbdde168cd520dca8",cV="Inline Frame",cW="inlineFrame",cX="target",cY="targetType",cZ="大学列表.html",da="includeVariables",db="5bec8c90b2514db6a91bdbee9f1d7767",dc=1312,dd=136,de="masters",df="objectPaths",dg="6ff147696f1e449bac83849c90b01273",dh="scriptId",di="u193",dj="8b9173410b944c70883cd27db698c5b9",dk="u194",dl="0492fb20351548b39ca80d24aebe0fb4",dm="u195",dn="1520aa72defc4d27a10722618790a206",dp="u196",dq="def866d3157f418ba010cbf0aa436783",dr="u197",ds="c92fdff395b64987970af126868eea2c",dt="u198",du="131886c3e52b4dfd9c8e5d2465e79e45",dv="u199",dw="49c5f34faf0d498a9340b7379b2344f3",dx="u200",dy="6f966d9020334cadac9883e3b533a377",dz="u201",dA="71040aefd6994010bc7f358b00b90d78",dB="u202",dC="fd3e60c4864843218d3cd424aa8bf01b",dD="u203",dE="0458debd193d4b2880be7a4e509ec64f",dF="u204",dG="c45c30ed716e411e890dd0c53048073e",dH="u205",dI="1113f268abb44055a10044f6df97cca7",dJ="u206",dK="e883d00d23b14522a4678520a2bce36f",dL="u207",dM="479e9e1f88224e24a1c4f5da957a8187",dN="u208",dO="78fff2d6f4cd430ab46b9b7658987f7c",dP="u209",dQ="4fdfd0f369dd41e3957597417ae41ccf",dR="u210",dS="b90f2e196b7a42f5866a1e63b8845ee7",dT="u211",dU="5d01069b48b544758cf21806cb37e3bb",dV="u212",dW="ab2ab43cca374e04a276c057cb5594c8",dX="u213",dY="f297de9b3b394a63841dfe15b07dc2a4",dZ="u214",ea="aaf7839cd5c74dce9dce2fd4c9dde448",eb="u215",ec="5759cb7b5c9a468dbdde168cd520dca8",ed="u216",ee="5bec8c90b2514db6a91bdbee9f1d7767",ef="u217";
return _creator();
})());

View File

@ -0,0 +1,922 @@
body {
margin:0px;
background-image:none;
position:relative;
left:0px;
width:1389px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
.form_sketch {
border-color:transparent;
background-color:transparent;
}
#base {
position:absolute;
z-index:0;
}
#u193_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1389px;
height:674px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u193 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1389px;
height:674px;
display:flex;
}
#u193 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u193_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u194_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1389px;
height:170px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u194 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1389px;
height:170px;
display:flex;
}
#u194 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u194_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u195_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1189px;
height:504px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u195 {
border-width:0px;
position:absolute;
left:100px;
top:170px;
width:1189px;
height:504px;
display:flex;
}
#u195 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u195_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u196 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
}
#u197_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1268px;
height:59px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u197 {
border-width:0px;
position:absolute;
left:61px;
top:0px;
width:1268px;
height:59px;
display:flex;
}
#u197 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u197_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u198_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:65px;
height:24px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u198 {
border-width:0px;
position:absolute;
left:77px;
top:10px;
width:65px;
height:24px;
display:flex;
}
#u198 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u198_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u199_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1268px;
height:35px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u199 {
border-width:0px;
position:absolute;
left:61px;
top:59px;
width:1268px;
height:35px;
display:flex;
}
#u199 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u199_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u200_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:65px;
height:19px;
}
#u200 {
border-width:0px;
position:absolute;
left:77px;
top:68px;
width:65px;
height:19px;
display:flex;
}
#u200 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u200_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u201_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1268px;
height:42px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u201 {
border-width:0px;
position:absolute;
left:61px;
top:94px;
width:1268px;
height:42px;
display:flex;
}
#u201 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u201_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u202_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:65px;
height:19px;
}
#u202 {
border-width:0px;
position:absolute;
left:77px;
top:106px;
width:65px;
height:19px;
display:flex;
}
#u202 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u202_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u203_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:58px;
height:19px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u203 {
border-width:0px;
position:absolute;
left:159px;
top:106px;
width:58px;
height:19px;
display:flex;
}
#u203 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u203_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u204_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:58px;
height:19px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u204 {
border-width:0px;
position:absolute;
left:233px;
top:106px;
width:58px;
height:19px;
display:flex;
}
#u204 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u204_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u205_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:58px;
height:19px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u205 {
border-width:0px;
position:absolute;
left:311px;
top:106px;
width:58px;
height:19px;
display:flex;
}
#u205 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u205_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u206_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:58px;
height:19px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u206 {
border-width:0px;
position:absolute;
left:393px;
top:106px;
width:58px;
height:19px;
display:flex;
}
#u206 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u206_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u207_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:58px;
height:19px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u207 {
border-width:0px;
position:absolute;
left:467px;
top:106px;
width:58px;
height:19px;
display:flex;
}
#u207 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u207_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u208_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:58px;
height:19px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u208 {
border-width:0px;
position:absolute;
left:545px;
top:106px;
width:58px;
height:19px;
display:flex;
}
#u208 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u208_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u209_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:58px;
height:19px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u209 {
border-width:0px;
position:absolute;
left:625px;
top:106px;
width:58px;
height:19px;
display:flex;
}
#u209 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u209_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u210_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:58px;
height:19px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u210 {
border-width:0px;
position:absolute;
left:159px;
top:68px;
width:58px;
height:19px;
display:flex;
}
#u210 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u210_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u211_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:58px;
height:19px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u211 {
border-width:0px;
position:absolute;
left:233px;
top:68px;
width:58px;
height:19px;
display:flex;
}
#u211 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u211_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u212_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1187px;
height:24px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
text-align:left;
}
#u212 {
border-width:0px;
position:absolute;
left:142px;
top:10px;
width:1187px;
height:24px;
display:flex;
text-align:left;
}
#u212 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u212_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u213_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1187px;
height:24px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u213 {
border-width:0px;
position:absolute;
left:142px;
top:34px;
width:1187px;
height:24px;
display:flex;
}
#u213 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u213_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u214_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1187px;
height:24px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u214 {
border-width:0px;
position:absolute;
left:142px;
top:34px;
width:1187px;
height:24px;
display:flex;
}
#u214 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u214_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u215_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:65px;
height:19px;
}
#u215 {
border-width:0px;
position:absolute;
left:77px;
top:144px;
width:65px;
height:19px;
display:flex;
}
#u215 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u215_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u216 {
border-width:0px;
position:absolute;
left:100px;
top:170px;
width:1185px;
height:500px;
}
#u216_input {
border-width:2px;
position:absolute;
left:0px;
top:0px;
width:1185px;
height:500px;
overflow:hidden;
}
#u217_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1312px;
height:34px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u217 {
border-width:0px;
position:absolute;
left:61px;
top:136px;
width:1312px;
height:34px;
display:flex;
}
#u217 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u217_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,651 @@
body {
margin:0px;
background-image:none;
position:relative;
left:-209px;
width:970px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
.form_sketch {
border-color:transparent;
background-color:transparent;
}
#base {
position:absolute;
z-index:0;
}
#u95 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
}
#u96 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
}
#u97_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:231px;
height:40px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(170, 170, 170, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:20px;
}
#u97 {
border-width:0px;
position:absolute;
left:218px;
top:49px;
width:231px;
height:40px;
display:flex;
font-size:20px;
}
#u97 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u97_div.mouseOver {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:231px;
height:40px;
background:inherit;
background-color:rgba(128, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(170, 170, 170, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:20px;
}
#u97.mouseOver {
}
#u97_div.selected {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:231px;
height:40px;
background:inherit;
background-color:rgba(52, 120, 247, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(170, 170, 170, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:20px;
}
#u97.selected {
}
#u97_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u98_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:231px;
height:40px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(170, 170, 170, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:20px;
}
#u98 {
border-width:0px;
position:absolute;
left:467px;
top:49px;
width:231px;
height:40px;
display:flex;
font-size:20px;
}
#u98 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u98_div.mouseOver {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:231px;
height:40px;
background:inherit;
background-color:rgba(128, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(170, 170, 170, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:20px;
}
#u98.mouseOver {
}
#u98_div.selected {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:231px;
height:40px;
background:inherit;
background-color:rgba(52, 120, 247, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(170, 170, 170, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:20px;
}
#u98.selected {
}
#u98_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u99_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:231px;
height:40px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(170, 170, 170, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:20px;
}
#u99 {
border-width:0px;
position:absolute;
left:729px;
top:49px;
width:231px;
height:40px;
display:flex;
font-size:20px;
}
#u99 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u99_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u100_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:231px;
height:534px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(215, 215, 215, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u100 {
border-width:0px;
position:absolute;
left:209px;
top:121px;
width:231px;
height:534px;
display:flex;
}
#u100 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u100_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u101_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:176px;
height:534px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(215, 215, 215, 1);
border-left:0px;
border-radius:0px;
border-top-left-radius:0px;
border-bottom-left-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u101 {
border-width:0px;
position:absolute;
left:440px;
top:121px;
width:176px;
height:534px;
display:flex;
}
#u101 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u101_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u102_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:534px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(215, 215, 215, 1);
border-left:0px;
border-radius:0px;
border-top-left-radius:0px;
border-bottom-left-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u102 {
border-width:0px;
position:absolute;
left:616px;
top:121px;
width:387px;
height:534px;
display:flex;
}
#u102 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u102_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u103_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:176px;
height:534px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(215, 215, 215, 1);
border-left:0px;
border-radius:0px;
border-top-left-radius:0px;
border-bottom-left-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u103 {
border-width:0px;
position:absolute;
left:1003px;
top:121px;
width:176px;
height:534px;
display:flex;
}
#u103 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u103_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u104 {
border-width:0px;
position:absolute;
left:218px;
top:164px;
width:213px;
height:491px;
}
#u104_input {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:213px;
height:491px;
overflow:hidden;
}
#u105 {
border-width:0px;
position:absolute;
left:449px;
top:164px;
width:159px;
height:491px;
}
#u105_input {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:159px;
height:491px;
overflow:hidden;
}
#u106 {
border-width:0px;
position:absolute;
left:624px;
top:164px;
width:371px;
height:491px;
}
#u106_input {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:371px;
height:491px;
overflow:hidden;
}
#u107 {
border-width:0px;
position:absolute;
left:1009px;
top:164px;
width:165px;
height:491px;
}
#u107_input {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:165px;
height:491px;
overflow:hidden;
}
#u108 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
}
#u109_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:241px;
height:53px;
}
#u109 {
border-width:0px;
position:absolute;
left:209px;
top:121px;
width:231px;
height:43px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
text-align:center;
}
#u109 .text {
position:absolute;
align-self:center;
padding:0px 0px 0px 0px;
box-sizing:border-box;
width:100%;
}
#u109_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u110_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:176px;
height:43px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
text-align:center;
}
#u110 {
border-width:0px;
position:absolute;
left:440px;
top:121px;
width:176px;
height:43px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
text-align:center;
}
#u110 .text {
position:absolute;
align-self:center;
padding:0px 0px 0px 0px;
box-sizing:border-box;
width:100%;
}
#u110_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u111_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:387px;
height:43px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
text-align:center;
}
#u111 {
border-width:0px;
position:absolute;
left:616px;
top:121px;
width:387px;
height:43px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
text-align:center;
}
#u111 .text {
position:absolute;
align-self:center;
padding:0px 0px 0px 0px;
box-sizing:border-box;
width:100%;
}
#u111_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u112_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:176px;
height:43px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
text-align:center;
}
#u112 {
border-width:0px;
position:absolute;
left:1003px;
top:121px;
width:176px;
height:43px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
text-align:center;
}
#u112 .text {
position:absolute;
align-self:center;
padding:0px 0px 0px 0px;
box-sizing:border-box;
width:100%;
}
#u112_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}

View File

@ -0,0 +1,7 @@
$axure.loadCurrentPage(
(function() {
var _ = function() { var r={},a=arguments; for(var i=0; i<a.length; i+=2) r[a[i]]=a[i+1]; return r; }
var _creator = function() { return _(b,c,d,e,f,_(g,h,i,_(j,k,l,k)),m,[],n,_(h,o),p,[q],r,_(s,t,u,v,g,w,x,_(),y,[],z,_(A,B,C,D,E,_(F,G,H,I),J,null,K,L,L,M,N,O,null,P,Q,R,S,T,U,V,Q,W,X,_(F,G,H,Y),Z,Q,ba,bb,_(bc,bd,be,bf,bg,bf,bh,bf,bi,k,H,_(bj,bk,bl,bk,bm,bk,bn,bo)),i,_(j,k,l,k)),bp,_(),bq,_(),br,_(bs,[_(bt,bu,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bC,l,bD),A,bE),bp,_(),bF,_(),bG,bd),_(bt,bH,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bI,bJ,i,_(j,bK,l,bL),A,bM,bN,_(bO,bP,bQ,bR)),bp,_(),bF,_(),bG,bd),_(bt,bS,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bT,l,bU),A,bE,bN,_(bO,bV,bQ,bW),bX,bY),bp,_(),bF,_(),bG,bd),_(bt,bZ,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bT,l,bU),A,bE,bN,_(bO,bV,bQ,ca)),bp,_(),bF,_(),bG,bd),_(bt,cb,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bT,l,cc),A,bE,bN,_(bO,bV,bQ,cd),ce,cf,E,_(F,G,H,cg)),bp,_(),bF,_(),bG,bd),_(bt,ch,bv,h,bw,ci,u,by,bz,by,bA,bB,z,_(i,_(j,cj,l,ck),A,cl,bN,_(bO,cm,bQ,cn)),bp,_(),bF,_(),co,_(cp,cq),bG,bd),_(bt,cr,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bI,bJ,i,_(j,cs,l,bL),A,bM,bN,_(bO,ct,bQ,cu),bX,cv),bp,_(),bF,_(),bG,bd),_(bt,cw,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bI,bJ,i,_(j,cx,l,bL),A,bM,bN,_(bO,ct,bQ,cy),bX,cv),bp,_(),bF,_(),bG,bd)])),cz,_(),cA,_(cB,_(cC,cD),cE,_(cC,cF),cG,_(cC,cH),cI,_(cC,cJ),cK,_(cC,cL),cM,_(cC,cN),cO,_(cC,cP),cQ,_(cC,cR)));};
var b="url",c="注册页面.html",d="generationDate",e=new Date(1633591958943.39),f="defaultAdaptiveView",g="name",h="",i="size",j="width",k=0,l="height",m="adaptiveViews",n="sketchKeys",o="s0",p="variables",q="OnLoadVariable",r="page",s="packageId",t="6876f6bc08a641e1b18817fc182e94f5",u="type",v="Axure:Page",w="注册页面",x="notes",y="annotations",z="style",A="baseStyle",B="627587b6038d43cca051c114ac41ad32",C="pageAlignment",D="center",E="fill",F="fillType",G="solid",H="color",I=0xFFFFFFFF,J="image",K="imageAlignment",L="near",M="imageRepeat",N="auto",O="favicon",P="sketchFactor",Q="0",R="colorStyle",S="appliedColor",T="fontName",U="Applied Font",V="borderWidth",W="borderVisibility",X="borderFill",Y=0xFF797979,Z="cornerRadius",ba="cornerVisibility",bb="outerShadow",bc="on",bd=false,be="offsetX",bf=5,bg="offsetY",bh="blurRadius",bi="spread",bj="r",bk=0,bl="g",bm="b",bn="a",bo=0.349019607843137,bp="adaptiveStyles",bq="interactionMap",br="diagram",bs="objects",bt="id",bu="e3f08e588c7947cfb709617388ec6dd2",bv="label",bw="friendlyType",bx="Rectangle",by="vectorShape",bz="styleType",bA="visible",bB=true,bC=1389,bD=758,bE="4b7bfc596114427989e10bb0b557d0ce",bF="imageOverrides",bG="generateCompound",bH="f8f4648cc13c4a278df2ce6b3cbdfbe7",bI="fontWeight",bJ="700",bK=128,bL=37,bM="1111111151944dfba49f67fd55eb1f88",bN="location",bO="x",bP=165,bQ="y",bR=185,bS="4cddc03eee584517bf6f3a030a7a743c",bT=599,bU=60,bV=425,bW=242,bX="opacity",bY="0.48",bZ="3d19ff6c23c54f9f89a297b56583d651",ca=312,cb="48e4d1c4205c4ae8a711e84bb6e311cd",cc=48,cd=388,ce="fontSize",cf="26px",cg=0xFFF19485,ch="a6354b1eceb248ee80a82b9d02da1e30",ci="Placeholder",cj=127,ck=105,cl="c50e74f669b24b37bd9c18da7326bccd",cm=670,cn=469,co="images",cp="normal~",cq="images/注册页面/u37.svg",cr="4321cf0819b544a49031cdce52e4c1f3",cs=96,ct=444,cu=254,cv="0.5",cw="04a8d0bfb287411496440ef09d832793",cx=64,cy=324,cz="masters",cA="objectPaths",cB="e3f08e588c7947cfb709617388ec6dd2",cC="scriptId",cD="u32",cE="f8f4648cc13c4a278df2ce6b3cbdfbe7",cF="u33",cG="4cddc03eee584517bf6f3a030a7a743c",cH="u34",cI="3d19ff6c23c54f9f89a297b56583d651",cJ="u35",cK="48e4d1c4205c4ae8a711e84bb6e311cd",cL="u36",cM="a6354b1eceb248ee80a82b9d02da1e30",cN="u37",cO="4321cf0819b544a49031cdce52e4c1f3",cP="u38",cQ="04a8d0bfb287411496440ef09d832793",cR="u39";
return _creator();
})());

View File

@ -0,0 +1,337 @@
body {
margin:0px;
background-image:none;
position:relative;
left:0px;
width:1389px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
.form_sketch {
border-color:transparent;
background-color:transparent;
}
#base {
position:absolute;
z-index:0;
}
#u32_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1389px;
height:758px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u32 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1389px;
height:758px;
display:flex;
}
#u32 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u32_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u33_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:128px;
height:37px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
}
#u33 {
border-width:0px;
position:absolute;
left:165px;
top:185px;
width:128px;
height:37px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
}
#u33 .text {
position:absolute;
align-self:flex-start;
padding:0px 0px 0px 0px;
box-sizing:border-box;
width:100%;
}
#u33_text {
border-width:0px;
white-space:nowrap;
text-transform:none;
}
#u34_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:599px;
height:60px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u34 {
border-width:0px;
position:absolute;
left:425px;
top:242px;
width:599px;
height:60px;
display:flex;
opacity:0.48;
}
#u34 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u34_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u35_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:599px;
height:60px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u35 {
border-width:0px;
position:absolute;
left:425px;
top:312px;
width:599px;
height:60px;
display:flex;
}
#u35 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u35_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u36_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:599px;
height:48px;
background:inherit;
background-color:rgba(241, 148, 133, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:26px;
}
#u36 {
border-width:0px;
position:absolute;
left:425px;
top:388px;
width:599px;
height:48px;
display:flex;
font-size:26px;
}
#u36 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u36_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u37_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:127px;
height:105px;
}
#u37 {
border-width:0px;
position:absolute;
left:670px;
top:469px;
width:127px;
height:105px;
display:flex;
}
#u37 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u37_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u38_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:96px;
height:37px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
}
#u38 {
border-width:0px;
position:absolute;
left:444px;
top:254px;
width:96px;
height:37px;
display:flex;
opacity:0.5;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
}
#u38 .text {
position:absolute;
align-self:flex-start;
padding:0px 0px 0px 0px;
box-sizing:border-box;
width:100%;
}
#u38_text {
border-width:0px;
white-space:nowrap;
text-transform:none;
}
#u39_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:64px;
height:37px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
}
#u39 {
border-width:0px;
position:absolute;
left:444px;
top:324px;
width:64px;
height:37px;
display:flex;
opacity:0.5;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
}
#u39 .text {
position:absolute;
align-self:flex-start;
padding:0px 0px 0px 0px;
box-sizing:border-box;
width:100%;
}
#u39_text {
border-width:0px;
white-space:nowrap;
text-transform:none;
}

View File

@ -0,0 +1,7 @@
$axure.loadCurrentPage(
(function() {
var _ = function() { var r={},a=arguments; for(var i=0; i<a.length; i+=2) r[a[i]]=a[i+1]; return r; }
var _creator = function() { return _(b,c,d,e,f,_(g,h,i,_(j,k,l,k)),m,[],n,_(h,o),p,[q],r,_(s,t,u,v,g,w,x,_(),y,[],z,_(A,B,C,D,E,_(F,G,H,I),J,null,K,L,L,M,N,O,null,P,Q,R,S,T,U,V,Q,W,X,_(F,G,H,Y),Z,Q,ba,bb,_(bc,bd,be,bf,bg,bf,bh,bf,bi,k,H,_(bj,bk,bl,bk,bm,bk,bn,bo)),i,_(j,k,l,k)),bp,_(),bq,_(),br,_(bs,[_(bt,bu,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bC,l,bD),A,bE),bp,_(),bF,_(),bG,bd),_(bt,bH,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bI,l,bJ),A,bE,bK,_(bL,bM,bN,bO)),bp,_(),bF,_(),bG,bd),_(bt,bP,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(T,bQ,bR,bS,i,_(j,bI,l,bT),A,bE,bK,_(bL,bM,bN,bU),bV,bW,E,_(F,G,H,bX)),bp,_(),bF,_(),bG,bd),_(bt,bY,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(i,_(j,bI,l,bJ),A,bE,bK,_(bL,bM,bN,bZ)),bp,_(),bF,_(),bG,bd),_(bt,ca,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bR,bS,i,_(j,cb,l,cc),A,cd,bK,_(bL,ce,bN,cf),cg,ch),bp,_(),bF,_(),bG,bd),_(bt,ci,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bR,bS,i,_(j,cj,l,cc),A,cd,bK,_(bL,ce,bN,ck),cg,cl),bp,_(),bF,_(),bG,bd),_(bt,cm,bv,h,bw,cn,u,by,bz,by,bA,bB,z,_(i,_(j,co,l,cp),A,cq,bK,_(bL,cr,bN,cs)),bp,_(),bF,_(),ct,_(cu,cv),bG,bd),_(bt,cw,bv,h,bw,bx,u,by,bz,by,bA,bB,z,_(bR,bS,i,_(j,cx,l,cc),A,cd,bK,_(bL,cy,bN,cz)),bp,_(),bF,_(),bG,bd),_(bt,cA,bv,h,bw,cB,u,by,bz,cC,bA,bB,z,_(i,_(j,cD,l,cE),A,cF,bK,_(bL,cG,bN,cH),cI,cJ),bp,_(),bF,_(),ct,_(cu,cK),bG,bd),_(bt,cL,bv,h,bw,cB,u,by,bz,cC,bA,bB,z,_(i,_(j,cD,l,cE),A,cF,bK,_(bL,cM,bN,cN),cI,cJ),bp,_(),bF,_(),ct,_(cu,cK),bG,bd)])),cO,_(),cP,_(cQ,_(cR,cS),cT,_(cR,cU),cV,_(cR,cW),cX,_(cR,cY),cZ,_(cR,da),db,_(cR,dc),dd,_(cR,de),df,_(cR,dg),dh,_(cR,di),dj,_(cR,dk)));};
var b="url",c="登录页面.html",d="generationDate",e=new Date(1633591958930.39),f="defaultAdaptiveView",g="name",h="",i="size",j="width",k=0,l="height",m="adaptiveViews",n="sketchKeys",o="s0",p="variables",q="OnLoadVariable",r="page",s="packageId",t="f8051fc5898a445b9ae67e11accbbe2f",u="type",v="Axure:Page",w="登录页面",x="notes",y="annotations",z="style",A="baseStyle",B="627587b6038d43cca051c114ac41ad32",C="pageAlignment",D="center",E="fill",F="fillType",G="solid",H="color",I=0xFFFFFFFF,J="image",K="imageAlignment",L="near",M="imageRepeat",N="auto",O="favicon",P="sketchFactor",Q="0",R="colorStyle",S="appliedColor",T="fontName",U="Applied Font",V="borderWidth",W="borderVisibility",X="borderFill",Y=0xFF797979,Z="cornerRadius",ba="cornerVisibility",bb="outerShadow",bc="on",bd=false,be="offsetX",bf=5,bg="offsetY",bh="blurRadius",bi="spread",bj="r",bk=0,bl="g",bm="b",bn="a",bo=0.349019607843137,bp="adaptiveStyles",bq="interactionMap",br="diagram",bs="objects",bt="id",bu="29fcabbfbee04bfd9618ec4673732eaa",bv="label",bw="friendlyType",bx="Rectangle",by="vectorShape",bz="styleType",bA="visible",bB=true,bC=1389,bD=758,bE="4b7bfc596114427989e10bb0b557d0ce",bF="imageOverrides",bG="generateCompound",bH="eaa37e0bc3f44dac98275166f9ef654c",bI=571,bJ=49,bK="location",bL="x",bM=421,bN="y",bO=259,bP="14f2bf7a12034bc7983dd45352d722bd",bQ="'Lobster Bold', 'Lobster', sans-serif",bR="fontWeight",bS="700",bT=57,bU=399,bV="fontSize",bW="26px",bX=0xFFF19485,bY="9321877fa6064b4d892679fc2eaa12dd",bZ=330,ca="bf5bff9087514d31a92c4f1bf61f6026",cb=96,cc=37,cd="1111111151944dfba49f67fd55eb1f88",ce=434,cf=265,cg="opacity",ch="0.34",ci="ffc45ed3f49c48328212ded51818a921",cj=64,ck=336,cl="0.32",cm="19764a42ae0a406c8696a2b19b4c4aff",cn="Placeholder",co=59,cp=58,cq="c50e74f669b24b37bd9c18da7326bccd",cr=578,cs=115,ct="images",cu="normal~",cv="images/登录页面/u28.svg",cw="9a985231ab50458d91cf5a865363e206",cx=192,cy=644,cz=126,cA="90cffb88db5a40f5816f65bdfcdb3a71",cB="Line",cC="horizontalLine",cD=573,cE=1,cF="619b2148ccc1497285562264d51992f9",cG=420,cH=237,cI="rotation",cJ="-0.0832631750202112",cK="images/登录页面/u30.svg",cL="948def5886254802b24283cf2a49e1d1",cM=419,cN=526,cO="masters",cP="objectPaths",cQ="29fcabbfbee04bfd9618ec4673732eaa",cR="scriptId",cS="u22",cT="eaa37e0bc3f44dac98275166f9ef654c",cU="u23",cV="14f2bf7a12034bc7983dd45352d722bd",cW="u24",cX="9321877fa6064b4d892679fc2eaa12dd",cY="u25",cZ="bf5bff9087514d31a92c4f1bf61f6026",da="u26",db="ffc45ed3f49c48328212ded51818a921",dc="u27",dd="19764a42ae0a406c8696a2b19b4c4aff",de="u28",df="9a985231ab50458d91cf5a865363e206",dg="u29",dh="90cffb88db5a40f5816f65bdfcdb3a71",di="u30",dj="948def5886254802b24283cf2a49e1d1",dk="u31";
return _creator();
})());

View File

@ -0,0 +1,410 @@
body {
margin:0px;
background-image:none;
position:relative;
left:0px;
width:1389px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
.form_sketch {
border-color:transparent;
background-color:transparent;
}
#base {
position:absolute;
z-index:0;
}
#u22_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1389px;
height:758px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u22 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1389px;
height:758px;
display:flex;
}
#u22 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u22_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u23_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:571px;
height:49px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u23 {
border-width:0px;
position:absolute;
left:421px;
top:259px;
width:571px;
height:49px;
display:flex;
}
#u23 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u23_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u24_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:571px;
height:57px;
background:inherit;
background-color:rgba(241, 148, 133, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Lobster Bold', 'Lobster', sans-serif;
font-weight:700;
font-style:normal;
font-size:26px;
}
#u24 {
border-width:0px;
position:absolute;
left:421px;
top:399px;
width:571px;
height:57px;
display:flex;
font-family:'Lobster Bold', 'Lobster', sans-serif;
font-weight:700;
font-style:normal;
font-size:26px;
}
#u24 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u24_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u25_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:571px;
height:49px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u25 {
border-width:0px;
position:absolute;
left:421px;
top:330px;
width:571px;
height:49px;
display:flex;
}
#u25 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u25_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u26_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:96px;
height:37px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
}
#u26 {
border-width:0px;
position:absolute;
left:434px;
top:265px;
width:96px;
height:37px;
display:flex;
opacity:0.34;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
}
#u26 .text {
position:absolute;
align-self:flex-start;
padding:0px 0px 0px 0px;
box-sizing:border-box;
width:100%;
}
#u26_text {
border-width:0px;
white-space:nowrap;
text-transform:none;
}
#u27_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:64px;
height:37px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
}
#u27 {
border-width:0px;
position:absolute;
left:434px;
top:336px;
width:64px;
height:37px;
display:flex;
opacity:0.32;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
}
#u27 .text {
position:absolute;
align-self:flex-start;
padding:0px 0px 0px 0px;
box-sizing:border-box;
width:100%;
}
#u27_text {
border-width:0px;
white-space:nowrap;
text-transform:none;
}
#u28_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:59px;
height:58px;
}
#u28 {
border-width:0px;
position:absolute;
left:578px;
top:115px;
width:59px;
height:58px;
display:flex;
}
#u28 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u28_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u29_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:192px;
height:37px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
}
#u29 {
border-width:0px;
position:absolute;
left:644px;
top:126px;
width:192px;
height:37px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
}
#u29 .text {
position:absolute;
align-self:flex-start;
padding:0px 0px 0px 0px;
box-sizing:border-box;
width:100%;
}
#u29_text {
border-width:0px;
white-space:nowrap;
text-transform:none;
}
#u30_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:574px;
height:2px;
}
#u30 {
border-width:0px;
position:absolute;
left:420px;
top:237px;
width:573px;
height:1px;
display:flex;
-webkit-transform:rotate(-0.0832631750202112deg);
-moz-transform:rotate(-0.0832631750202112deg);
-ms-transform:rotate(-0.0832631750202112deg);
transform:rotate(-0.0832631750202112deg);
}
#u30 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u30_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u31_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:574px;
height:2px;
}
#u31 {
border-width:0px;
position:absolute;
left:419px;
top:526px;
width:573px;
height:1px;
display:flex;
-webkit-transform:rotate(-0.0832631750202112deg);
-moz-transform:rotate(-0.0832631750202112deg);
-ms-transform:rotate(-0.0832631750202112deg);
transform:rotate(-0.0832631750202112deg);
}
#u31 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u31_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,875 @@
body {
margin:0px;
background-image:none;
position:relative;
left:0px;
width:1389px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
.form_sketch {
border-color:transparent;
background-color:transparent;
}
#base {
position:absolute;
z-index:0;
}
#u0 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
}
#u1 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
}
#u2 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
}
#u3 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
}
#u4 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
}
#u5 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
}
#u6_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1389px;
height:674px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u6 {
border-width:0px;
position:absolute;
left:0px;
top:84px;
width:1389px;
height:674px;
display:flex;
}
#u6 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u6_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u7_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1389px;
height:84px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u7 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1389px;
height:84px;
display:flex;
}
#u7 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u7_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u8 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:0px;
height:0px;
}
#u9 {
border-width:0px;
position:absolute;
left:0px;
top:84px;
width:1385px;
height:670px;
}
#u9_input {
border-width:2px;
position:absolute;
left:0px;
top:0px;
width:1385px;
height:670px;
overflow:auto;
}
#u10_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:99px;
height:53px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-left:0px;
border-top:0px;
border-right:0px;
border-bottom:0px;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:23px;
}
#u10 {
border-width:0px;
position:absolute;
left:227px;
top:16px;
width:99px;
height:53px;
display:flex;
font-size:23px;
}
#u10 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u10_div.mouseOver {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:99px;
height:53px;
background:inherit;
background-color:rgba(128, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-left:0px;
border-top:0px;
border-right:0px;
border-bottom:0px;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:23px;
}
#u10.mouseOver {
}
#u10_div.selected {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:99px;
height:53px;
background:inherit;
background-color:rgba(52, 120, 247, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-left:0px;
border-top:0px;
border-right:0px;
border-bottom:0px;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:23px;
}
#u10.selected {
}
#u10_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u11_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:99px;
height:53px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-left:0px;
border-top:0px;
border-right:0px;
border-bottom:0px;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:23px;
}
#u11 {
border-width:0px;
position:absolute;
left:374px;
top:16px;
width:99px;
height:53px;
display:flex;
font-size:23px;
}
#u11 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u11_div.mouseOver {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:99px;
height:53px;
background:inherit;
background-color:rgba(128, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-left:0px;
border-top:0px;
border-right:0px;
border-bottom:0px;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:23px;
}
#u11.mouseOver {
}
#u11_div.selected {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:99px;
height:53px;
background:inherit;
background-color:rgba(52, 120, 247, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-left:0px;
border-top:0px;
border-right:0px;
border-bottom:0px;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:23px;
}
#u11.selected {
}
#u11_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u12_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:99px;
height:53px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-left:0px;
border-top:0px;
border-right:0px;
border-bottom:0px;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:23px;
}
#u12 {
border-width:0px;
position:absolute;
left:530px;
top:16px;
width:99px;
height:53px;
display:flex;
font-size:23px;
}
#u12 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u12_div.mouseOver {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:99px;
height:53px;
background:inherit;
background-color:rgba(128, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-left:0px;
border-top:0px;
border-right:0px;
border-bottom:0px;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:23px;
}
#u12.mouseOver {
}
#u12_div.selected {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:99px;
height:53px;
background:inherit;
background-color:rgba(2, 167, 240, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-left:0px;
border-top:0px;
border-right:0px;
border-bottom:0px;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:23px;
}
#u12.selected {
}
#u12_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u13_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:99px;
height:53px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-left:0px;
border-top:0px;
border-right:0px;
border-bottom:0px;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:23px;
}
#u13 {
border-width:0px;
position:absolute;
left:684px;
top:16px;
width:99px;
height:53px;
display:flex;
font-size:23px;
}
#u13 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u13_div.mouseOver {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:99px;
height:53px;
background:inherit;
background-color:rgba(128, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-left:0px;
border-top:0px;
border-right:0px;
border-bottom:0px;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:23px;
}
#u13.mouseOver {
}
#u13_div.selected {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:99px;
height:53px;
background:inherit;
background-color:rgba(52, 120, 247, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-left:0px;
border-top:0px;
border-right:0px;
border-bottom:0px;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-size:23px;
}
#u13.selected {
}
#u13_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
}
#u14_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:48px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
}
#u14 {
border-width:0px;
position:absolute;
left:1015px;
top:31px;
width:48px;
height:28px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
}
#u14 .text {
position:absolute;
align-self:flex-start;
padding:0px 0px 0px 0px;
box-sizing:border-box;
width:100%;
}
#u14_div.mouseOver {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:48px;
height:28px;
background:inherit;
background-color:rgba(128, 255, 255, 1);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
}
#u14.mouseOver {
}
#u14_text {
border-width:0px;
white-space:nowrap;
text-transform:none;
}
#u15_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:48px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
}
#u15 {
border-width:0px;
position:absolute;
left:1072px;
top:31px;
width:48px;
height:28px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
}
#u15 .text {
position:absolute;
align-self:flex-start;
padding:0px 0px 0px 0px;
box-sizing:border-box;
width:100%;
}
#u15_div.mouseOver {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:48px;
height:28px;
background:inherit;
background-color:rgba(128, 255, 255, 1);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
}
#u15.mouseOver {
}
#u15_text {
border-width:0px;
white-space:nowrap;
text-transform:none;
}
#u16_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:34px;
height:41px;
}
#u16 {
border-width:0px;
position:absolute;
left:1144px;
top:22px;
width:34px;
height:41px;
display:flex;
}
#u16 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u16_img.mouseOver {
}
#u16.mouseOver {
}
#u16_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u17_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:50px;
height:39px;
}
#u17 {
border-width:0px;
position:absolute;
left:1216px;
top:27px;
width:50px;
height:39px;
display:flex;
}
#u17 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u17_img.mouseOver {
}
#u17.mouseOver {
}
#u17_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u18_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:96px;
height:28px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
}
#u18 {
border-width:0px;
position:absolute;
left:1278px;
top:35px;
width:96px;
height:28px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
}
#u18 .text {
position:absolute;
align-self:flex-start;
padding:0px 0px 0px 0px;
box-sizing:border-box;
width:100%;
}
#u18_text {
border-width:0px;
white-space:nowrap;
text-transform:none;
}
#u19_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:50px;
height:40px;
}
#u19 {
border-width:0px;
position:absolute;
left:47px;
top:23px;
width:50px;
height:40px;
display:flex;
}
#u19 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u19_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u20_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:2px;
height:59px;
}
#u20 {
border-width:0px;
position:absolute;
left:1063px;
top:16px;
width:1px;
height:58px;
display:flex;
}
#u20 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u20_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u21_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:2px;
height:59px;
}
#u21 {
border-width:0px;
position:absolute;
left:1072px;
top:16px;
width:1px;
height:58px;
display:flex;
}
#u21 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u21_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}

View File

@ -0,0 +1,7 @@
$axure.loadCurrentPage(
(function() {
var _ = function() { var r={},a=arguments; for(var i=0; i<a.length; i+=2) r[a[i]]=a[i+1]; return r; }
var _creator = function() { return _(b,c,d,e,f,_(g,h,i,_(j,k,l,k)),m,[],n,_(h,o),p,[q],r,_(s,t,u,v,g,w,x,_(),y,[],z,_(A,B,C,D,E,_(F,G,H,I),J,null,K,L,L,M,N,O,null,P,Q,R,S,T,U,V,Q,W,X,_(F,G,H,Y),Z,Q,ba,bb,_(bc,bd,be,bf,bg,bf,bh,bf,bi,k,H,_(bj,bk,bl,bk,bm,bk,bn,bo)),i,_(j,k,l,k)),bp,_(),bq,_(),br,_(bs,[_(bt,bu,bv,bw,bx,by,u,bz,bA,bz,bB,bC,z,_(i,_(j,bD,l,bE),A,bF),bp,_(),bG,_(),bH,bd),_(bt,bI,bv,h,bx,by,u,bz,bA,bz,bB,bC,z,_(bJ,bK,i,_(j,bL,l,bM),A,bN,bO,_(bP,bQ,bR,bS)),bp,_(),bG,_(),bH,bd),_(bt,bT,bv,h,bx,bU,u,bV,bA,bV,bB,bC,z,_(i,_(j,bW,l,bX),A,bY,J,null,bO,_(bP,bZ,bR,bS)),bp,_(),bG,_(),ca,_(cb,cc)),_(bt,cd,bv,h,bx,ce,u,bz,bA,bz,bB,bC,z,_(i,_(j,cf,l,cg),A,ch,bO,_(bP,ci,bR,cj)),bp,_(),bG,_(),ca,_(cb,ck),bH,bd),_(bt,cl,bv,h,bx,bU,u,bV,bA,bV,bB,bC,z,_(i,_(j,bW,l,bX),A,bY,J,null,bO,_(bP,bZ,bR,cm)),bp,_(),bG,_(),ca,_(cb,cc)),_(bt,cn,bv,h,bx,bU,u,bV,bA,bV,bB,bC,z,_(i,_(j,bW,l,bX),A,bY,J,null,bO,_(bP,bZ,bR,co)),bp,_(),bG,_(),ca,_(cb,cc))])),cp,_(),cq,_(cr,_(cs,ct),cu,_(cs,cv),cw,_(cs,cx),cy,_(cs,cz),cA,_(cs,cB),cC,_(cs,cD)));};
var b="url",c="高考资讯.html",d="generationDate",e=new Date(1633591958997.4),f="defaultAdaptiveView",g="name",h="",i="size",j="width",k=0,l="height",m="adaptiveViews",n="sketchKeys",o="s0",p="variables",q="OnLoadVariable",r="page",s="packageId",t="99054421e0e847cf998287fb87ee36aa",u="type",v="Axure:Page",w="高考资讯",x="notes",y="annotations",z="style",A="baseStyle",B="627587b6038d43cca051c114ac41ad32",C="pageAlignment",D="center",E="fill",F="fillType",G="solid",H="color",I=0xFFFFFFFF,J="image",K="imageAlignment",L="near",M="imageRepeat",N="auto",O="favicon",P="sketchFactor",Q="0",R="colorStyle",S="appliedColor",T="fontName",U="Applied Font",V="borderWidth",W="borderVisibility",X="borderFill",Y=0xFF797979,Z="cornerRadius",ba="cornerVisibility",bb="outerShadow",bc="on",bd=false,be="offsetX",bf=5,bg="offsetY",bh="blurRadius",bi="spread",bj="r",bk=0,bl="g",bm="b",bn="a",bo=0.349019607843137,bp="adaptiveStyles",bq="interactionMap",br="diagram",bs="objects",bt="id",bu="1a2eae4ccf90495bbd746f868c1e782a",bv="label",bw="显示页面",bx="friendlyType",by="Rectangle",bz="vectorShape",bA="styleType",bB="visible",bC=true,bD=1389,bE=674,bF="4b7bfc596114427989e10bb0b557d0ce",bG="imageOverrides",bH="generateCompound",bI="5b0970a8486747729fb99d850dd6af80",bJ="fontWeight",bK="700",bL=192,bM=37,bN="1111111151944dfba49f67fd55eb1f88",bO="location",bP="x",bQ=560,bR="y",bS=44,bT="93348ee9d8e54087bfdd9597454e8079",bU="Image",bV="imageBox",bW=300,bX=170,bY="75a91ee5b9d042cfa01b8d565fe289c0",bZ=47,ca="images",cb="normal~",cc="images/高考资讯/u59.svg",cd="abe97604af0648a5a2ca530ed06c854e",ce="Placeholder",cf=910,cg=482,ch="c50e74f669b24b37bd9c18da7326bccd",ci=405,cj=133,ck="images/高考资讯/u60.svg",cl="cea9603c4ba644bdb0d5d827ebc49594",cm=252,cn="38e624fbd4cb4095b939dab44da56765",co=470,cp="masters",cq="objectPaths",cr="1a2eae4ccf90495bbd746f868c1e782a",cs="scriptId",ct="u57",cu="5b0970a8486747729fb99d850dd6af80",cv="u58",cw="93348ee9d8e54087bfdd9597454e8079",cx="u59",cy="abe97604af0648a5a2ca530ed06c854e",cz="u60",cA="cea9603c4ba644bdb0d5d827ebc49594",cB="u61",cC="38e624fbd4cb4095b939dab44da56765",cD="u62";
return _creator();
})());

View File

@ -0,0 +1,220 @@
body {
margin:0px;
background-image:none;
position:relative;
left:0px;
width:1389px;
margin-left:auto;
margin-right:auto;
text-align:left;
}
.form_sketch {
border-color:transparent;
background-color:transparent;
}
#base {
position:absolute;
z-index:0;
}
#u57_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1389px;
height:674px;
background:inherit;
background-color:rgba(255, 255, 255, 1);
box-sizing:border-box;
border-width:1px;
border-style:solid;
border-color:rgba(121, 121, 121, 1);
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
}
#u57 {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:1389px;
height:674px;
display:flex;
}
#u57 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u57_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u58_div {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:192px;
height:37px;
background:inherit;
background-color:rgba(255, 255, 255, 0);
border:none;
border-radius:0px;
-moz-box-shadow:none;
-webkit-box-shadow:none;
box-shadow:none;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
}
#u58 {
border-width:0px;
position:absolute;
left:560px;
top:44px;
width:192px;
height:37px;
display:flex;
font-family:'Arial Negreta', 'Arial Normal', 'Arial', sans-serif;
font-weight:700;
font-style:normal;
}
#u58 .text {
position:absolute;
align-self:flex-start;
padding:0px 0px 0px 0px;
box-sizing:border-box;
width:100%;
}
#u58_text {
border-width:0px;
white-space:nowrap;
text-transform:none;
}
#u59_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:300px;
height:170px;
}
#u59 {
border-width:0px;
position:absolute;
left:47px;
top:44px;
width:300px;
height:170px;
display:flex;
}
#u59 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u59_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u60_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:910px;
height:482px;
}
#u60 {
border-width:0px;
position:absolute;
left:405px;
top:133px;
width:910px;
height:482px;
display:flex;
}
#u60 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u60_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u61_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:300px;
height:170px;
}
#u61 {
border-width:0px;
position:absolute;
left:47px;
top:252px;
width:300px;
height:170px;
display:flex;
}
#u61 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u61_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}
#u62_img {
border-width:0px;
position:absolute;
left:0px;
top:0px;
width:300px;
height:170px;
}
#u62 {
border-width:0px;
position:absolute;
left:47px;
top:470px;
width:300px;
height:170px;
display:flex;
}
#u62 .text {
position:absolute;
align-self:center;
padding:2px 2px 2px 2px;
box-sizing:border-box;
width:100%;
}
#u62_text {
border-width:0px;
word-wrap:break-word;
text-transform:none;
visibility:hidden;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="12px" height="12px" viewBox="445 374.5 12 12" xmlns="http://www.w3.org/2000/svg">
<path d="M 445.5 375 L 456.5 375 L 456.5 386 L 445.5 386 L 445.5 375 Z " fill-rule="nonzero" fill="#ffffff" stroke="none" />
<path d="M 445.5 375 L 456.5 375 L 456.5 386 L 445.5 386 L 445.5 375 Z " stroke-width="1" stroke="#797979" fill="none" />
</svg>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="12px" height="12px" viewBox="445 374.5 12 12" xmlns="http://www.w3.org/2000/svg">
<path d="M 445.5 375 L 456.5 375 L 456.5 386 L 445.5 386 L 445.5 375 Z " fill-rule="nonzero" fill="#f0f0f0" stroke="none" />
<path d="M 445.5 375 L 456.5 375 L 456.5 386 L 445.5 386 L 445.5 375 Z " stroke-width="1" stroke="#797979" fill="none" />
</svg>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="12px" height="12px" viewBox="445 374.5 12 12" xmlns="http://www.w3.org/2000/svg">
<path d="M 445.5 375 L 456.5 375 L 456.5 386 L 445.5 386 L 445.5 375 Z " fill-rule="nonzero" fill="#ffffff" stroke="none" />
<path d="M 445.5 375 L 456.5 375 L 456.5 386 L 445.5 386 L 445.5 375 Z " stroke-width="1" stroke="#797979" fill="none" />
<path d="M 447.571428571429 380.5 L 450.142857142857 383.071428571429 " stroke-width="2.57142857142857" stroke="#797979" fill="none" />
<path d="M 450.142857142857 383.071428571429 L 454.428571428571 377.071428571429 " stroke-width="2.57142857142857" stroke="#797979" fill="none" />
</svg>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="12px" height="12px" viewBox="445 374.5 12 12" xmlns="http://www.w3.org/2000/svg">
<path d="M 445.5 375 L 456.5 375 L 456.5 386 L 445.5 386 L 445.5 375 Z " fill-rule="nonzero" fill="#f0f0f0" stroke="none" />
<path d="M 445.5 375 L 456.5 375 L 456.5 386 L 445.5 386 L 445.5 375 Z " stroke-width="1" stroke="#797979" fill="none" />
<path d="M 447.571428571429 380.5 L 450.142857142857 383.071428571429 " stroke-width="2.57142857142857" stroke="#797979" fill="none" />
<path d="M 450.142857142857 383.071428571429 L 454.428571428571 377.071428571429 " stroke-width="2.57142857142857" stroke="#797979" fill="none" />
</svg>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="12px" height="12px" viewBox="630 374.5 12 12" xmlns="http://www.w3.org/2000/svg">
<path d="M 630.5 375 L 641.5 375 L 641.5 386 L 630.5 386 L 630.5 375 Z " fill-rule="nonzero" fill="#ffffff" stroke="none" />
<path d="M 630.5 375 L 641.5 375 L 641.5 386 L 630.5 386 L 630.5 375 Z " stroke-width="1" stroke="#797979" fill="none" />
</svg>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="12px" height="12px" viewBox="630 374.5 12 12" xmlns="http://www.w3.org/2000/svg">
<path d="M 630.5 375 L 641.5 375 L 641.5 386 L 630.5 386 L 630.5 375 Z " fill-rule="nonzero" fill="#f0f0f0" stroke="none" />
<path d="M 630.5 375 L 641.5 375 L 641.5 386 L 630.5 386 L 630.5 375 Z " stroke-width="1" stroke="#797979" fill="none" />
</svg>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="12px" height="12px" viewBox="630 374.5 12 12" xmlns="http://www.w3.org/2000/svg">
<path d="M 630.5 375 L 641.5 375 L 641.5 386 L 630.5 386 L 630.5 375 Z " fill-rule="nonzero" fill="#ffffff" stroke="none" />
<path d="M 630.5 375 L 641.5 375 L 641.5 386 L 630.5 386 L 630.5 375 Z " stroke-width="1" stroke="#797979" fill="none" />
<path d="M 632.571428571429 380.5 L 635.142857142857 383.071428571429 " stroke-width="2.57142857142857" stroke="#797979" fill="none" />
<path d="M 635.142857142857 383.071428571429 L 639.428571428571 377.071428571429 " stroke-width="2.57142857142857" stroke="#797979" fill="none" />
</svg>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="12px" height="12px" viewBox="630 374.5 12 12" xmlns="http://www.w3.org/2000/svg">
<path d="M 630.5 375 L 641.5 375 L 641.5 386 L 630.5 386 L 630.5 375 Z " fill-rule="nonzero" fill="#f0f0f0" stroke="none" />
<path d="M 630.5 375 L 641.5 375 L 641.5 386 L 630.5 386 L 630.5 375 Z " stroke-width="1" stroke="#797979" fill="none" />
<path d="M 632.571428571429 380.5 L 635.142857142857 383.071428571429 " stroke-width="2.57142857142857" stroke="#797979" fill="none" />
<path d="M 635.142857142857 383.071428571429 L 639.428571428571 377.071428571429 " stroke-width="2.57142857142857" stroke="#797979" fill="none" />
</svg>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="12px" height="12px" viewBox="803 374.5 12 12" xmlns="http://www.w3.org/2000/svg">
<path d="M 803.5 375 L 814.5 375 L 814.5 386 L 803.5 386 L 803.5 375 Z " fill-rule="nonzero" fill="#ffffff" stroke="none" />
<path d="M 803.5 375 L 814.5 375 L 814.5 386 L 803.5 386 L 803.5 375 Z " stroke-width="1" stroke="#797979" fill="none" />
</svg>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="12px" height="12px" viewBox="803 374.5 12 12" xmlns="http://www.w3.org/2000/svg">
<path d="M 803.5 375 L 814.5 375 L 814.5 386 L 803.5 386 L 803.5 375 Z " fill-rule="nonzero" fill="#f0f0f0" stroke="none" />
<path d="M 803.5 375 L 814.5 375 L 814.5 386 L 803.5 386 L 803.5 375 Z " stroke-width="1" stroke="#797979" fill="none" />
</svg>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="12px" height="12px" viewBox="803 374.5 12 12" xmlns="http://www.w3.org/2000/svg">
<path d="M 803.5 375 L 814.5 375 L 814.5 386 L 803.5 386 L 803.5 375 Z " fill-rule="nonzero" fill="#ffffff" stroke="none" />
<path d="M 803.5 375 L 814.5 375 L 814.5 386 L 803.5 386 L 803.5 375 Z " stroke-width="1" stroke="#797979" fill="none" />
<path d="M 805.571428571429 380.5 L 808.142857142857 383.071428571429 " stroke-width="2.57142857142857" stroke="#797979" fill="none" />
<path d="M 808.142857142857 383.071428571429 L 812.428571428571 377.071428571429 " stroke-width="2.57142857142857" stroke="#797979" fill="none" />
</svg>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="12px" height="12px" viewBox="803 374.5 12 12" xmlns="http://www.w3.org/2000/svg">
<path d="M 803.5 375 L 814.5 375 L 814.5 386 L 803.5 386 L 803.5 375 Z " fill-rule="nonzero" fill="#f0f0f0" stroke="none" />
<path d="M 803.5 375 L 814.5 375 L 814.5 386 L 803.5 386 L 803.5 375 Z " stroke-width="1" stroke="#797979" fill="none" />
<path d="M 805.571428571429 380.5 L 808.142857142857 383.071428571429 " stroke-width="2.57142857142857" stroke="#797979" fill="none" />
<path d="M 808.142857142857 383.071428571429 L 812.428571428571 377.071428571429 " stroke-width="2.57142857142857" stroke="#797979" fill="none" />
</svg>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="12px" height="12px" viewBox="445 448.5 12 12" xmlns="http://www.w3.org/2000/svg">
<path d="M 445.5 449 L 456.5 449 L 456.5 460 L 445.5 460 L 445.5 449 Z " fill-rule="nonzero" fill="#ffffff" stroke="none" />
<path d="M 445.5 449 L 456.5 449 L 456.5 460 L 445.5 460 L 445.5 449 Z " stroke-width="1" stroke="#797979" fill="none" />
</svg>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="12px" height="12px" viewBox="445 448.5 12 12" xmlns="http://www.w3.org/2000/svg">
<path d="M 445.5 449 L 456.5 449 L 456.5 460 L 445.5 460 L 445.5 449 Z " fill-rule="nonzero" fill="#f0f0f0" stroke="none" />
<path d="M 445.5 449 L 456.5 449 L 456.5 460 L 445.5 460 L 445.5 449 Z " stroke-width="1" stroke="#797979" fill="none" />
</svg>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="12px" height="12px" viewBox="445 448.5 12 12" xmlns="http://www.w3.org/2000/svg">
<path d="M 445.5 449 L 456.5 449 L 456.5 460 L 445.5 460 L 445.5 449 Z " fill-rule="nonzero" fill="#ffffff" stroke="none" />
<path d="M 445.5 449 L 456.5 449 L 456.5 460 L 445.5 460 L 445.5 449 Z " stroke-width="1" stroke="#797979" fill="none" />
<path d="M 447.571428571429 454.5 L 450.142857142857 457.071428571429 " stroke-width="2.57142857142857" stroke="#797979" fill="none" />
<path d="M 450.142857142857 457.071428571429 L 454.428571428571 451.071428571429 " stroke-width="2.57142857142857" stroke="#797979" fill="none" />
</svg>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="12px" height="12px" viewBox="445 448.5 12 12" xmlns="http://www.w3.org/2000/svg">
<path d="M 445.5 449 L 456.5 449 L 456.5 460 L 445.5 460 L 445.5 449 Z " fill-rule="nonzero" fill="#f0f0f0" stroke="none" />
<path d="M 445.5 449 L 456.5 449 L 456.5 460 L 445.5 460 L 445.5 449 Z " stroke-width="1" stroke="#797979" fill="none" />
<path d="M 447.571428571429 454.5 L 450.142857142857 457.071428571429 " stroke-width="2.57142857142857" stroke="#797979" fill="none" />
<path d="M 450.142857142857 457.071428571429 L 454.428571428571 451.071428571429 " stroke-width="2.57142857142857" stroke="#797979" fill="none" />
</svg>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="12px" height="12px" viewBox="630 448.5 12 12" xmlns="http://www.w3.org/2000/svg">
<path d="M 630.5 449 L 641.5 449 L 641.5 460 L 630.5 460 L 630.5 449 Z " fill-rule="nonzero" fill="#ffffff" stroke="none" />
<path d="M 630.5 449 L 641.5 449 L 641.5 460 L 630.5 460 L 630.5 449 Z " stroke-width="1" stroke="#797979" fill="none" />
</svg>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="12px" height="12px" viewBox="630 448.5 12 12" xmlns="http://www.w3.org/2000/svg">
<path d="M 630.5 449 L 641.5 449 L 641.5 460 L 630.5 460 L 630.5 449 Z " fill-rule="nonzero" fill="#f0f0f0" stroke="none" />
<path d="M 630.5 449 L 641.5 449 L 641.5 460 L 630.5 460 L 630.5 449 Z " stroke-width="1" stroke="#797979" fill="none" />
</svg>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="12px" height="12px" viewBox="630 448.5 12 12" xmlns="http://www.w3.org/2000/svg">
<path d="M 630.5 449 L 641.5 449 L 641.5 460 L 630.5 460 L 630.5 449 Z " fill-rule="nonzero" fill="#ffffff" stroke="none" />
<path d="M 630.5 449 L 641.5 449 L 641.5 460 L 630.5 460 L 630.5 449 Z " stroke-width="1" stroke="#797979" fill="none" />
<path d="M 632.571428571429 454.5 L 635.142857142857 457.071428571429 " stroke-width="2.57142857142857" stroke="#797979" fill="none" />
<path d="M 635.142857142857 457.071428571429 L 639.428571428571 451.071428571429 " stroke-width="2.57142857142857" stroke="#797979" fill="none" />
</svg>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="12px" height="12px" viewBox="630 448.5 12 12" xmlns="http://www.w3.org/2000/svg">
<path d="M 630.5 449 L 641.5 449 L 641.5 460 L 630.5 460 L 630.5 449 Z " fill-rule="nonzero" fill="#f0f0f0" stroke="none" />
<path d="M 630.5 449 L 641.5 449 L 641.5 460 L 630.5 460 L 630.5 449 Z " stroke-width="1" stroke="#797979" fill="none" />
<path d="M 632.571428571429 454.5 L 635.142857142857 457.071428571429 " stroke-width="2.57142857142857" stroke="#797979" fill="none" />
<path d="M 635.142857142857 457.071428571429 L 639.428571428571 451.071428571429 " stroke-width="2.57142857142857" stroke="#797979" fill="none" />
</svg>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="12px" height="12px" viewBox="803 448.5 12 12" xmlns="http://www.w3.org/2000/svg">
<path d="M 803.5 449 L 814.5 449 L 814.5 460 L 803.5 460 L 803.5 449 Z " fill-rule="nonzero" fill="#ffffff" stroke="none" />
<path d="M 803.5 449 L 814.5 449 L 814.5 460 L 803.5 460 L 803.5 449 Z " stroke-width="1" stroke="#797979" fill="none" />
</svg>

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="12px" height="12px" viewBox="803 448.5 12 12" xmlns="http://www.w3.org/2000/svg">
<path d="M 803.5 449 L 814.5 449 L 814.5 460 L 803.5 460 L 803.5 449 Z " fill-rule="nonzero" fill="#f0f0f0" stroke="none" />
<path d="M 803.5 449 L 814.5 449 L 814.5 460 L 803.5 460 L 803.5 449 Z " stroke-width="1" stroke="#797979" fill="none" />
</svg>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="12px" height="12px" viewBox="803 448.5 12 12" xmlns="http://www.w3.org/2000/svg">
<path d="M 803.5 449 L 814.5 449 L 814.5 460 L 803.5 460 L 803.5 449 Z " fill-rule="nonzero" fill="#ffffff" stroke="none" />
<path d="M 803.5 449 L 814.5 449 L 814.5 460 L 803.5 460 L 803.5 449 Z " stroke-width="1" stroke="#797979" fill="none" />
<path d="M 805.571428571429 454.5 L 808.142857142857 457.071428571429 " stroke-width="2.57142857142857" stroke="#797979" fill="none" />
<path d="M 808.142857142857 457.071428571429 L 812.428571428571 451.071428571429 " stroke-width="2.57142857142857" stroke="#797979" fill="none" />
</svg>

View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="12px" height="12px" viewBox="803 448.5 12 12" xmlns="http://www.w3.org/2000/svg">
<path d="M 803.5 449 L 814.5 449 L 814.5 460 L 803.5 460 L 803.5 449 Z " fill-rule="nonzero" fill="#f0f0f0" stroke="none" />
<path d="M 803.5 449 L 814.5 449 L 814.5 460 L 803.5 460 L 803.5 449 Z " stroke-width="1" stroke="#797979" fill="none" />
<path d="M 805.571428571429 454.5 L 808.142857142857 457.071428571429 " stroke-width="2.57142857142857" stroke="#797979" fill="none" />
<path d="M 808.142857142857 457.071428571429 L 812.428571428571 451.071428571429 " stroke-width="2.57142857142857" stroke="#797979" fill="none" />
</svg>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="13px" height="10px" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1 0 0 1 -67 -195 )">
<path d="M 12.8697394789579 1.03092783505155 C 12.9565798263193 1.14547537227949 13 1.27720504009164 13 1.42611683848797 C 13 1.57502863688431 12.9565798263193 1.70675830469645 12.8697394789579 1.8213058419244 L 6.79959919839679 9.82817869415807 C 6.7127588510354 9.94272623138602 6.61289245156981 10 6.5 10 C 6.38710754843019 10 6.2872411489646 9.94272623138602 6.20040080160321 9.82817869415807 L 0.130260521042084 1.8213058419244 C 0.0434201736806948 1.70675830469645 0 1.57502863688431 0 1.42611683848797 C 0 1.27720504009164 0.0434201736806948 1.14547537227949 0.130260521042084 1.03092783505155 L 0.781563126252505 0.171821305841925 C 0.868403473613895 0.0572737686139735 0.968269873079492 0 1.0811623246493 0 C 1.19405477621911 0 1.2939211756847 0.0572737686139735 1.38076152304609 0.171821305841925 L 6.5 6.92439862542955 L 11.6192384769539 0.171821305841925 C 11.7060788243153 0.0572737686139735 11.8059452237809 0 11.9188376753507 0 C 12.0317301269205 0 12.1315965263861 0.0572737686139735 12.2184368737475 0.171821305841925 L 12.8697394789579 1.03092783505155 Z " fill-rule="nonzero" fill="#333333" stroke="none" transform="matrix(1 0 0 1 67 195 )" />
</g>
</svg>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="13px" height="10px" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1 0 0 1 -67 -195 )">
<path d="M 12.8697394789579 1.03092783505155 C 12.9565798263193 1.14547537227949 13 1.27720504009164 13 1.42611683848797 C 13 1.57502863688431 12.9565798263193 1.70675830469645 12.8697394789579 1.8213058419244 L 6.79959919839679 9.82817869415807 C 6.7127588510354 9.94272623138602 6.61289245156981 10 6.5 10 C 6.38710754843019 10 6.2872411489646 9.94272623138602 6.20040080160321 9.82817869415807 L 0.130260521042084 1.8213058419244 C 0.0434201736806948 1.70675830469645 0 1.57502863688431 0 1.42611683848797 C 0 1.27720504009164 0.0434201736806948 1.14547537227949 0.130260521042084 1.03092783505155 L 0.781563126252505 0.171821305841925 C 0.868403473613895 0.0572737686139735 0.968269873079492 0 1.0811623246493 0 C 1.19405477621911 0 1.2939211756847 0.0572737686139735 1.38076152304609 0.171821305841925 L 6.5 6.92439862542955 L 11.6192384769539 0.171821305841925 C 11.7060788243153 0.0572737686139735 11.8059452237809 0 11.9188376753507 0 C 12.0317301269205 0 12.1315965263861 0.0572737686139735 12.2184368737475 0.171821305841925 L 12.8697394789579 1.03092783505155 Z " fill-rule="nonzero" fill="#8c8c8c" stroke="none" transform="matrix(1 0 0 1 67 195 )" />
</g>
</svg>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="19px" height="21px" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1 0 0 1 -853 -63 )">
<path d="M 18.6854917234664 6.05970149253731 C 19.0185004868549 6.37810945273632 19.0740019474197 6.71641791044776 18.8519961051607 7.07462686567164 C 18.6299902629017 7.44278606965174 18.2723141837066 7.62686567164179 17.7789678675755 7.62686567164179 L 14 7.62686567164179 L 14 20.5223880597015 C 14.2268743914314 20.6616915422886 14.1713729308666 20.7761194029851 14.0603700097371 20.865671641791 C 13.9493670886076 20.955223880597 13.8075300227199 21 13.634858812074 21 L 0.610516066212269 21 C 0.351509250243427 21 0.172671210645894 20.910447761194 0.0740019474196689 20.7313432835821 C -0.0246673158065563 20.5323383084577 0 20.3582089552239 0.148003894839338 20.2089552238806 L 3.1080817916261 17.3432835820896 C 3.2190847127556 17.2338308457711 3.37325543654658 17.1791044776119 3.57059396299903 17.1791044776119 L 9.49074975657254 17.1791044776119 L 9.49074975657254 7.62686567164179 L 5.93865628042843 7.62686567164179 C 5.44530996429731 7.62686567164179 5.08763388510224 7.44278606965174 4.86562804284323 7.07462686567164 C 4.6559558584875 6.70646766169154 4.71145731905226 6.3681592039801 5.03213242453749 6.05970149253731 L 10.952288218111 0.328358208955224 C 11.17429406037 0.109452736318406 11.4764686790003 0 11.8588120740019 0 C 12.2411554690036 0 12.5433300876339 0.109452736318406 12.7653359298929 0.328358208955224 L 18.6854917234664 6.05970149253731 Z " fill-rule="nonzero" fill="#000000" stroke="none" transform="matrix(1 0 0 1 853 63 )" />
</g>
</svg>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="23px" height="21px" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1 0 0 1 -955 -62 )">
<path d="M 17.4296875 18.990234375 C 17.6047676282051 18.8170572916667 17.6923076923077 18.6119791666667 17.6923076923077 18.375 C 17.6923076923077 18.1380208333333 17.6047676282051 17.9329427083333 17.4296875 17.759765625 C 17.2546073717949 17.5865885416667 17.0472756410256 17.5 16.8076923076923 17.5 C 16.568108974359 17.5 16.3607772435897 17.5865885416667 16.1856971153846 17.759765625 C 16.0106169871795 17.9329427083333 15.9230769230769 18.1380208333333 15.9230769230769 18.375 C 15.9230769230769 18.6119791666667 16.0106169871795 18.8170572916667 16.1856971153846 18.990234375 C 16.3607772435897 19.1634114583333 16.568108974359 19.25 16.8076923076923 19.25 C 17.0472756410256 19.25 17.2546073717949 19.1634114583333 17.4296875 18.990234375 Z M 20.9681490384615 18.990234375 C 21.1432291666667 18.8170572916667 21.2307692307692 18.6119791666667 21.2307692307692 18.375 C 21.2307692307692 18.1380208333333 21.1432291666667 17.9329427083333 20.9681490384615 17.759765625 C 20.7930689102564 17.5865885416667 20.5857371794872 17.5 20.3461538461538 17.5 C 20.1065705128205 17.5 19.8992387820513 17.5865885416667 19.7241586538462 17.759765625 C 19.549078525641 17.9329427083333 19.4615384615385 18.1380208333333 19.4615384615385 18.375 C 19.4615384615385 18.6119791666667 19.549078525641 18.8170572916667 19.7241586538462 18.990234375 C 19.8992387820513 19.1634114583333 20.1065705128205 19.25 20.3461538461538 19.25 C 20.5857371794872 19.25 20.7930689102564 19.1634114583333 20.9681490384615 18.990234375 Z M 22.6129807692308 14.3828125 C 22.8709935897436 14.6380208333333 23 14.9479166666667 23 15.3125 L 23 19.6875 C 23 20.0520833333333 22.8709935897436 20.3619791666667 22.6129807692308 20.6171875 C 22.354967948718 20.8723958333333 22.0416666666667 21 21.6730769230769 21 L 1.32692307692308 21 C 0.958333333333333 21 0.645032051282051 20.8723958333333 0.387019230769231 20.6171875 C 0.12900641025641 20.3619791666667 0 20.0520833333333 0 19.6875 L 0 15.3125 C 0 14.9479166666667 0.12900641025641 14.6380208333333 0.387019230769231 14.3828125 C 0.645032051282051 14.1276041666667 0.958333333333333 14 1.32692307692308 14 L 7.75420673076923 14 L 9.62019230769231 15.859375 C 10.1546474358974 16.3697916666667 10.78125 16.625 11.5 16.625 C 12.21875 16.625 12.8453525641026 16.3697916666667 13.3798076923077 15.859375 L 15.2596153846154 14 L 21.6730769230769 14 C 22.0416666666667 14 22.354967948718 14.1276041666667 22.6129807692308 14.3828125 Z M 17.6923076923077 7 C 18.0793269230769 7 18.3511618589744 7.177734375 18.5078125 7.533203125 C 18.6644631410256 7.90690104166667 18.5999599358974 8.22591145833333 18.3143028846154 8.490234375 L 12.1219951923077 14.615234375 C 11.9561298076923 14.7884114583333 11.7487980769231 14.875 11.5 14.875 C 11.2512019230769 14.875 11.0438701923077 14.7884114583333 10.8780048076923 14.615234375 L 4.68569711538462 8.490234375 C 4.40004006410256 8.22591145833333 4.33553685897436 7.90690104166667 4.4921875 7.533203125 C 4.64883814102564 7.177734375 4.92067307692308 7 5.30769230769231 7 L 8.84615384615385 7 L 8.84615384615385 0.874999999999999 C 8.84615384615385 0.63802083333333 8.93369391025641 0.43294270833333 9.10877403846154 0.259765624999999 C 9.28385416666667 0.086588541666668 9.4911858974359 0 9.73076923076923 0 L 13.2692307692308 0 C 13.5088141025641 0 13.7161458333333 0.086588541666668 13.8912259615385 0.259765624999999 C 14.0663060897436 0.43294270833333 14.1538461538462 0.63802083333333 14.1538461538462 0.874999999999999 L 14.1538461538462 7 L 17.6923076923077 7 Z " fill-rule="nonzero" fill="#000000" stroke="none" transform="matrix(1 0 0 1 955 62 )" />
</g>
</svg>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="13px" height="10px" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1 0 0 1 -67 -177 )">
<path d="M 12.8697394789579 8.1786941580756 C 12.9565798263193 8.29324169530355 13 8.42497136311569 13 8.57388316151203 C 13 8.72279495990836 12.9565798263193 8.8545246277205 12.8697394789579 8.96907216494845 L 12.2184368737475 9.82817869415807 C 12.1315965263861 9.94272623138602 12.0317301269205 10 11.9188376753507 10 C 11.8059452237809 10 11.7060788243153 9.94272623138602 11.6192384769539 9.82817869415807 L 6.5 3.07560137457045 L 1.38076152304609 9.82817869415807 C 1.2939211756847 9.94272623138602 1.19405477621911 10 1.0811623246493 10 C 0.968269873079492 10 0.868403473613895 9.94272623138602 0.781563126252505 9.82817869415807 L 0.130260521042084 8.96907216494845 C 0.0434201736806948 8.8545246277205 0 8.72279495990836 0 8.57388316151203 C 0 8.42497136311569 0.0434201736806948 8.29324169530355 0.130260521042084 8.1786941580756 L 6.20040080160321 0.171821305841925 C 6.2872411489646 0.0572737686139735 6.38710754843019 0 6.5 0 C 6.61289245156981 0 6.7127588510354 0.0572737686139735 6.79959919839679 0.171821305841925 L 12.8697394789579 8.1786941580756 Z " fill-rule="nonzero" fill="#333333" stroke="none" transform="matrix(1 0 0 1 67 177 )" />
</g>
</svg>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="13px" height="10px" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1 0 0 1 -67 -177 )">
<path d="M 12.8697394789579 8.1786941580756 C 12.9565798263193 8.29324169530355 13 8.42497136311569 13 8.57388316151203 C 13 8.72279495990836 12.9565798263193 8.8545246277205 12.8697394789579 8.96907216494845 L 12.2184368737475 9.82817869415807 C 12.1315965263861 9.94272623138602 12.0317301269205 10 11.9188376753507 10 C 11.8059452237809 10 11.7060788243153 9.94272623138602 11.6192384769539 9.82817869415807 L 6.5 3.07560137457045 L 1.38076152304609 9.82817869415807 C 1.2939211756847 9.94272623138602 1.19405477621911 10 1.0811623246493 10 C 0.968269873079492 10 0.868403473613895 9.94272623138602 0.781563126252505 9.82817869415807 L 0.130260521042084 8.96907216494845 C 0.0434201736806948 8.8545246277205 0 8.72279495990836 0 8.57388316151203 C 0 8.42497136311569 0.0434201736806948 8.29324169530355 0.130260521042084 8.1786941580756 L 6.20040080160321 0.171821305841925 C 6.2872411489646 0.0572737686139735 6.38710754843019 0 6.5 0 C 6.61289245156981 0 6.7127588510354 0.0572737686139735 6.79959919839679 0.171821305841925 L 12.8697394789579 8.1786941580756 Z " fill-rule="nonzero" fill="#8c8c8c" stroke="none" transform="matrix(1 0 0 1 67 177 )" />
</g>
</svg>

View File

@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="65px" height="19px" xmlns="http://www.w3.org/2000/svg">
<defs>
<mask fill="white" id="clip14">
<path d="M 0 19 L 0 0 L 36.3012048192771 0 L 65 0 L 65 19 L 0 19 Z " fill-rule="evenodd" />
</mask>
</defs>
<g transform="matrix(1 0 0 1 -77 -68 )">
<path d="M 0 19 L 0 0 L 36.3012048192771 0 L 65 0 L 65 19 L 0 19 Z " fill-rule="nonzero" fill="#ffffff" stroke="none" transform="matrix(1 0 0 1 77 68 )" />
<path d="M 0 19 L 0 0 L 36.3012048192771 0 L 65 0 L 65 19 L 0 19 Z " stroke-width="2" stroke="#797979" fill="none" transform="matrix(1 0 0 1 77 68 )" mask="url(#clip14)" />
</g>
</svg>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="1289px" height="151px" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1 0 0 1 -50 -19 )">
<path d="M 51 20 L 1338 20 L 1338 169 L 51 169 L 51 20 Z " fill-rule="nonzero" fill="#ffffff" stroke="none" />
</g>
</svg>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="65px" height="18px" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1 0 0 1 -757 -45 )">
<path d="M 0 18 L 0 0 L 36.3012048192771 0 L 65 0 L 65 18 L 0 18 Z " fill-rule="nonzero" fill="#ffffff" stroke="none" transform="matrix(1 0 0 1 757 45 )" />
</g>
</svg>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="58px" height="17px" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1 0 0 1 -991 -79 )">
<path d="M 992 80 L 1048 80 L 1048 95 L 992 95 L 992 80 Z " fill-rule="nonzero" fill="#ffffff" stroke="none" />
</g>
</svg>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="86px" height="17px" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1 0 0 1 -1073 -79 )">
<path d="M 1074 80 L 1158 80 L 1158 95 L 1074 95 L 1074 80 Z " fill-rule="nonzero" fill="#ffffff" stroke="none" />
</g>
</svg>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="91px" height="17px" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1 0 0 1 -1185 -79 )">
<path d="M 1186 80 L 1275 80 L 1275 95 L 1186 95 L 1186 80 Z " fill-rule="nonzero" fill="#ffffff" stroke="none" />
</g>
</svg>

View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<svg version="1.1" xmlns:xlink="http://www.w3.org/1999/xlink" width="65px" height="21px" xmlns="http://www.w3.org/2000/svg">
<g transform="matrix(1 0 0 1 -757 -134 )">
<path d="M 0 21 L 0 0 L 48 0 L 65 0 L 65 21 L 0 21 Z " fill-rule="nonzero" fill="#ffffff" stroke="none" transform="matrix(1 0 0 1 757 134 )" />
</g>
</svg>

Some files were not shown because too many files have changed in this diff Show More