This commit is contained in:
theluyuan 2021-10-22 22:18:02 +08:00
parent 7e809ed50b
commit d14a5676f3
57 changed files with 13853 additions and 335 deletions

View File

@ -8,6 +8,7 @@
},
"dependencies": {
"ant-design-vue": "^2.2.8",
"axios": "^0.23.0",
"normalize.css": "^8.0.1",
"sass": "^1.43.2",
"vite-plugin-components": "^0.13.3",

30
src/api/base.ts Normal file
View File

@ -0,0 +1,30 @@
import Axios from 'axios'
const host = "http://192.168.3.159"
const config = {}
export interface res<T> { code: number, msg: string, data: T }
export const login = Axios.create({
baseURL: host + ":9005",
...config
})
export const professionalquery = Axios.create({
baseURL: host + ":9001",
...config
})
export const schoolquery = Axios.create({
baseURL: host + ":9002",
...config
})
export const voluntary = Axios.create({
baseURL: host + ":9003",
...config
})
export const zixun = Axios.create({
baseURL: host + ":9007",
...config
})

28
src/api/login.ts Normal file
View File

@ -0,0 +1,28 @@
import { login, res } from "./base";
interface userLogin { student_id: string, password: string }
interface loginres {
student: {
student_key: number,
student_id: string,
phone: string,
password: string,
student_name: string,
score: number,
ranking: number,
subject_one: number,
subject_two: number,
subject_three: number,
is_deleted: number,
create_time: string,
update_time: string
},
token: string
}
export async function userlogin({ student_id, password }: userLogin): Promise<res<loginres>> {
const res = await login.post<res<loginres>>("/login",{ student_id, password })
return res.data
}

View File

@ -0,0 +1,29 @@
import { professionalquery, res } from "./base";
interface daLeiList {
major_id: string,
major_name: string,
major_level: number,
major_parent: string,
major_type: number,
major_message: string,
is_deleted: number,
create_time: string,
update_time: string
}
export async function getZhuanYeDaLei({ major_type }: { major_type: number }) {
const res = await professionalquery.post<res<daLeiList[]>>("getZhuanyemenleiByMajor_type", { major_type: major_type })
return res.data
}
export async function getZhuanYeLei({ major_parent }: { major_parent: string }) {
const res = await professionalquery.post<res<daLeiList[]>>("getZhuanyelaiByZhuanyedalei", { major_parent: major_parent })
return res.data
}
export async function getZhuanYeJieShao({ major_parent }: { major_parent: string }) {
const res = await professionalquery.post<res<daLeiList[]>>("getZhuanyeByZhuanyelei", { major_parent: major_parent })
return res.data
}

13
src/api/zixun.ts Normal file
View File

@ -0,0 +1,13 @@
import { res, zixun } from "./base";
interface zixunlist {
"news_id": number,
"title": string,
"content": string
}
export async function getzixun():Promise<res<zixunlist[]>> {
const res = await zixun.post<res<zixunlist[]>>("/getAllZixun")
return res.data
}

View File

@ -28,7 +28,7 @@
</a-menu-item>
</a-menu>
<div class="rigth">
<a-button type="link">登录</a-button>
<a-button type="link" @click="navto({key: '/login'})">登录</a-button>
<a-button type="link">注册</a-button>
<a-button type="primary">
<template #icon>
@ -56,6 +56,8 @@
display: flex;
align-items: center;
border-bottom: 1px solid #f0f0f0;
background-color: #fff;
width: 100%;
.rigth {
flex-shrink: 0;
padding-right: 20px;

View File

@ -2,6 +2,8 @@ import App from './App.vue'
import "normalize.css"
import { createApp } from 'vue'
import { createRouter, createWebHashHistory, RouteRecordRaw } from "vue-router"
import 'ant-design-vue/dist/antd.css';
const routes: RouteRecordRaw[] = [{
path: "/",
component: () => import('./layout/index.vue'),

View File

@ -6,12 +6,10 @@
: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>
@ -27,7 +25,6 @@
<a :href="item.href">{{ item.title }}</a>
</template>
<template #avatar>
<a-avatar :src="item.avatar" />
</template>
</a-list-item-meta>
{{ item.content }}
@ -39,21 +36,26 @@
<style lang="scss" scoped>
</style>
<script setup lang="ts">
import { StarOutlined, LikeOutlined, MessageOutlined } from '@ant-design/icons-vue';
import { onMounted, reactive } from 'vue';
import { getzixun } from '../api/zixun';
const listData: Record<string, string>[] = reactive([]);
onMounted(async () => {
const list = await getzixun()
for (const i of list.data) {
listData.push({
href: '',
title: i.title,
avatar: 'https://zos.alipayobjects.com/rmsportal/ODTLcjxAfvqbxHnVXCYX.png',
description: '',
content: i.content,
});
}
})
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);

View File

@ -1,61 +1,82 @@
<template>
<div class="login">
<div class="infos">
<div class="top">
<img src="../static/img/logo.jpg" class="logo">
<h1>高考志愿填报</h1>
<div class="login">
<div class="infos">
<div class="top">
<img src="../static/img/logo.jpg" class="logo" />
<h1>高考志愿填报</h1>
</div>
<a-form>
<a-form-item has-feedback name="pass">
<a-input
type="password"
autocomplete="off"
v-model:value="student_id"
placeholder="请输入用户名"
class="shuru"
/>
</a-form-item>
<a-form-item has-feedback name="checkPass">
<a-input
type="password"
autocomplete="off"
v-model:value="password"
placeholder="请输入密码"
class="shuru"
/>
</a-form-item>
<a-button type="primary" class="shuru" @click="login">登录</a-button>
</a-form>
</div>
<a-form
name="custom-validation"
ref="formRef"
:model="formState"
v-bind="layout"
@finish="handleFinish"
@finishFailed="handleFinishFailed"
>
<a-form-item has-feedback name="pass">
<a-input type="password" autocomplete="off" placeholder="请输入用户名" class="shuru"/>
</a-form-item>
<a-form-item has-feedback name="checkPass">
<a-input type="password" autocomplete="off" placeholder="请输入密码" class="shuru"/>
</a-form-item>
<a-button type="primary" class="shuru">登录</a-button>
</a-form>
</div>
</div>
</template>
<script>
export default {
name: "login"
<script setup lang="ts">
import { ref } from 'vue';
import { userlogin } from '../api/login';
import { message } from 'ant-design-vue';
import { store } from '../store';
import { useRouter } from 'vue-router';
const student_id = ref("")
const password = ref("")
const router = useRouter()
async function login() {
const res = await userlogin({ student_id: student_id.value, password: password.value })
console.log(res)
if (res.code == 0) {
message.success(res.msg);
store.user = res.data.student
localStorage.setItem("token",JSON.stringify(res.data))
router.push("/index")
}else {
message.error(res.msg);
}
}
</script>
<style scoped lang="scss">
.login{
.login {
height: 80vh;
display: flex;
justify-content: center;
align-items: center;
.top{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
line-height: 70px;
margin-bottom: 30px;
.logo{
width:140px;
height: 140px;
margin-right: 20px;
.top {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
line-height: 70px;
margin-bottom: 30px;
.logo {
width: 140px;
height: 140px;
margin-right: 20px;
}
}
}
.infos{
.infos {
margin: 0 auto;
.shuru{
.shuru {
width: 400px;
}
}

View File

@ -1,43 +1,77 @@
<template>
<div>
<div class="select">
<a-button class="rigth" @click="sel(0)" :type="select == 0 ? 'primary' : ''">本科普通教育</a-button>
<a-button class="rigth" @click="sel(1)" :type="select == 1 ? 'primary' : ''">本科职业教育</a-button>
<a-button @click="sel(2)" :type="select == 2 ? 'primary' : ''">高职专科</a-button>
<a-button
class="rigth"
@click="sel(1)"
:type="select == 1 ? 'primary' : 'default'"
>本科普通教育</a-button>
<a-button
class="rigth"
@click="sel(2)"
:type="select == 2 ? 'primary' : 'default'"
>本科职业教育</a-button>
<!-- <a-button @click="sel(3)" :type="select == 3 ? 'primary' : ''">高职专科</a-button> -->
</div>
<div class="list">
<a-table
class="item"
:row-selection="rowSelection"
:pagination="false"
:scroll="{ y: 800 }"
:dataSource="dataSource"
:columns="columns"
:dataSource="zhuanyedalei"
:columns="zhuanyedaleicolumns"
>
<template #address="{ text: address }">
<a-button style="width: 100%;height:100%" class="rigth" @click="sel(0)" :type="select == 0 ? 'primary' : ''">{{address}}</a-button>
<template #address="{ record: name, }">
<a-button
style="width: 100%;height:100%"
class="rigth"
@click="zhuanyedaleisel(name.key)"
:type="zhuanyedaleiselid == name.key ? 'primary' : 'default'"
>{{ name.name }}</a-button>
</template>
</a-table>
<a-table
class="item"
:row-selection="rowSelection"
:pagination="false"
:scroll="{ y: 800 }"
:dataSource="dataSource"
:columns="columns"
:dataSource="zhuanyelei"
:columns="zhuanyeleicolumns"
>
<template v-slot:address="{}"></template>
<template #address="{ record: name, }">
<a-button
style="width: 100%;height:100%"
class="rigth"
@click="zhuanyeleisel(name.key)"
:type="zhuanyeleiselid == name.key ? 'primary' : 'default'"
>{{ name.name }}</a-button>
</template>
</a-table>
<a-table
class="item"
:row-selection="rowSelection"
:pagination="false"
:scroll="{ y: 800 }"
:dataSource="dataSource"
:columns="columns"
:dataSource="zhuanyejieshao"
:columns="zhuanyejieshaocolumns"
>
<template v-slot:bodyCell="{ record }">
<template v-if="record.address == '西湖区湖底公园1号'">啦啦啦</template>
<template #address="{ record: name }">
<a-button
style="width: 100%;height:100%"
class="rigth"
>{{ name.name }}</a-button>
</template>
</a-table>
<a-table
class="item"
:pagination="false"
:scroll="{ y: 800 }"
:dataSource="zhuanyejieshao"
:columns="zhuanyedaimacolumns"
>
<template #address="{ record: name }">
<a-button
style="width: 100%;height:100%"
class="rigth"
>{{ name.major_parent }}</a-button>
</template>
</a-table>
</div>
@ -45,277 +79,165 @@
</template>
<script setup lang="ts">
import { ref } from "vue";
import { ref, watch } from "vue";
import { getZhuanYeDaLei, getZhuanYeJieShao, getZhuanYeLei } from "../api/professionalquery";
const select = ref(1);
interface zhuanyejieshaoin {
key: string,
name: string,
major_parent: string
}
let zhuanyejieshao = ref<zhuanyejieshaoin[]>([
])
const zhuanyejieshaocolumns = ref([
{
title: '专业名称',
dataIndex: 'name',
key: 'name',
slots: { customRender: 'address' },
},
])
const zhuanyedaimacolumns = ref([
{
title: '专业代码',
dataIndex: 'major_parent',
key: 'major_parent',
slots: { customRender: 'address' },
},
])
async function getzhuanyejieshao(){
const res = await getZhuanYeJieShao({major_parent: zhuanyeleiselid.value})
for (const i of res.data) {
zhuanyejieshao.value.push({
key: i.major_id,
name: i.major_name,
major_parent: i.major_parent
})
}
console.log(zhuanyejieshao.value)
}
interface zhuanyeleiin {
key: string,
name: string
}
interface zhuanyedaleiin {
key: string,
name: string
}
let zhuanyelei = ref<zhuanyeleiin[]>([
])
const zhuanyeleicolumns = ref([
{
title: '专业类',
dataIndex: 'name',
key: 'name',
slots: { customRender: 'address' },
},
])
async function getzhuanyelei() {
zhuanyelei.value = [
]
const res = await getZhuanYeLei({ major_parent: zhuanyedaleiselid.value })
console.log(res)
for (const i of res.data) {
zhuanyelei.value.push({
key: i.major_id,
name: i.major_name
})
}
}
const zhuanyeleiselid = ref("")
function zhuanyeleisel(key: string) {
console.log(key)
zhuanyeleiselid.value = key
}
watch(zhuanyeleiselid, getzhuanyejieshao)
let zhuanyedalei = ref<zhuanyedaleiin[]>([
])
const zhuanyedaleicolumns = ref([
{
title: '专业大类',
dataIndex: 'name',
key: 'name',
slots: { customRender: 'address' },
},
])
const zhuanyedaleiselid = ref("")
function zhuanyedaleisel(key: string) {
console.log(key)
zhuanyedaleiselid.value = key
}
watch(zhuanyedaleiselid, getzhuanyelei)
watch(select, getlist)
async function getlist() {
zhuanyedalei.value = [
]
const res = await getZhuanYeDaLei({ major_type: select.value })
console.log(res)
for (const i of res.data) {
zhuanyedalei.value.push({
key: i.major_id,
name: i.major_name
})
}
}
getlist()
function sel(num: number) {
select.value = num
}
const rowSelection = ref('')
const dataSource = [
{
key: '1',
name: '胡彦斌',
age: 32,
address: '西湖区湖底公园1号',
},
{
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
}, {
key: '2',
name: '胡彦祖',
age: 42,
address: '西湖区湖底公园1号',
},
}
]
const columns = [
{
title: '住址',
title: '专业大类',
dataIndex: 'address',
key: 'address',
slots: { customRender: 'address' },
@ -338,8 +260,8 @@ const columns = [
margin: 0 auto;
display: flex;
justify-content: space-around;
::v-deep td{
padding:0
::v-deep td {
padding: 0;
}
.item {
width: 300px;

19
src/store/index.ts Normal file
View File

@ -0,0 +1,19 @@
import { reactive } from "vue";
export const store = reactive({
user:{
student_key: 0,
student_id: '',
phone: '',
password: '',
student_name: '',
score: 0,
ranking: 0,
subject_one: 0,
subject_two: 0,
subject_three: 0,
is_deleted: 0,
create_time: '',
update_time: ''
}
})

View File

@ -8,5 +8,4 @@ export default defineConfig({
customComponentResolvers: [AntDesignVueResolver()],
}),]
})

View File

@ -316,6 +316,13 @@ async-validator@^3.3.0:
resolved "https://registry.npmmirror.com/async-validator/download/async-validator-3.5.2.tgz?cache=0&sync_timestamp=1634529532378&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Fasync-validator%2Fdownload%2Fasync-validator-3.5.2.tgz#68e866a96824e8b2694ff7a831c1a25c44d5e500"
integrity sha1-aOhmqWgk6LJpT/eoMcGiXETV5QA=
axios@^0.23.0:
version "0.23.0"
resolved "https://registry.npmmirror.com/axios/download/axios-0.23.0.tgz?cache=0&sync_timestamp=1634053131158&other_urls=https%3A%2F%2Fregistry.npmmirror.com%2Faxios%2Fdownload%2Faxios-0.23.0.tgz#b0fa5d0948a8d1d75e3d5635238b6c4625b05149"
integrity sha1-sPpdCUio0ddePVY1I4tsRiWwUUk=
dependencies:
follow-redirects "^1.14.4"
babel-walk@3.0.0-canary-5:
version "3.0.0-canary-5"
resolved "https://registry.npm.taobao.org/babel-walk/download/babel-walk-3.0.0-canary-5.tgz#f66ecd7298357aee44955f235a6ef54219104b11"
@ -609,6 +616,11 @@ fill-range@^7.0.1:
dependencies:
to-regex-range "^5.0.1"
follow-redirects@^1.14.4:
version "1.14.4"
resolved "https://registry.nlark.com/follow-redirects/download/follow-redirects-1.14.4.tgz?cache=0&sync_timestamp=1631622206750&other_urls=https%3A%2F%2Fregistry.nlark.com%2Ffollow-redirects%2Fdownload%2Ffollow-redirects-1.14.4.tgz#838fdf48a8bbdd79e52ee51fb1c94e3ed98b9379"
integrity sha1-g4/fSKi73XnlLuUfsclOPtmLk3k=
fsevents@~2.3.2:
version "2.3.2"
resolved "https://registry.nlark.com/fsevents/download/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"

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;
}