diff --git a/.gitignore b/.gitignore
index 1740496d0f5699cac158f53aa359f96021919126..788527187211ffbf35d95d9a2fa273176a23f319 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,4 +6,34 @@
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml
-.idea
\ No newline at end of file
+.idea
+/backend/.mvn
+/backend/.gitattributes
+/backend/.gitignore
+/backend/.keep
+/backend/mvnw
+/backend/mvnw.cmd
+/document/.keep
+/frontend/.keep
+
+.DS_Store
+node_modules
+/dist
+
+# local env files
+.env.local
+.env.*.local
+
+# Log files
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+
+# Editor directories and files
+.idea
+.vscode
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
\ No newline at end of file
diff --git a/ai_platform/.keep b/ai_platform/.keep
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git "a/ai_platform/ER\345\233\276.png" "b/ai_platform/ER\345\233\276.png"
new file mode 100644
index 0000000000000000000000000000000000000000..6710274fad4308d7ae85f3bdea7db7ea02137f11
Binary files /dev/null and "b/ai_platform/ER\345\233\276.png" differ
diff --git a/ai_platform/README.md b/ai_platform/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..84749019ddb977d3c87ef8fbdaa30e22395cc0ee
--- /dev/null
+++ b/ai_platform/README.md
@@ -0,0 +1,168 @@
+# 人工智能训练平台
+
+一个人工智能训练平台项目,采用 Java SpringBoot + Vue 前后端分离架构,支持用户上传算子、训练集、测试集、训练模型、在线推理服务。
+
+## 技术栈
+
+### 后端
+- Java 17
+- Spring Boot 3.1.5
+- Spring Data JPA
+- MySQL
+- Maven
+
+### 前端
+- Vue 3
+- Element Plus
+- Vite
+- Axios
+- Vue Router
+
+## 功能特性
+
+1. **算子管理**
+ - 上传算子文件
+ - 查看算子列表
+ - 删除算子
+
+2. **训练集管理**
+ - 上传训练集文件
+ - 查看训练集列表
+ - 删除训练集
+
+3. **测试集管理**
+- 上传训练集文件
+- 查看训练集列表
+- 删除训练集
+
+4. **模型训练**
+ - 创建训练任务
+ - 启动训练
+ - 查看训练进度和状态
+ - 删除训练任务
+
+5. **模型推理服务**
+ - 使用训练好的模型进行在线推理
+ - 上传输入文件(如图片)进行识别
+ - 查看推理结果(如猫狗识别结果)
+ - 支持异步推理任务管理
+
+## 项目结构
+
+```
+ai_platform/
+├── backend/ # 后端项目
+│ ├── src/
+│ │ └── main/
+│ │ ├── java/
+│ │ │ └── com/aiplatform/
+│ │ │ ├── config/ # 配置类
+│ │ │ ├── controller/ # 控制器
+│ │ │ ├── entity/ # 实体类
+│ │ │ ├── repository/ # 数据访问层
+│ │ │ └── service/ # 业务逻辑层
+│ │ └── resources/
+│ │ └── application.yml # 配置文件
+│ └── pom.xml
+├── frontend/ # 前端项目
+│ ├── src/
+│ │ ├── api/ # API接口
+│ │ ├── router/ # 路由配置
+│ │ ├── views/ # 页面组件
+│ │ ├── App.vue
+│ │ └── main.js
+│ ├── package.json
+│ └── vite.config.js
+└── README.md
+```
+
+## 快速开始
+
+### 环境要求
+
+- JDK 17+
+- Maven 3.6+
+- Node.js 16+
+- MySQL 8.0+
+
+### 后端启动
+
+1. 创建 MySQL 数据库:
+ backend文件夹中sql脚本
+
+2. 修改 `backend/src/main/resources/application.yml` 中的数据库配置:
+```yaml
+spring:
+ datasource:
+ url: jdbc:mysql://localhost:3306/ai_platform?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=Asia/Shanghai
+ username: your_username
+ password: your_password
+```
+
+3. 进入后端目录并启动:
+```bash
+cd backend
+mvn clean install
+mvn spring-boot:run
+```
+
+后端服务将在 `http://localhost:8080` 启动。
+
+### 前端启动
+
+1. 进入前端目录并安装依赖:
+```bash
+cd frontend
+npm install
+```
+
+2. 启动开发服务器:
+```bash
+npm run dev
+```
+
+前端服务将在 `http://localhost:5173` 启动。
+
+## API 接口
+
+### 算子管理
+
+- `POST /api/operators/upload` - 上传算子
+- `GET /api/operators` - 获取所有算子
+- `GET /api/operators/{id}` - 获取算子详情
+- `DELETE /api/operators/{id}` - 删除算子
+
+### 训练集管理
+
+- `POST /api/datasets/upload` - 上传训练集
+- `GET /api/datasets` - 获取所有训练集
+- `GET /api/datasets/{id}` - 获取训练集详情
+- `DELETE /api/datasets/{id}` - 删除训练集
+
+### 模型训练
+
+- `POST /api/training/create` - 创建训练任务
+- `POST /api/training/start/{taskId}` - 启动训练
+- `GET /api/training` - 获取所有训练任务
+- `GET /api/training/{id}` - 获取训练任务详情
+- `DELETE /api/training/{id}` - 删除训练任务
+
+### 模型推理服务
+
+- `POST /api/inference/create` - 创建推理任务(上传输入文件)
+- `POST /api/inference/execute/{inferenceTaskId}` - 执行推理
+- `GET /api/inference` - 获取所有推理任务
+- `GET /api/inference/{id}` - 获取推理任务详情
+- `GET /api/inference/model/{modelTaskId}` - 根据模型获取推理任务
+- `DELETE /api/inference/{id}` - 删除推理任务
+
+### 系统资源监控
+
+- `GET /api/monitor/metrics` - 获取系统资源指标(CPU、内存、磁盘)
+
+## 文件存储
+
+上传的文件默认存储在以下目录:
+- 算子文件:`./uploads/operators`
+- 训练集文件:`./uploads/datasets`
+- 模型文件:`./uploads/models`
\ No newline at end of file
diff --git a/ai_platform/backend/src/main/java/com/aiplatform/AiTrainingPlatformApplication.java b/ai_platform/backend/src/main/java/com/aiplatform/AiTrainingPlatformApplication.java
new file mode 100644
index 0000000000000000000000000000000000000000..051efb63c69edbf20e63de722521bb119f6985e1
--- /dev/null
+++ b/ai_platform/backend/src/main/java/com/aiplatform/AiTrainingPlatformApplication.java
@@ -0,0 +1,11 @@
+package com.aiplatform;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+
+@SpringBootApplication
+public class AiTrainingPlatformApplication {
+ public static void main(String[] args) {
+ SpringApplication.run(AiTrainingPlatformApplication.class, args);
+ }
+}
diff --git a/ai_platform/backend/src/main/java/com/aiplatform/config/CorsConfig.java b/ai_platform/backend/src/main/java/com/aiplatform/config/CorsConfig.java
new file mode 100644
index 0000000000000000000000000000000000000000..b5262aba1b06b48e22f3b8c8d5f9daa77674bf2c
--- /dev/null
+++ b/ai_platform/backend/src/main/java/com/aiplatform/config/CorsConfig.java
@@ -0,0 +1,56 @@
+package com.aiplatform.config;
+
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.context.annotation.Bean;
+import org.springframework.context.annotation.Configuration;
+import org.springframework.web.cors.CorsConfiguration;
+import org.springframework.web.cors.UrlBasedCorsConfigurationSource;
+import org.springframework.web.filter.CorsFilter;
+
+import java.util.Objects;
+
+@Configuration
+public class CorsConfig {
+
+ @Value("${cors.allowed-origins}")
+ private String allowedOrigins;
+
+ @Value("${cors.allowed-methods}")
+ private String allowedMethods;
+
+ @Value("${cors.allowed-headers}")
+ private String allowedHeaders;
+
+ @Value("${cors.allow-credentials}")
+ private boolean allowCredentials;
+
+ @Bean
+ public CorsFilter corsFilter() {
+ UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
+ CorsConfiguration config = new CorsConfiguration();
+
+ // 允许的源
+ for (String origin : allowedOrigins.split(",")) {
+ String trimmedOrigin = Objects.requireNonNull(origin).trim();
+ if (!trimmedOrigin.isEmpty()) {
+ config.addAllowedOrigin(trimmedOrigin);
+ }
+ }
+
+ // 允许的方法
+ for (String method : allowedMethods.split(",")) {
+ String trimmedMethod = Objects.requireNonNull(method).trim();
+ if (!trimmedMethod.isEmpty()) {
+ config.addAllowedMethod(trimmedMethod);
+ }
+ }
+
+ // 允许的请求头
+ String validHeaders = Objects.requireNonNull(allowedHeaders, "允许的请求头不能为空");
+ config.addAllowedHeader(validHeaders);
+ config.setAllowCredentials(allowCredentials);
+
+ source.registerCorsConfiguration("/**", config);
+ return new CorsFilter(source);
+ }
+}
diff --git a/ai_platform/backend/src/main/java/com/aiplatform/config/DataInitializer.java b/ai_platform/backend/src/main/java/com/aiplatform/config/DataInitializer.java
new file mode 100644
index 0000000000000000000000000000000000000000..2a6d95ce649db7f0be9d0c2fb7e84d95380efbd1
--- /dev/null
+++ b/ai_platform/backend/src/main/java/com/aiplatform/config/DataInitializer.java
@@ -0,0 +1,36 @@
+package com.aiplatform.config;
+
+import com.aiplatform.entity.User;
+import com.aiplatform.repository.UserRepository;
+import lombok.RequiredArgsConstructor;
+import org.springframework.boot.CommandLineRunner;
+import org.springframework.security.crypto.password.PasswordEncoder;
+import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
+import org.springframework.stereotype.Component;
+
+@Component
+@RequiredArgsConstructor
+public class DataInitializer implements CommandLineRunner {
+
+ private final UserRepository userRepository;
+ private final PasswordEncoder passwordEncoder = new BCryptPasswordEncoder();
+
+ @Override
+ public void run(String... args) {
+ // 检查是否已有用户,如果没有则创建默认管理员
+ if (userRepository.count() == 0) {
+ User admin = new User();
+ admin.setUsername("admin");
+ admin.setPassword(passwordEncoder.encode("admin123"));
+ admin.setEmail("admin@aiplatform.com");
+ admin.setNickname("管理员");
+ admin.setRole(User.UserRole.ADMIN);
+ userRepository.save(admin);
+ System.out.println("========================================");
+ System.out.println("默认管理员账号已创建:");
+ System.out.println("用户名: admin");
+ System.out.println("密码: admin123");
+ System.out.println("========================================");
+ }
+ }
+}
diff --git a/ai_platform/backend/src/main/java/com/aiplatform/config/FileConfig.java b/ai_platform/backend/src/main/java/com/aiplatform/config/FileConfig.java
new file mode 100644
index 0000000000000000000000000000000000000000..a73e8343aec855ec5efc38e8d64fca0124bdc380
--- /dev/null
+++ b/ai_platform/backend/src/main/java/com/aiplatform/config/FileConfig.java
@@ -0,0 +1,14 @@
+package com.aiplatform.config;
+
+import lombok.Data;
+import org.springframework.boot.context.properties.ConfigurationProperties;
+import org.springframework.context.annotation.Configuration;
+
+@Configuration
+@ConfigurationProperties(prefix = "file.upload")
+@Data
+public class FileConfig {
+ private String operatorPath;
+ private String datasetPath;
+ private String modelPath;
+}
diff --git a/ai_platform/backend/src/main/java/com/aiplatform/config/JwtAuthFilter.java b/ai_platform/backend/src/main/java/com/aiplatform/config/JwtAuthFilter.java
new file mode 100644
index 0000000000000000000000000000000000000000..d2ca55ce3cc7f597dccad512f79d67b9b5fdf116
--- /dev/null
+++ b/ai_platform/backend/src/main/java/com/aiplatform/config/JwtAuthFilter.java
@@ -0,0 +1,66 @@
+package com.aiplatform.config;
+
+import com.aiplatform.util.JwtUtil;
+import jakarta.servlet.FilterChain;
+import jakarta.servlet.ServletException;
+import jakarta.servlet.http.HttpServletRequest;
+import jakarta.servlet.http.HttpServletResponse;
+import org.springframework.lang.NonNull;
+import lombok.RequiredArgsConstructor;
+import org.springframework.stereotype.Component;
+import org.springframework.web.filter.OncePerRequestFilter;
+
+import java.io.IOException;
+import java.util.Arrays;
+import java.util.List;
+
+@Component
+@RequiredArgsConstructor
+public class JwtAuthFilter extends OncePerRequestFilter {
+
+ private final JwtUtil jwtUtil;
+
+ private static final List
1. 自适应文字高度,表格行高自适应
2. 最高显示3行,3行以上,文本框内不滚动。
",M="3",N="7949c71764a544fd8c776de332ab2504",O="新建",P="1.点击新建,在表格下新增一行
",Q="4",R="e4402a5add2e4ec1bd1d82837f4a23de",S="(下拉列表)",T="1. 选项值有 STRING,BOOLEAN,FLOAT,INTEGER
",U="5",V="4991a120f06c4a15bfce12c4ad2a0c80",W="?",X="1. 点击问号从右侧滑动出现提示框
",Y="6",Z="37f837c4609149e2a440b3ad093e644c",ba="保存",bb="1.保存时要做必填校验
",bc="7",bd="369ee3b0ace34a2f8455f25c84507b43",be="next",bf="1.上传文件之后才能点击下一步按钮
",bg="style",bh="baseStyle",bi="627587b6038d43cca051c114ac41ad32",bj="pageAlignment",bk="center",bl="fill",bm="fillType",bn="solid",bo="color",bp=0xFFFFFFFF,bq="image",br="imageAlignment",bs="near",bt="imageRepeat",bu="auto",bv="favicon",bw="sketchFactor",bx="0",by="colorStyle",bz="appliedColor",bA="fontName",bB="Applied Font",bC="borderWidth",bD="borderVisibility",bE="borderFill",bF=0xFF797979,bG="cornerRadius",bH="cornerVisibility",bI="outerShadow",bJ="on",bK=false,bL="offsetX",bM=5,bN="offsetY",bO="blurRadius",bP="r",bQ=0,bR="g",bS="b",bT="a",bU=0.349019607843137,bV="adaptiveStyles",bW="interactionMap",bX="diagram",bY="objects",bZ="id",ca="231f670aac464031adb36e0b51618301",cb="friendlyType",cc="页面框架",cd="referenceDiagramObject",ce="styleType",cf="visible",cg=true,ch=1920,ci=1300,cj="imageOverrides",ck="masterId",cl="4b990bb6cff949a1b5064d9025ac7466",cm="17d59cd83b144ae7a9d69d505f948580",cn="上传",co="组合",cp="layer",cq="objs",cr="0f41c4ea67394100b3b2d96e1fa4d36d",cs="9287e972e40247bba03d1ddfac501a5d",ct="上传文件",cu="矩形",cv="vectorShape",cw=983,cx=440,cy="a79a1fe7ec6b4ad58fc140e383b1863a",cz="location",cA="x",cB=530,cC="y",cD=221,cE="generateCompound",cF="2e50fd12dd3c45beabb5155906d009a1",cG="'PingFangSC-Regular', 'PingFang SC'",cH=300,cI=40,cJ="2285372321d148ec80932747449c36c9",cK=862,cL=421,cM="fontSize",cN="20px",cO="eb0e94e32c94454a93529d67a84b6425",cP="foreGroundFill",cQ=0xFF999999,cR="opacity",cS=1,cT="4988d43d80b44008a4a415096f1632af",cU=394,cV=24,cW="horizontalAlignment",cX="lineSpacing",cY="24px",cZ=807,da=461,db="propagate",dc="88195f27852a49d29751fc4147885ba8",dd="新建功能",de="动态面板",df="dynamicPanel",dg=568,dh=520,di=232,dj=1203,dk="fixedHorizontal",dl="fixedMarginHorizontal",dm="fixedVertical",dn="middle",dp="fixedMarginVertical",dq="fixedKeepInFront",dr="scrollbars",ds="none",dt="fitToContent",du="diagrams",dv="1144a18f4d8745fc9b57c16832f50168",dw="新建项目",dx="Axure:PanelDiagram",dy="157b2056e3124e18ae43a192bd6858b3",dz="parentDynamicPanel",dA="panelIndex",dB=272,dC="9b4161a6aa0a435d9aea1729826fce91",dD="8",dE=0xFFF2F2F2,dF="d85600cfbe00401e88cecfbd03293b79",dG="形状",dH=0xFF00FF99,dI="9df11a1112d143398203dd9500c15309",dJ=0xFFFFFF,dK=0xFF707070,dL=10,dM=0.313725490196078,dN="innerShadow",dO=15,dP=539,dQ=18,dR="onClick",dS="description",dT="Click时 ",dU="cases",dV="conditionString",dW="isNewIfGroup",dX="caseColorHex",dY="9D33FA",dZ="actions",ea="action",eb="fadeWidget",ec="隐藏 新建功能逐渐 300毫秒",ed="displayName",ee="显示/隐藏",ef="actionInfoDescriptions",eg="隐藏 新建功能",eh="逐渐 300毫秒",ei="objectsToFades",ej="objectPath",ek="fadeInfo",el="fadeType",em="hide",en="options",eo="easing",ep="fade",eq="animation",er="duration",es="easingHide",et="animationHide",eu="durationHide",ev="showType",ew="bringToFront",ex="tabbable",ey="images",ez="normal~",eA="images/页面框架/u463.svg",eB="06a6645ce78b4a1ba426cb6f7d0daa63",eC="线段",eD="horizontalLine",eE=48,eF="images/上传算子/u819.svg",eG="7c9ced60964f4b8885e11965becc4069",eH=74,eI=16,eJ="4b98dba3ba994a15a9e130e35aa2418a",eK=19,eL=17,eM="16px",eN="verticalAlignment",eO="c36c5f2e17e245a08ed507e637e856c2",eP=200,eQ="8fb0dfe271e9441eb51b242795822402",eR=80,eS=32,eT=0xF2F2F2,eU=0xFF6576FF,eV="paddingTop",eW="stateStyles",eX="mouseOver",eY=0xFF8080FF,eZ="mouseDown",fa=0xFD596BFE,fb="disabled",fc="0.7",fd="paddingRight",fe="paddingBottom",ff="paddingLeft",fg=466,fh=220,fi="12px",fj="images/页面框架/u467.svg",fk="mouseOver~",fl="images/页面框架/u467_mouseOver.svg",fm="mouseDown~",fn="images/页面框架/u467_mouseDown.svg",fo="disabled~",fp="5d9226cd521e465885ff56f8650efbe4",fq=0xFF409EFF,fr=0xFFF0F7FF,fs=0xFE7ABBFF,ft=0xFFE4E4E4,fu=376,fv="images/页面框架/u468.svg",fw="images/页面框架/u468_mouseOver.svg",fx="images/页面框架/u468_mouseDown.svg",fy="24136564df4d4fe4b933dc9e6b9e4782",fz="表格",fA="table",fB=528,fC=60,fD=22,fE=83,fF="515e416e82424010afabd98ef5b54a05",fG="单元格",fH="tableCell",fI=264,fJ=30,fK="33ea2511485c479dbf973af3302f2352",fL=0x3F409EFF,fM=0xFFDBDFEA,fN="images/上传算子/u825.png",fO="6595f1224c414c64808be7c498d661b5",fP="images/上传算子/u827.png",fQ="4b3f6664f9504085adabbfd00173d764",fR="images/上传算子/u826.png",fS="c1c3d267caa748fb9236f8b54fc399d2",fT="images/上传算子/u828.png",fU="7a79ca3fb4d7485ea169242d8fe016af",fV="文本框",fW="textBox",fX=253,fY=20,fZ="hint",ga="3c35f7f584574732b5edbd0cff195f77",gb="2829faada5f8449da03773b96e566862",gc="44157808f2934100b68f2394a66b2bba",gd=293,ge=118,gf="HideHintOnFocused",gg="placeholderText",gh="f7c2230bd61241e68cdf454b01ebdf4b",gi="进度条",gj=-16,gk=330,gl="90042d59d2ce41e1a369ae1bfe0e41df",gm="灰色条",gn=0xFF00BB9A,go=8,gp=0xFFE9E9E9,gq="150",gr="left",gs="12",gt="10",gu="7d3d6fb162ed477ba5cca542609341f5",gv="ebb749fb23264d85aa79045143baf575",gw="亮色条",gx="fontWeight",gy="400",gz=90,gA="45",gB="c72728965d8f4811b550f773cd680f33",gC="提示",gD="'Arial Normal', 'Arial'",gE=39,gF="10px",gG=322,gH=231,gI="images/上传算子/提示_u833.svg",gJ="f205f643ec3342f9a0afcc8d5f7cdc1b",gK=14,gL=244,gM="84d8e044d5304e0c9f2101004b3cb21c",gN=320,gO="8f51ae529a1e49778eaad5c44f233a1a",gP=56,gQ=55,gR=343,gS="0bc2534cd98e45b788a17af52d912d84",gT="636822bc3085484f9c7fce0324772028",gU=0xFF000000,gV="images/上传算子/u837.svg",gW="a597fbac21a345558769dd40f7350fd0",gX=50,gY=88,gZ=381,ha="ebe8abe639554b51ba28ded27354587b",hb="ea1c36705be148ff8715fa4c3b3da0df",hc=121,hd=420,he="86374365f2f34304b3564cc37d9332ac",hf="20ac4170af1b474dab45bf2249b58014",hg="'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'",hh="650",hi=54,hj=21,hk="8c7a4c5ad69a4369a5f7788171ac0b32",hl=47,hm=476,hn="6090f489d0754dada4e3556ad9c61bc2",ho="垂直线",hp="verticalLine",hq="619b2148ccc1497285562264d51992f9",hr=259,hs="images/上传算子/u843.svg",ht="7a21c9ec031d497f83e93539a06d010a",hu=273,hv=345,hw="images/上传算子/u844.svg",hx="c39557a830184cc9a1ce3d38ebf113e8",hy=112,hz=303,hA="6c69212917174074ac94616e8e6e6389",hB=378,hC="6dfcdb59e48c41c489cd8dc935bdbb03",hD=333,hE="8e3d7a892c7342f496f0e677ae4bfe57",hF=408,hG="04635272886d4061aceb27225aa89da2",hH=363,hI=406,hJ="4650b31093094e728ba499a1d4872989",hK=313,hL=478,hM="b601db653c3144de979b49d7bab61afc",hN=285,hO=0x797979,hP=0.149019607843137,hQ="0f2ab8065da74484935a540875841b20",hR="编辑项目",hS="ea768387828b43b2ad1c3185e63c37fa",hT=1,hU=609,hV="08bdfc8ff4fd41718aba7461ff65f32e",hW="fe7b14fcbf454a368ae5b977613246ee",hX="dbdd84e0c28b4bcb9aa9fc030c93502e",hY="9c9f2b8eb9a5479481c945a0c4e805bb",hZ="'微软雅黑'",ia=400,ib=0xFFCCCCCC,ic="focused",id=64,ie=158,ig=255,ih=0.247058823529412,ii="7ab43cffe242402abb64197ed53041a2",ij=120,ik=68,il=0.0980392156862745,im="20字符:字母、数字、汉字、英文横杠(不可在首尾)和下划线",io="ba45137986fe4cb7990b808b3aaab7d9",ip=543,iq="72ba83844fe24ca39137f3fbb843c097",ir=562,is="76bf09608c3345fba5be5fe6098179d0",it=350,iu="a3be41753e2d4c6b9948cb21be869cfc",iv=307,iw="f773d7dc16e849d8a6cf5284652d803a",ix="700",iy=0xFFE26866,iz=304,iA="15b81720cc7d41719ea3dc8a791536ee",iB=36,iC=79,iD="59c6b8a0220e47d1be77f85c83c6a8ad",iE=76,iF="1aed549595e04df4a4197df195fff5bd",iG=-18,iH=-1181,iI="d72339ed43f547f2a5016dc770315959",iJ=138,iK=126,iL="请用一段话描述Notebook",iM="080a18bb067941d9ab506cd74f7eef04",iN=472,iO="312a06813b0f4393a305bf48059e8253",iP=61,iQ=131,iR="ab1cb85e285e4fe8a12d74ac163adb8c",iS=128,iT="1e8bd74ef2524cb7b6d745972284f691",iU="单选按钮",iV="radioButton",iW="selected",iX=100,iY="b61231a94db9418aac4b368e51f035a6",iZ="9bd0236217a94d89b0314c8c7fc75f16",ja=301,jb="images/上传算子/u869.svg",jc="selected~",jd="images/上传算子/u869_selected.svg",je="images/上传算子/u869_disabled.svg",jf="extraLeft",jg="2811c90e67e142cba5bd277f97e816b0",jh=331,ji="images/上传算子/u870.svg",jj="images/上传算子/u870_selected.svg",jk="images/上传算子/u870_disabled.svg",jl="ea2ffc197ccc4e8f9ffb1b5084d2f8ca",jm=339,jn="bf66450098b74df99e87b621e5e998a1",jo="images/上传算子/u872.png",jp="882e08dc586145c1b724d5deb6f59ba1",jq="56b78352870a451082cbe9b40ee99480",jr="images/上传算子/u880.png",js="73bee7b199ca4a4889dcb138b8967ad2",jt="466a884a1848415fbcb856c37e332a07",ju="c69fcca081ee46dc8c4ec1018f774a32",jv="d4bf0ffa8650437587e407c6e65adf92",jw="f16a7243e14a4a1bb5c6d521e0694d47",jx="8a515e9f101f4038bd52b22c0bb849d8",jy="ce792674d86546eca61ff8719ea356c3",jz="images/上传算子/u875.png",jA="2c531c31083842cfadc7b07b1c1655ef",jB="368e18edf603416695798fb914e5e86b",jC="images/上传算子/u883.png",jD="b090ad9bdda34a71ab0c4480ff2703d2",jE=78,jF=129,jG=377,jH="images/上传算子/u884.svg",jI="images/上传算子/u884_selected.svg",jJ="images/上传算子/u884_disabled.svg",jK="b4b1b20a27e246c19196272942ce883c",jL=407,jM="images/上传算子/u885.svg",jN="images/上传算子/u885_selected.svg",jO="images/上传算子/u885_disabled.svg",jP="718518ab53224570b5e7af91e735c326",jQ=442,jR="cbe84439b2684799a784ddda089b2cc4",jS=35,jT=441,jU="setPanelState",jV="设置 当前 到 State",jW="设置面板状态",jX="当前 到 下一项 循环",jY="panelsToStates",jZ="panelPath",ka="stateInfo",kb="setStateType",kc="stateNumber",kd=2,ke="stateValue",kf="exprType",kg="stringLiteral",kh="value",ki="stos",kj="loop",kk="showWhenSet",kl="compress",km="98df2761d0a24983bd9d91130dd41129",kn="State2",ko="47a21d1056ec4bb1a9411b3d0135822e",kp="fb6a93d7be084314af5e276581163c68",kq="23",kr="d2bc8ecd50a940cb91206d59610e5b2a",ks="圆形",kt="images/上传算子/u889.svg",ku="90860963402b4cec9aaf3664afc8dcf1",kv="State1",kw="2da2a5ff65f44f8fb93af5ae3b13eb50",kx=0xFF0099FF,ky="e7b03321df1b4a13a260892faeb50b46",kz="98e6d716d9574756b905a3ea1fe33cde",kA=0xA5000000,kB=0.647058823529412,kC=37,kD="14px",kE=0xFFD9D9D9,kF="e4749bee63c64451925009873af32f6d",kG="22px",kH="685426aa510945239f6128aed9109dee",kI="图片 ",kJ="imageBox",kK="'Microsoft YaHei Regular', 'Microsoft YaHei'",kL=215,kM=57,kN="0.449999988079071",kO="rotation",kP="90",kQ="c782fa96c9604e70bd1ad6f6697a2fbf",kR="images/上传算子/u893.png",kS="2bf9d7b3d49a4efb9e5b1ead89daf3cb",kT=41,kU="270",kV="f73c5146279345ae99fd37854eaf5627",kW=209,kX="3f97fea5aa6b432f805daf3658888381",kY="images/上传算子/u895.svg",kZ="6526f6b6a88442b3bf79ffa4a6957517",la=194,lb=53,lc=31,ld="images/上传算子/u896.svg",le="0ee23b5540c544748cf2698dcd1658f0",lf="下拉列表",lg="comboBox",lh=0xFF7F7F7F,li=114,lj="c568339db4984d358bd04c4ed6515825",lk="52c2f47050b34ae4adaad89b64668a0f",ll="显示 当此Notebook未操作时间超过设置的 弹出效果",lm="显示 当此Notebook未操作时间超过设置的",ln=" 弹出效果",lo="0cc99655a61744a1a92bc9f4be404dfe",lp="show",lq="flyout",lr="images/上传算子/u898.svg",ls=0xFF666666,lt=473,lu="15",lv="top",lw="3ce7b3fb0d234dc3b535f79e53df2dc0",lx=1655,ly=23,lz="linkWindow",lA="打开 底层 在 当前窗口",lB="打开链接",lC="底层",lD="target",lE="targetType",lF="backUrl",lG="includeVariables",lH="linkType",lI="current",lJ="images/上传算子/u900.svg",lK="442647e8c5cf4b019aa602c5a851a525",lL="tab1",lM="becf097643434b02ab8a22c8db46260d",lN=867,lO=580,lP=110,lQ="images/上传算子/tab1_u901.png",lR="369ee3b0ace34a2f8455f25c84507b43",lS=77,lT=1565,lU="0.6",lV="隐藏 tab1",lW="显示 tab2",lX="4f40d334603a46059d19f4518489c38e",lY="隐藏 当前",lZ="显示 保存",ma="37f837c4609149e2a440b3ad093e644c",mb="显示 上一步",mc="5c5f9d939d74490098ab2074bcd6ca6e",md="隐藏 上传",me="显示 超参",mf="f7c9a106d9e24d9f9ec4ad56f5885ef3",mg="显示/隐藏元件",mh="显示 基础信息",mi="e3f3f8ba6e9a4397bc26a7e8df2c4aa5",mj="images/上传算子/next_u902.png",mk="tab2",ml=863,mm=108,mn="images/上传算子/tab2_u903.png",mo="f9736d76760840dc9e3b5ff52a0dff70",mp=58,mq=28,mr=1568,ms="images/上传算子/保存_u905.png",mt="上一步",mu=82,mv=1471,mw="显示 next",mx="隐藏 保存",my="显示 tab1",mz="隐藏 tab2",mA="隐藏 超参",mB="隐藏 基础信息",mC="显示 上传",mD="images/上传算子/上一步_u906.png",mE="bb5d9f3fd93a40d2a1883385d69d419b",mF="算子编辑",mG=1770,mH=1059,mI=66,mJ=180,mK="9927073148314c7d99b51b69728cb039",mL="基础信息",mM=1714,mN=94,mO=213,mP="onResize",mQ="Resize时 ",mR="显示 当前 推动 元件 下方",mS="显示 当前",mT=" 推动 元件 下方",mU="vertical",mV="compressEasing",mW="compressDuration",mX=500,mY="onSwipeLeft",mZ="SwipeLeft时 ",na="设置动态面板状态",nb="d72b4ca8719e4b148ecb1afb959405b3",nc="830d2d02875b42a98059c0f7072ca669",nd=-94,ne=-213,nf="f07b415dcb03438d8826205beb741adf",ng=2,nh=0xFF3F8FCC,ni="862d621732d14cf0b7ae4ed5318cc25f",nj="'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC'",nk="500",nl="ff05c4e96487418ab178ce658707f81e",nm=1706,nn=-1,no=0xFFDADFE6,np="0.0535890368068833",nq="images/上传算子/u912.svg",nr="336361017b594490a15c5a01ff962337",ns="4311151ce69741ca89a4bddb5328e5b0",nt=65,nu="13px",nv="3458b17b029248d9aa8aac46493d129c",nw=6,nx=3,ny="2fffbb20f91d423cafb09a1c209ccef8",nz="4889d666e8ad4c5e81e59863039a5cc0",nA="991e8b5e81cb425abf962546d004013e",nB="汉字、英文、数字、下划线,4-50字符",nC="a9b2fd0b7d074c43819ca213a69ab43a",nD="358600fec82146c8ac2fc7fff26f1147",nE=-60,nF=-194,nG="52fdc57bf5144867824c9f9ea55d269d",nH="c39e2f39764645c685b04c1ba5a7a65e",nI=1611,nJ=181,nK="ca1b319dd84947e7898e815f582eba1d",nL=134,nM="87d37eb682c841ff868b444a3af28338",nN="d9b11acee20d462f8e5f24bbad53c4ab",nO=127,nP="13ba24d5d83e4c36a2524d73a0a71919",nQ="7e52f15d7133421b9a3249dc56190e01",nR="切换显示/隐藏 选择文件Show 向下滑动 500毫秒, Hide 向上滑动 500毫秒",nS="切换可见性 选择文件",nT="Show 向下滑动 500毫秒, Hide 向上滑动 500毫秒",nU="9f5e0f1deee147a78f26ab143c77feb9",nV="toggle",nW="slideDown",nX="slideUp",nY="请选择启动文件,例如train.py",nZ="选择文件",oa=140,ob="images/上传算子/选择文件_u925.png",oc="4991a120f06c4a15bfce12c4ad2a0c80",od=418,oe="显示 弹窗 灯箱效果",of="显示 弹窗",og=" 灯箱效果",oh="9a44102f78e142ffb06700a26e13d318",oi="lightbox",oj=47,ok=79,ol=155,om="设置 弹窗 到 到 State1 ",on="弹窗 到 State1",oo="设置 弹窗 到 到 State1 ",op="f8870d98a6e4468389c9f0e4f8460588",oq=1141,or=207,os="caa5b72c90b546b4b9b3cea6b2b95a50",ot="4d5ea58fa4094a95b55576bfdd661cb0",ou="c1c818d35f71440fbfc6b2d02849f7b5",ov=13,ow="596dfec0c4b14b8db255d87397fd161a",ox=1646,oy=34,oz="0.0337180630969462",oA="images/上传算子/u930.svg",oB="40a077ddf93047a7ad01c3f0c76f9f2b",oC=-50,oD=-113,oE="设置 基础信息 到 到 下一项 循环 如果隐藏则显示 推动和拉动元件 下方",oF="基础信息 到 下一项 循环",oG="如果隐藏则显示 推动和拉动元件 下方",oH="设置 基础信息 到 到 下一项 循环 如果隐藏则显示 推动和拉动元件 下方",oI="04af82138ed44a85b38910b7b0ac25d3",oJ="8ded741a00044f7497c92f5d4fde27f6",oK=11,oL=1634,oM="180",oN="images/上传算子/u933.svg",oO="超参",oP=1742,oQ=329,oR="10697d5ba2944b539c8f7379cdf155c5",oS="80841a4a0c21478aa9a2c9c583fd5834",oT="98fa68b1dc0f4b7cab9cab5c6eee0095",oU="key",oV="654167cd66fc4a668525e05080232986",oW=1725,oX="-0.103912973875049",oY="images/上传算子/u937.svg",oZ="8d93287fa25342be887a5456c0b17326",pa=0xFFAAAAAA,pb=12,pc=101,pd=4,pe="11px",pf="7949c71764a544fd8c776de332ab2504",pg=49,ph="ea5c9448568441548565e27e3f41740a",pi=1560,pj=109,pk="1eec2a85507d44f0b246a0b8035a477b",pl=290,pm=38,pn="images/上传算子/u941.png",po="03db92c1952848e6b9becb709d4b075a",pp="images/上传算子/u947.png",pq="440602d371a740278dcf9022656c7f3a",pr=42,ps="images/上传算子/u953.png",pt="88a37e35f11a48b68a5f9c0c6f7a3fc9",pu="images/上传算子/u942.png",pv="fbe1d084bbee409884cc69c665dd443a",pw="images/上传算子/u948.png",px="2700fea09f204627a38c52b91769cec6",py="images/上传算子/u954.png",pz="6274ed1d74c9428394741980dc6a306e",pA=490,pB="images/上传算子/u943.png",pC="40ef022700004c95a7a45daed03ffdd7",pD="images/上传算子/u949.png",pE="2c0d89a982dd4908a4cb6966d7ad088e",pF="images/上传算子/u955.png",pG="1b35f6912f83450f8cdf4ff26c6005fa",pH=810,pI=250,pJ="images/上传算子/u944.png",pK="ed1f6c0c79234d358f32b385e1226d6a",pL="images/上传算子/u950.png",pM="69fa35417b3048688ccb92e2f9699be0",pN="images/上传算子/u956.png",pO="b9ea999da4df46a8b9b7adf19ab9ecf3",pP=1060,pQ="71e6f29766244cd7815bd4d680e9df97",pR="f38c324179144e4996220cf539d055f7",pS="7470423e5a234c79adf6704755ac7eed",pT=1310,pU="b2de82ff08ee46ceab958b199b3e49b1",pV="images/上传算子/u952.png",pW="ca66b6c267764eedbe1e0e5ee90bf588",pX="images/上传算子/u958.png",pY="1e224db1f8f6418fbdd8d64def02ddfc",pZ=160,qa="images/上传算子/u965.png",qb="c945aa8b91534485bd8885d8bf13525d",qc="images/上传算子/u966.png",qd="4d78eac84f7e4116877bac74e942d369",qe="images/上传算子/u967.png",qf="0ab2c1a31b6c46ef833d38407af342ec",qg="images/上传算子/u968.png",qh="4ed118712d464e72ae68127159a087ac",qi="e3d8a3a7d6d34459822ed08685f2e9f7",qj="images/上传算子/u970.png",qk="26478f9c395347c9a06fbdb67dfc1941",ql="9878069c328245589dea8e6bd3939025",qm="ce773209168b4b8f8d70aea632b663f0",qn="ebc36cee53b14ecbb71541e97d4f0583",qo="14a9c4d44ea347ac8c9920816bd28874",qp="1326f2bd82ba4fd08dc765f0943b4b6a",qq="4a942d5cfb6340b0ac0f3c1ea84ebe51",qr=159,qs="efec0d31601e41a6a51b11812a3f25a1",qt=29,qu=192,qv="请输入参数的描述信息",qw="87131a8a7f1447409d14958ce5ac98a0",qx=153,qy="f5716fdefe0b4eff94216c504fe2dc73",qz=-66,qA=-921,qB="1526ec44a9b24fe68732cd52fe7ea2d5",qC=-964,qD="8aa369ec94dc425085c73ff0e9290fe9",qE="4f6d74ecb22443dfa0be54073416a287",qF=1425,qG=161,qH="f586977211a44dbfbed1db681f57ad95",qI=1400,qJ="images/上传算子/u978.svg",qK="a8be31c436e34be0a430623875bca9ea",qL=269,qM="e4402a5add2e4ec1bd1d82837f4a23de",qN=162,qO=25,qP=325,qQ=158,qR="b0b6cafbf2d641449fda2cf254827ddb",qS=204,qT=840,qU="请输入参数的默认值",qV="ccfafe063d8e4de1a3e95d8097fe5982",qW="779700c07bf5440bb2bb0365f7864cb9",qX=141,qY=26,qZ=1120,ra="14330eee0a004b64965b5741bf3ff56c",rb=1259,rc=169,rd="124b2f41e3fe4a3e800dcf17c71df6cb",re=1284,rf=171,rg="7da02af42512438f963b152f7b24219b",rh=203,ri="4c2d6ca6cd634a8b8e2f50b053750bbd",rj=201,rk="cdc8aa994cd0468e9ac41c066f1d9658",rl=1269,rm=179,rn="771b8f3e59ee4e0b8bef6adc21b0f6d8",ro=1294,rp="5e0d7ce608ec4871abec9bef9df0e2aa",rq=235,rr="7a262e66f8a3482eaccd9fcf148bd5ee",rs=233,rt="c445964d8e3344c3b030f02cb7a97a16",ru=1279,rv=189,rw="e221b5c9ba7c4298bc9c7dec9ef50103",rx=1304,ry=191,rz="1f6c50d296e44f73b93065ef4e9610cc",rA=275,rB="00c6118e9b12487a85354a55c86bf8f4",rC="fe91bb3f17ab496e91d678e359816b0b",rD=199,rE="41570678fef54844b148cf5fb422e620",rF="10fd17e08b2f442fa75138f7f9dd1b4a",rG=279,rH="6996cf5817c44ebe962c3fc3e4896afa",rI="6fa957af07fd4a0891386d4dfc7bce8e",rJ=193,rK="82e3110f65364d6d888a561f43160ce6",rL="b1e1c8dbb9c74917a584f4722ccd0169",rM=258,rN="aacd413349334048a3881e3ab172d813",rO="a8361795aa4143eabb6667715538926a",rP="5ee73b2211b04f3aa21b4dfaee286cc3",rQ="82fdcb6ac4dd453da353f8789eca2291",rR="ca28649cae3a420a90bf92ae4c04719f",rS=238,rT="19af0134c21f45cbb036e4640f06a5cd",rU="8ce2fed9af0a46d7bc3a3665d4991c17",rV="35a8e878c8624089bfa8e51d5ab9d01f",rW="dbf35277ae824efa91bb95ad1f487072",rX="onLoad",rY="Load时 ",rZ="setFunction",sa="设置 文字于 当前等于"[[LVAR1]]"",sb="设置文本",sc="当前 为 \"[[LVAR1]]\"",sd="文字于 当前等于\"[[LVAR1]]\"",se="expr",sf="block",sg="subExprs",sh="fcall",si="functionName",sj="SetWidgetRichText",sk="arguments",sl="pathLiteral",sm="isThis",sn="isFocused",so="isTarget",sp="[[LVAR1]]",sq="localVariables",sr="lvar1",ss="GetWidgetText",st="sto",su="var",sv="booleanLiteral",sw="2028bb22973c486ebfd3f6bbf524df45",sx="ee9c4d30757744348691ad7bbf107b0e",sy="设置 超参 到 到 下一项 循环 如果隐藏则显示 推动和拉动元件 下方",sz="超参 到 下一项 循环",sA="设置 超参 到 到 下一项 循环 如果隐藏则显示 推动和拉动元件 下方",sB="1cf68b6273cf4695add6c3812e22f91d",sC="c2f5e8261f4140fe9dccf8123b0cdc1d",sD="弹窗",sE=600,sF=1000,sG=1697,sH="right",sI="7ea7201aba4842bfaee913d098d638dd",sJ="628e762939354552912fe52add9a9231",sK="40519e9ec4264601bfb12c514e4f4867",sL="d33d25beefda4560abc89f873a0bee96",sM="隐藏 弹窗",sN="images/上传算子/u1017.svg",sO="d3bbd0eeb403496ebd66619f0c6009ee",sP="images/算法开发/u789.svg",sQ="9abed9c568fa4bc788282b05cecd08ac",sR="18px",sS="11a7d17d22f443829b91447f4a675727",sT="5304a1b09f8843bbad909c28b9727adc",sU=484,sV=0x198080FF,sW="3b97556fbeab4cc581842419aa088b37",sX="91c386e631e24388a7524d3428c32dd8",sY="3cfbecb3331a4b3f9eafc67db1511801",sZ="f804ed4f204342d39dfc3021ba76a056",ta="1a14f2d296964a008d72666715853c1c",tb="1d0cf36b93a7497ab1f7ef3f11de2577",tc=416,td="43f3e2bf150e4a6680acc2abc1ffa444",te=249,tf="masters",tg="4b990bb6cff949a1b5064d9025ac7466",th="Axure:Master",ti="b4af901033b249d38ee8eb1b94777365",tj="573733447bee46eea78d2b52ca56b99a",tk=0xFFF5F6FA,tl="458c47cd3b3c4a7eb8cf043d32222b99",tm=63,tn=0xFFD7D7D7,to="07056249b2ee422393616a7350baacea",tp=1859,tq=900,tr="a7ce4e4c5c6d4f7da2e684ee804f68d0",ts="设置 文字于 当前等于"[[Pagename]]"",tt="当前 为 \"[[Pagename]]\"",tu="文字于 当前等于\"[[Pagename]]\"",tv="[[Pagename]]",tw="pagename",tx="objectPaths",ty="231f670aac464031adb36e0b51618301",tz="scriptId",tA="u805",tB="b4af901033b249d38ee8eb1b94777365",tC="u806",tD="573733447bee46eea78d2b52ca56b99a",tE="u807",tF="458c47cd3b3c4a7eb8cf043d32222b99",tG="u808",tH="07056249b2ee422393616a7350baacea",tI="u809",tJ="a7ce4e4c5c6d4f7da2e684ee804f68d0",tK="u810",tL="17d59cd83b144ae7a9d69d505f948580",tM="u811",tN="0f41c4ea67394100b3b2d96e1fa4d36d",tO="u812",tP="9287e972e40247bba03d1ddfac501a5d",tQ="u813",tR="2e50fd12dd3c45beabb5155906d009a1",tS="u814",tT="eb0e94e32c94454a93529d67a84b6425",tU="u815",tV="88195f27852a49d29751fc4147885ba8",tW="u816",tX="157b2056e3124e18ae43a192bd6858b3",tY="u817",tZ="d85600cfbe00401e88cecfbd03293b79",ua="u818",ub="06a6645ce78b4a1ba426cb6f7d0daa63",uc="u819",ud="7c9ced60964f4b8885e11965becc4069",ue="u820",uf="c36c5f2e17e245a08ed507e637e856c2",ug="u821",uh="8fb0dfe271e9441eb51b242795822402",ui="u822",uj="5d9226cd521e465885ff56f8650efbe4",uk="u823",ul="24136564df4d4fe4b933dc9e6b9e4782",um="u824",un="515e416e82424010afabd98ef5b54a05",uo="u825",up="4b3f6664f9504085adabbfd00173d764",uq="u826",ur="6595f1224c414c64808be7c498d661b5",us="u827",ut="c1c3d267caa748fb9236f8b54fc399d2",uu="u828",uv="7a79ca3fb4d7485ea169242d8fe016af",uw="u829",ux="f7c2230bd61241e68cdf454b01ebdf4b",uy="u830",uz="90042d59d2ce41e1a369ae1bfe0e41df",uA="u831",uB="ebb749fb23264d85aa79045143baf575",uC="u832",uD="c72728965d8f4811b550f773cd680f33",uE="u833",uF="u834",uG="84d8e044d5304e0c9f2101004b3cb21c",uH="u835",uI="8f51ae529a1e49778eaad5c44f233a1a",uJ="u836",uK="0bc2534cd98e45b788a17af52d912d84",uL="u837",uM="a597fbac21a345558769dd40f7350fd0",uN="u838",uO="ebe8abe639554b51ba28ded27354587b",uP="u839",uQ="ea1c36705be148ff8715fa4c3b3da0df",uR="u840",uS="86374365f2f34304b3564cc37d9332ac",uT="u841",uU="20ac4170af1b474dab45bf2249b58014",uV="u842",uW="6090f489d0754dada4e3556ad9c61bc2",uX="u843",uY="7a21c9ec031d497f83e93539a06d010a",uZ="u844",va="c39557a830184cc9a1ce3d38ebf113e8",vb="u845",vc="6c69212917174074ac94616e8e6e6389",vd="u846",ve="6dfcdb59e48c41c489cd8dc935bdbb03",vf="u847",vg="8e3d7a892c7342f496f0e677ae4bfe57",vh="u848",vi="04635272886d4061aceb27225aa89da2",vj="u849",vk="4650b31093094e728ba499a1d4872989",vl="u850",vm="b601db653c3144de979b49d7bab61afc",vn="u851",vo="ea768387828b43b2ad1c3185e63c37fa",vp="u852",vq="08bdfc8ff4fd41718aba7461ff65f32e",vr="u853",vs="fe7b14fcbf454a368ae5b977613246ee",vt="u854",vu="dbdd84e0c28b4bcb9aa9fc030c93502e",vv="u855",vw="9c9f2b8eb9a5479481c945a0c4e805bb",vx="u856",vy="ba45137986fe4cb7990b808b3aaab7d9",vz="u857",vA="72ba83844fe24ca39137f3fbb843c097",vB="u858",vC="76bf09608c3345fba5be5fe6098179d0",vD="u859",vE="a3be41753e2d4c6b9948cb21be869cfc",vF="u860",vG="f773d7dc16e849d8a6cf5284652d803a",vH="u861",vI="15b81720cc7d41719ea3dc8a791536ee",vJ="u862",vK="59c6b8a0220e47d1be77f85c83c6a8ad",vL="u863",vM="1aed549595e04df4a4197df195fff5bd",vN="u864",vO="d72339ed43f547f2a5016dc770315959",vP="u865",vQ="080a18bb067941d9ab506cd74f7eef04",vR="u866",vS="312a06813b0f4393a305bf48059e8253",vT="u867",vU="ab1cb85e285e4fe8a12d74ac163adb8c",vV="u868",vW="1e8bd74ef2524cb7b6d745972284f691",vX="u869",vY="2811c90e67e142cba5bd277f97e816b0",vZ="u870",wa="ea2ffc197ccc4e8f9ffb1b5084d2f8ca",wb="u871",wc="bf66450098b74df99e87b621e5e998a1",wd="u872",we="73bee7b199ca4a4889dcb138b8967ad2",wf="u873",wg="d4bf0ffa8650437587e407c6e65adf92",wh="u874",wi="ce792674d86546eca61ff8719ea356c3",wj="u875",wk="882e08dc586145c1b724d5deb6f59ba1",wl="u876",wm="466a884a1848415fbcb856c37e332a07",wn="u877",wo="f16a7243e14a4a1bb5c6d521e0694d47",wp="u878",wq="2c531c31083842cfadc7b07b1c1655ef",wr="u879",ws="56b78352870a451082cbe9b40ee99480",wt="u880",wu="c69fcca081ee46dc8c4ec1018f774a32",wv="u881",ww="8a515e9f101f4038bd52b22c0bb849d8",wx="u882",wy="368e18edf603416695798fb914e5e86b",wz="u883",wA="b090ad9bdda34a71ab0c4480ff2703d2",wB="u884",wC="b4b1b20a27e246c19196272942ce883c",wD="u885",wE="718518ab53224570b5e7af91e735c326",wF="u886",wG="cbe84439b2684799a784ddda089b2cc4",wH="u887",wI="47a21d1056ec4bb1a9411b3d0135822e",wJ="u888",wK="d2bc8ecd50a940cb91206d59610e5b2a",wL="u889",wM="2da2a5ff65f44f8fb93af5ae3b13eb50",wN="u890",wO="e7b03321df1b4a13a260892faeb50b46",wP="u891",wQ="98e6d716d9574756b905a3ea1fe33cde",wR="u892",wS="685426aa510945239f6128aed9109dee",wT="u893",wU="2bf9d7b3d49a4efb9e5b1ead89daf3cb",wV="u894",wW="f73c5146279345ae99fd37854eaf5627",wX="u895",wY="6526f6b6a88442b3bf79ffa4a6957517",wZ="u896",xa="0ee23b5540c544748cf2698dcd1658f0",xb="u897",xc="52c2f47050b34ae4adaad89b64668a0f",xd="u898",xe="0cc99655a61744a1a92bc9f4be404dfe",xf="u899",xg="3ce7b3fb0d234dc3b535f79e53df2dc0",xh="u900",xi="442647e8c5cf4b019aa602c5a851a525",xj="u901",xk="u902",xl="4f40d334603a46059d19f4518489c38e",xm="u903",xn="f9736d76760840dc9e3b5ff52a0dff70",xo="u904",xp="u905",xq="5c5f9d939d74490098ab2074bcd6ca6e",xr="u906",xs="bb5d9f3fd93a40d2a1883385d69d419b",xt="u907",xu="e3f3f8ba6e9a4397bc26a7e8df2c4aa5",xv="u908",xw="830d2d02875b42a98059c0f7072ca669",xx="u909",xy="f07b415dcb03438d8826205beb741adf",xz="u910",xA="862d621732d14cf0b7ae4ed5318cc25f",xB="u911",xC="ff05c4e96487418ab178ce658707f81e",xD="u912",xE="336361017b594490a15c5a01ff962337",xF="u913",xG="4311151ce69741ca89a4bddb5328e5b0",xH="u914",xI="3458b17b029248d9aa8aac46493d129c",xJ="u915",xK="2fffbb20f91d423cafb09a1c209ccef8",xL="u916",xM="a9b2fd0b7d074c43819ca213a69ab43a",xN="u917",xO="358600fec82146c8ac2fc7fff26f1147",xP="u918",xQ="52fdc57bf5144867824c9f9ea55d269d",xR="u919",xS="c39e2f39764645c685b04c1ba5a7a65e",xT="u920",xU="ca1b319dd84947e7898e815f582eba1d",xV="u921",xW="87d37eb682c841ff868b444a3af28338",xX="u922",xY="d9b11acee20d462f8e5f24bbad53c4ab",xZ="u923",ya="7e52f15d7133421b9a3249dc56190e01",yb="u924",yc="9f5e0f1deee147a78f26ab143c77feb9",yd="u925",ye="u926",yf="f8870d98a6e4468389c9f0e4f8460588",yg="u927",yh="4d5ea58fa4094a95b55576bfdd661cb0",yi="u928",yj="c1c818d35f71440fbfc6b2d02849f7b5",yk="u929",yl="596dfec0c4b14b8db255d87397fd161a",ym="u930",yn="40a077ddf93047a7ad01c3f0c76f9f2b",yo="u931",yp="04af82138ed44a85b38910b7b0ac25d3",yq="u932",yr="8ded741a00044f7497c92f5d4fde27f6",ys="u933",yt="f7c9a106d9e24d9f9ec4ad56f5885ef3",yu="u934",yv="80841a4a0c21478aa9a2c9c583fd5834",yw="u935",yx="98fa68b1dc0f4b7cab9cab5c6eee0095",yy="u936",yz="654167cd66fc4a668525e05080232986",yA="u937",yB="8d93287fa25342be887a5456c0b17326",yC="u938",yD="u939",yE="ea5c9448568441548565e27e3f41740a",yF="u940",yG="1eec2a85507d44f0b246a0b8035a477b",yH="u941",yI="88a37e35f11a48b68a5f9c0c6f7a3fc9",yJ="u942",yK="6274ed1d74c9428394741980dc6a306e",yL="u943",yM="1b35f6912f83450f8cdf4ff26c6005fa",yN="u944",yO="b9ea999da4df46a8b9b7adf19ab9ecf3",yP="u945",yQ="7470423e5a234c79adf6704755ac7eed",yR="u946",yS="03db92c1952848e6b9becb709d4b075a",yT="u947",yU="fbe1d084bbee409884cc69c665dd443a",yV="u948",yW="40ef022700004c95a7a45daed03ffdd7",yX="u949",yY="ed1f6c0c79234d358f32b385e1226d6a",yZ="u950",za="71e6f29766244cd7815bd4d680e9df97",zb="u951",zc="b2de82ff08ee46ceab958b199b3e49b1",zd="u952",ze="440602d371a740278dcf9022656c7f3a",zf="u953",zg="2700fea09f204627a38c52b91769cec6",zh="u954",zi="2c0d89a982dd4908a4cb6966d7ad088e",zj="u955",zk="69fa35417b3048688ccb92e2f9699be0",zl="u956",zm="f38c324179144e4996220cf539d055f7",zn="u957",zo="ca66b6c267764eedbe1e0e5ee90bf588",zp="u958",zq="26478f9c395347c9a06fbdb67dfc1941",zr="u959",zs="9878069c328245589dea8e6bd3939025",zt="u960",zu="ce773209168b4b8f8d70aea632b663f0",zv="u961",zw="ebc36cee53b14ecbb71541e97d4f0583",zx="u962",zy="14a9c4d44ea347ac8c9920816bd28874",zz="u963",zA="1326f2bd82ba4fd08dc765f0943b4b6a",zB="u964",zC="1e224db1f8f6418fbdd8d64def02ddfc",zD="u965",zE="c945aa8b91534485bd8885d8bf13525d",zF="u966",zG="4d78eac84f7e4116877bac74e942d369",zH="u967",zI="0ab2c1a31b6c46ef833d38407af342ec",zJ="u968",zK="4ed118712d464e72ae68127159a087ac",zL="u969",zM="e3d8a3a7d6d34459822ed08685f2e9f7",zN="u970",zO="4a942d5cfb6340b0ac0f3c1ea84ebe51",zP="u971",zQ="efec0d31601e41a6a51b11812a3f25a1",zR="u972",zS="u973",zT="f5716fdefe0b4eff94216c504fe2dc73",zU="u974",zV="1526ec44a9b24fe68732cd52fe7ea2d5",zW="u975",zX="8aa369ec94dc425085c73ff0e9290fe9",zY="u976",zZ="4f6d74ecb22443dfa0be54073416a287",Aa="u977",Ab="f586977211a44dbfbed1db681f57ad95",Ac="u978",Ad="a8be31c436e34be0a430623875bca9ea",Ae="u979",Af="u980",Ag="b0b6cafbf2d641449fda2cf254827ddb",Ah="u981",Ai="ccfafe063d8e4de1a3e95d8097fe5982",Aj="u982",Ak="779700c07bf5440bb2bb0365f7864cb9",Al="u983",Am="14330eee0a004b64965b5741bf3ff56c",An="u984",Ao="124b2f41e3fe4a3e800dcf17c71df6cb",Ap="u985",Aq="7da02af42512438f963b152f7b24219b",Ar="u986",As="4c2d6ca6cd634a8b8e2f50b053750bbd",At="u987",Au="cdc8aa994cd0468e9ac41c066f1d9658",Av="u988",Aw="771b8f3e59ee4e0b8bef6adc21b0f6d8",Ax="u989",Ay="5e0d7ce608ec4871abec9bef9df0e2aa",Az="u990",AA="7a262e66f8a3482eaccd9fcf148bd5ee",AB="u991",AC="c445964d8e3344c3b030f02cb7a97a16",AD="u992",AE="e221b5c9ba7c4298bc9c7dec9ef50103",AF="u993",AG="1f6c50d296e44f73b93065ef4e9610cc",AH="u994",AI="00c6118e9b12487a85354a55c86bf8f4",AJ="u995",AK="fe91bb3f17ab496e91d678e359816b0b",AL="u996",AM="41570678fef54844b148cf5fb422e620",AN="u997",AO="10fd17e08b2f442fa75138f7f9dd1b4a",AP="u998",AQ="6996cf5817c44ebe962c3fc3e4896afa",AR="u999",AS="6fa957af07fd4a0891386d4dfc7bce8e",AT="u1000",AU="82e3110f65364d6d888a561f43160ce6",AV="u1001",AW="b1e1c8dbb9c74917a584f4722ccd0169",AX="u1002",AY="aacd413349334048a3881e3ab172d813",AZ="u1003",Ba="a8361795aa4143eabb6667715538926a",Bb="u1004",Bc="5ee73b2211b04f3aa21b4dfaee286cc3",Bd="u1005",Be="82fdcb6ac4dd453da353f8789eca2291",Bf="u1006",Bg="ca28649cae3a420a90bf92ae4c04719f",Bh="u1007",Bi="19af0134c21f45cbb036e4640f06a5cd",Bj="u1008",Bk="35a8e878c8624089bfa8e51d5ab9d01f",Bl="u1009",Bm="dbf35277ae824efa91bb95ad1f487072",Bn="u1010",Bo="2028bb22973c486ebfd3f6bbf524df45",Bp="u1011",Bq="ee9c4d30757744348691ad7bbf107b0e",Br="u1012",Bs="1cf68b6273cf4695add6c3812e22f91d",Bt="u1013",Bu="c2f5e8261f4140fe9dccf8123b0cdc1d",Bv="u1014",Bw="9a44102f78e142ffb06700a26e13d318",Bx="u1015",By="628e762939354552912fe52add9a9231",Bz="u1016",BA="d33d25beefda4560abc89f873a0bee96",BB="u1017",BC="d3bbd0eeb403496ebd66619f0c6009ee",BD="u1018",BE="9abed9c568fa4bc788282b05cecd08ac",BF="u1019",BG="11a7d17d22f443829b91447f4a675727",BH="u1020",BI="5304a1b09f8843bbad909c28b9727adc",BJ="u1021",BK="91c386e631e24388a7524d3428c32dd8",BL="u1022",BM="3cfbecb3331a4b3f9eafc67db1511801",BN="u1023",BO="f804ed4f204342d39dfc3021ba76a056",BP="u1024",BQ="1a14f2d296964a008d72666715853c1c",BR="u1025",BS="1d0cf36b93a7497ab1f7ef3f11de2577",BT="u1026",BU="43f3e2bf150e4a6680acc2abc1ffa444",BV="u1027"; +return _creator(); +})()); \ No newline at end of file diff --git "a/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\344\270\212\344\274\240\347\256\227\345\255\220/styles.css" "b/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\344\270\212\344\274\240\347\256\227\345\255\220/styles.css" new file mode 100644 index 0000000000000000000000000000000000000000..7ba4424e216760155185dab68bbfbb48127aecef --- /dev/null +++ "b/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\344\270\212\344\274\240\347\256\227\345\255\220/styles.css" @@ -0,0 +1,9239 @@ +body { + margin:0px; + background-image:none; + position:relative; + left:0px; + width:1920px; + margin-left:auto; + margin-right:auto; + text-align:left; +} +.form_sketch { + border-color:transparent; + background-color:transparent; +} +#base { + position:absolute; + z-index:0; +} +#u806 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u807_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1920px; + height:1300px; + background:inherit; + background-color:rgba(245, 246, 250, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u807 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1920px; + height:1300px; + display:flex; +} +#u807 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u807_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u808_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1920px; + height:63px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u808 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1920px; + height:63px; + display:flex; +} +#u808 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u808_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u809_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1859px; + height:900px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u809 { + border-width:0px; + position:absolute; + left:25px; + top:88px; + width:1859px; + height:900px; + display:flex; +} +#u809 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u809_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u810_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:400px; + height:22px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:16px; +} +#u810 { + border-width:0px; + position:absolute; + left:35px; + top:21px; + width:400px; + height:22px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:16px; +} +#u810 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u810_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u811 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u812 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u813_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:983px; + height:440px; + background:inherit; + background-color:rgba(242, 242, 242, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u813 { + border-width:0px; + position:absolute; + left:530px; + top:221px; + width:983px; + height:440px; + display:flex; +} +#u813 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u813_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u814_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:300px; + height:40px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:20px; +} +#u814 { + border-width:0px; + position:absolute; + left:862px; + top:421px; + width:300px; + height:40px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:20px; +} +#u814 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u814_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u815_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:394px; + height:24px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#999999; + text-align:center; + line-height:24px; +} +#u815 { + border-width:0px; + position:absolute; + left:807px; + top:461px; + width:394px; + height:24px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#999999; + text-align:center; + line-height:24px; +} +#u815 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u815_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u816 { + position:fixed; + left:50%; + margin-left:-284px; + top:50%; + margin-top:-260px; + visibility:hidden; +} +#u816_state0 { + position:relative; + left:0px; + top:0px; + width:568px; + height:520px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u816_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u817_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:568px; + height:272px; + 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:8px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u817 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:568px; + height:272px; + display:flex; +} +#u817 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u817_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u818_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:15px; + height:15px; +} +#u818 { + border-width:0px; + position:absolute; + left:539px; + top:18px; + width:15px; + height:15px; + display:flex; + color:#00FF99; +} +#u818 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u818_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u819_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:569px; + height:2px; +} +#u819 { + border-width:0px; + position:absolute; + left:0px; + top:48px; + width:568px; + height:1px; + display:flex; +} +#u819 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u819_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u820_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:74px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:16px; +} +#u820 { + border-width:0px; + position:absolute; + left:19px; + top:17px; + width:74px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:16px; +} +#u820 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u820_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u821_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:569px; + height:2px; +} +#u821 { + border-width:0px; + position:absolute; + left:0px; + top:200px; + width:568px; + height:1px; + display:flex; +} +#u821 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u821_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u822_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u822 { + border-width:0px; + position:absolute; + left:466px; + top:220px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#FFFFFF; + line-height:20px; +} +#u822 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u822_img.mouseOver { +} +#u822.mouseOver { +} +#u822_img.mouseDown { +} +#u822.mouseDown { +} +#u822_img.disabled { +} +#u822.disabled { + opacity:0.7; +} +#u822_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u823_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u823 { + border-width:0px; + position:absolute; + left:376px; + top:220px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#999999; +} +#u823 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u823_img.mouseOver { +} +#u823.mouseOver { +} +#u823_img.mouseDown { +} +#u823.mouseDown { +} +#u823_img.disabled { +} +#u823.disabled { + opacity:0.7; +} +#u823_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u824 { + border-width:0px; + position:absolute; + left:22px; + top:83px; + width:528px; + height:60px; +} +#u825_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:264px; + height:30px; +} +#u825 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:264px; + height:30px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u825 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u825_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u826_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:264px; + height:30px; +} +#u826 { + border-width:0px; + position:absolute; + left:264px; + top:0px; + width:264px; + height:30px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u826 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u826_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u827_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:264px; + height:30px; +} +#u827 { + border-width:0px; + position:absolute; + left:0px; + top:30px; + width:264px; + height:30px; + display:flex; +} +#u827 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u827_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u828_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:264px; + height:30px; +} +#u828 { + border-width:0px; + position:absolute; + left:264px; + top:30px; + width:264px; + height:30px; + display:flex; +} +#u828 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u828_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u829_input { + position:absolute; + left:0px; + top:0px; + width:253px; + height:20px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u829_input.disabled { + position:absolute; + left:0px; + top:0px; + width:253px; + height:20px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u829_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:253px; + height:20px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u829 { + border-width:0px; + position:absolute; + left:293px; + top:118px; + width:253px; + height:20px; + display:flex; +} +#u829 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u829_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:253px; + height:20px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u829.disabled { +} +#u830 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u831_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:300px; + height:8px; + background:inherit; + background-color:rgba(233, 233, 233, 1); + border:none; + border-radius:150px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:16px; + color:#00BB9A; + text-align:left; + line-height:16px; +} +#u831 { + border-width:0px; + position:absolute; + left:22px; + top:232px; + width:300px; + height:8px; + display:flex; + font-size:16px; + color:#00BB9A; + text-align:left; + line-height:16px; +} +#u831 .text { + position:absolute; + align-self:center; + padding:2px 10px 2px 12px; + box-sizing:border-box; + width:100%; +} +#u831_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u832_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:90px; + height:8px; + background:inherit; + background-color:rgba(101, 118, 255, 1); + border:none; + border-radius:45px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#FFFFFF; + line-height:16px; +} +#u832 { + border-width:0px; + position:absolute; + left:22px; + top:232px; + width:90px; + height:8px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#FFFFFF; + line-height:16px; +} +#u832 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u832_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u833_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:39px; + height:10px; +} +#u833 { + border-width:0px; + position:absolute; + left:322px; + top:231px; + width:39px; + height:10px; + display:flex; + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:10px; + text-align:center; + line-height:16px; +} +#u833 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u833_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u834_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:48px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u834 { + border-width:0px; + position:absolute; + left:22px; + top:244px; + width:48px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u834 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u834_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u835_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:568px; + height:200px; + 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; +} +#u835 { + border-width:0px; + position:absolute; + left:0px; + top:320px; + width:568px; + height:200px; + display:flex; +} +#u835 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u835_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u836_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:56px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u836 { + border-width:0px; + position:absolute; + left:55px; + top:343px; + width:56px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u836 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u836_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u837_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:18px; + height:20px; +} +#u837 { + border-width:0px; + position:absolute; + left:22px; + top:343px; + width:18px; + height:20px; + display:flex; +} +#u837 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u837_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u838_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:50px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u838 { + border-width:0px; + position:absolute; + left:88px; + top:381px; + width:50px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u838 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u838_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u839_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:18px; + height:20px; +} +#u839 { + border-width:0px; + position:absolute; + left:55px; + top:381px; + width:18px; + height:20px; + display:flex; +} +#u839 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u839_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u840_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:50px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u840 { + border-width:0px; + position:absolute; + left:121px; + top:420px; + width:50px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u840 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u840_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u841_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:18px; + height:20px; +} +#u841 { + border-width:0px; + position:absolute; + left:88px; + top:420px; + width:18px; + height:20px; + display:flex; +} +#u841 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u841_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u842_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:54px; + height:21px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; +} +#u842 { + border-width:0px; + position:absolute; + left:47px; + top:476px; + width:54px; + height:21px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; +} +#u842 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u842_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u843_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:2px; + height:201px; +} +#u843 { + border-width:0px; + position:absolute; + left:259px; + top:320px; + width:1px; + height:200px; + display:flex; +} +#u843 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u843_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u844_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:16px; +} +#u844 { + border-width:0px; + position:absolute; + left:273px; + top:345px; + width:20px; + height:16px; + display:flex; +} +#u844 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u844_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u845_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:112px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u845 { + border-width:0px; + position:absolute; + left:303px; + top:343px; + width:112px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u845 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u845_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u846_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:16px; +} +#u846 { + border-width:0px; + position:absolute; + left:303px; + top:378px; + width:20px; + height:16px; + display:flex; +} +#u846 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u846_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u847_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:50px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u847 { + border-width:0px; + position:absolute; + left:333px; + top:376px; + width:50px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u847 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u847_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u848_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:16px; +} +#u848 { + border-width:0px; + position:absolute; + left:333px; + top:408px; + width:20px; + height:16px; + display:flex; +} +#u848 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u848_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u849_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:50px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u849 { + border-width:0px; + position:absolute; + left:363px; + top:406px; + width:50px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u849 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u849_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u850_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:54px; + height:21px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; +} +#u850 { + border-width:0px; + position:absolute; + left:313px; + top:478px; + width:54px; + height:21px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; +} +#u850 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u850_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u851_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:90px; + height:21px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; +} +#u851 { + border-width:0px; + position:absolute; + left:0px; + top:285px; + width:90px; + height:21px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; +} +#u851 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u851_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u816_state1 { + position:relative; + left:0px; + top:0px; + width:568px; + height:609px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + visibility:hidden; +} +#u816_state1_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u852_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:568px; + height:609px; + 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:8px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u852 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:568px; + height:609px; + display:flex; +} +#u852 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u852_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u853_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:15px; + height:15px; +} +#u853 { + border-width:0px; + position:absolute; + left:539px; + top:18px; + width:15px; + height:15px; + display:flex; + color:#00FF99; +} +#u853 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u853_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u854_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:569px; + height:2px; +} +#u854 { + border-width:0px; + position:absolute; + left:0px; + top:48px; + width:568px; + height:1px; + display:flex; +} +#u854 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u854_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u855_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:74px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:16px; +} +#u855 { + border-width:0px; + position:absolute; + left:19px; + top:17px; + width:74px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:16px; +} +#u855 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u855_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u856_input { + position:absolute; + left:0px; + top:0px; + width:400px; + height:40px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u856_input.mouseOver { + position:absolute; + left:0px; + top:0px; + width:400px; + height:40px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u856_input.focused { + position:absolute; + left:0px; + top:0px; + width:400px; + height:40px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u856_input.disabled { + position:absolute; + left:0px; + top:0px; + width:400px; + height:40px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u856_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:400px; + height:40px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u856 { + border-width:0px; + position:absolute; + left:120px; + top:68px; + width:400px; + height:40px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u856 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 10px; + box-sizing:border-box; + width:100%; +} +#u856_div.mouseOver { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:400px; + height:40px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(64, 158, 255, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u856.mouseOver { +} +#u856_div.focused { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:400px; + height:40px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(64, 158, 255, 1); + border-radius:4px; + -moz-box-shadow:0px 0px 5px rgba(64, 158, 255, 0.247058823529412); + -webkit-box-shadow:0px 0px 5px rgba(64, 158, 255, 0.247058823529412); + box-shadow:0px 0px 5px rgba(64, 158, 255, 0.247058823529412); + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u856.focused { +} +#u856_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:400px; + height:40px; + background:inherit; + background-color:rgba(242, 242, 242, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u856.disabled { +} +#u857_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:569px; + height:2px; +} +#u857 { + border-width:0px; + position:absolute; + left:0px; + top:543px; + width:568px; + height:1px; + display:flex; +} +#u857 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u857_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u858_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u858 { + border-width:0px; + position:absolute; + left:440px; + top:562px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#FFFFFF; + line-height:20px; +} +#u858 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u858_img.mouseOver { +} +#u858.mouseOver { +} +#u858_img.mouseDown { +} +#u858.mouseDown { +} +#u858_img.disabled { +} +#u858.disabled { + opacity:0.7; +} +#u858_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u859_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u859 { + border-width:0px; + position:absolute; + left:350px; + top:562px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#999999; +} +#u859 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u859_img.mouseOver { +} +#u859.mouseOver { +} +#u859_img.mouseDown { +} +#u859.mouseDown { +} +#u859_img.disabled { +} +#u859.disabled { + opacity:0.7; +} +#u859_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u860_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:48px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u860 { + border-width:0px; + position:absolute; + left:30px; + top:307px; + width:48px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u860 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u860_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u861_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:10px; + height:16px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:20px; + color:#E26866; +} +#u861 { + border-width:0px; + position:absolute; + left:15px; + top:304px; + width:10px; + height:16px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:20px; + color:#E26866; +} +#u861 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u861_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u862_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:36px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u862 { + border-width:0px; + position:absolute; + left:32px; + top:79px; + width:36px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u862 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u862_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u863_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:10px; + height:16px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:20px; + color:#E26866; +} +#u863 { + border-width:0px; + position:absolute; + left:17px; + top:76px; + width:10px; + height:16px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:20px; + color:#E26866; +} +#u863 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u863_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u864 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u865_input { + position:absolute; + left:0px; + top:0px; + width:400px; + height:138px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u865_input.mouseOver { + position:absolute; + left:0px; + top:0px; + width:400px; + height:138px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u865_input.focused { + position:absolute; + left:0px; + top:0px; + width:400px; + height:138px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u865_input.disabled { + position:absolute; + left:0px; + top:0px; + width:400px; + height:138px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u865_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:400px; + height:138px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u865 { + border-width:0px; + position:absolute; + left:120px; + top:126px; + width:400px; + height:138px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u865 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 10px; + box-sizing:border-box; + width:100%; +} +#u865_div.mouseOver { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:400px; + height:138px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(64, 158, 255, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u865.mouseOver { +} +#u865_div.focused { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:400px; + height:138px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(64, 158, 255, 1); + border-radius:4px; + -moz-box-shadow:0px 0px 5px rgba(64, 158, 255, 0.247058823529412); + -webkit-box-shadow:0px 0px 5px rgba(64, 158, 255, 0.247058823529412); + box-shadow:0px 0px 5px rgba(64, 158, 255, 0.247058823529412); + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u865.focused { +} +#u865_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:400px; + height:138px; + background:inherit; + background-color:rgba(242, 242, 242, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u865.disabled { +} +#u866_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:36px; + height:16px; + 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; + color:#DBDFEA; +} +#u866 { + border-width:0px; + position:absolute; + left:472px; + top:232px; + width:36px; + height:16px; + display:flex; + color:#DBDFEA; +} +#u866 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u866_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u867_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u867 { + border-width:0px; + position:absolute; + left:32px; + top:131px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u867 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u867_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u868_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:10px; + height:16px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:20px; + color:#E26866; +} +#u868 { + border-width:0px; + position:absolute; + left:17px; + top:128px; + width:10px; + height:16px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:20px; + color:#E26866; +} +#u868 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u868_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u869 label { + left:0px; + width:100%; +} +#u869_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u869 { + border-width:0px; + position:absolute; + left:118px; + top:301px; + width:100px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u869 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u869_img.selected { +} +#u869.selected { +} +#u869_img.disabled { +} +#u869.disabled { +} +#u869_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:84px; + word-wrap:break-word; + text-transform:none; +} +#u869_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u870 label { + left:0px; + width:100%; +} +#u870_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u870 { + border-width:0px; + position:absolute; + left:331px; + top:301px; + width:100px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u870 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u870_img.selected { +} +#u870.selected { +} +#u870_img.disabled { +} +#u870.disabled { +} +#u870_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:84px; + word-wrap:break-word; + text-transform:none; +} +#u870_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u871 { + border-width:0px; + position:absolute; + left:120px; + top:339px; + width:400px; + height:90px; +} +#u872_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; +} +#u872 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u872 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u872_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u873_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; +} +#u873 { + border-width:0px; + position:absolute; + left:100px; + top:0px; + width:100px; + height:30px; + display:flex; +} +#u873 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u873_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u874_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; +} +#u874 { + border-width:0px; + position:absolute; + left:200px; + top:0px; + width:100px; + height:30px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u874 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u874_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u875_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; +} +#u875 { + border-width:0px; + position:absolute; + left:300px; + top:0px; + width:100px; + height:30px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u875 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u875_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u876_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; +} +#u876 { + border-width:0px; + position:absolute; + left:0px; + top:30px; + width:100px; + height:30px; + display:flex; +} +#u876 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u876_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u877_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; +} +#u877 { + border-width:0px; + position:absolute; + left:100px; + top:30px; + width:100px; + height:30px; + display:flex; +} +#u877 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u877_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u878_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; +} +#u878 { + border-width:0px; + position:absolute; + left:200px; + top:30px; + width:100px; + height:30px; + display:flex; +} +#u878 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u878_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u879_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; +} +#u879 { + border-width:0px; + position:absolute; + left:300px; + top:30px; + width:100px; + height:30px; + display:flex; +} +#u879 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u879_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u880_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; +} +#u880 { + border-width:0px; + position:absolute; + left:0px; + top:60px; + width:100px; + height:30px; + display:flex; +} +#u880 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u880_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u881_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; +} +#u881 { + border-width:0px; + position:absolute; + left:100px; + top:60px; + width:100px; + height:30px; + display:flex; +} +#u881 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u881_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u882_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; +} +#u882 { + border-width:0px; + position:absolute; + left:200px; + top:60px; + width:100px; + height:30px; + display:flex; +} +#u882 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u882_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u883_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; +} +#u883 { + border-width:0px; + position:absolute; + left:300px; + top:60px; + width:100px; + height:30px; + display:flex; +} +#u883 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u883_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u884 label { + left:0px; + width:100%; +} +#u884_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u884 { + border-width:0px; + position:absolute; + left:129px; + top:377px; + width:78px; + height:15px; + display:flex; +} +#u884 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u884_img.selected { +} +#u884.selected { +} +#u884_img.disabled { +} +#u884.disabled { +} +#u884_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:62px; + word-wrap:break-word; + text-transform:none; +} +#u884_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u885 label { + left:0px; + width:100%; +} +#u885_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u885 { + border-width:0px; + position:absolute; + left:129px; + top:407px; + width:78px; + height:15px; + display:flex; +} +#u885 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u885_img.selected { +} +#u885.selected { +} +#u885_img.disabled { +} +#u885.disabled { +} +#u885_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:62px; + word-wrap:break-word; + text-transform:none; +} +#u885_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u886_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:48px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u886 { + border-width:0px; + position:absolute; + left:32px; + top:442px; + width:48px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u886 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u886_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u887 { + position:absolute; + left:120px; + top:441px; +} +#u887_state0 { + position:relative; + left:0px; + top:0px; + width:35px; + height:20px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u887_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u888_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:35px; + height:20px; + background:inherit; + background-color:rgba(242, 242, 242, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(228, 228, 228, 1); + border-radius:23px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u888 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:35px; + height:20px; + display:flex; +} +#u888 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u888_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u889_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; +} +#u889 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; + display:flex; +} +#u889 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u889_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u887_state1 { + position:relative; + left:0px; + top:0px; + width:345px; + height:69px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + visibility:hidden; +} +#u887_state1_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u890_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:35px; + height:20px; + background:inherit; + background-color:rgba(0, 153, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(228, 228, 228, 1); + border-radius:23px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u890 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:35px; + height:20px; + display:flex; +} +#u890 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u890_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u891_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; +} +#u891 { + border-width:0px; + position:absolute; + left:15px; + top:0px; + width:20px; + height:20px; + display:flex; +} +#u891 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u891_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u892_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:231px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(217, 217, 217, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:14px; + color:rgba(0, 0, 0, 0.647058823529412); + text-align:left; + line-height:22px; +} +#u892 { + border-width:0px; + position:absolute; + left:0px; + top:37px; + width:231px; + height:32px; + display:flex; + font-size:14px; + color:rgba(0, 0, 0, 0.647058823529412); + text-align:left; + line-height:22px; +} +#u892 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 12px; + box-sizing:border-box; + width:100%; +} +#u892_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u893_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:10px; + height:10px; +} +#u893 { + border-width:0px; + position:absolute; + left:215px; + top:57px; + width:10px; + height:10px; + display:flex; + -webkit-transform:rotate(90deg); + -moz-transform:rotate(90deg); + -ms-transform:rotate(90deg); + transform:rotate(90deg); + opacity:0.449999988079071; + font-family:'Microsoft YaHei Regular', 'Microsoft YaHei'; + font-weight:400; + font-style:normal; + color:#999999; +} +#u893 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u893_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u894_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:10px; + height:10px; +} +#u894 { + border-width:0px; + position:absolute; + left:215px; + top:41px; + width:10px; + height:10px; + display:flex; + -webkit-transform:rotate(270deg); + -moz-transform:rotate(270deg); + -ms-transform:rotate(270deg); + transform:rotate(270deg); + opacity:0.449999988079071; + font-family:'Microsoft YaHei Regular', 'Microsoft YaHei'; + font-weight:400; + font-style:normal; + color:#999999; +} +#u894 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u894_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u895_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:23px; + height:2px; +} +#u895 { + border-width:0px; + position:absolute; + left:209px; + top:54px; + width:22px; + height:1px; + display:flex; + font-family:'Microsoft YaHei Regular', 'Microsoft YaHei'; + font-weight:400; + font-style:normal; +} +#u895 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u895_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u896_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:32px; + height:2px; +} +#u896 { + border-width:0px; + position:absolute; + left:194px; + top:53px; + width:31px; + height:1px; + display:flex; + -webkit-transform:rotate(90deg); + -moz-transform:rotate(90deg); + -ms-transform:rotate(90deg); + transform:rotate(90deg); + font-family:'Microsoft YaHei Regular', 'Microsoft YaHei'; + font-weight:400; + font-style:normal; +} +#u896 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u896_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u897_input { + position:absolute; + left:0px; + top:0px; + width:114px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + letter-spacing:normal; + color:#7F7F7F; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u897_input.disabled { + position:absolute; + left:0px; + top:0px; + width:114px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + letter-spacing:normal; + color:#7F7F7F; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u897_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:114px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:12px; + color:#7F7F7F; +} +#u897 { + border-width:0px; + position:absolute; + left:231px; + top:37px; + width:114px; + height:32px; + display:flex; + font-size:12px; + color:#7F7F7F; +} +#u897 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u897_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:114px; + height:32px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:12px; + color:#7F7F7F; +} +#u897.disabled { +} +.u897_input_option { + font-size:12px; + color:#7F7F7F; +} +#u898_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:22px; + height:22px; +} +#u898 { + border-width:0px; + position:absolute; + left:83px; + top:441px; + width:22px; + height:22px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:12px; + color:#FFFFFF; +} +#u898 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u898_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u899_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:300px; + height:68px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(228, 228, 228, 1); + border-radius:3px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#666666; + text-align:left; +} +#u899 { + border-width:0px; + position:absolute; + left:83px; + top:473px; + width:300px; + height:68px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#666666; + text-align:left; +} +#u899 .text { + position:absolute; + align-self:flex-start; + padding:15px 15px 15px 15px; + box-sizing:border-box; + width:100%; +} +#u899_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u900_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:15px; + height:18px; +} +#u900 { + border-width:0px; + position:absolute; + left:1655px; + top:23px; + width:15px; + height:18px; + display:flex; + color:#00FF99; +} +#u900 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u900_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u901_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:867px; + height:50px; +} +#u901 { + border-width:0px; + position:absolute; + left:580px; + top:110px; + width:867px; + height:50px; + display:flex; +} +#u901 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u901_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u902_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:77px; + height:31px; +} +#u902 { + border-width:0px; + position:absolute; + left:1565px; + top:18px; + width:77px; + height:31px; + display:flex; + opacity:0.6; +} +#u902 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u902_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u903_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:863px; + height:55px; +} +#u903 { + border-width:0px; + position:absolute; + left:580px; + top:108px; + width:863px; + height:55px; + display:flex; +} +#u903 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u903_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u904 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u905_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:58px; + height:28px; +} +#u905 { + border-width:0px; + position:absolute; + left:1568px; + top:18px; + width:58px; + height:28px; + display:flex; +} +#u905 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u905_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u906_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:82px; + height:28px; +} +#u906 { + border-width:0px; + position:absolute; + left:1471px; + top:18px; + width:82px; + height:28px; + display:flex; +} +#u906 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u906_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u907 { + border-width:0px; + position:absolute; + left:66px; + top:180px; + width:1770px; + height:1059px; + visibility:hidden; +} +#u907_state0 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1770px; + height:1059px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u907_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u908 { + border-width:0px; + position:absolute; + left:94px; + top:213px; + width:1714px; + height:285px; + touch-action:pan-y; + visibility:hidden; +} +#u908_state0 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1714px; + height:285px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u908_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u909 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u910_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:2px; + height:10px; + background:inherit; + background-color:rgba(63, 143, 204, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u910 { + border-width:0px; + position:absolute; + left:10px; + top:22px; + width:2px; + height:10px; + display:flex; +} +#u910 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u910_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u911_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:56px; + height:16px; + 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:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC'; + font-weight:500; + font-style:normal; +} +#u911 { + border-width:0px; + position:absolute; + left:22px; + top:17px; + width:56px; + height:16px; + display:flex; + font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC'; + font-weight:500; + font-style:normal; +} +#u911 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u911_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u912_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1707px; + height:2px; +} +#u912 { + border-width:0px; + position:absolute; + left:-1px; + top:47px; + width:1706px; + height:1px; + display:flex; + -webkit-transform:rotate(0.0535890368068833deg); + -moz-transform:rotate(0.0535890368068833deg); + -ms-transform:rotate(0.0535890368068833deg); + transform:rotate(0.0535890368068833deg); +} +#u912 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u912_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u913 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u914_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:65px; + height:15px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u914 { + border-width:0px; + position:absolute; + left:18px; + top:83px; + width:65px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u914 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u914_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u915_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:6px; + height:17px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:13px; + color:#E26866; +} +#u915 { + border-width:0px; + position:absolute; + left:3px; + top:83px; + width:6px; + height:17px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:13px; + color:#E26866; +} +#u915 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u915_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u916_input { + position:absolute; + left:0px; + top:0px; + width:320px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u916_input.disabled { + position:absolute; + left:0px; + top:0px; + width:320px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u916_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u916 { + border-width:0px; + position:absolute; + left:88px; + top:76px; + width:320px; + height:32px; + display:flex; +} +#u916 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u916_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:32px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u916.disabled { +} +#u917 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u918 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u919_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:78px; + height:10px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u919 { + border-width:0px; + position:absolute; + left:15px; + top:194px; + width:78px; + height:10px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u919 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u919_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u920_input { + position:absolute; + left:0px; + top:0px; + width:1611px; + height:79px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u920_input.disabled { + position:absolute; + left:0px; + top:0px; + width:1611px; + height:79px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u920_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1611px; + height:79px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u920 { + border-width:0px; + position:absolute; + left:88px; + top:181px; + width:1611px; + height:79px; + display:flex; +} +#u920 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u920_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1611px; + height:79px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u920.disabled { +} +#u921_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:65px; + height:15px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u921 { + border-width:0px; + position:absolute; + left:18px; + top:134px; + width:65px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u921 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u921_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u922_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:6px; + height:17px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:13px; + color:#E26866; +} +#u922 { + border-width:0px; + position:absolute; + left:3px; + top:134px; + width:6px; + height:17px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:13px; + color:#E26866; +} +#u922 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u922_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u923 { + position:absolute; + left:88px; + top:127px; +} +#u923_state0 { + position:relative; + left:0px; + top:0px; + width:320px; + height:32px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u923_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u924_input { + position:absolute; + left:0px; + top:0px; + width:320px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u924_input.disabled { + position:absolute; + left:0px; + top:0px; + width:320px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u924_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u924 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:32px; + display:flex; +} +#u924 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u924_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:32px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u924.disabled { +} +#u925_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:140px; +} +#u925 { + border-width:0px; + position:absolute; + left:0px; + top:32px; + width:320px; + height:140px; + display:flex; +} +#u925 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u925_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u926_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:22px; + height:22px; +} +#u926 { + border-width:0px; + position:absolute; + left:418px; + top:134px; + width:22px; + height:22px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:12px; + color:#FFFFFF; +} +#u926 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u926_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u927_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:300px; + height:68px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(228, 228, 228, 1); + border-radius:3px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#666666; + text-align:left; +} +#u927 { + border-width:0px; + position:absolute; + left:1141px; + top:207px; + width:300px; + height:68px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#666666; + text-align:left; +} +#u927 .text { + position:absolute; + align-self:flex-start; + padding:15px 15px 15px 15px; + box-sizing:border-box; + width:100%; +} +#u927_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u908_state1 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1714px; + height:285px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + visibility:hidden; +} +#u908_state1_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u928_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:2px; + height:10px; + background:inherit; + background-color:rgba(63, 143, 204, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u928 { + border-width:0px; + position:absolute; + left:1px; + top:5px; + width:2px; + height:10px; + display:flex; +} +#u928 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u928_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u929_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:56px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u929 { + border-width:0px; + position:absolute; + left:13px; + top:0px; + width:56px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u929 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u929_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u930_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1647px; + height:2px; +} +#u930 { + border-width:0px; + position:absolute; + left:0px; + top:34px; + width:1646px; + height:1px; + display:flex; + -webkit-transform:rotate(0.0337180630969462deg); + -moz-transform:rotate(0.0337180630969462deg); + -ms-transform:rotate(0.0337180630969462deg); + transform:rotate(0.0337180630969462deg); +} +#u930 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u930_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u931 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u932_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:56px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#6576FF; +} +#u932 { + border-width:0px; + position:absolute; + left:1568px; + top:1px; + width:56px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#6576FF; +} +#u932 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u932_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u933_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:11px; + height:6px; +} +#u933 { + border-width:0px; + position:absolute; + left:1634px; + top:10px; + width:11px; + height:6px; + display:flex; + -webkit-transform:rotate(180deg); + -moz-transform:rotate(180deg); + -ms-transform:rotate(180deg); + transform:rotate(180deg); +} +#u933 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u933_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u934 { + border-width:0px; + position:absolute; + left:66px; + top:530px; + width:1742px; + height:329px; + visibility:hidden; +} +#u934_state0 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1742px; + height:329px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u934_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u935_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:2px; + height:10px; + background:inherit; + background-color:rgba(63, 143, 204, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u935 { + border-width:0px; + position:absolute; + left:1px; + top:5px; + width:2px; + height:10px; + display:flex; +} +#u935 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u935_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u936_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:28px; + height:16px; + 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:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC'; + font-weight:500; + font-style:normal; +} +#u936 { + border-width:0px; + position:absolute; + left:13px; + top:0px; + width:28px; + height:16px; + display:flex; + font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC'; + font-weight:500; + font-style:normal; +} +#u936 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u936_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u937_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1726px; + height:2px; +} +#u937 { + border-width:0px; + position:absolute; + left:-1px; + top:32px; + width:1725px; + height:1px; + display:flex; + -webkit-transform:rotate(-0.103912973875049deg); + -moz-transform:rotate(-0.103912973875049deg); + -ms-transform:rotate(-0.103912973875049deg); + transform:rotate(-0.103912973875049deg); +} +#u937 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u937_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u938_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:273px; + height:12px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:11px; + color:#AAAAAA; +} +#u938 { + border-width:0px; + position:absolute; + left:101px; + top:4px; + width:273px; + height:12px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:11px; + color:#AAAAAA; +} +#u938 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u938_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u939_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u939 { + border-width:0px; + position:absolute; + left:2px; + top:49px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#FFFFFF; + line-height:20px; +} +#u939 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u939_img.mouseOver { +} +#u939.mouseOver { +} +#u939_img.mouseDown { +} +#u939.mouseDown { +} +#u939_img.disabled { +} +#u939.disabled { + opacity:0.7; +} +#u939_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u940 { + border-width:0px; + position:absolute; + left:2px; + top:109px; + width:1560px; + height:200px; +} +#u941_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:38px; +} +#u941 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:38px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u941 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u941_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u942_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:200px; + height:38px; +} +#u942 { + border-width:0px; + position:absolute; + left:290px; + top:0px; + width:200px; + height:38px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u942 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u942_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u943_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:38px; +} +#u943 { + border-width:0px; + position:absolute; + left:490px; + top:0px; + width:320px; + height:38px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u943 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u943_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u944_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:250px; + height:38px; +} +#u944 { + border-width:0px; + position:absolute; + left:810px; + top:0px; + width:250px; + height:38px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u944 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u944_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u945_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:250px; + height:38px; +} +#u945 { + border-width:0px; + position:absolute; + left:1060px; + top:0px; + width:250px; + height:38px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u945 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u945_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u946_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:250px; + height:38px; +} +#u946 { + border-width:0px; + position:absolute; + left:1310px; + top:0px; + width:250px; + height:38px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u946 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u946_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u947_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:40px; +} +#u947 { + border-width:0px; + position:absolute; + left:0px; + top:38px; + width:290px; + height:40px; + display:flex; + color:#000000; + text-align:left; +} +#u947 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u947_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u948_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:200px; + height:40px; +} +#u948 { + border-width:0px; + position:absolute; + left:290px; + top:38px; + width:200px; + height:40px; + display:flex; +} +#u948 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u948_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u949_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:40px; +} +#u949 { + border-width:0px; + position:absolute; + left:490px; + top:38px; + width:320px; + height:40px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u949 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u949_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u950_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:250px; + height:40px; +} +#u950 { + border-width:0px; + position:absolute; + left:810px; + top:38px; + width:250px; + height:40px; + display:flex; +} +#u950 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u950_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u951_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:250px; + height:40px; +} +#u951 { + border-width:0px; + position:absolute; + left:1060px; + top:38px; + width:250px; + height:40px; + display:flex; +} +#u951 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u951_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u952_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:250px; + height:40px; +} +#u952 { + border-width:0px; + position:absolute; + left:1310px; + top:38px; + width:250px; + height:40px; + display:flex; +} +#u952 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u952_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u953_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:42px; +} +#u953 { + border-width:0px; + position:absolute; + left:0px; + top:78px; + width:290px; + height:42px; + display:flex; +} +#u953 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u953_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u954_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:200px; + height:42px; +} +#u954 { + border-width:0px; + position:absolute; + left:290px; + top:78px; + width:200px; + height:42px; + display:flex; + color:#000000; + text-align:left; +} +#u954 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u954_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u955_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:42px; +} +#u955 { + border-width:0px; + position:absolute; + left:490px; + top:78px; + width:320px; + height:42px; + display:flex; +} +#u955 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u955_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u956_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:250px; + height:42px; +} +#u956 { + border-width:0px; + position:absolute; + left:810px; + top:78px; + width:250px; + height:42px; + display:flex; +} +#u956 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u956_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u957_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:250px; + height:42px; +} +#u957 { + border-width:0px; + position:absolute; + left:1060px; + top:78px; + width:250px; + height:42px; + display:flex; +} +#u957 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u957_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u958_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:250px; + height:42px; +} +#u958 { + border-width:0px; + position:absolute; + left:1310px; + top:78px; + width:250px; + height:42px; + display:flex; +} +#u958 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u958_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u959_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:40px; +} +#u959 { + border-width:0px; + position:absolute; + left:0px; + top:120px; + width:290px; + height:40px; + display:flex; +} +#u959 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u959_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u960_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:200px; + height:40px; +} +#u960 { + border-width:0px; + position:absolute; + left:290px; + top:120px; + width:200px; + height:40px; + display:flex; + color:#000000; + text-align:left; +} +#u960 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u960_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u961_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:40px; +} +#u961 { + border-width:0px; + position:absolute; + left:490px; + top:120px; + width:320px; + height:40px; + display:flex; +} +#u961 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u961_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u962_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:250px; + height:40px; +} +#u962 { + border-width:0px; + position:absolute; + left:810px; + top:120px; + width:250px; + height:40px; + display:flex; +} +#u962 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u962_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u963_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:250px; + height:40px; +} +#u963 { + border-width:0px; + position:absolute; + left:1060px; + top:120px; + width:250px; + height:40px; + display:flex; +} +#u963 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u963_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u964_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:250px; + height:40px; +} +#u964 { + border-width:0px; + position:absolute; + left:1310px; + top:120px; + width:250px; + height:40px; + display:flex; +} +#u964 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u964_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u965_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:40px; +} +#u965 { + border-width:0px; + position:absolute; + left:0px; + top:160px; + width:290px; + height:40px; + display:flex; +} +#u965 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u965_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u966_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:200px; + height:40px; +} +#u966 { + border-width:0px; + position:absolute; + left:290px; + top:160px; + width:200px; + height:40px; + display:flex; +} +#u966 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u966_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u967_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:40px; +} +#u967 { + border-width:0px; + position:absolute; + left:490px; + top:160px; + width:320px; + height:40px; + display:flex; +} +#u967 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u967_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u968_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:250px; + height:40px; +} +#u968 { + border-width:0px; + position:absolute; + left:810px; + top:160px; + width:250px; + height:40px; + display:flex; +} +#u968 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u968_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u969_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:250px; + height:40px; +} +#u969 { + border-width:0px; + position:absolute; + left:1060px; + top:160px; + width:250px; + height:40px; + display:flex; +} +#u969 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u969_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u970_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:250px; + height:40px; +} +#u970 { + border-width:0px; + position:absolute; + left:1310px; + top:160px; + width:250px; + height:40px; + display:flex; +} +#u970 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u970_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u971_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u971 { + border-width:0px; + position:absolute; + left:42px; + top:159px; + width:1px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u971 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u971_text { + border-width:0px; + white-space:nowrap; + text-transform:none; + visibility:hidden; +} +#u972_input { + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u972_input.disabled { + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u972_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u972 { + border-width:0px; + position:absolute; + left:520px; + top:192px; + width:290px; + height:29px; + display:flex; +} +#u972 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u972_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u972.disabled { +} +#u973_input { + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u973_input.disabled { + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u973_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u973 { + border-width:0px; + position:absolute; + left:520px; + top:153px; + width:290px; + height:29px; + display:flex; +} +#u973 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u973_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u973.disabled { +} +#u974 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u975 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u976 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u977_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:28px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u977 { + border-width:0px; + position:absolute; + left:1425px; + top:161px; + width:28px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u977 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u977_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u978_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:18px; + height:20px; +} +#u978 { + border-width:0px; + position:absolute; + left:1400px; + top:159px; + width:18px; + height:20px; + display:flex; +} +#u978 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u978_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u979_input { + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u979_input.disabled { + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u979_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u979 { + border-width:0px; + position:absolute; + left:520px; + top:269px; + width:290px; + height:29px; + display:flex; +} +#u979 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u979_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u979.disabled { +} +#u980_input { + position:absolute; + left:0px; + top:0px; + width:162px; + height:25px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u980_input.disabled { + position:absolute; + left:0px; + top:0px; + width:162px; + height:25px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u980_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:162px; + height:25px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u980 { + border-width:0px; + position:absolute; + left:325px; + top:158px; + width:162px; + height:25px; + display:flex; +} +#u980 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u980_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:162px; + height:25px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u980.disabled { +} +.u980_input_option { +} +#u981_input { + position:absolute; + left:0px; + top:0px; + width:204px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u981_input.disabled { + position:absolute; + left:0px; + top:0px; + width:204px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u981_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:204px; + height:29px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u981 { + border-width:0px; + position:absolute; + left:840px; + top:231px; + width:204px; + height:29px; + display:flex; +} +#u981 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u981_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:204px; + height:29px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u981.disabled { +} +#u982_input { + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u982_input.disabled { + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u982_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u982 { + border-width:0px; + position:absolute; + left:520px; + top:231px; + width:290px; + height:29px; + display:flex; +} +#u982 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u982_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u982.disabled { +} +#u983_input { + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u983_input.disabled { + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u983_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u983 { + border-width:0px; + position:absolute; + left:1120px; + top:158px; + width:141px; + height:26px; + display:flex; +} +#u983 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u983_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u983.disabled { +} +.u983_input_option { +} +#u984 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u985 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u986_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:28px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u986 { + border-width:0px; + position:absolute; + left:1425px; + top:203px; + width:28px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u986 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u986_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u987_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:18px; + height:20px; +} +#u987 { + border-width:0px; + position:absolute; + left:1400px; + top:201px; + width:18px; + height:20px; + display:flex; +} +#u987 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u987_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u988 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u989 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u990_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:28px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u990 { + border-width:0px; + position:absolute; + left:1425px; + top:235px; + width:28px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u990 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u990_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u991_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:18px; + height:20px; +} +#u991 { + border-width:0px; + position:absolute; + left:1400px; + top:233px; + width:18px; + height:20px; + display:flex; +} +#u991 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u991_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u992 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u993 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u994_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:28px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u994 { + border-width:0px; + position:absolute; + left:1425px; + top:275px; + width:28px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u994 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u994_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u995_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:18px; + height:20px; +} +#u995 { + border-width:0px; + position:absolute; + left:1400px; + top:273px; + width:18px; + height:20px; + display:flex; +} +#u995 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u995_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u996_input { + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u996_input.disabled { + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u996_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u996 { + border-width:0px; + position:absolute; + left:1120px; + top:199px; + width:141px; + height:26px; + display:flex; +} +#u996 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u996_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u996.disabled { +} +.u996_input_option { +} +#u997_input { + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u997_input.disabled { + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u997_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u997 { + border-width:0px; + position:absolute; + left:1120px; + top:235px; + width:141px; + height:26px; + display:flex; +} +#u997 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u997_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u997.disabled { +} +.u997_input_option { +} +#u998_input { + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u998_input.disabled { + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u998_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u998 { + border-width:0px; + position:absolute; + left:1120px; + top:279px; + width:141px; + height:26px; + display:flex; +} +#u998 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u998_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u998.disabled { +} +.u998_input_option { +} +#u999_input { + position:absolute; + left:0px; + top:0px; + width:204px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u999_input.disabled { + position:absolute; + left:0px; + top:0px; + width:204px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u999_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:204px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u999 { + border-width:0px; + position:absolute; + left:840px; + top:269px; + width:204px; + height:32px; + display:flex; +} +#u999 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u999_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:204px; + height:32px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u999.disabled { +} +#u1000_input { + position:absolute; + left:0px; + top:0px; + width:204px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1000_input.disabled { + position:absolute; + left:0px; + top:0px; + width:204px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1000_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:204px; + height:29px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1000 { + border-width:0px; + position:absolute; + left:840px; + top:193px; + width:204px; + height:29px; + display:flex; +} +#u1000 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1000_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:204px; + height:29px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1000.disabled { +} +#u1001_input { + position:absolute; + left:0px; + top:0px; + width:204px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1001_input.disabled { + position:absolute; + left:0px; + top:0px; + width:204px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1001_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:204px; + height:30px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1001 { + border-width:0px; + position:absolute; + left:840px; + top:153px; + width:204px; + height:30px; + display:flex; +} +#u1001 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1001_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:204px; + height:30px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1001.disabled { +} +#u1002_input { + position:absolute; + left:0px; + top:0px; + width:258px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1002_input.disabled { + position:absolute; + left:0px; + top:0px; + width:258px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1002_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:258px; + height:29px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1002 { + border-width:0px; + position:absolute; + left:23px; + top:153px; + width:258px; + height:29px; + display:flex; +} +#u1002 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1002_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:258px; + height:29px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1002.disabled { +} +#u1003_input { + position:absolute; + left:0px; + top:0px; + width:258px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1003_input.disabled { + position:absolute; + left:0px; + top:0px; + width:258px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1003_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:258px; + height:29px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1003 { + border-width:0px; + position:absolute; + left:23px; + top:192px; + width:258px; + height:29px; + display:flex; +} +#u1003 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1003_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:258px; + height:29px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1003.disabled { +} +#u1004_input { + position:absolute; + left:0px; + top:0px; + width:258px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1004_input.disabled { + position:absolute; + left:0px; + top:0px; + width:258px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1004_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:258px; + height:29px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1004 { + border-width:0px; + position:absolute; + left:23px; + top:233px; + width:258px; + height:29px; + display:flex; +} +#u1004 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1004_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:258px; + height:29px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1004.disabled { +} +#u1005_input { + position:absolute; + left:0px; + top:0px; + width:258px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1005_input.disabled { + position:absolute; + left:0px; + top:0px; + width:258px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1005_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:258px; + height:29px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1005 { + border-width:0px; + position:absolute; + left:23px; + top:273px; + width:258px; + height:29px; + display:flex; +} +#u1005 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1005_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:258px; + height:29px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1005.disabled { +} +#u1006_input { + position:absolute; + left:0px; + top:0px; + width:162px; + height:25px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1006_input.disabled { + position:absolute; + left:0px; + top:0px; + width:162px; + height:25px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1006_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:162px; + height:25px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1006 { + border-width:0px; + position:absolute; + left:325px; + top:199px; + width:162px; + height:25px; + display:flex; +} +#u1006 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1006_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:162px; + height:25px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1006.disabled { +} +.u1006_input_option { +} +#u1007_input { + position:absolute; + left:0px; + top:0px; + width:162px; + height:25px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1007_input.disabled { + position:absolute; + left:0px; + top:0px; + width:162px; + height:25px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1007_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:162px; + height:25px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1007 { + border-width:0px; + position:absolute; + left:325px; + top:238px; + width:162px; + height:25px; + display:flex; +} +#u1007 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1007_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:162px; + height:25px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1007.disabled { +} +.u1007_input_option { +} +#u1008_input { + position:absolute; + left:0px; + top:0px; + width:162px; + height:25px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1008_input.disabled { + position:absolute; + left:0px; + top:0px; + width:162px; + height:25px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1008_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:162px; + height:25px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1008 { + border-width:0px; + position:absolute; + left:325px; + top:275px; + width:162px; + height:25px; + display:flex; +} +#u1008 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1008_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:162px; + height:25px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1008.disabled { +} +.u1008_input_option { +} +#u934_state1 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1742px; + height:329px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + visibility:hidden; +} +#u934_state1_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1009_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:2px; + height:10px; + background:inherit; + background-color:rgba(63, 143, 204, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1009 { + border-width:0px; + position:absolute; + left:1px; + top:5px; + width:2px; + height:10px; + display:flex; +} +#u1009 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1009_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1010_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:30px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1010 { + border-width:0px; + position:absolute; + left:13px; + top:0px; + width:1px; + height:30px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1010 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1010_text { + border-width:0px; + white-space:nowrap; + text-transform:none; + visibility:hidden; +} +#u1011_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1647px; + height:2px; +} +#u1011 { + border-width:0px; + position:absolute; + left:0px; + top:34px; + width:1646px; + height:1px; + display:flex; + -webkit-transform:rotate(0.0337180630969462deg); + -moz-transform:rotate(0.0337180630969462deg); + -ms-transform:rotate(0.0337180630969462deg); + transform:rotate(0.0337180630969462deg); +} +#u1011 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1011_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1012 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1013_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:56px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#6576FF; +} +#u1013 { + border-width:0px; + position:absolute; + left:1568px; + top:1px; + width:56px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#6576FF; +} +#u1013 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1013_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1014_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:11px; + height:6px; +} +#u1014 { + border-width:0px; + position:absolute; + left:1634px; + top:10px; + width:11px; + height:6px; + display:flex; + -webkit-transform:rotate(180deg); + -moz-transform:rotate(180deg); + -ms-transform:rotate(180deg); + transform:rotate(180deg); +} +#u1014 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1014_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1015 { + position:fixed; + right:0px; + top:0px; + visibility:hidden; +} +#u1015_state0 { + position:relative; + left:0px; + top:0px; + width:600px; + height:1000px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1015_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1016_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:600px; + height:1000px; + 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:right; +} +#u1016 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:600px; + height:1000px; + display:flex; + text-align:right; +} +#u1016 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1016_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1017_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; +} +#u1017 { + border-width:0px; + position:absolute; + left:25px; + top:26px; + width:20px; + height:20px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + color:#00FF99; +} +#u1017 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1017_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1018_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:601px; + height:2px; +} +#u1018 { + border-width:0px; + position:absolute; + left:0px; + top:60px; + width:600px; + height:1px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; +} +#u1018 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1018_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1019_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:109px; + height:24px; + 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:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:18px; +} +#u1019 { + border-width:0px; + position:absolute; + left:65px; + top:21px; + width:109px; + height:24px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:18px; +} +#u1019 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1019_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1020_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:500px; + height:207px; + 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-size:20px; +} +#u1020 { + border-width:0px; + position:absolute; + left:25px; + top:100px; + width:500px; + height:207px; + display:flex; + font-size:20px; +} +#u1020 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1020_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1021_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:484px; + height:50px; + background:inherit; + background-color:rgba(128, 128, 255, 0.0980392156862745); + 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:18px; + text-align:left; +} +#u1021 { + border-width:0px; + position:absolute; + left:25px; + top:350px; + width:484px; + height:50px; + display:flex; + font-size:18px; + text-align:left; +} +#u1021 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1021_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1015_state1 { + position:relative; + left:0px; + top:0px; + width:600px; + height:1000px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + visibility:hidden; +} +#u1015_state1_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1022_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:600px; + height:1000px; + 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:right; +} +#u1022 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:600px; + height:1000px; + display:flex; + text-align:right; +} +#u1022 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1022_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1023_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; +} +#u1023 { + border-width:0px; + position:absolute; + left:25px; + top:26px; + width:20px; + height:20px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + color:#00FF99; +} +#u1023 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1023_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1024_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:601px; + height:2px; +} +#u1024 { + border-width:0px; + position:absolute; + left:0px; + top:60px; + width:600px; + height:1px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; +} +#u1024 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1024_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1025_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:109px; + height:24px; + 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:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:18px; +} +#u1025 { + border-width:0px; + position:absolute; + left:65px; + top:21px; + width:109px; + height:24px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:18px; +} +#u1025 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1025_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1026_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:416px; + height:138px; + 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-size:20px; +} +#u1026 { + border-width:0px; + position:absolute; + left:25px; + top:100px; + width:416px; + height:138px; + display:flex; + font-size:20px; +} +#u1026 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1026_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1027_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:484px; + height:50px; + background:inherit; + background-color:rgba(128, 128, 255, 0.0980392156862745); + 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:18px; + text-align:left; +} +#u1027 { + border-width:0px; + position:absolute; + left:25px; + top:249px; + width:484px; + height:50px; + display:flex; + font-size:18px; + text-align:left; +} +#u1027 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1027_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} diff --git "a/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\345\234\250\347\272\277\346\234\215\345\212\241/data.js" "b/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\345\234\250\347\272\277\346\234\215\345\212\241/data.js" new file mode 100644 index 0000000000000000000000000000000000000000..1bec45e28e9abd4e83aa6626afe297d6df2e7a92 --- /dev/null +++ "b/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\345\234\250\347\272\277\346\234\215\345\212\241/data.js" @@ -0,0 +1,7 @@ +$axure.loadCurrentPage( +(function() { + var _ = function() { var r={},a=arguments; for(var i=0; i将当前任务名称关键字带过去搜索
",O="style",P="baseStyle",Q="627587b6038d43cca051c114ac41ad32",R="pageAlignment",S="center",T="fill",U="fillType",V="solid",W="color",X=0xFFFFFFFF,Y="image",Z="imageAlignment",ba="near",bb="imageRepeat",bc="auto",bd="favicon",be="sketchFactor",bf="0",bg="colorStyle",bh="appliedColor",bi="fontName",bj="Applied Font",bk="borderWidth",bl="borderVisibility",bm="borderFill",bn=0xFF797979,bo="cornerRadius",bp="cornerVisibility",bq="outerShadow",br="on",bs=false,bt="offsetX",bu=5,bv="offsetY",bw="blurRadius",bx="r",by=0,bz="g",bA="b",bB="a",bC=0.349019607843137,bD="adaptiveStyles",bE="interactionMap",bF="diagram",bG="objects",bH="id",bI="08a2c0a1240140c48cb1633aa051425f",bJ="friendlyType",bK="页面框架",bL="referenceDiagramObject",bM="styleType",bN="visible",bO=true,bP=1920,bQ=1300,bR="imageOverrides",bS="masterId",bT="4b990bb6cff949a1b5064d9025ac7466",bU="b738f4e4bb5641cd96c2ed83cff83be2",bV="新建功能",bW="动态面板",bX="dynamicPanel",bY=1295,bZ=802,ca="location",cb="x",cc=1720,cd="y",ce="fixedHorizontal",cf="fixedMarginHorizontal",cg="fixedVertical",ch="middle",ci="fixedMarginVertical",cj="fixedKeepInFront",ck="scrollbars",cl="none",cm="fitToContent",cn="propagate",co="diagrams",cp="993afc0783e74a9ea0486ff91e43c696",cq="集群选择",cr="Axure:PanelDiagram",cs="8be5c279abde49308618c7a1cf21f7f5",ct="矩形",cu="parentDynamicPanel",cv="panelIndex",cw="vectorShape",cx=568,cy="9b4161a6aa0a435d9aea1729826fce91",cz="8",cA=0xFFF2F2F2,cB="generateCompound",cC="b49442614a04410f950b39bc945e94d5",cD="形状",cE="foreGroundFill",cF=0xFF00FF99,cG="opacity",cH=1,cI="9df11a1112d143398203dd9500c15309",cJ=0xFFFFFF,cK=0xFF707070,cL=10,cM=0.313725490196078,cN="innerShadow",cO=15,cP=539,cQ=18,cR="onClick",cS="description",cT="Click时 ",cU="cases",cV="conditionString",cW="isNewIfGroup",cX="caseColorHex",cY="9D33FA",cZ="actions",da="action",db="fadeWidget",dc="隐藏 新建功能逐渐 300毫秒",dd="displayName",de="显示/隐藏",df="actionInfoDescriptions",dg="隐藏 新建功能",dh="逐渐 300毫秒",di="objectsToFades",dj="objectPath",dk="fadeInfo",dl="fadeType",dm="hide",dn="options",dp="easing",dq="fade",dr="animation",ds="duration",dt=300,du="easingHide",dv="animationHide",dw="durationHide",dx="showType",dy="bringToFront",dz="tabbable",dA="images",dB="normal~",dC="images/页面框架/u463.svg",dD="2bd0fa09f8f94d93981319cd46f72d80",dE="线段",dF="horizontalLine",dG=48,dH="images/上传算子/u819.svg",dI="589ed251fdd545f4ba1e006aefec9446",dJ="'PingFangSC-Regular', 'PingFang SC'",dK=74,dL=16,dM="4b98dba3ba994a15a9e130e35aa2418a",dN=19,dO=17,dP="fontSize",dQ="16px",dR="verticalAlignment",dS="4a27ed3ecf6a42239ef1eab2b99a69ad",dT=737,dU="b4832ede99a5481ba5cd7d79a9536148",dV=80,dW=32,dX=0xF2F2F2,dY=0xFF6576FF,dZ="paddingTop",ea="stateStyles",eb="mouseOver",ec=0xFF8080FF,ed="mouseDown",ee=0xFD596BFE,ef="disabled",eg="0.7",eh="lineSpacing",ei="20px",ej="paddingRight",ek="paddingBottom",el="paddingLeft",em=443,en=756,eo="12px",ep="4",eq="images/页面框架/u467.svg",er="mouseOver~",es="images/页面框架/u467_mouseOver.svg",et="mouseDown~",eu="images/页面框架/u467_mouseDown.svg",ev="disabled~",ew="a861e13b0360469d8e481e283a712b54",ex=0xFF999999,ey=0xFF409EFF,ez=0xFFF0F7FF,eA=0xFE7ABBFF,eB=0xFFE4E4E4,eC=353,eD="images/页面框架/u468.svg",eE="images/页面框架/u468_mouseOver.svg",eF="images/页面框架/u468_mouseDown.svg",eG="fe7a836eae634c30a10626d8834488c0",eH=0xFF02A7F0,eI="636822bc3085484f9c7fce0324772028",eJ=20,eK=0xFF027DB4,eL=56,eM="images/新建训练/u1535.svg",eN="83f2f52d41fb49d59aa47b3346d6bb74",eO=469,eP="2285372321d148ec80932747449c36c9",eQ=85,eR="5c76b43a20ec4b21aeadb392380708e6",eS=61,eT=14,eU=126,eV="01d4d1251d73463484cd66d258546afe",eW=157,eX=140,eY="80a5432a5211488fb5a866aa8da65bb3",eZ=166,fa="d71b99c822dd4f19ba5df0152fbf1187",fb=383,fc=105,fd="4988d43d80b44008a4a415096f1632af",fe="6af1db263b83424fa5c49844b8745516",ff=297,fg="891f3aee5d224215a91bc66dfaf45681",fh="单选按钮",fi="radioButton",fj="selected",fk=100,fl="b61231a94db9418aac4b368e51f035a6",fm="2829faada5f8449da03773b96e566862",fn="setPanelState",fo="设置 (动态面板) 到 到 [[this.text]] ",fp="设置面板状态",fq="(动态面板) 到 [[this.text]]",fr="设置 (动态面板) 到 到 [[this.text]] ",fs="panelsToStates",ft="panelPath",fu="d18fc6b684fc4107af79a837ef85304d",fv="stateInfo",fw="setStateType",fx="value",fy="stateNumber",fz=1,fA="stateValue",fB="exprType",fC="stringLiteral",fD="[[this.text]]",fE="stos",fF="computedType",fG="string",fH="sto",fI="propCall",fJ="thisSTO",fK="desiredType",fL="widget",fM="var",fN="this",fO="prop",fP="text",fQ="loop",fR="showWhenSet",fS="compress",fT="images/新建训练/u1542.svg",fU="selected~",fV="images/新建训练/u1542_selected.svg",fW="images/新建训练/u1542_disabled.svg",fX="extraLeft",fY="e8de1b55b6a14095b973a40d115a2167",fZ=303,ga="images/新建训练/u1543.svg",gb="images/新建训练/u1543_selected.svg",gc="images/新建训练/u1543_disabled.svg",gd=396,ge=293,gf=342,gg="8c80a5d0d7ab47888e16031e20d8e03c",gh="当前集群",gi="8e00533f2826499cb774bb9ed8ab68d5",gj=320,gk="52e3f0b9d06d4e38a9f177b8bfc7950e",gl=-84,gm="b78b1e05bb59448da9eb85b169b28b40",gn="文本域",go="textArea",gp=170,gq="hint",gr="3c35f7f584574732b5edbd0cff195f77",gs="42ee17691d13435b8256d8d0a814778f",gt="HideHintOnFocused",gu="placeholderText",gv="726c2167abd14ee19c016b9e9b0044c7",gw=228,gx="597807518b0e4170a5bd17dd6775648d",gy="14px",gz=273,gA="346b674f670142a99a58c5d1a397c162",gB=-33,gC="4403eac0369842a098915b9521b5f89d",gD="其他集群",gE="407bc63ae88e400e92241c43d64729ca",gF=60,gG="519953df0d8a40539ac8ffab11aaf432",gH=12,gI="ff738ad8b8e04f939715a0f3d6c6f41c",gJ="下拉列表",gK="comboBox",gL=40,gM="c568339db4984d358bd04c4ed6515825",gN=0x438080FF,gO="images/新建训练/u1553.svg",gP="images/新建训练/u1553_disabled.svg",gQ="615360fa1495444f87a45e323daf8c59",gR=142,gS="be9e8697c1f14d8da84665014a4badab",gT="8561d7181ce8468fb16a4b1378359c7e",gU=285,gV="8d3e8355816e4add90e08bb953c8967b",gW=330,gX="9c27ee93650445558448535d77e9a5f9",gY="a887dd94e4ab46c9bd518a40ccb94ba4",gZ=722,ha=727,hb="17fc2e3712e147649586c168ce3f891a",hc=1266,hd="46341a1ed234451fbdad6c0bd923e1bf",he="c4ce1aa208bc48ef8175e482b2bf8ca8",hf=746,hg="e7d1f5425375413dbbd288e3d1a3728a",hh=657,hi="96d653b4e00348fb91dd1448f558bb5b",hj=1170,hk=676,hl="ab01d9be218444d4abc09699c298c8f7",hm=1080,hn="9cf01e31c9d8491eb3d4220ff932467c",ho=783,hp="22db88db7ade43d78b45fbb2a3ea5f9a",hq=426,hr=812,hs="9b89b81c76fd453a85f5c2315e737faf",ht=138,hu="3347aca7ef3b4a55ade6a18b5da36f8b",hv=867,hw="507b57d2c1dc46fd83d90a0f24aa87de",hx=178,hy="c09c9a9a95e44545ba975f21bae0a158",hz="71fd0268593344d8b9741bb781a96745",hA=309,hB="f4a9b62b1e0a47acadee85eaf120438c",hC=871,hD="4e2f20c01bdb45ce89367e5582a43942",hE=2,hF="images/新建训练/u1573.svg",hG="images/新建训练/u1573_selected.svg",hH="images/新建训练/u1573_disabled.svg",hI=247,hJ=354,hK="f58de19cd98f4bc3b4ef821343037dad",hL="c9c9148878ee4d6eab752dc228a7609f",hM="62f2a495258045ba877ba221b916f7ca",hN="d29099a20cd44978ab263ed5aecc7b32",hO="4b9888b1601445279b57c06af9f63bbe",hP="1c77df421faf4352a62d53dc83bc8e5f",hQ="4de4e4b708a04369a72420dccaed29cd",hR="764ee9a9180d4749b8cb39b816337f0b",hS="dcfe8540049d4347b9a6ad40bed30691",hT="fontWeight",hU="400",hV=0xFFFF3399,hW=21,hX=637,hY=23,hZ="e9bb90fdbe074e2795147507efd0336f",ia="7da31d6c032e4ad0a7bce964c5743724",ib=681,ic=280,id="18px",ie="f08bf3155ec6472a83d3f794cfaf59f3",ig="9574b5295e144f8c942f21613eea3ddd",ih="连接",ii="connector",ij=0xFF656565,ik="0c53a82434514dffb996c9c1d3318e61",il=67,im=306,io="0~",ip="images/新建训练/u1583_seg0.svg",iq="1~",ir="images/新建训练/u1583_seg1.svg",is="2~",it="images/新建训练/u1583_seg2.svg",iu="8d4ee2f894244ca38455852fb18ee0b0",iv="热区",iw="imageMapRegion",ix=961,iy=94,iz="linkWindow",iA="打开 在 当前窗口",iB="打开链接",iC="打开 在 当前窗口",iD="target",iE="targetType",iF="includeVariables",iG="linkType",iH="current",iI="f7d6a471d06e47c8b4add05d92218d7d",iJ=808.321167883211,iK=383.065693430656,iL="images/新建训练/u1585_seg0.svg",iM="images/新建训练/u1585_seg1.svg",iN="images/新建训练/u1585_seg2.svg",iO="3~",iP="images/新建训练/u1585_seg3.svg",iQ="4~",iR="images/新建训练/u1585_seg4.svg",iS="5~",iT="images/新建训练/u1585_seg5.svg",iU=0x797979,iV=0.149019607843137,iW="b5f37a7854164e84b454334de7096e71",iX="X",iY=600,iZ=1794,ja="5c65381f8b6e4aafaaf3a6a16b6e907b",jb="fd03c742ad124c529bbfe846022465fb",jc="17845abb76064134bd7f82d80158ca82",jd="隐藏 X",je="2cb16a65190144bf993e384acfc150c9",jf="fa9304c7719c41b9b2c4625d2275006b",jg=64,jh="95208e5ac4d84cb9bb41195e17e6d4a5",ji=530,jj="0fd1772b1ace4f8a973750150efac252",jk=450,jl=549,jm="a8c0b96128ec4c35b77be6e47e696487",jn=360,jo="7f6a702211664ec499463adbd8c997c9",jp="文本框",jq="textBox",jr="'微软雅黑'",js=500,jt=65,ju=0xFFCCCCCC,jv="focused",jw=64,jx=158,jy=255,jz=0.247058823529412,jA="7ab43cffe242402abb64197ed53041a2",jB=30,jC=440,jD="horizontalAlignment",jE="left",jF=0xFFDBDFEA,jG="10",jH=0.0980392156862745,jI="da7073b93b154fad84641498571c0b99",jJ=373,jK=39,jL="e72307f467984ee784abc39685b2f6c8",jM="S0A",jN=528,jO=370,jP=55,jQ="verticalAsNeeded",jR="3c3356de7cf6401fa1d836db400b750a",jS="2899142cc4554029ac66270135fde879",jT="复选框",jU="checkbox",jV="747fc3b6d309476f8d93603e868ad577",jW=47,jX=575,jY="images/新建训练/u1597.svg",jZ="images/新建训练/u1597_selected.svg",ka="images/新建训练/u1597_disabled.svg",kb="d2fae1706a7e40b88fd209cc614b61c9",kc=615,kd="images/新建训练/u1598.svg",ke="images/新建训练/u1598_selected.svg",kf="images/新建训练/u1598_disabled.svg",kg="c0e99225507c4f81b4e7a6ebdb2d3e64",kh=45,ki=295,kj="images/新建训练/u1599.svg",kk="images/新建训练/u1599_selected.svg",kl="images/新建训练/u1599_disabled.svg",km="dc6dc2a092ae47dfb46458815f610c67",kn="三角形",ko="flowShape",kp=25,kq=579,kr="rotation",ks="90",kt=0xFFAAAAAA,ku="images/新建训练/u1600.svg",kv="3cfb371486794178874b59845ec07fbd",kw=619,kx="218b2fe6da8a4201ad0bf6ed01c9678e",ky=299,kz="180",kA="628ad54200084f148af4eff4f4c5d16d",kB=135,kC="images/新建训练/u1603.svg",kD="images/新建训练/u1603_selected.svg",kE="images/新建训练/u1603_disabled.svg",kF="d21e72f2e6d442ce875c81b3f1143786",kG=255,kH="images/新建训练/u1604.svg",kI="images/新建训练/u1604_selected.svg",kJ="images/新建训练/u1604_disabled.svg",kK="4dac805149ad4b61bff3891906f2e60a",kL=175,kM="images/新建训练/u1605.svg",kN="images/新建训练/u1605_selected.svg",kO="images/新建训练/u1605_disabled.svg",kP="e117ef27f4df4ed3b62f7419fb4e4fb2",kQ="images/新建训练/u1606.svg",kR="images/新建训练/u1606_selected.svg",kS="images/新建训练/u1606_disabled.svg",kT="8b58cff7587f41069f3b18c59dcc7167",kU=50,kV="images/新建训练/u1607.svg",kW="images/新建训练/u1607_selected.svg",kX="images/新建训练/u1607_disabled.svg",kY="1918021bf25a4e468106f29b7a4b1bca",kZ="002e0d2a040148e29eec175a425f57a2",la=95,lb="images/新建训练/u1609.svg",lc="images/新建训练/u1609_selected.svg",ld="images/新建训练/u1609_disabled.svg",le="f21e64ef83ef4112b50aed61c1ccbd08",lf=215,lg="images/新建训练/u1610.svg",lh="images/新建训练/u1610_selected.svg",li="images/新建训练/u1610_disabled.svg",lj="095f2642d43949ce8445b9caf468502a",lk=415,ll="images/新建训练/u1611.svg",lm="images/新建训练/u1611_selected.svg",ln="images/新建训练/u1611_disabled.svg",lo="3b10c919bfb84752b986482355dce189",lp=535,lq="images/新建训练/u1612.svg",lr="images/新建训练/u1612_selected.svg",ls="images/新建训练/u1612_disabled.svg",lt="88a7a8c5f41d48c1a520d079d1bfacf7",lu=455,lv="images/新建训练/u1613.svg",lw="images/新建训练/u1613_selected.svg",lx="images/新建训练/u1613_disabled.svg",ly="ccae2ff83fdb4597bd1ff57596f6626c",lz=335,lA="images/新建训练/u1614.svg",lB="images/新建训练/u1614_selected.svg",lC="images/新建训练/u1614_disabled.svg",lD="68b4a7748c29439ba74736ba7a976997",lE=375,lF="images/新建训练/u1615.svg",lG="images/新建训练/u1615_selected.svg",lH="images/新建训练/u1615_disabled.svg",lI="64fefbbb25b949d4b7ff4d298a5a30c6",lJ=495,lK="images/新建训练/u1616.svg",lL="images/新建训练/u1616_selected.svg",lM="images/新建训练/u1616_disabled.svg",lN="152f275d29ac4e8697e2658d58110883",lO=89,lP=35,lQ=1569,lR="打开 底层 在 当前窗口",lS="底层",lT="backUrl",lU="fa07c44e2ef446f4919515d47927f8df",lV=1646.00015173413,lW=243,lX=130,lY="onResize",lZ="Resize时 ",ma="显示 当前 推动 元件 下方",mb="显示 当前",mc=" 推动 元件 下方",md="show",me="vertical",mf="compressEasing",mg="compressDuration",mh="9ce73043d10141139a26fca500b006f1",mi="State1",mj="1733efe751334ba5912ca7ef32c34940",mk=2,ml="a79a1fe7ec6b4ad58fc140e383b1863a",mm=0xFF3F8FCC,mn="d023796cd12e499a89efdb9d5fca0427",mo="'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC'",mp="500",mq=13,mr="79f1d6cf3c2145c0af688d07812e180c",ms=1646,mt=34,mu=0xFFDADFE6,mv="0.0337180630969462",mw="images/上传算子/u930.svg",mx="e1c70d5344064633b760216af7ae2411",my=59,mz="13px",mA="5709d1d32b224cd1921508ef4bd0dd77",mB="700",mC=0xFFE26866,mD=6,mE="749c7607ec9c479383a5e11007ec3530",mF=305,mG="4889d666e8ad4c5e81e59863039a5cc0",mH="9bd0236217a94d89b0314c8c7fc75f16",mI="991e8b5e81cb425abf962546d004013e",mJ=52,mK="汉字、英文、数字、下划线,4-50字符",mL="303a5a3b69e94a87ae67e11829c9aeef",mM=177,mN="4b0b67e1e04e4beb9904771024bb00bf",mO=1543,mP=79,mQ=164,mR="c00cc9bf2e5f406b9ff1c7228bb661af",mS="组合",mT="layer",mU=-50,mV=-130,mW="objs",mX="ebd4da2d1677486d8d9522f626ca1bad",mY=117,mZ="2f5216c205194642a8dc0c249f5243e6",na=114,nb="d8cc2cb8aa75441bb6584e56ca0cc701",nc=0xFF7F7F7F,nd=109,ne="c088c3b223d74a46839d3ada625e1754",nf="State2",ng="b4951718af304a91a40e80a6707dcec8",nh="091823ca54cb49a184bba275ec2bc5f4",ni="898cd5871da148aab1b78858cbbe43bc",nj="fef4e719ca354d72b1b7916adbb15cdf",nk=-113,nl="设置 (动态面板) 到 到 下一项 循环 如果隐藏则显示 推动和拉动元件 下方",nm="(动态面板) 到 下一项 循环",nn="如果隐藏则显示 推动和拉动元件 下方",no="设置 (动态面板) 到 到 下一项 循环 如果隐藏则显示 推动和拉动元件 下方",np="next",nq="c47a7ec4a8704e0bb82edb76abb3c50e",nr=1560,ns="a6378ee9c9194a33a5730995d6b3634f",nt=11,nu=1626,nv="images/上传算子/u933.svg",nw="c9f254e438a94e818e23c97c4904ab43",nx=400,ny="24a24dddf0f9412c92a807ad99ec4117",nz="cee311c803ba4191b899295bcd0e0b59",nA="bf4831442e6444449542946671e56d49",nB="ee867ee8dcea4259899db42a0363e12f",nC="bbefc12dcd284a84b687924658439188",nD="40519e9ec4264601bfb12c514e4f4867",nE=8,nF="images/新建训练/u1644.svg",nG="9b0eac4a64e546bf866add7649434955",nH="树",nI="treeNodeObject",nJ="93a4c3353b6f4562af635b7116d6bf94",nK=425,nL="057f52cdb44040878d49a108de242c52",nM="节点",nN="5a29a3bb5b9b49c499a5813e993c10b4",nO="isContained",nP="0d5662a4c3f047369f02b39051f376fb",nQ=54,nR="025d6d4179c34f1d8f3a915154c1df6d",nS="buttonShapeId",nT="5fdaf0f9dc71409ba32eac4dc91b9ae6",nU="7648bd7d1255478c823bec07ddbfc978",nV="72739b6aa0c94c99bb9420765c29afd1",nW="40e6d5f3890b48d2b2ac633086d47b09",nX="isExpanded",nY="bb5ccb9dd667455e88ecf8627e024b36",nZ=-400,oa="0590f32b6cc340dc940168b3a060e07e",ob=69,oc="92761b97344c482885d15129e893f203",od=66,oe="bcae6b01cb624691a70e6abf5b40b719",of=90,og="0b4f4e69ceb340308cc6aee3dbf377f4",oh=-161,oi="5aa4eb3514e24828b012d372b2382114",oj=-153,ok="0348cfd9185940f9b5addedb4a594fa9",ol=-156,om="a1068c558c84474889a152126a195e76",on="49318e2870934e8db8f12217c93bb1af",oo=118,op="25c3e85c78c14767beece98b8b668b8e",oq=115,or="6ffed89da57a4a88bd940c4fb3d99362",os=233,ot="cffa2e7564874ebfb374d920550b5ab8",ou="数据表格",ov="表格",ow="table",ox=740,oy=87,oz=230,oA="0cd67d03dc514452acbc417df2e8c9ac",oB="单元格",oC="tableCell",oD=0xFF555555,oE=220,oF=42,oG=0xFFE9E9E9,oH="15",oI=0xF9F9F9,oJ="images/模型训练/u1382.png",oK="bef3e0f4f090415db62507f727a68286",oL=0xFFE2E4F4,oM="images/模型训练/u1350.png",oN="78b077b7c6e34e9595a9128828d6fcf9",oO=270,oP="images/新建训练/u1647.png",oQ="6e37d3093ffd4d3aa8786b38c01e6ed4",oR=0xFF000000,oS="images/新建在线服务/u1952.png",oT="1ec8e1f0cf0e481bb8dbcef1c1456ffd",oU=250,oV=490,oW="images/新建训练/u1648.png",oX="d19e388d7a294f6aa35f49e28f1c0f6e",oY="images/新建在线服务/u1953.png",oZ="a4bae4ed426e4fd899e7f7261766d3c3",pa="d11d30dcb989459fa823b22f64949903",pb="ec1ffa1bd3a5458daa3864e3bbab81d2",pc="1456680aeb8a4c8d8baae48c8e1dc172",pd="89c3e90c87814daca868ed6ada5b4c3a",pe="ee4cd41c7e484af1945df56cdb356b40",pf="0759c66dcdfa4f10bdd282957f591c2b",pg="271b795fc2e0495782f3bc99d7f5233a",ph=197,pi="44157808f2934100b68f2394a66b2bba",pj=102,pk=167,pl="e4b34f01f1a646998736311fc0cd8624",pm=590,pn="f24ec04a25cd4b6f820367f8176414e8",po=319,pp="871c32bd70684453835443b061a8bbf6",pq=279,pr="4ec983c5c7aa4121b61991c1ecce283e",ps="6c25075817814919bd9ddb60eba26ae8",pt="e0ff9f3f8b994cb5b78eb38bcba5afd9",pu="f1348394091442d9ab339e9065091139",pv="c75fd74c2e2542b3877b5a4f998c8b57",pw="9c7f2ae849b143b3b2e4e31ed7282fba",px="021508eff5754c82ab859a8ef7831582",py="4098c53bb5d94cd5b0cfc5c1fbdde72e",pz="fd62b5e3ce3147d483123f630daf5593",pA="a9789c501971439e960ff8efd53e309c",pB="c9f35713a1cf4e91a0f2dbac65e6fb5c",pC=1571,pD="26px",pE="images/新建在线服务/u1973.svg",pF="masters",pG="4b990bb6cff949a1b5064d9025ac7466",pH="Axure:Master",pI="b4af901033b249d38ee8eb1b94777365",pJ="573733447bee46eea78d2b52ca56b99a",pK=0xFFF5F6FA,pL="458c47cd3b3c4a7eb8cf043d32222b99",pM=63,pN=0xFFD7D7D7,pO="07056249b2ee422393616a7350baacea",pP=1859,pQ=900,pR=88,pS="a7ce4e4c5c6d4f7da2e684ee804f68d0",pT="'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'",pU="650",pV=22,pW="8c7a4c5ad69a4369a5f7788171ac0b32",pX="onLoad",pY="Load时 ",pZ="setFunction",qa="设置 文字于 当前等于"[[Pagename]]"",qb="设置文本",qc="当前 为 \"[[Pagename]]\"",qd="文字于 当前等于\"[[Pagename]]\"",qe="expr",qf="block",qg="subExprs",qh="fcall",qi="functionName",qj="SetWidgetRichText",qk="arguments",ql="pathLiteral",qm="isThis",qn="isFocused",qo="isTarget",qp="[[Pagename]]",qq="pagename",qr="booleanLiteral",qs="objectPaths",qt="08a2c0a1240140c48cb1633aa051425f",qu="scriptId",qv="u1806",qw="b4af901033b249d38ee8eb1b94777365",qx="u1807",qy="573733447bee46eea78d2b52ca56b99a",qz="u1808",qA="458c47cd3b3c4a7eb8cf043d32222b99",qB="u1809",qC="07056249b2ee422393616a7350baacea",qD="u1810",qE="a7ce4e4c5c6d4f7da2e684ee804f68d0",qF="u1811",qG="b738f4e4bb5641cd96c2ed83cff83be2",qH="u1812",qI="8be5c279abde49308618c7a1cf21f7f5",qJ="u1813",qK="b49442614a04410f950b39bc945e94d5",qL="u1814",qM="2bd0fa09f8f94d93981319cd46f72d80",qN="u1815",qO="589ed251fdd545f4ba1e006aefec9446",qP="u1816",qQ="4a27ed3ecf6a42239ef1eab2b99a69ad",qR="u1817",qS="b4832ede99a5481ba5cd7d79a9536148",qT="u1818",qU="a861e13b0360469d8e481e283a712b54",qV="u1819",qW="fe7a836eae634c30a10626d8834488c0",qX="u1820",qY="83f2f52d41fb49d59aa47b3346d6bb74",qZ="u1821",ra="5c76b43a20ec4b21aeadb392380708e6",rb="u1822",rc="01d4d1251d73463484cd66d258546afe",rd="u1823",re="80a5432a5211488fb5a866aa8da65bb3",rf="u1824",rg="d71b99c822dd4f19ba5df0152fbf1187",rh="u1825",ri="6af1db263b83424fa5c49844b8745516",rj="u1826",rk="891f3aee5d224215a91bc66dfaf45681",rl="u1827",rm="e8de1b55b6a14095b973a40d115a2167",rn="u1828",ro="d18fc6b684fc4107af79a837ef85304d",rp="u1829",rq="8e00533f2826499cb774bb9ed8ab68d5",rr="u1830",rs="52e3f0b9d06d4e38a9f177b8bfc7950e",rt="u1831",ru="b78b1e05bb59448da9eb85b169b28b40",rv="u1832",rw="726c2167abd14ee19c016b9e9b0044c7",rx="u1833",ry="597807518b0e4170a5bd17dd6775648d",rz="u1834",rA="346b674f670142a99a58c5d1a397c162",rB="u1835",rC="407bc63ae88e400e92241c43d64729ca",rD="u1836",rE="519953df0d8a40539ac8ffab11aaf432",rF="u1837",rG="u1838",rH="615360fa1495444f87a45e323daf8c59",rI="u1839",rJ="be9e8697c1f14d8da84665014a4badab",rK="u1840",rL="8561d7181ce8468fb16a4b1378359c7e",rM="u1841",rN="8d3e8355816e4add90e08bb953c8967b",rO="u1842",rP="9c27ee93650445558448535d77e9a5f9",rQ="u1843",rR="a887dd94e4ab46c9bd518a40ccb94ba4",rS="u1844",rT="17fc2e3712e147649586c168ce3f891a",rU="u1845",rV="46341a1ed234451fbdad6c0bd923e1bf",rW="u1846",rX="c4ce1aa208bc48ef8175e482b2bf8ca8",rY="u1847",rZ="e7d1f5425375413dbbd288e3d1a3728a",sa="u1848",sb="96d653b4e00348fb91dd1448f558bb5b",sc="u1849",sd="ab01d9be218444d4abc09699c298c8f7",se="u1850",sf="9cf01e31c9d8491eb3d4220ff932467c",sg="u1851",sh="22db88db7ade43d78b45fbb2a3ea5f9a",si="u1852",sj="9b89b81c76fd453a85f5c2315e737faf",sk="u1853",sl="3347aca7ef3b4a55ade6a18b5da36f8b",sm="u1854",sn="507b57d2c1dc46fd83d90a0f24aa87de",so="u1855",sp="c09c9a9a95e44545ba975f21bae0a158",sq="u1856",sr="71fd0268593344d8b9741bb781a96745",ss="u1857",st="f4a9b62b1e0a47acadee85eaf120438c",su="u1858",sv="4e2f20c01bdb45ce89367e5582a43942",sw="u1859",sx="c9c9148878ee4d6eab752dc228a7609f",sy="u1860",sz="62f2a495258045ba877ba221b916f7ca",sA="u1861",sB="u1862",sC="4b9888b1601445279b57c06af9f63bbe",sD="u1863",sE="1c77df421faf4352a62d53dc83bc8e5f",sF="u1864",sG="764ee9a9180d4749b8cb39b816337f0b",sH="u1865",sI="dcfe8540049d4347b9a6ad40bed30691",sJ="u1866",sK="7da31d6c032e4ad0a7bce964c5743724",sL="u1867",sM="9574b5295e144f8c942f21613eea3ddd",sN="u1868",sO="u1869",sP="f7d6a471d06e47c8b4add05d92218d7d",sQ="u1870",sR="b5f37a7854164e84b454334de7096e71",sS="u1871",sT="fd03c742ad124c529bbfe846022465fb",sU="u1872",sV="17845abb76064134bd7f82d80158ca82",sW="u1873",sX="2cb16a65190144bf993e384acfc150c9",sY="u1874",sZ="fa9304c7719c41b9b2c4625d2275006b",ta="u1875",tb="95208e5ac4d84cb9bb41195e17e6d4a5",tc="u1876",td="0fd1772b1ace4f8a973750150efac252",te="u1877",tf="a8c0b96128ec4c35b77be6e47e696487",tg="u1878",th="7f6a702211664ec499463adbd8c997c9",ti="u1879",tj="da7073b93b154fad84641498571c0b99",tk="u1880",tl="e72307f467984ee784abc39685b2f6c8",tm="u1881",tn="2899142cc4554029ac66270135fde879",to="u1882",tp="d2fae1706a7e40b88fd209cc614b61c9",tq="u1883",tr="c0e99225507c4f81b4e7a6ebdb2d3e64",ts="u1884",tt="dc6dc2a092ae47dfb46458815f610c67",tu="u1885",tv="3cfb371486794178874b59845ec07fbd",tw="u1886",tx="218b2fe6da8a4201ad0bf6ed01c9678e",ty="u1887",tz="628ad54200084f148af4eff4f4c5d16d",tA="u1888",tB="d21e72f2e6d442ce875c81b3f1143786",tC="u1889",tD="4dac805149ad4b61bff3891906f2e60a",tE="u1890",tF="e117ef27f4df4ed3b62f7419fb4e4fb2",tG="u1891",tH="8b58cff7587f41069f3b18c59dcc7167",tI="u1892",tJ="1918021bf25a4e468106f29b7a4b1bca",tK="u1893",tL="002e0d2a040148e29eec175a425f57a2",tM="u1894",tN="f21e64ef83ef4112b50aed61c1ccbd08",tO="u1895",tP="095f2642d43949ce8445b9caf468502a",tQ="u1896",tR="3b10c919bfb84752b986482355dce189",tS="u1897",tT="88a7a8c5f41d48c1a520d079d1bfacf7",tU="u1898",tV="ccae2ff83fdb4597bd1ff57596f6626c",tW="u1899",tX="68b4a7748c29439ba74736ba7a976997",tY="u1900",tZ="64fefbbb25b949d4b7ff4d298a5a30c6",ua="u1901",ub="152f275d29ac4e8697e2658d58110883",uc="u1902",ud="fa07c44e2ef446f4919515d47927f8df",ue="u1903",uf="1733efe751334ba5912ca7ef32c34940",ug="u1904",uh="d023796cd12e499a89efdb9d5fca0427",ui="u1905",uj="79f1d6cf3c2145c0af688d07812e180c",uk="u1906",ul="e1c70d5344064633b760216af7ae2411",um="u1907",un="5709d1d32b224cd1921508ef4bd0dd77",uo="u1908",up="749c7607ec9c479383a5e11007ec3530",uq="u1909",ur="303a5a3b69e94a87ae67e11829c9aeef",us="u1910",ut="4b0b67e1e04e4beb9904771024bb00bf",uu="u1911",uv="c00cc9bf2e5f406b9ff1c7228bb661af",uw="u1912",ux="ebd4da2d1677486d8d9522f626ca1bad",uy="u1913",uz="2f5216c205194642a8dc0c249f5243e6",uA="u1914",uB="d8cc2cb8aa75441bb6584e56ca0cc701",uC="u1915",uD="b4951718af304a91a40e80a6707dcec8",uE="u1916",uF="091823ca54cb49a184bba275ec2bc5f4",uG="u1917",uH="898cd5871da148aab1b78858cbbe43bc",uI="u1918",uJ="fef4e719ca354d72b1b7916adbb15cdf",uK="u1919",uL="c47a7ec4a8704e0bb82edb76abb3c50e",uM="u1920",uN="a6378ee9c9194a33a5730995d6b3634f",uO="u1921",uP="c9f254e438a94e818e23c97c4904ab43",uQ="u1922",uR="cee311c803ba4191b899295bcd0e0b59",uS="u1923",uT="bf4831442e6444449542946671e56d49",uU="u1924",uV="ee867ee8dcea4259899db42a0363e12f",uW="u1925",uX="bbefc12dcd284a84b687924658439188",uY="u1926",uZ="9b0eac4a64e546bf866add7649434955",va="u1927",vb="057f52cdb44040878d49a108de242c52",vc="u1928",vd="5a29a3bb5b9b49c499a5813e993c10b4",ve="u1929",vf="0d5662a4c3f047369f02b39051f376fb",vg="u1930",vh="025d6d4179c34f1d8f3a915154c1df6d",vi="u1931",vj="5fdaf0f9dc71409ba32eac4dc91b9ae6",vk="u1932",vl="7648bd7d1255478c823bec07ddbfc978",vm="u1933",vn="72739b6aa0c94c99bb9420765c29afd1",vo="u1934",vp="40e6d5f3890b48d2b2ac633086d47b09",vq="u1935",vr="bb5ccb9dd667455e88ecf8627e024b36",vs="u1936",vt="0590f32b6cc340dc940168b3a060e07e",vu="u1937",vv="92761b97344c482885d15129e893f203",vw="u1938",vx="bcae6b01cb624691a70e6abf5b40b719",vy="u1939",vz="0b4f4e69ceb340308cc6aee3dbf377f4",vA="u1940",vB="5aa4eb3514e24828b012d372b2382114",vC="u1941",vD="0348cfd9185940f9b5addedb4a594fa9",vE="u1942",vF="a1068c558c84474889a152126a195e76",vG="u1943",vH="49318e2870934e8db8f12217c93bb1af",vI="u1944",vJ="25c3e85c78c14767beece98b8b668b8e",vK="u1945",vL="6ffed89da57a4a88bd940c4fb3d99362",vM="u1946",vN="cffa2e7564874ebfb374d920550b5ab8",vO="u1947",vP="bef3e0f4f090415db62507f727a68286",vQ="u1948",vR="78b077b7c6e34e9595a9128828d6fcf9",vS="u1949",vT="1ec8e1f0cf0e481bb8dbcef1c1456ffd",vU="u1950",vV="0cd67d03dc514452acbc417df2e8c9ac",vW="u1951",vX="6e37d3093ffd4d3aa8786b38c01e6ed4",vY="u1952",vZ="d19e388d7a294f6aa35f49e28f1c0f6e",wa="u1953",wb="a4bae4ed426e4fd899e7f7261766d3c3",wc="u1954",wd="ec1ffa1bd3a5458daa3864e3bbab81d2",we="u1955",wf="1456680aeb8a4c8d8baae48c8e1dc172",wg="u1956",wh="ee4cd41c7e484af1945df56cdb356b40",wi="u1957",wj="d11d30dcb989459fa823b22f64949903",wk="u1958",wl="89c3e90c87814daca868ed6ada5b4c3a",wm="u1959",wn="0759c66dcdfa4f10bdd282957f591c2b",wo="u1960",wp="271b795fc2e0495782f3bc99d7f5233a",wq="u1961",wr="e4b34f01f1a646998736311fc0cd8624",ws="u1962",wt="f24ec04a25cd4b6f820367f8176414e8",wu="u1963",wv="871c32bd70684453835443b061a8bbf6",ww="u1964",wx="4ec983c5c7aa4121b61991c1ecce283e",wy="u1965",wz="6c25075817814919bd9ddb60eba26ae8",wA="u1966",wB="f1348394091442d9ab339e9065091139",wC="u1967",wD="c75fd74c2e2542b3877b5a4f998c8b57",wE="u1968",wF="9c7f2ae849b143b3b2e4e31ed7282fba",wG="u1969",wH="021508eff5754c82ab859a8ef7831582",wI="u1970",wJ="4098c53bb5d94cd5b0cfc5c1fbdde72e",wK="u1971",wL="fd62b5e3ce3147d483123f630daf5593",wM="u1972",wN="a9789c501971439e960ff8efd53e309c",wO="u1973"; +return _creator(); +})()); \ No newline at end of file diff --git "a/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\346\226\260\345\273\272\345\234\250\347\272\277\346\234\215\345\212\241/styles.css" "b/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\346\226\260\345\273\272\345\234\250\347\272\277\346\234\215\345\212\241/styles.css" new file mode 100644 index 0000000000000000000000000000000000000000..85e7381617679f969fb7b2a5560e57ae917adb92 --- /dev/null +++ "b/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\346\226\260\345\273\272\345\234\250\347\272\277\346\234\215\345\212\241/styles.css" @@ -0,0 +1,7398 @@ +body { + margin:0px; + background-image:none; + position:relative; + left:0px; + width:1920px; + margin-left:auto; + margin-right:auto; + text-align:left; +} +.form_sketch { + border-color:transparent; + background-color:transparent; +} +#base { + position:absolute; + z-index:0; +} +#u1807 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1808_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1920px; + height:1300px; + background:inherit; + background-color:rgba(245, 246, 250, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1808 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1920px; + height:1300px; + display:flex; +} +#u1808 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1808_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1809_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1920px; + height:63px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1809 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1920px; + height:63px; + display:flex; +} +#u1809 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1809_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1810_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1859px; + height:900px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1810 { + border-width:0px; + position:absolute; + left:25px; + top:88px; + width:1859px; + height:900px; + display:flex; +} +#u1810 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1810_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1811_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:400px; + height:22px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:16px; +} +#u1811 { + border-width:0px; + position:absolute; + left:35px; + top:21px; + width:400px; + height:22px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:16px; +} +#u1811 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1811_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1812 { + position:fixed; + left:50%; + margin-left:-647.5px; + top:50%; + margin-top:-401px; + visibility:hidden; +} +#u1812_state0 { + position:relative; + left:0px; + top:0px; + width:1295px; + height:802px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1812_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1813_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:568px; + height:802px; + 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:8px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1813 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:568px; + height:802px; + display:flex; +} +#u1813 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1813_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1814_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:15px; + height:15px; +} +#u1814 { + border-width:0px; + position:absolute; + left:539px; + top:18px; + width:15px; + height:15px; + display:flex; + color:#00FF99; +} +#u1814 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1814_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1815_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:569px; + height:2px; +} +#u1815 { + border-width:0px; + position:absolute; + left:0px; + top:48px; + width:568px; + height:1px; + display:flex; +} +#u1815 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1815_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1816_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:74px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:16px; +} +#u1816 { + border-width:0px; + position:absolute; + left:19px; + top:17px; + width:74px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:16px; +} +#u1816 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1816_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1817_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:569px; + height:2px; +} +#u1817 { + border-width:0px; + position:absolute; + left:0px; + top:737px; + width:568px; + height:1px; + display:flex; +} +#u1817 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1817_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1818_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u1818 { + border-width:0px; + position:absolute; + left:443px; + top:756px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#FFFFFF; + line-height:20px; +} +#u1818 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1818_img.mouseOver { +} +#u1818.mouseOver { +} +#u1818_img.mouseDown { +} +#u1818.mouseDown { +} +#u1818_img.disabled { +} +#u1818.disabled { + opacity:0.7; +} +#u1818_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1819_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u1819 { + border-width:0px; + position:absolute; + left:353px; + top:756px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#999999; +} +#u1819 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1819_img.mouseOver { +} +#u1819.mouseOver { +} +#u1819_img.mouseDown { +} +#u1819.mouseDown { +} +#u1819_img.disabled { +} +#u1819.disabled { + opacity:0.7; +} +#u1819_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1820_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; +} +#u1820 { + border-width:0px; + position:absolute; + left:56px; + top:74px; + width:20px; + height:20px; + display:flex; + color:#02A7F0; +} +#u1820 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1820_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1821_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:469px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1821 { + border-width:0px; + position:absolute; + left:85px; + top:74px; + width:469px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1821 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1821_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1822_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1822 { + border-width:0px; + position:absolute; + left:56px; + top:126px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1822 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1822_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1823_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:157px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1823 { + border-width:0px; + position:absolute; + left:140px; + top:126px; + width:157px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1823 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1823_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1824_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1824 { + border-width:0px; + position:absolute; + left:56px; + top:166px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1824 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1824_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1825_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:383px; + height:105px; + 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; +} +#u1825 { + border-width:0px; + position:absolute; + left:140px; + top:166px; + width:383px; + height:105px; + display:flex; +} +#u1825 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1825_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1826_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1826 { + border-width:0px; + position:absolute; + left:56px; + top:297px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1826 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1826_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1827 label { + left:0px; + width:100%; +} +#u1827_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1827 { + border-width:0px; + position:absolute; + left:140px; + top:297px; + width:100px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1827 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1827_img.selected { +} +#u1827.selected { +} +#u1827_img.disabled { +} +#u1827.disabled { +} +#u1827_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:84px; + word-wrap:break-word; + text-transform:none; +} +#u1827_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1828 label { + left:0px; + width:100%; +} +#u1828_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1828 { + border-width:0px; + position:absolute; + left:303px; + top:297px; + width:100px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1828 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1828_img.selected { +} +#u1828.selected { +} +#u1828_img.disabled { +} +#u1828.disabled { +} +#u1828_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:84px; + word-wrap:break-word; + text-transform:none; +} +#u1828_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1829 { + position:absolute; + left:140px; + top:342px; +} +#u1829_state0 { + position:relative; + left:0px; + top:0px; + width:396px; + height:293px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1829_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1830_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:48px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1830 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:48px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1830 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1830_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1831_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1831 { + border-width:0px; + position:absolute; + left:-84px; + top:85px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1831 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1831_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1832_input { + position:absolute; + left:0px; + top:0px; + width:383px; + height:170px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; + resize:none; +} +#u1832_input.disabled { + position:absolute; + left:0px; + top:0px; + width:383px; + height:170px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; + resize:none; +} +#u1832_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:383px; + 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; +} +#u1832 { + border-width:0px; + position:absolute; + left:0px; + top:85px; + width:383px; + height:170px; + display:flex; +} +#u1832 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1832_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:383px; + height:170px; + background:inherit; + background-color:rgba(240, 240, 240, 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; +} +#u1832.disabled { +} +#u1833_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1833 { + border-width:0px; + position:absolute; + left:303px; + top:228px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1833 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1833_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1834_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:396px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; +} +#u1834 { + border-width:0px; + position:absolute; + left:0px; + top:273px; + width:396px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; +} +#u1834 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1834_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1835_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; +} +#u1835 { + border-width:0px; + position:absolute; + left:-33px; + top:273px; + width:20px; + height:20px; + display:flex; + color:#02A7F0; +} +#u1835 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1835_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1829_state1 { + position:relative; + left:0px; + top:0px; + width:396px; + height:368px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + visibility:hidden; +} +#u1829_state1_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1836_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:48px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1836 { + border-width:0px; + position:absolute; + left:0px; + top:60px; + width:320px; + height:48px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1836 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1836_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1837_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1837 { + border-width:0px; + position:absolute; + left:-84px; + top:12px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1837 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1837_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1838_input { + position:absolute; + left:0px; + top:0px; + width:383px; + height:40px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1838_input.disabled { + position:absolute; + left:0px; + top:0px; + width:383px; + height:40px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1838_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:383px; + height:40px; +} +#u1838 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:383px; + height:40px; + display:flex; +} +#u1838 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1838_img.disabled { +} +#u1838.disabled { +} +.u1838_input_option { +} +#u1839_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1839 { + border-width:0px; + position:absolute; + left:-84px; + top:142px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1839 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1839_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1840_input { + position:absolute; + left:0px; + top:0px; + width:383px; + height:170px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; + resize:none; +} +#u1840_input.disabled { + position:absolute; + left:0px; + top:0px; + width:383px; + height:170px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; + resize:none; +} +#u1840_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:383px; + 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; +} +#u1840 { + border-width:0px; + position:absolute; + left:0px; + top:142px; + width:383px; + height:170px; + display:flex; +} +#u1840 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1840_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:383px; + height:170px; + background:inherit; + background-color:rgba(240, 240, 240, 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; +} +#u1840.disabled { +} +#u1841_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1841 { + border-width:0px; + position:absolute; + left:303px; + top:285px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1841 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1841_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1842_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:396px; + height:32px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; +} +#u1842 { + border-width:0px; + position:absolute; + left:0px; + top:330px; + width:396px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; +} +#u1842 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1842_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1843_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; +} +#u1843 { + border-width:0px; + position:absolute; + left:-33px; + top:330px; + width:20px; + height:20px; + display:flex; + color:#02A7F0; +} +#u1843 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1843_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1844_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:568px; + height:722px; + 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:8px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1844 { + border-width:0px; + position:absolute; + left:727px; + top:0px; + width:568px; + height:722px; + display:flex; +} +#u1844 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1844_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1845_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:15px; + height:15px; +} +#u1845 { + border-width:0px; + position:absolute; + left:1266px; + top:18px; + width:15px; + height:15px; + display:flex; + color:#00FF99; +} +#u1845 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1845_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1846_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:569px; + height:2px; +} +#u1846 { + border-width:0px; + position:absolute; + left:727px; + top:48px; + width:568px; + height:1px; + display:flex; +} +#u1846 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1846_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1847_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:74px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:16px; +} +#u1847 { + border-width:0px; + position:absolute; + left:746px; + top:17px; + width:74px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:16px; +} +#u1847 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1847_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1848_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:569px; + height:2px; +} +#u1848 { + border-width:0px; + position:absolute; + left:727px; + top:657px; + width:568px; + height:1px; + display:flex; +} +#u1848 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1848_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1849_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u1849 { + border-width:0px; + position:absolute; + left:1170px; + top:676px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#FFFFFF; + line-height:20px; +} +#u1849 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1849_img.mouseOver { +} +#u1849.mouseOver { +} +#u1849_img.mouseDown { +} +#u1849.mouseDown { +} +#u1849_img.disabled { +} +#u1849.disabled { + opacity:0.7; +} +#u1849_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1850_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u1850 { + border-width:0px; + position:absolute; + left:1080px; + top:676px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#999999; +} +#u1850 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1850_img.mouseOver { +} +#u1850.mouseOver { +} +#u1850_img.mouseDown { +} +#u1850.mouseDown { +} +#u1850_img.disabled { +} +#u1850.disabled { + opacity:0.7; +} +#u1850_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1851_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; +} +#u1851 { + border-width:0px; + position:absolute; + left:783px; + top:74px; + width:20px; + height:20px; + display:flex; + color:#02A7F0; +} +#u1851 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1851_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1852_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:426px; + height:32px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1852 { + border-width:0px; + position:absolute; + left:812px; + top:74px; + width:426px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1852 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1852_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1853_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1853 { + border-width:0px; + position:absolute; + left:783px; + top:138px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1853 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1853_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1854_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:157px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1854 { + border-width:0px; + position:absolute; + left:867px; + top:138px; + width:157px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1854 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1854_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1855_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1855 { + border-width:0px; + position:absolute; + left:783px; + top:178px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1855 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1855_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1856_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:383px; + height:105px; + 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; +} +#u1856 { + border-width:0px; + position:absolute; + left:867px; + top:178px; + width:383px; + height:105px; + display:flex; +} +#u1856 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1856_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1857_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1857 { + border-width:0px; + position:absolute; + left:783px; + top:309px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1857 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1857_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1858 label { + left:0px; + width:100%; +} +#u1858_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1858 { + border-width:0px; + position:absolute; + left:871px; + top:309px; + width:100px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1858 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1858_img.selected { +} +#u1858.selected { +} +#u1858_img.disabled { +} +#u1858.disabled { +} +#u1858_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:84px; + word-wrap:break-word; + text-transform:none; +} +#u1858_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1859 { + position:absolute; + left:867px; + top:354px; +} +#u1859_state0 { + position:relative; + left:0px; + top:0px; + width:383px; + height:264px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1859_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1860_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:48px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1860 { + border-width:0px; + position:absolute; + left:0px; + top:60px; + width:320px; + height:48px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1860 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1860_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1861_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1861 { + border-width:0px; + position:absolute; + left:-84px; + top:12px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1861 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1861_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1862_input { + position:absolute; + left:0px; + top:0px; + width:383px; + height:40px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1862_input.disabled { + position:absolute; + left:0px; + top:0px; + width:383px; + height:40px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1862_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:383px; + height:40px; +} +#u1862 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:383px; + height:40px; + display:flex; +} +#u1862 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1862_img.disabled { +} +#u1862.disabled { +} +.u1862_input_option { +} +#u1863_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1863 { + border-width:0px; + position:absolute; + left:-84px; + top:142px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1863 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1863_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1864_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:383px; + height:105px; + 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; +} +#u1864 { + border-width:0px; + position:absolute; + left:0px; + top:142px; + width:383px; + height:105px; + display:flex; +} +#u1864 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1864_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1859_state1 { + position:relative; + left:0px; + top:0px; + width:320px; + height:48px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + visibility:hidden; +} +#u1859_state1_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1865_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:48px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1865 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:48px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1865 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1865_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1866_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:40px; + height:23px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:20px; + color:#FF3399; +} +#u1866 { + border-width:0px; + position:absolute; + left:21px; + top:637px; + width:40px; + height:23px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:20px; + color:#FF3399; +} +#u1866 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1866_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1867_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:280px; + height:80px; + background:inherit; + background-color:rgba(255, 255, 255, 0); + box-sizing:border-box; + border-width:2px; + border-style:solid; + border-color:rgba(255, 51, 153, 1); + border-top:0px; + border-right:0px; + border-bottom:0px; + border-radius:0px; + border-top-left-radius:0px; + border-top-right-radius:0px; + border-bottom-right-radius:0px; + border-bottom-left-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#FF3399; + line-height:18px; +} +#u1867 { + border-width:0px; + position:absolute; + left:23px; + top:681px; + width:280px; + height:80px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#FF3399; + line-height:18px; +} +#u1867 .text { + position:absolute; + align-self:flex-start; + padding:4px 0px 4px 8px; + box-sizing:border-box; + width:100%; +} +#u1867_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1868 { + border-width:0px; + position:absolute; + left:67px; + top:306px; + width:0px; + height:0px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#656565; +} +#u1868_seg0 { + border-width:0px; + position:absolute; + left:-31px; + top:-5px; + width:31px; + height:10px; +} +#u1868_seg1 { + border-width:0px; + position:absolute; + left:-31px; + top:-5px; + width:10px; + height:336px; +} +#u1868_seg2 { + border-width:0px; + position:absolute; + left:-12px; + top:-9px; + width:18px; + height:18px; +} +#u1868_text { + border-width:0px; + position:absolute; + left:-76px; + top:144px; + width:100px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1869 { + border-width:0px; + position:absolute; + left:961px; + top:94px; + width:100px; + height:20px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} +#u1870 { + border-width:0px; + position:absolute; + left:808px; + top:383px; + width:0px; + height:0px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#656565; +} +#u1870_seg0 { + border-width:0px; + position:absolute; + left:-18px; + top:-5px; + width:18px; + height:10px; +} +#u1870_seg1 { + border-width:0px; + position:absolute; + left:-18px; + top:-5px; + width:10px; + height:38px; +} +#u1870_seg2 { + border-width:0px; + position:absolute; + left:-88px; + top:23px; + width:80px; + height:10px; +} +#u1870_seg3 { + border-width:0px; + position:absolute; + left:-88px; + top:23px; + width:10px; + height:320px; +} +#u1870_seg4 { + border-width:0px; + position:absolute; + left:-505px; + top:333px; + width:427px; + height:10px; +} +#u1870_seg5 { + border-width:0px; + position:absolute; + left:-12px; + top:-9px; + width:18px; + height:18px; +} +#u1870_text { + border-width:0px; + position:absolute; + left:-134px; + top:330px; + width:100px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1871 { + position:fixed; + left:50%; + margin-left:-284px; + top:50%; + margin-top:-300px; + visibility:hidden; +} +#u1871_state0 { + position:relative; + left:0px; + top:0px; + width:568px; + height:600px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1871_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1872_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:568px; + height:600px; + 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:8px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1872 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:568px; + height:600px; + display:flex; +} +#u1872 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1872_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1873_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:15px; + height:15px; +} +#u1873 { + border-width:0px; + position:absolute; + left:539px; + top:18px; + width:15px; + height:15px; + display:flex; + color:#00FF99; +} +#u1873 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1873_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1874_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:569px; + height:2px; +} +#u1874 { + border-width:0px; + position:absolute; + left:0px; + top:48px; + width:568px; + height:1px; + display:flex; +} +#u1874 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1874_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1875_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:64px; + height:18px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:16px; +} +#u1875 { + border-width:0px; + position:absolute; + left:20px; + top:17px; + width:64px; + height:18px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:16px; +} +#u1875 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1875_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1876_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:569px; + height:2px; +} +#u1876 { + border-width:0px; + position:absolute; + left:0px; + top:530px; + width:568px; + height:1px; + display:flex; +} +#u1876 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1876_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1877_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u1877 { + border-width:0px; + position:absolute; + left:450px; + top:549px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#FFFFFF; + line-height:20px; +} +#u1877 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1877_img.mouseOver { +} +#u1877.mouseOver { +} +#u1877_img.mouseDown { +} +#u1877.mouseDown { +} +#u1877_img.disabled { +} +#u1877.disabled { + opacity:0.7; +} +#u1877_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1878_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u1878 { + border-width:0px; + position:absolute; + left:360px; + top:549px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#999999; +} +#u1878 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1878_img.mouseOver { +} +#u1878.mouseOver { +} +#u1878_img.mouseDown { +} +#u1878.mouseDown { +} +#u1878_img.disabled { +} +#u1878.disabled { + opacity:0.7; +} +#u1878_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1879_input { + position:absolute; + left:0px; + top:0px; + width:500px; + height:65px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1879_input.mouseOver { + position:absolute; + left:0px; + top:0px; + width:500px; + height:65px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1879_input.focused { + position:absolute; + left:0px; + top:0px; + width:500px; + height:65px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1879_input.disabled { + position:absolute; + left:0px; + top:0px; + width:500px; + height:65px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1879_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:500px; + height:65px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u1879 { + border-width:0px; + position:absolute; + left:30px; + top:440px; + width:500px; + height:65px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u1879 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 10px; + box-sizing:border-box; + width:100%; +} +#u1879_div.mouseOver { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:500px; + height:65px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(64, 158, 255, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u1879.mouseOver { +} +#u1879_div.focused { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:500px; + height:65px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(64, 158, 255, 1); + border-radius:4px; + -moz-box-shadow:0px 0px 5px rgba(64, 158, 255, 0.247058823529412); + -webkit-box-shadow:0px 0px 5px rgba(64, 158, 255, 0.247058823529412); + box-shadow:0px 0px 5px rgba(64, 158, 255, 0.247058823529412); + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u1879.focused { +} +#u1879_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:500px; + height:65px; + background:inherit; + background-color:rgba(242, 242, 242, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u1879.disabled { +} +#u1880_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:373px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1880 { + border-width:0px; + position:absolute; + left:39px; + top:450px; + width:373px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1880 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1880_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1881 { + border-width:0px; + position:absolute; + left:20px; + top:55px; + width:528px; + height:370px; +} +#u1881_state0 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:528px; + height:370px; + overflow:auto; + -webkit-overflow-scrolling:touch; + -ms-overflow-x:hidden; + overflow-x:hidden; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1881_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1882 label { + left:0px; + width:100%; +} +#u1882_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1882 { + border-width:0px; + position:absolute; + left:47px; + top:575px; + width:300px; + height:15px; + display:flex; +} +#u1882 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1882_img.selected { +} +#u1882.selected { +} +#u1882_img.disabled { +} +#u1882.disabled { +} +#u1882_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1882_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1883 label { + left:0px; + width:100%; +} +#u1883_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1883 { + border-width:0px; + position:absolute; + left:47px; + top:615px; + width:300px; + height:15px; + display:flex; +} +#u1883 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1883_img.selected { +} +#u1883.selected { +} +#u1883_img.disabled { +} +#u1883.disabled { +} +#u1883_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1883_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1884 label { + left:0px; + width:100%; +} +#u1884_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1884 { + border-width:0px; + position:absolute; + left:45px; + top:295px; + width:300px; + height:15px; + display:flex; +} +#u1884 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1884_img.selected { +} +#u1884.selected { +} +#u1884_img.disabled { +} +#u1884.disabled { +} +#u1884_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1884_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1885_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:17px; + height:10px; +} +#u1885 { + border-width:0px; + position:absolute; + left:25px; + top:579px; + width:17px; + height:10px; + display:flex; + -webkit-transform:rotate(90deg); + -moz-transform:rotate(90deg); + -ms-transform:rotate(90deg); + transform:rotate(90deg); +} +#u1885 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1885_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1886_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:17px; + height:10px; +} +#u1886 { + border-width:0px; + position:absolute; + left:25px; + top:619px; + width:17px; + height:10px; + display:flex; + -webkit-transform:rotate(90deg); + -moz-transform:rotate(90deg); + -ms-transform:rotate(90deg); + transform:rotate(90deg); +} +#u1886 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1886_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1887_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:17px; + height:10px; +} +#u1887 { + border-width:0px; + position:absolute; + left:25px; + top:299px; + width:17px; + height:10px; + display:flex; + -webkit-transform:rotate(180deg); + -moz-transform:rotate(180deg); + -ms-transform:rotate(180deg); + transform:rotate(180deg); +} +#u1887 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1887_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1888 label { + left:0px; + width:100%; +} +#u1888_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1888 { + border-width:0px; + position:absolute; + left:65px; + top:135px; + width:300px; + height:15px; + display:flex; +} +#u1888 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1888_img.selected { +} +#u1888.selected { +} +#u1888_img.disabled { +} +#u1888.disabled { +} +#u1888_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1888_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1889 label { + left:0px; + width:100%; +} +#u1889_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1889 { + border-width:0px; + position:absolute; + left:65px; + top:255px; + width:300px; + height:15px; + display:flex; +} +#u1889 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1889_img.selected { +} +#u1889.selected { +} +#u1889_img.disabled { +} +#u1889.disabled { +} +#u1889_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1889_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1890 label { + left:0px; + width:100%; +} +#u1890_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1890 { + border-width:0px; + position:absolute; + left:65px; + top:175px; + width:300px; + height:15px; + display:flex; +} +#u1890 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1890_img.selected { +} +#u1890.selected { +} +#u1890_img.disabled { +} +#u1890.disabled { +} +#u1890_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1890_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1891 label { + left:0px; + width:100%; +} +#u1891_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1891 { + border-width:0px; + position:absolute; + left:65px; + top:55px; + width:300px; + height:15px; + display:flex; +} +#u1891 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1891_img.selected { +} +#u1891.selected { +} +#u1891_img.disabled { +} +#u1891.disabled { +} +#u1891_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1891_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1892 label { + left:0px; + width:100%; +} +#u1892_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1892 { + border-width:0px; + position:absolute; + left:50px; + top:15px; + width:300px; + height:15px; + display:flex; +} +#u1892 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1892_img.selected { +} +#u1892.selected { +} +#u1892_img.disabled { +} +#u1892.disabled { +} +#u1892_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1892_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1893_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:17px; + height:10px; +} +#u1893 { + border-width:0px; + position:absolute; + left:25px; + top:19px; + width:17px; + height:10px; + display:flex; + -webkit-transform:rotate(180deg); + -moz-transform:rotate(180deg); + -ms-transform:rotate(180deg); + transform:rotate(180deg); +} +#u1893 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1893_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1894 label { + left:0px; + width:100%; +} +#u1894_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1894 { + border-width:0px; + position:absolute; + left:65px; + top:95px; + width:300px; + height:15px; + display:flex; +} +#u1894 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1894_img.selected { +} +#u1894.selected { +} +#u1894_img.disabled { +} +#u1894.disabled { +} +#u1894_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1894_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1895 label { + left:0px; + width:100%; +} +#u1895_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1895 { + border-width:0px; + position:absolute; + left:65px; + top:215px; + width:300px; + height:15px; + display:flex; +} +#u1895 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1895_img.selected { +} +#u1895.selected { +} +#u1895_img.disabled { +} +#u1895.disabled { +} +#u1895_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1895_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1896 label { + left:0px; + width:100%; +} +#u1896_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1896 { + border-width:0px; + position:absolute; + left:65px; + top:415px; + width:300px; + height:15px; + display:flex; +} +#u1896 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1896_img.selected { +} +#u1896.selected { +} +#u1896_img.disabled { +} +#u1896.disabled { +} +#u1896_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1896_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1897 label { + left:0px; + width:100%; +} +#u1897_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1897 { + border-width:0px; + position:absolute; + left:65px; + top:535px; + width:300px; + height:15px; + display:flex; +} +#u1897 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1897_img.selected { +} +#u1897.selected { +} +#u1897_img.disabled { +} +#u1897.disabled { +} +#u1897_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1897_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1898 label { + left:0px; + width:100%; +} +#u1898_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1898 { + border-width:0px; + position:absolute; + left:65px; + top:455px; + width:300px; + height:15px; + display:flex; +} +#u1898 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1898_img.selected { +} +#u1898.selected { +} +#u1898_img.disabled { +} +#u1898.disabled { +} +#u1898_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1898_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1899 label { + left:0px; + width:100%; +} +#u1899_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1899 { + border-width:0px; + position:absolute; + left:65px; + top:335px; + width:300px; + height:15px; + display:flex; +} +#u1899 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1899_img.selected { +} +#u1899.selected { +} +#u1899_img.disabled { +} +#u1899.disabled { +} +#u1899_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1899_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1900 label { + left:0px; + width:100%; +} +#u1900_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1900 { + border-width:0px; + position:absolute; + left:65px; + top:375px; + width:300px; + height:15px; + display:flex; +} +#u1900 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1900_img.selected { +} +#u1900.selected { +} +#u1900_img.disabled { +} +#u1900.disabled { +} +#u1900_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1900_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1901 label { + left:0px; + width:100%; +} +#u1901_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1901 { + border-width:0px; + position:absolute; + left:65px; + top:495px; + width:300px; + height:15px; + display:flex; +} +#u1901 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1901_img.selected { +} +#u1901.selected { +} +#u1901_img.disabled { +} +#u1901.disabled { +} +#u1901_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1901_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1902 { + border-width:0px; + position:absolute; + left:1569px; + top:20px; + width:89px; + height:35px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} +#u1903 { + position:absolute; + left:50px; + top:130px; +} +#u1903_state0 { + position:relative; + left:0px; + top:0px; + width:1646px; + height:243px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1903_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1904_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:2px; + height:15px; + background:inherit; + background-color:rgba(128, 128, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1904 { + border-width:0px; + position:absolute; + left:1px; + top:5px; + width:2px; + height:15px; + display:flex; +} +#u1904 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1904_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1905_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:56px; + height:16px; + 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:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC'; + font-weight:500; + font-style:normal; +} +#u1905 { + border-width:0px; + position:absolute; + left:13px; + top:5px; + width:56px; + height:16px; + display:flex; + font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC'; + font-weight:500; + font-style:normal; +} +#u1905 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1905_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1906_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1647px; + height:2px; +} +#u1906 { + border-width:0px; + position:absolute; + left:0px; + top:34px; + width:1646px; + height:1px; + display:flex; + -webkit-transform:rotate(0.0337180630969462deg); + -moz-transform:rotate(0.0337180630969462deg); + -ms-transform:rotate(0.0337180630969462deg); + transform:rotate(0.0337180630969462deg); +} +#u1906 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1906_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1907_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:39px; + height:15px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u1907 { + border-width:0px; + position:absolute; + left:15px; + top:59px; + width:39px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u1907 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1907_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1908_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:6px; + height:17px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:13px; + color:#E26866; +} +#u1908 { + border-width:0px; + position:absolute; + left:0px; + top:59px; + width:6px; + height:17px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:13px; + color:#E26866; +} +#u1908 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1908_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1909_input { + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1909_input.disabled { + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1909_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1909 { + border-width:0px; + position:absolute; + left:85px; + top:52px; + width:305px; + height:32px; + display:flex; +} +#u1909 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1909_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1909.disabled { +} +#u1910_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:39px; + height:15px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u1910 { + border-width:0px; + position:absolute; + left:15px; + top:177px; + width:39px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u1910 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1910_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1911_input { + position:absolute; + left:0px; + top:0px; + width:1543px; + height:79px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1911_input.disabled { + position:absolute; + left:0px; + top:0px; + width:1543px; + height:79px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1911_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1543px; + height:79px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1911 { + border-width:0px; + position:absolute; + left:85px; + top:164px; + width:1543px; + height:79px; + display:flex; +} +#u1911 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1911_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1543px; + height:79px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1911.disabled { +} +#u1912 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1913_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:60px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1913 { + border-width:0px; + position:absolute; + left:15px; + top:117px; + width:60px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1913 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1913_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1914_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:10px; + height:16px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:20px; + color:#E26866; +} +#u1914 { + border-width:0px; + position:absolute; + left:0px; + top:114px; + width:10px; + height:16px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:20px; + color:#E26866; +} +#u1914 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1914_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1915_input { + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + letter-spacing:normal; + color:#7F7F7F; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1915_input.disabled { + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + letter-spacing:normal; + color:#7F7F7F; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1915_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:12px; + color:#7F7F7F; +} +#u1915 { + border-width:0px; + position:absolute; + left:85px; + top:109px; + width:305px; + height:32px; + display:flex; + font-size:12px; + color:#7F7F7F; +} +#u1915 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1915_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:12px; + color:#7F7F7F; +} +#u1915.disabled { +} +.u1915_input_option { + font-size:12px; + color:#7F7F7F; +} +#u1903_state1 { + position:relative; + left:0px; + top:0px; + width:1646px; + height:35px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + visibility:hidden; +} +#u1903_state1_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1916_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:2px; + height:15px; + background:inherit; + background-color:rgba(128, 128, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1916 { + border-width:0px; + position:absolute; + left:1px; + top:5px; + width:2px; + height:15px; + display:flex; +} +#u1916 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1916_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1917_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:56px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1917 { + border-width:0px; + position:absolute; + left:13px; + top:5px; + width:56px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1917 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1917_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1918_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1647px; + height:2px; +} +#u1918 { + border-width:0px; + position:absolute; + left:0px; + top:34px; + width:1646px; + height:1px; + display:flex; + -webkit-transform:rotate(0.0337180630969462deg); + -moz-transform:rotate(0.0337180630969462deg); + -ms-transform:rotate(0.0337180630969462deg); + transform:rotate(0.0337180630969462deg); +} +#u1918 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1918_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1919 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1920_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:56px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#6576FF; +} +#u1920 { + border-width:0px; + position:absolute; + left:1560px; + top:1px; + width:56px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#6576FF; +} +#u1920 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1920_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1921_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:11px; + height:6px; +} +#u1921 { + border-width:0px; + position:absolute; + left:1626px; + top:10px; + width:11px; + height:6px; + display:flex; + -webkit-transform:rotate(180deg); + -moz-transform:rotate(180deg); + -ms-transform:rotate(180deg); + transform:rotate(180deg); +} +#u1921 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1921_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1922 { + border-width:0px; + position:absolute; + left:50px; + top:400px; + width:1646px; + height:440px; +} +#u1922_state0 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1646px; + height:440px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1922_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1923_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:2px; + height:15px; + background:inherit; + background-color:rgba(128, 128, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1923 { + border-width:0px; + position:absolute; + left:1px; + top:5px; + width:2px; + height:15px; + display:flex; +} +#u1923 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1923_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1924_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:56px; + height:16px; + 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:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC'; + font-weight:500; + font-style:normal; +} +#u1924 { + border-width:0px; + position:absolute; + left:13px; + top:5px; + width:56px; + height:16px; + display:flex; + font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC'; + font-weight:500; + font-style:normal; +} +#u1924 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1924_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1925_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1647px; + height:2px; +} +#u1925 { + border-width:0px; + position:absolute; + left:0px; + top:34px; + width:1646px; + height:1px; + display:flex; + -webkit-transform:rotate(0.0337180630969462deg); + -moz-transform:rotate(0.0337180630969462deg); + -ms-transform:rotate(0.0337180630969462deg); + transform:rotate(0.0337180630969462deg); +} +#u1925 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1925_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1926_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:8px; +} +#u1926 { + border-width:0px; + position:absolute; + left:21px; + top:5px; + width:1px; + height:8px; + display:flex; +} +#u1926 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1926_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1927 { + border-width:0px; + position:absolute; + left:425px; + top:100px; + width:8px; + height:20px; +} +#u1927_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1928 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:8px; + height:20px; +} +#u1929_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:6px; + height:20px; + 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; +} +#u1929 { + border-width:0px; + position:absolute; + left:2px; + top:0px; + width:6px; + height:20px; + display:flex; +} +#u1929 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u1929_text { + border-width:0px; + white-space:nowrap; + text-transform:none; + visibility:hidden; +} +#u1928_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + visibility:hidden; +} +#u1930 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:54px; + height:20px; +} +#u1931_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:52px; + height:20px; + 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; +} +#u1931 { + border-width:0px; + position:absolute; + left:2px; + top:0px; + width:52px; + height:20px; + display:flex; +} +#u1931 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u1931_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1932 { + border-width:0px; + position:absolute; + left:20px; + top:40px; + width:54px; + height:20px; +} +#u1933_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:52px; + height:20px; + 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; +} +#u1933 { + border-width:0px; + position:absolute; + left:2px; + top:0px; + width:52px; + height:20px; + display:flex; +} +#u1933 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u1933_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1934 { + border-width:0px; + position:absolute; + left:20px; + top:60px; + width:54px; + height:20px; +} +#u1935_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:52px; + height:20px; + 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; +} +#u1935 { + border-width:0px; + position:absolute; + left:2px; + top:0px; + width:52px; + height:20px; + display:flex; +} +#u1935 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u1935_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1936 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1937_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:60px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1937 { + border-width:0px; + position:absolute; + left:20px; + top:69px; + width:60px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1937 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1937_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1938_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:10px; + height:16px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:20px; + color:#E26866; +} +#u1938 { + border-width:0px; + position:absolute; + left:5px; + top:66px; + width:10px; + height:16px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:20px; + color:#E26866; +} +#u1938 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1938_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1939_input { + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + letter-spacing:normal; + color:#7F7F7F; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1939_input.disabled { + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + letter-spacing:normal; + color:#7F7F7F; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1939_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:12px; + color:#7F7F7F; +} +#u1939 { + border-width:0px; + position:absolute; + left:90px; + top:61px; + width:305px; + height:32px; + display:flex; + font-size:12px; + color:#7F7F7F; +} +#u1939 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1939_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:12px; + color:#7F7F7F; +} +#u1939.disabled { +} +.u1939_input_option { + font-size:12px; + color:#7F7F7F; +} +#u1940 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1941_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:60px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1941 { + border-width:0px; + position:absolute; + left:15px; + top:-153px; + width:60px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1941 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1941_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1942_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:10px; + height:16px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:20px; + color:#E26866; +} +#u1942 { + border-width:0px; + position:absolute; + left:0px; + top:-156px; + width:10px; + height:16px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:20px; + color:#E26866; +} +#u1942 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1942_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1943_input { + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + letter-spacing:normal; + color:#7F7F7F; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1943_input.disabled { + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + letter-spacing:normal; + color:#7F7F7F; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1943_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:12px; + color:#7F7F7F; +} +#u1943 { + border-width:0px; + position:absolute; + left:85px; + top:-161px; + width:305px; + height:32px; + display:flex; + font-size:12px; + color:#7F7F7F; +} +#u1943 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1943_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:12px; + color:#7F7F7F; +} +#u1943.disabled { +} +.u1943_input_option { + font-size:12px; + color:#7F7F7F; +} +#u1944_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:48px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1944 { + border-width:0px; + position:absolute; + left:20px; + top:118px; + width:48px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1944 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1944_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1945_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:10px; + height:16px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:20px; + color:#E26866; +} +#u1945 { + border-width:0px; + position:absolute; + left:5px; + top:115px; + width:10px; + height:16px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:20px; + color:#E26866; +} +#u1945 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1945_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1946_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:48px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1946 { + border-width:0px; + position:absolute; + left:16px; + top:233px; + width:48px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1946 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1946_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1947 { + border-width:0px; + position:absolute; + left:90px; + top:230px; + width:740px; + height:87px; +} +#u1948_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:220px; + height:45px; +} +#u1948 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:220px; + height:45px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1948 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1948_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1949_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:270px; + height:45px; +} +#u1949 { + border-width:0px; + position:absolute; + left:220px; + top:0px; + width:270px; + height:45px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1949 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1949_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1950_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:250px; + height:45px; +} +#u1950 { + border-width:0px; + position:absolute; + left:490px; + top:0px; + width:250px; + height:45px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1950 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1950_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1951_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:220px; + height:42px; +} +#u1951 { + border-width:0px; + position:absolute; + left:0px; + top:45px; + width:220px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1951 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1951_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1952_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:270px; + height:42px; +} +#u1952 { + border-width:0px; + position:absolute; + left:220px; + top:45px; + width:270px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#000000; + text-align:left; +} +#u1952 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1952_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1953_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:250px; + height:42px; +} +#u1953 { + border-width:0px; + position:absolute; + left:490px; + top:45px; + width:250px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1953 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1953_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1954 { + border-width:0px; + position:absolute; + left:90px; + top:115px; + width:740px; + height:87px; +} +#u1955_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:220px; + height:45px; +} +#u1955 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:220px; + height:45px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1955 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1955_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1956_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:270px; + height:45px; +} +#u1956 { + border-width:0px; + position:absolute; + left:220px; + top:0px; + width:270px; + height:45px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1956 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1956_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1957_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:250px; + height:45px; +} +#u1957 { + border-width:0px; + position:absolute; + left:490px; + top:0px; + width:250px; + height:45px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1957 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1957_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1958_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:220px; + height:42px; +} +#u1958 { + border-width:0px; + position:absolute; + left:0px; + top:45px; + width:220px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1958 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1958_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1959_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:270px; + height:42px; +} +#u1959 { + border-width:0px; + position:absolute; + left:220px; + top:45px; + width:270px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#000000; + text-align:left; +} +#u1959 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1959_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1960_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:250px; + height:42px; +} +#u1960 { + border-width:0px; + position:absolute; + left:490px; + top:45px; + width:250px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1960 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1960_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1961_input { + position:absolute; + left:0px; + top:0px; + width:197px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1961_input.disabled { + position:absolute; + left:0px; + top:0px; + width:197px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1961_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:197px; + height:30px; + 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:2px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1961 { + border-width:0px; + position:absolute; + left:102px; + top:167px; + width:197px; + height:30px; + display:flex; +} +#u1961 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1961_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:197px; + height:30px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(242, 242, 242, 1); + border-radius:2px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1961.disabled { +} +#u1962_input { + position:absolute; + left:0px; + top:0px; + width:197px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1962_input.disabled { + position:absolute; + left:0px; + top:0px; + width:197px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1962_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:197px; + height:30px; + 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:2px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1962 { + border-width:0px; + position:absolute; + left:590px; + top:167px; + width:197px; + height:30px; + display:flex; +} +#u1962 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1962_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:197px; + height:30px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(242, 242, 242, 1); + border-radius:2px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1962.disabled { +} +#u1963_input { + position:absolute; + left:0px; + top:0px; + width:197px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1963_input.disabled { + position:absolute; + left:0px; + top:0px; + width:197px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1963_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:197px; + height:30px; + 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:2px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1963 { + border-width:0px; + position:absolute; + left:319px; + top:167px; + width:197px; + height:30px; + display:flex; +} +#u1963 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1963_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:197px; + height:30px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(242, 242, 242, 1); + border-radius:2px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1963.disabled { +} +#u1964_input { + position:absolute; + left:0px; + top:0px; + width:197px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1964_input.disabled { + position:absolute; + left:0px; + top:0px; + width:197px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1964_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:197px; + height:30px; + 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:2px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1964 { + border-width:0px; + position:absolute; + left:102px; + top:279px; + width:197px; + height:30px; + display:flex; +} +#u1964 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1964_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:197px; + height:30px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(242, 242, 242, 1); + border-radius:2px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1964.disabled { +} +#u1965_input { + position:absolute; + left:0px; + top:0px; + width:197px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1965_input.disabled { + position:absolute; + left:0px; + top:0px; + width:197px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1965_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:197px; + height:30px; + 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:2px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1965 { + border-width:0px; + position:absolute; + left:319px; + top:279px; + width:197px; + height:30px; + display:flex; +} +#u1965 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1965_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:197px; + height:30px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(242, 242, 242, 1); + border-radius:2px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1965.disabled { +} +#u1966_input { + position:absolute; + left:0px; + top:0px; + width:197px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1966_input.disabled { + position:absolute; + left:0px; + top:0px; + width:197px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1966_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:197px; + height:30px; + 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:2px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1966 { + border-width:0px; + position:absolute; + left:590px; + top:279px; + width:197px; + height:30px; + display:flex; +} +#u1966 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1966_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:197px; + height:30px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(242, 242, 242, 1); + border-radius:2px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1966.disabled { +} +#u1922_state1 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1646px; + height:440px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + visibility:hidden; +} +#u1922_state1_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1967_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:2px; + height:15px; + background:inherit; + background-color:rgba(128, 128, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1967 { + border-width:0px; + position:absolute; + left:1px; + top:5px; + width:2px; + height:15px; + display:flex; +} +#u1967 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1967_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1968_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:56px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1968 { + border-width:0px; + position:absolute; + left:13px; + top:5px; + width:56px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1968 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1968_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1969_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1647px; + height:2px; +} +#u1969 { + border-width:0px; + position:absolute; + left:0px; + top:34px; + width:1646px; + height:1px; + display:flex; + -webkit-transform:rotate(0.0337180630969462deg); + -moz-transform:rotate(0.0337180630969462deg); + -ms-transform:rotate(0.0337180630969462deg); + transform:rotate(0.0337180630969462deg); +} +#u1969 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1969_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1970 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1971_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:56px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#6576FF; +} +#u1971 { + border-width:0px; + position:absolute; + left:1560px; + top:1px; + width:56px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#6576FF; +} +#u1971 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1971_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1972_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:11px; + height:6px; +} +#u1972 { + border-width:0px; + position:absolute; + left:1626px; + top:10px; + width:11px; + height:6px; + display:flex; + -webkit-transform:rotate(180deg); + -moz-transform:rotate(180deg); + -ms-transform:rotate(180deg); + transform:rotate(180deg); +} +#u1972 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1972_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1973_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:87px; + height:35px; +} +#u1973 { + border-width:0px; + position:absolute; + left:1571px; + top:16px; + width:87px; + height:35px; + display:flex; + font-size:26px; +} +#u1973 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1973_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} diff --git "a/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\346\226\260\345\273\272\350\256\255\347\273\203/data.js" "b/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\346\226\260\345\273\272\350\256\255\347\273\203/data.js" new file mode 100644 index 0000000000000000000000000000000000000000..72da19f35a77f06bde7100985808e1e86bbfc673 --- /dev/null +++ "b/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\346\226\260\345\273\272\350\256\255\347\273\203/data.js" @@ -0,0 +1,7 @@ +$axure.loadCurrentPage( +(function() { + var _ = function() { var r={},a=arguments; for(var i=0; i将当前任务名称关键字带过去搜索
",O="4",P="170d30451ebd4a3ba2e3721143b51c69",Q="(图片 )",R="1.点击保存,提交训练 要做必填校验
",S="5",T="9c28d1bcda414b83b835f39eb080af64",U="1.提交训练要做必填校验
",V="style",W="baseStyle",X="627587b6038d43cca051c114ac41ad32",Y="pageAlignment",Z="center",ba="fill",bb="fillType",bc="solid",bd="color",be=0xFFFFFFFF,bf="image",bg="imageAlignment",bh="near",bi="imageRepeat",bj="auto",bk="favicon",bl="sketchFactor",bm="0",bn="colorStyle",bo="appliedColor",bp="fontName",bq="Applied Font",br="borderWidth",bs="borderVisibility",bt="borderFill",bu=0xFF797979,bv="cornerRadius",bw="cornerVisibility",bx="outerShadow",by="on",bz=false,bA="offsetX",bB=5,bC="offsetY",bD="blurRadius",bE="r",bF=0,bG="g",bH="b",bI="a",bJ=0.349019607843137,bK="adaptiveStyles",bL="interactionMap",bM="diagram",bN="objects",bO="id",bP="08a2c0a1240140c48cb1633aa051425f",bQ="friendlyType",bR="页面框架",bS="referenceDiagramObject",bT="styleType",bU="visible",bV=true,bW=1920,bX=1300,bY="imageOverrides",bZ="masterId",ca="4b990bb6cff949a1b5064d9025ac7466",cb="b738f4e4bb5641cd96c2ed83cff83be2",cc="新建功能",cd="动态面板",ce="dynamicPanel",cf=1295,cg=802,ch="location",ci="x",cj=1720,ck="y",cl="fixedHorizontal",cm="fixedMarginHorizontal",cn="fixedVertical",co="middle",cp="fixedMarginVertical",cq="fixedKeepInFront",cr="scrollbars",cs="none",ct="fitToContent",cu="propagate",cv="diagrams",cw="993afc0783e74a9ea0486ff91e43c696",cx="集群选择",cy="Axure:PanelDiagram",cz="8be5c279abde49308618c7a1cf21f7f5",cA="矩形",cB="parentDynamicPanel",cC="panelIndex",cD="vectorShape",cE=568,cF="9b4161a6aa0a435d9aea1729826fce91",cG="8",cH=0xFFF2F2F2,cI="generateCompound",cJ="b49442614a04410f950b39bc945e94d5",cK="形状",cL="foreGroundFill",cM=0xFF00FF99,cN="opacity",cO=1,cP="9df11a1112d143398203dd9500c15309",cQ=0xFFFFFF,cR=0xFF707070,cS=10,cT=0.313725490196078,cU="innerShadow",cV=15,cW=539,cX=18,cY="onClick",cZ="description",da="Click时 ",db="cases",dc="conditionString",dd="isNewIfGroup",de="caseColorHex",df="9D33FA",dg="actions",dh="action",di="fadeWidget",dj="隐藏 新建功能逐渐 300毫秒",dk="displayName",dl="显示/隐藏",dm="actionInfoDescriptions",dn="隐藏 新建功能",dp="逐渐 300毫秒",dq="objectsToFades",dr="objectPath",ds="fadeInfo",dt="fadeType",du="hide",dv="options",dw="easing",dx="fade",dy="animation",dz="duration",dA=300,dB="easingHide",dC="animationHide",dD="durationHide",dE="showType",dF="bringToFront",dG="tabbable",dH="images",dI="normal~",dJ="images/页面框架/u463.svg",dK="2bd0fa09f8f94d93981319cd46f72d80",dL="线段",dM="horizontalLine",dN=48,dO="images/上传算子/u819.svg",dP="589ed251fdd545f4ba1e006aefec9446",dQ="'PingFangSC-Regular', 'PingFang SC'",dR=74,dS=16,dT="4b98dba3ba994a15a9e130e35aa2418a",dU=19,dV=17,dW="fontSize",dX="16px",dY="verticalAlignment",dZ="4a27ed3ecf6a42239ef1eab2b99a69ad",ea=737,eb="b4832ede99a5481ba5cd7d79a9536148",ec=80,ed=32,ee=0xF2F2F2,ef=0xFF6576FF,eg="paddingTop",eh="stateStyles",ei="mouseOver",ej=0xFF8080FF,ek="mouseDown",el=0xFD596BFE,em="disabled",en="0.7",eo="lineSpacing",ep="20px",eq="paddingRight",er="paddingBottom",es="paddingLeft",et=443,eu=756,ev="12px",ew="images/页面框架/u467.svg",ex="mouseOver~",ey="images/页面框架/u467_mouseOver.svg",ez="mouseDown~",eA="images/页面框架/u467_mouseDown.svg",eB="disabled~",eC="a861e13b0360469d8e481e283a712b54",eD=0xFF999999,eE=0xFF409EFF,eF=0xFFF0F7FF,eG=0xFE7ABBFF,eH=0xFFE4E4E4,eI=353,eJ="images/页面框架/u468.svg",eK="images/页面框架/u468_mouseOver.svg",eL="images/页面框架/u468_mouseDown.svg",eM="fe7a836eae634c30a10626d8834488c0",eN=0xFF02A7F0,eO="636822bc3085484f9c7fce0324772028",eP=20,eQ=0xFF027DB4,eR=56,eS="images/新建训练/u1535.svg",eT="83f2f52d41fb49d59aa47b3346d6bb74",eU=469,eV="2285372321d148ec80932747449c36c9",eW=85,eX="5c76b43a20ec4b21aeadb392380708e6",eY=61,eZ=14,fa=126,fb="01d4d1251d73463484cd66d258546afe",fc=157,fd=140,fe="80a5432a5211488fb5a866aa8da65bb3",ff=166,fg="d71b99c822dd4f19ba5df0152fbf1187",fh=383,fi=105,fj="4988d43d80b44008a4a415096f1632af",fk="6af1db263b83424fa5c49844b8745516",fl=297,fm="891f3aee5d224215a91bc66dfaf45681",fn="单选按钮",fo="radioButton",fp="selected",fq=100,fr="b61231a94db9418aac4b368e51f035a6",fs="2829faada5f8449da03773b96e566862",ft="setPanelState",fu="设置 (动态面板) 到 到 [[this.text]] ",fv="设置面板状态",fw="(动态面板) 到 [[this.text]]",fx="设置 (动态面板) 到 到 [[this.text]] ",fy="panelsToStates",fz="panelPath",fA="d18fc6b684fc4107af79a837ef85304d",fB="stateInfo",fC="setStateType",fD="value",fE="stateNumber",fF=1,fG="stateValue",fH="exprType",fI="stringLiteral",fJ="[[this.text]]",fK="stos",fL="computedType",fM="string",fN="sto",fO="propCall",fP="thisSTO",fQ="desiredType",fR="widget",fS="var",fT="this",fU="prop",fV="text",fW="loop",fX="showWhenSet",fY="compress",fZ="images/新建训练/u1542.svg",ga="selected~",gb="images/新建训练/u1542_selected.svg",gc="images/新建训练/u1542_disabled.svg",gd="extraLeft",ge="e8de1b55b6a14095b973a40d115a2167",gf=303,gg="images/新建训练/u1543.svg",gh="images/新建训练/u1543_selected.svg",gi="images/新建训练/u1543_disabled.svg",gj=396,gk=293,gl=342,gm="8c80a5d0d7ab47888e16031e20d8e03c",gn="当前集群",go="8e00533f2826499cb774bb9ed8ab68d5",gp=320,gq="52e3f0b9d06d4e38a9f177b8bfc7950e",gr=-84,gs="b78b1e05bb59448da9eb85b169b28b40",gt="文本域",gu="textArea",gv=170,gw="hint",gx="3c35f7f584574732b5edbd0cff195f77",gy="42ee17691d13435b8256d8d0a814778f",gz="HideHintOnFocused",gA="placeholderText",gB="726c2167abd14ee19c016b9e9b0044c7",gC=228,gD="597807518b0e4170a5bd17dd6775648d",gE="14px",gF=273,gG="346b674f670142a99a58c5d1a397c162",gH=-33,gI="4403eac0369842a098915b9521b5f89d",gJ="其他集群",gK="407bc63ae88e400e92241c43d64729ca",gL=60,gM="519953df0d8a40539ac8ffab11aaf432",gN=12,gO="ff738ad8b8e04f939715a0f3d6c6f41c",gP="下拉列表",gQ="comboBox",gR=40,gS="c568339db4984d358bd04c4ed6515825",gT=0x438080FF,gU="images/新建训练/u1553.svg",gV="images/新建训练/u1553_disabled.svg",gW="615360fa1495444f87a45e323daf8c59",gX=142,gY="be9e8697c1f14d8da84665014a4badab",gZ="8561d7181ce8468fb16a4b1378359c7e",ha=285,hb="8d3e8355816e4add90e08bb953c8967b",hc=330,hd="9c27ee93650445558448535d77e9a5f9",he="a887dd94e4ab46c9bd518a40ccb94ba4",hf=722,hg=727,hh="17fc2e3712e147649586c168ce3f891a",hi=1266,hj="46341a1ed234451fbdad6c0bd923e1bf",hk="c4ce1aa208bc48ef8175e482b2bf8ca8",hl=746,hm="e7d1f5425375413dbbd288e3d1a3728a",hn=657,ho="96d653b4e00348fb91dd1448f558bb5b",hp=1170,hq=676,hr="ab01d9be218444d4abc09699c298c8f7",hs=1080,ht="9cf01e31c9d8491eb3d4220ff932467c",hu=783,hv="22db88db7ade43d78b45fbb2a3ea5f9a",hw=426,hx=812,hy="9b89b81c76fd453a85f5c2315e737faf",hz=138,hA="3347aca7ef3b4a55ade6a18b5da36f8b",hB=867,hC="507b57d2c1dc46fd83d90a0f24aa87de",hD=178,hE="c09c9a9a95e44545ba975f21bae0a158",hF="71fd0268593344d8b9741bb781a96745",hG=309,hH="f4a9b62b1e0a47acadee85eaf120438c",hI=871,hJ="4e2f20c01bdb45ce89367e5582a43942",hK=2,hL="images/新建训练/u1573.svg",hM="images/新建训练/u1573_selected.svg",hN="images/新建训练/u1573_disabled.svg",hO=247,hP=354,hQ="f58de19cd98f4bc3b4ef821343037dad",hR="c9c9148878ee4d6eab752dc228a7609f",hS="62f2a495258045ba877ba221b916f7ca",hT="d29099a20cd44978ab263ed5aecc7b32",hU="4b9888b1601445279b57c06af9f63bbe",hV="1c77df421faf4352a62d53dc83bc8e5f",hW="4de4e4b708a04369a72420dccaed29cd",hX="764ee9a9180d4749b8cb39b816337f0b",hY="dcfe8540049d4347b9a6ad40bed30691",hZ="fontWeight",ia="400",ib=0xFFFF3399,ic=21,id=637,ie=23,ig="e9bb90fdbe074e2795147507efd0336f",ih="7da31d6c032e4ad0a7bce964c5743724",ii=681,ij=280,ik="18px",il="f08bf3155ec6472a83d3f794cfaf59f3",im="9574b5295e144f8c942f21613eea3ddd",io="连接",ip="connector",iq=0xFF656565,ir="0c53a82434514dffb996c9c1d3318e61",is=67,it=306,iu="0~",iv="images/新建训练/u1583_seg0.svg",iw="1~",ix="images/新建训练/u1583_seg1.svg",iy="2~",iz="images/新建训练/u1583_seg2.svg",iA="8d4ee2f894244ca38455852fb18ee0b0",iB="热区",iC="imageMapRegion",iD=961,iE=94,iF="linkWindow",iG="打开 在 当前窗口",iH="打开链接",iI="打开 在 当前窗口",iJ="target",iK="targetType",iL="includeVariables",iM="linkType",iN="current",iO="f7d6a471d06e47c8b4add05d92218d7d",iP=808.321167883211,iQ=383.065693430656,iR="images/新建训练/u1585_seg0.svg",iS="images/新建训练/u1585_seg1.svg",iT="images/新建训练/u1585_seg2.svg",iU="3~",iV="images/新建训练/u1585_seg3.svg",iW="4~",iX="images/新建训练/u1585_seg4.svg",iY="5~",iZ="images/新建训练/u1585_seg5.svg",ja=0x797979,jb=0.149019607843137,jc="b5f37a7854164e84b454334de7096e71",jd="X",je=600,jf=1794,jg="5c65381f8b6e4aafaaf3a6a16b6e907b",jh="fd03c742ad124c529bbfe846022465fb",ji="17845abb76064134bd7f82d80158ca82",jj="隐藏 X",jk="2cb16a65190144bf993e384acfc150c9",jl="fa9304c7719c41b9b2c4625d2275006b",jm=64,jn="95208e5ac4d84cb9bb41195e17e6d4a5",jo=530,jp="0fd1772b1ace4f8a973750150efac252",jq=450,jr=549,js="a8c0b96128ec4c35b77be6e47e696487",jt=360,ju="7f6a702211664ec499463adbd8c997c9",jv="文本框",jw="textBox",jx="'微软雅黑'",jy=500,jz=65,jA=0xFFCCCCCC,jB="focused",jC=64,jD=158,jE=255,jF=0.247058823529412,jG="7ab43cffe242402abb64197ed53041a2",jH=30,jI=440,jJ="horizontalAlignment",jK="left",jL=0xFFDBDFEA,jM="10",jN=0.0980392156862745,jO="da7073b93b154fad84641498571c0b99",jP=373,jQ=39,jR="e72307f467984ee784abc39685b2f6c8",jS="S0A",jT=528,jU=370,jV=55,jW="verticalAsNeeded",jX="3c3356de7cf6401fa1d836db400b750a",jY="2899142cc4554029ac66270135fde879",jZ="复选框",ka="checkbox",kb="747fc3b6d309476f8d93603e868ad577",kc=47,kd=575,ke="images/新建训练/u1597.svg",kf="images/新建训练/u1597_selected.svg",kg="images/新建训练/u1597_disabled.svg",kh="d2fae1706a7e40b88fd209cc614b61c9",ki=615,kj="images/新建训练/u1598.svg",kk="images/新建训练/u1598_selected.svg",kl="images/新建训练/u1598_disabled.svg",km="c0e99225507c4f81b4e7a6ebdb2d3e64",kn=45,ko=295,kp="images/新建训练/u1599.svg",kq="images/新建训练/u1599_selected.svg",kr="images/新建训练/u1599_disabled.svg",ks="dc6dc2a092ae47dfb46458815f610c67",kt="三角形",ku="flowShape",kv=25,kw=579,kx="rotation",ky="90",kz=0xFFAAAAAA,kA="images/新建训练/u1600.svg",kB="3cfb371486794178874b59845ec07fbd",kC=619,kD="218b2fe6da8a4201ad0bf6ed01c9678e",kE=299,kF="180",kG="628ad54200084f148af4eff4f4c5d16d",kH=135,kI="images/新建训练/u1603.svg",kJ="images/新建训练/u1603_selected.svg",kK="images/新建训练/u1603_disabled.svg",kL="d21e72f2e6d442ce875c81b3f1143786",kM=255,kN="images/新建训练/u1604.svg",kO="images/新建训练/u1604_selected.svg",kP="images/新建训练/u1604_disabled.svg",kQ="4dac805149ad4b61bff3891906f2e60a",kR=175,kS="images/新建训练/u1605.svg",kT="images/新建训练/u1605_selected.svg",kU="images/新建训练/u1605_disabled.svg",kV="e117ef27f4df4ed3b62f7419fb4e4fb2",kW="images/新建训练/u1606.svg",kX="images/新建训练/u1606_selected.svg",kY="images/新建训练/u1606_disabled.svg",kZ="8b58cff7587f41069f3b18c59dcc7167",la=50,lb="images/新建训练/u1607.svg",lc="images/新建训练/u1607_selected.svg",ld="images/新建训练/u1607_disabled.svg",le="1918021bf25a4e468106f29b7a4b1bca",lf="002e0d2a040148e29eec175a425f57a2",lg=95,lh="images/新建训练/u1609.svg",li="images/新建训练/u1609_selected.svg",lj="images/新建训练/u1609_disabled.svg",lk="f21e64ef83ef4112b50aed61c1ccbd08",ll=215,lm="images/新建训练/u1610.svg",ln="images/新建训练/u1610_selected.svg",lo="images/新建训练/u1610_disabled.svg",lp="095f2642d43949ce8445b9caf468502a",lq=415,lr="images/新建训练/u1611.svg",ls="images/新建训练/u1611_selected.svg",lt="images/新建训练/u1611_disabled.svg",lu="3b10c919bfb84752b986482355dce189",lv=535,lw="images/新建训练/u1612.svg",lx="images/新建训练/u1612_selected.svg",ly="images/新建训练/u1612_disabled.svg",lz="88a7a8c5f41d48c1a520d079d1bfacf7",lA=455,lB="images/新建训练/u1613.svg",lC="images/新建训练/u1613_selected.svg",lD="images/新建训练/u1613_disabled.svg",lE="ccae2ff83fdb4597bd1ff57596f6626c",lF=335,lG="images/新建训练/u1614.svg",lH="images/新建训练/u1614_selected.svg",lI="images/新建训练/u1614_disabled.svg",lJ="68b4a7748c29439ba74736ba7a976997",lK=375,lL="images/新建训练/u1615.svg",lM="images/新建训练/u1615_selected.svg",lN="images/新建训练/u1615_disabled.svg",lO="64fefbbb25b949d4b7ff4d298a5a30c6",lP=495,lQ="images/新建训练/u1616.svg",lR="images/新建训练/u1616_selected.svg",lS="images/新建训练/u1616_disabled.svg",lT="170d30451ebd4a3ba2e3721143b51c69",lU="图片 ",lV="imageBox",lW="becf097643434b02ab8a22c8db46260d",lX=269,lY=37,lZ=1427,ma="images/新建训练/u1617.png",mb="fa07c44e2ef446f4919515d47927f8df",mc=1646.00015173413,md=243,me=130,mf="onResize",mg="Resize时 ",mh="显示 当前 推动 元件 下方",mi="显示 当前",mj=" 推动 元件 下方",mk="show",ml="vertical",mm="compressEasing",mn="compressDuration",mo="9ce73043d10141139a26fca500b006f1",mp="State1",mq="1733efe751334ba5912ca7ef32c34940",mr=2,ms="a79a1fe7ec6b4ad58fc140e383b1863a",mt=0xFF3F8FCC,mu="d023796cd12e499a89efdb9d5fca0427",mv="'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC'",mw="500",mx=13,my="79f1d6cf3c2145c0af688d07812e180c",mz=1646,mA=34,mB=0xFFDADFE6,mC="0.0337180630969462",mD="images/上传算子/u930.svg",mE="e1c70d5344064633b760216af7ae2411",mF=59,mG="13px",mH="5709d1d32b224cd1921508ef4bd0dd77",mI="700",mJ=0xFFE26866,mK=6,mL="749c7607ec9c479383a5e11007ec3530",mM=305,mN="4889d666e8ad4c5e81e59863039a5cc0",mO="9bd0236217a94d89b0314c8c7fc75f16",mP="991e8b5e81cb425abf962546d004013e",mQ=52,mR="汉字、英文、数字、下划线,4-50字符",mS="303a5a3b69e94a87ae67e11829c9aeef",mT=177,mU="4b0b67e1e04e4beb9904771024bb00bf",mV=1543,mW=79,mX=164,mY="c00cc9bf2e5f406b9ff1c7228bb661af",mZ="组合",na="layer",nb=-50,nc=-130,nd="objs",ne="ebd4da2d1677486d8d9522f626ca1bad",nf=117,ng="2f5216c205194642a8dc0c249f5243e6",nh=114,ni="d8cc2cb8aa75441bb6584e56ca0cc701",nj=0xFF7F7F7F,nk=109,nl="c088c3b223d74a46839d3ada625e1754",nm="State2",nn="b4951718af304a91a40e80a6707dcec8",no="091823ca54cb49a184bba275ec2bc5f4",np="898cd5871da148aab1b78858cbbe43bc",nq="fef4e719ca354d72b1b7916adbb15cdf",nr=-113,ns="设置 (动态面板) 到 到 下一项 循环 如果隐藏则显示 推动和拉动元件 下方",nt="(动态面板) 到 下一项 循环",nu="如果隐藏则显示 推动和拉动元件 下方",nv="设置 (动态面板) 到 到 下一项 循环 如果隐藏则显示 推动和拉动元件 下方",nw="next",nx="c47a7ec4a8704e0bb82edb76abb3c50e",ny=1560,nz="a6378ee9c9194a33a5730995d6b3634f",nA=11,nB=1626,nC="images/上传算子/u933.svg",nD="c9f254e438a94e818e23c97c4904ab43",nE=400,nF="24a24dddf0f9412c92a807ad99ec4117",nG="cee311c803ba4191b899295bcd0e0b59",nH="bf4831442e6444449542946671e56d49",nI="ee867ee8dcea4259899db42a0363e12f",nJ="2606975199784c45ad55103944d7c238",nK="e068c3c95624413291f4fb61ac33c53e",nL="81d6a06ee0d44a3280d2d22998086ae1",nM="bbefc12dcd284a84b687924658439188",nN="40519e9ec4264601bfb12c514e4f4867",nO=8,nP="images/新建训练/u1644.svg",nQ="6560cd7ded214d0abad3754a5de471dd",nR="数据表格",nS="表格",nT="table",nU=740,nV=221,nW="353d9eee141b46308f63dd70b9f4292c",nX="单元格",nY="tableCell",nZ=0xFF555555,oa=220,ob=42,oc=0xFFE9E9E9,od="15",oe=0xF9F9F9,of="images/模型训练/u1358.png",og="38d445b8790c4dd09ab3d867906042f9",oh=129,oi="296b5ed700784e839112a59016b956dc",oj=87,ok="31828f0223d642af81363e14ff9c1521",ol=171,om="images/新建训练/u1658.png",on="fd427eafe8e24f2fb949ec44ddfabbf8",oo=0xFFE2E4F4,op="images/模型训练/u1350.png",oq="68a68014a16d4ce095417bad93d50501",or=270,os="images/新建训练/u1647.png",ot="dda026d352c74d94a03d62d097141e69",ou=0xFF000000,ov="images/新建训练/u1650.png",ow="2427de67cf164a78a70bd74389482692",ox="0b0eee0e7ae54f65a89424d42dca39b9",oy="dd818b25472c430291922c9873df9a8d",oz="images/新建训练/u1659.png",oA="14a006b58b144acca2dc4993c1e41f99",oB=250,oC=490,oD="images/新建训练/u1648.png",oE="0f94a02eaf63407eaddcae5fa07ea542",oF="images/新建训练/u1651.png",oG="b2eda42868cd4f46a0357870329d7caa",oH="4d8b5546f6fa431bbec710ca595a9fbb",oI="ecbf1604594949e98f5f49e35886baa5",oJ="images/新建训练/u1660.png",oK="9b0eac4a64e546bf866add7649434955",oL="树",oM="treeNodeObject",oN="93a4c3353b6f4562af635b7116d6bf94",oO=425,oP="057f52cdb44040878d49a108de242c52",oQ="节点",oR="5a29a3bb5b9b49c499a5813e993c10b4",oS="isContained",oT="0d5662a4c3f047369f02b39051f376fb",oU=54,oV="025d6d4179c34f1d8f3a915154c1df6d",oW="buttonShapeId",oX="5fdaf0f9dc71409ba32eac4dc91b9ae6",oY="7648bd7d1255478c823bec07ddbfc978",oZ="72739b6aa0c94c99bb9420765c29afd1",pa="40e6d5f3890b48d2b2ac633086d47b09",pb="isExpanded",pc="83578791e52844cc9cdefd38dedd4163",pd=81,pe=51,pf="e4cba8959a4e40eb8c5d855cf702aee6",pg=112,ph="e0ff9f3f8b994cb5b78eb38bcba5afd9",pi="f1348394091442d9ab339e9065091139",pj="c75fd74c2e2542b3877b5a4f998c8b57",pk="9c7f2ae849b143b3b2e4e31ed7282fba",pl="021508eff5754c82ab859a8ef7831582",pm="8a7bdc2222e84fce8a58aee6265860d9",pn=242,po=366,pp=670,pq="35196ee0c46a419f8207729f222a55bf",pr=628,ps="c804d00dcb2b4d999224af6bec94c7cf",pt=758,pu="0dc25a8a639c4006b9e5184cad45600d",pv=712,pw="1d587f5e0b0541a09c6f02f3c74c8b38",px=75,py=1615,pz="打开 底层 在 当前窗口",pA="底层",pB="backUrl",pC="152f275d29ac4e8697e2658d58110883",pD=88,pE=1527,pF="9c28d1bcda414b83b835f39eb080af64",pG="masters",pH="4b990bb6cff949a1b5064d9025ac7466",pI="Axure:Master",pJ="b4af901033b249d38ee8eb1b94777365",pK="573733447bee46eea78d2b52ca56b99a",pL=0xFFF5F6FA,pM="458c47cd3b3c4a7eb8cf043d32222b99",pN=63,pO=0xFFD7D7D7,pP="07056249b2ee422393616a7350baacea",pQ=1859,pR=900,pS="a7ce4e4c5c6d4f7da2e684ee804f68d0",pT="'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'",pU="650",pV=22,pW="8c7a4c5ad69a4369a5f7788171ac0b32",pX=35,pY="onLoad",pZ="Load时 ",qa="setFunction",qb="设置 文字于 当前等于"[[Pagename]]"",qc="设置文本",qd="当前 为 \"[[Pagename]]\"",qe="文字于 当前等于\"[[Pagename]]\"",qf="expr",qg="block",qh="subExprs",qi="fcall",qj="functionName",qk="SetWidgetRichText",ql="arguments",qm="pathLiteral",qn="isThis",qo="isFocused",qp="isTarget",qq="[[Pagename]]",qr="pagename",qs="booleanLiteral",qt="objectPaths",qu="08a2c0a1240140c48cb1633aa051425f",qv="scriptId",qw="u1521",qx="b4af901033b249d38ee8eb1b94777365",qy="u1522",qz="573733447bee46eea78d2b52ca56b99a",qA="u1523",qB="458c47cd3b3c4a7eb8cf043d32222b99",qC="u1524",qD="07056249b2ee422393616a7350baacea",qE="u1525",qF="a7ce4e4c5c6d4f7da2e684ee804f68d0",qG="u1526",qH="b738f4e4bb5641cd96c2ed83cff83be2",qI="u1527",qJ="8be5c279abde49308618c7a1cf21f7f5",qK="u1528",qL="b49442614a04410f950b39bc945e94d5",qM="u1529",qN="2bd0fa09f8f94d93981319cd46f72d80",qO="u1530",qP="589ed251fdd545f4ba1e006aefec9446",qQ="u1531",qR="4a27ed3ecf6a42239ef1eab2b99a69ad",qS="u1532",qT="b4832ede99a5481ba5cd7d79a9536148",qU="u1533",qV="a861e13b0360469d8e481e283a712b54",qW="u1534",qX="fe7a836eae634c30a10626d8834488c0",qY="u1535",qZ="83f2f52d41fb49d59aa47b3346d6bb74",ra="u1536",rb="5c76b43a20ec4b21aeadb392380708e6",rc="u1537",rd="01d4d1251d73463484cd66d258546afe",re="u1538",rf="80a5432a5211488fb5a866aa8da65bb3",rg="u1539",rh="d71b99c822dd4f19ba5df0152fbf1187",ri="u1540",rj="6af1db263b83424fa5c49844b8745516",rk="u1541",rl="891f3aee5d224215a91bc66dfaf45681",rm="u1542",rn="e8de1b55b6a14095b973a40d115a2167",ro="u1543",rp="d18fc6b684fc4107af79a837ef85304d",rq="u1544",rr="8e00533f2826499cb774bb9ed8ab68d5",rs="u1545",rt="52e3f0b9d06d4e38a9f177b8bfc7950e",ru="u1546",rv="b78b1e05bb59448da9eb85b169b28b40",rw="u1547",rx="726c2167abd14ee19c016b9e9b0044c7",ry="u1548",rz="597807518b0e4170a5bd17dd6775648d",rA="u1549",rB="346b674f670142a99a58c5d1a397c162",rC="u1550",rD="407bc63ae88e400e92241c43d64729ca",rE="u1551",rF="519953df0d8a40539ac8ffab11aaf432",rG="u1552",rH="u1553",rI="615360fa1495444f87a45e323daf8c59",rJ="u1554",rK="be9e8697c1f14d8da84665014a4badab",rL="u1555",rM="8561d7181ce8468fb16a4b1378359c7e",rN="u1556",rO="8d3e8355816e4add90e08bb953c8967b",rP="u1557",rQ="9c27ee93650445558448535d77e9a5f9",rR="u1558",rS="a887dd94e4ab46c9bd518a40ccb94ba4",rT="u1559",rU="17fc2e3712e147649586c168ce3f891a",rV="u1560",rW="46341a1ed234451fbdad6c0bd923e1bf",rX="u1561",rY="c4ce1aa208bc48ef8175e482b2bf8ca8",rZ="u1562",sa="e7d1f5425375413dbbd288e3d1a3728a",sb="u1563",sc="96d653b4e00348fb91dd1448f558bb5b",sd="u1564",se="ab01d9be218444d4abc09699c298c8f7",sf="u1565",sg="9cf01e31c9d8491eb3d4220ff932467c",sh="u1566",si="22db88db7ade43d78b45fbb2a3ea5f9a",sj="u1567",sk="9b89b81c76fd453a85f5c2315e737faf",sl="u1568",sm="3347aca7ef3b4a55ade6a18b5da36f8b",sn="u1569",so="507b57d2c1dc46fd83d90a0f24aa87de",sp="u1570",sq="c09c9a9a95e44545ba975f21bae0a158",sr="u1571",ss="71fd0268593344d8b9741bb781a96745",st="u1572",su="f4a9b62b1e0a47acadee85eaf120438c",sv="u1573",sw="4e2f20c01bdb45ce89367e5582a43942",sx="u1574",sy="c9c9148878ee4d6eab752dc228a7609f",sz="u1575",sA="62f2a495258045ba877ba221b916f7ca",sB="u1576",sC="u1577",sD="4b9888b1601445279b57c06af9f63bbe",sE="u1578",sF="1c77df421faf4352a62d53dc83bc8e5f",sG="u1579",sH="764ee9a9180d4749b8cb39b816337f0b",sI="u1580",sJ="dcfe8540049d4347b9a6ad40bed30691",sK="u1581",sL="7da31d6c032e4ad0a7bce964c5743724",sM="u1582",sN="9574b5295e144f8c942f21613eea3ddd",sO="u1583",sP="u1584",sQ="f7d6a471d06e47c8b4add05d92218d7d",sR="u1585",sS="b5f37a7854164e84b454334de7096e71",sT="u1586",sU="fd03c742ad124c529bbfe846022465fb",sV="u1587",sW="17845abb76064134bd7f82d80158ca82",sX="u1588",sY="2cb16a65190144bf993e384acfc150c9",sZ="u1589",ta="fa9304c7719c41b9b2c4625d2275006b",tb="u1590",tc="95208e5ac4d84cb9bb41195e17e6d4a5",td="u1591",te="0fd1772b1ace4f8a973750150efac252",tf="u1592",tg="a8c0b96128ec4c35b77be6e47e696487",th="u1593",ti="7f6a702211664ec499463adbd8c997c9",tj="u1594",tk="da7073b93b154fad84641498571c0b99",tl="u1595",tm="e72307f467984ee784abc39685b2f6c8",tn="u1596",to="2899142cc4554029ac66270135fde879",tp="u1597",tq="d2fae1706a7e40b88fd209cc614b61c9",tr="u1598",ts="c0e99225507c4f81b4e7a6ebdb2d3e64",tt="u1599",tu="dc6dc2a092ae47dfb46458815f610c67",tv="u1600",tw="3cfb371486794178874b59845ec07fbd",tx="u1601",ty="218b2fe6da8a4201ad0bf6ed01c9678e",tz="u1602",tA="628ad54200084f148af4eff4f4c5d16d",tB="u1603",tC="d21e72f2e6d442ce875c81b3f1143786",tD="u1604",tE="4dac805149ad4b61bff3891906f2e60a",tF="u1605",tG="e117ef27f4df4ed3b62f7419fb4e4fb2",tH="u1606",tI="8b58cff7587f41069f3b18c59dcc7167",tJ="u1607",tK="1918021bf25a4e468106f29b7a4b1bca",tL="u1608",tM="002e0d2a040148e29eec175a425f57a2",tN="u1609",tO="f21e64ef83ef4112b50aed61c1ccbd08",tP="u1610",tQ="095f2642d43949ce8445b9caf468502a",tR="u1611",tS="3b10c919bfb84752b986482355dce189",tT="u1612",tU="88a7a8c5f41d48c1a520d079d1bfacf7",tV="u1613",tW="ccae2ff83fdb4597bd1ff57596f6626c",tX="u1614",tY="68b4a7748c29439ba74736ba7a976997",tZ="u1615",ua="64fefbbb25b949d4b7ff4d298a5a30c6",ub="u1616",uc="u1617",ud="fa07c44e2ef446f4919515d47927f8df",ue="u1618",uf="1733efe751334ba5912ca7ef32c34940",ug="u1619",uh="d023796cd12e499a89efdb9d5fca0427",ui="u1620",uj="79f1d6cf3c2145c0af688d07812e180c",uk="u1621",ul="e1c70d5344064633b760216af7ae2411",um="u1622",un="5709d1d32b224cd1921508ef4bd0dd77",uo="u1623",up="749c7607ec9c479383a5e11007ec3530",uq="u1624",ur="303a5a3b69e94a87ae67e11829c9aeef",us="u1625",ut="4b0b67e1e04e4beb9904771024bb00bf",uu="u1626",uv="c00cc9bf2e5f406b9ff1c7228bb661af",uw="u1627",ux="ebd4da2d1677486d8d9522f626ca1bad",uy="u1628",uz="2f5216c205194642a8dc0c249f5243e6",uA="u1629",uB="d8cc2cb8aa75441bb6584e56ca0cc701",uC="u1630",uD="b4951718af304a91a40e80a6707dcec8",uE="u1631",uF="091823ca54cb49a184bba275ec2bc5f4",uG="u1632",uH="898cd5871da148aab1b78858cbbe43bc",uI="u1633",uJ="fef4e719ca354d72b1b7916adbb15cdf",uK="u1634",uL="c47a7ec4a8704e0bb82edb76abb3c50e",uM="u1635",uN="a6378ee9c9194a33a5730995d6b3634f",uO="u1636",uP="c9f254e438a94e818e23c97c4904ab43",uQ="u1637",uR="cee311c803ba4191b899295bcd0e0b59",uS="u1638",uT="bf4831442e6444449542946671e56d49",uU="u1639",uV="ee867ee8dcea4259899db42a0363e12f",uW="u1640",uX="2606975199784c45ad55103944d7c238",uY="u1641",uZ="e068c3c95624413291f4fb61ac33c53e",va="u1642",vb="81d6a06ee0d44a3280d2d22998086ae1",vc="u1643",vd="bbefc12dcd284a84b687924658439188",ve="u1644",vf="6560cd7ded214d0abad3754a5de471dd",vg="u1645",vh="fd427eafe8e24f2fb949ec44ddfabbf8",vi="u1646",vj="68a68014a16d4ce095417bad93d50501",vk="u1647",vl="14a006b58b144acca2dc4993c1e41f99",vm="u1648",vn="353d9eee141b46308f63dd70b9f4292c",vo="u1649",vp="dda026d352c74d94a03d62d097141e69",vq="u1650",vr="0f94a02eaf63407eaddcae5fa07ea542",vs="u1651",vt="296b5ed700784e839112a59016b956dc",vu="u1652",vv="2427de67cf164a78a70bd74389482692",vw="u1653",vx="b2eda42868cd4f46a0357870329d7caa",vy="u1654",vz="38d445b8790c4dd09ab3d867906042f9",vA="u1655",vB="0b0eee0e7ae54f65a89424d42dca39b9",vC="u1656",vD="4d8b5546f6fa431bbec710ca595a9fbb",vE="u1657",vF="31828f0223d642af81363e14ff9c1521",vG="u1658",vH="dd818b25472c430291922c9873df9a8d",vI="u1659",vJ="ecbf1604594949e98f5f49e35886baa5",vK="u1660",vL="9b0eac4a64e546bf866add7649434955",vM="u1661",vN="057f52cdb44040878d49a108de242c52",vO="u1662",vP="5a29a3bb5b9b49c499a5813e993c10b4",vQ="u1663",vR="0d5662a4c3f047369f02b39051f376fb",vS="u1664",vT="025d6d4179c34f1d8f3a915154c1df6d",vU="u1665",vV="5fdaf0f9dc71409ba32eac4dc91b9ae6",vW="u1666",vX="7648bd7d1255478c823bec07ddbfc978",vY="u1667",vZ="72739b6aa0c94c99bb9420765c29afd1",wa="u1668",wb="40e6d5f3890b48d2b2ac633086d47b09",wc="u1669",wd="83578791e52844cc9cdefd38dedd4163",we="u1670",wf="e4cba8959a4e40eb8c5d855cf702aee6",wg="u1671",wh="f1348394091442d9ab339e9065091139",wi="u1672",wj="c75fd74c2e2542b3877b5a4f998c8b57",wk="u1673",wl="9c7f2ae849b143b3b2e4e31ed7282fba",wm="u1674",wn="021508eff5754c82ab859a8ef7831582",wo="u1675",wp="8a7bdc2222e84fce8a58aee6265860d9",wq="u1676",wr="35196ee0c46a419f8207729f222a55bf",ws="u1677",wt="c804d00dcb2b4d999224af6bec94c7cf",wu="u1678",wv="0dc25a8a639c4006b9e5184cad45600d",ww="u1679",wx="1d587f5e0b0541a09c6f02f3c74c8b38",wy="u1680",wz="152f275d29ac4e8697e2658d58110883",wA="u1681",wB="u1682"; +return _creator(); +})()); \ No newline at end of file diff --git "a/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\346\226\260\345\273\272\350\256\255\347\273\203/styles.css" "b/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\346\226\260\345\273\272\350\256\255\347\273\203/styles.css" new file mode 100644 index 0000000000000000000000000000000000000000..3cb1be71a2037c66a402e50b9b2d3c3998c7c735 --- /dev/null +++ "b/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\346\226\260\345\273\272\350\256\255\347\273\203/styles.css" @@ -0,0 +1,7035 @@ +body { + margin:0px; + background-image:none; + position:relative; + left:0px; + width:1920px; + margin-left:auto; + margin-right:auto; + text-align:left; +} +.form_sketch { + border-color:transparent; + background-color:transparent; +} +#base { + position:absolute; + z-index:0; +} +#u1522 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1523_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1920px; + height:1300px; + background:inherit; + background-color:rgba(245, 246, 250, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1523 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1920px; + height:1300px; + display:flex; +} +#u1523 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1523_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1524_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1920px; + height:63px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1524 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1920px; + height:63px; + display:flex; +} +#u1524 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1524_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1525_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1859px; + height:900px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1525 { + border-width:0px; + position:absolute; + left:25px; + top:88px; + width:1859px; + height:900px; + display:flex; +} +#u1525 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1525_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1526_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:400px; + height:22px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:16px; +} +#u1526 { + border-width:0px; + position:absolute; + left:35px; + top:21px; + width:400px; + height:22px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:16px; +} +#u1526 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1526_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1527 { + position:fixed; + left:50%; + margin-left:-647.5px; + top:50%; + margin-top:-401px; + visibility:hidden; +} +#u1527_state0 { + position:relative; + left:0px; + top:0px; + width:1295px; + height:802px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1527_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1528_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:568px; + height:802px; + 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:8px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1528 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:568px; + height:802px; + display:flex; +} +#u1528 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1528_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1529_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:15px; + height:15px; +} +#u1529 { + border-width:0px; + position:absolute; + left:539px; + top:18px; + width:15px; + height:15px; + display:flex; + color:#00FF99; +} +#u1529 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1529_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1530_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:569px; + height:2px; +} +#u1530 { + border-width:0px; + position:absolute; + left:0px; + top:48px; + width:568px; + height:1px; + display:flex; +} +#u1530 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1530_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1531_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:74px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:16px; +} +#u1531 { + border-width:0px; + position:absolute; + left:19px; + top:17px; + width:74px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:16px; +} +#u1531 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1531_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1532_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:569px; + height:2px; +} +#u1532 { + border-width:0px; + position:absolute; + left:0px; + top:737px; + width:568px; + height:1px; + display:flex; +} +#u1532 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1532_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1533_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u1533 { + border-width:0px; + position:absolute; + left:443px; + top:756px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#FFFFFF; + line-height:20px; +} +#u1533 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1533_img.mouseOver { +} +#u1533.mouseOver { +} +#u1533_img.mouseDown { +} +#u1533.mouseDown { +} +#u1533_img.disabled { +} +#u1533.disabled { + opacity:0.7; +} +#u1533_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1534_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u1534 { + border-width:0px; + position:absolute; + left:353px; + top:756px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#999999; +} +#u1534 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1534_img.mouseOver { +} +#u1534.mouseOver { +} +#u1534_img.mouseDown { +} +#u1534.mouseDown { +} +#u1534_img.disabled { +} +#u1534.disabled { + opacity:0.7; +} +#u1534_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1535_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; +} +#u1535 { + border-width:0px; + position:absolute; + left:56px; + top:74px; + width:20px; + height:20px; + display:flex; + color:#02A7F0; +} +#u1535 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1535_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1536_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:469px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1536 { + border-width:0px; + position:absolute; + left:85px; + top:74px; + width:469px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1536 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1536_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1537_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1537 { + border-width:0px; + position:absolute; + left:56px; + top:126px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1537 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1537_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1538_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:157px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1538 { + border-width:0px; + position:absolute; + left:140px; + top:126px; + width:157px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1538 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1538_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1539_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1539 { + border-width:0px; + position:absolute; + left:56px; + top:166px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1539 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1539_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1540_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:383px; + height:105px; + 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; +} +#u1540 { + border-width:0px; + position:absolute; + left:140px; + top:166px; + width:383px; + height:105px; + display:flex; +} +#u1540 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1540_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1541_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1541 { + border-width:0px; + position:absolute; + left:56px; + top:297px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1541 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1541_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1542 label { + left:0px; + width:100%; +} +#u1542_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1542 { + border-width:0px; + position:absolute; + left:140px; + top:297px; + width:100px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1542 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1542_img.selected { +} +#u1542.selected { +} +#u1542_img.disabled { +} +#u1542.disabled { +} +#u1542_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:84px; + word-wrap:break-word; + text-transform:none; +} +#u1542_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1543 label { + left:0px; + width:100%; +} +#u1543_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1543 { + border-width:0px; + position:absolute; + left:303px; + top:297px; + width:100px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1543 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1543_img.selected { +} +#u1543.selected { +} +#u1543_img.disabled { +} +#u1543.disabled { +} +#u1543_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:84px; + word-wrap:break-word; + text-transform:none; +} +#u1543_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1544 { + position:absolute; + left:140px; + top:342px; +} +#u1544_state0 { + position:relative; + left:0px; + top:0px; + width:396px; + height:293px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1544_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1545_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:48px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1545 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:48px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1545 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1545_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1546_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1546 { + border-width:0px; + position:absolute; + left:-84px; + top:85px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1546 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1546_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1547_input { + position:absolute; + left:0px; + top:0px; + width:383px; + height:170px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; + resize:none; +} +#u1547_input.disabled { + position:absolute; + left:0px; + top:0px; + width:383px; + height:170px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; + resize:none; +} +#u1547_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:383px; + 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; +} +#u1547 { + border-width:0px; + position:absolute; + left:0px; + top:85px; + width:383px; + height:170px; + display:flex; +} +#u1547 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1547_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:383px; + height:170px; + background:inherit; + background-color:rgba(240, 240, 240, 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; +} +#u1547.disabled { +} +#u1548_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1548 { + border-width:0px; + position:absolute; + left:303px; + top:228px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1548 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1548_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1549_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:396px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; +} +#u1549 { + border-width:0px; + position:absolute; + left:0px; + top:273px; + width:396px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; +} +#u1549 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1549_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1550_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; +} +#u1550 { + border-width:0px; + position:absolute; + left:-33px; + top:273px; + width:20px; + height:20px; + display:flex; + color:#02A7F0; +} +#u1550 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1550_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1544_state1 { + position:relative; + left:0px; + top:0px; + width:396px; + height:368px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + visibility:hidden; +} +#u1544_state1_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1551_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:48px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1551 { + border-width:0px; + position:absolute; + left:0px; + top:60px; + width:320px; + height:48px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1551 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1551_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1552_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1552 { + border-width:0px; + position:absolute; + left:-84px; + top:12px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1552 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1552_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1553_input { + position:absolute; + left:0px; + top:0px; + width:383px; + height:40px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1553_input.disabled { + position:absolute; + left:0px; + top:0px; + width:383px; + height:40px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1553_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:383px; + height:40px; +} +#u1553 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:383px; + height:40px; + display:flex; +} +#u1553 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1553_img.disabled { +} +#u1553.disabled { +} +.u1553_input_option { +} +#u1554_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1554 { + border-width:0px; + position:absolute; + left:-84px; + top:142px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1554 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1554_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1555_input { + position:absolute; + left:0px; + top:0px; + width:383px; + height:170px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; + resize:none; +} +#u1555_input.disabled { + position:absolute; + left:0px; + top:0px; + width:383px; + height:170px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; + resize:none; +} +#u1555_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:383px; + 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; +} +#u1555 { + border-width:0px; + position:absolute; + left:0px; + top:142px; + width:383px; + height:170px; + display:flex; +} +#u1555 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1555_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:383px; + height:170px; + background:inherit; + background-color:rgba(240, 240, 240, 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; +} +#u1555.disabled { +} +#u1556_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1556 { + border-width:0px; + position:absolute; + left:303px; + top:285px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1556 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1556_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1557_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:396px; + height:32px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; +} +#u1557 { + border-width:0px; + position:absolute; + left:0px; + top:330px; + width:396px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; +} +#u1557 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1557_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1558_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; +} +#u1558 { + border-width:0px; + position:absolute; + left:-33px; + top:330px; + width:20px; + height:20px; + display:flex; + color:#02A7F0; +} +#u1558 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1558_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1559_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:568px; + height:722px; + 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:8px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1559 { + border-width:0px; + position:absolute; + left:727px; + top:0px; + width:568px; + height:722px; + display:flex; +} +#u1559 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1559_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1560_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:15px; + height:15px; +} +#u1560 { + border-width:0px; + position:absolute; + left:1266px; + top:18px; + width:15px; + height:15px; + display:flex; + color:#00FF99; +} +#u1560 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1560_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1561_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:569px; + height:2px; +} +#u1561 { + border-width:0px; + position:absolute; + left:727px; + top:48px; + width:568px; + height:1px; + display:flex; +} +#u1561 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1561_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1562_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:74px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:16px; +} +#u1562 { + border-width:0px; + position:absolute; + left:746px; + top:17px; + width:74px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:16px; +} +#u1562 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1562_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1563_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:569px; + height:2px; +} +#u1563 { + border-width:0px; + position:absolute; + left:727px; + top:657px; + width:568px; + height:1px; + display:flex; +} +#u1563 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1563_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1564_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u1564 { + border-width:0px; + position:absolute; + left:1170px; + top:676px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#FFFFFF; + line-height:20px; +} +#u1564 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1564_img.mouseOver { +} +#u1564.mouseOver { +} +#u1564_img.mouseDown { +} +#u1564.mouseDown { +} +#u1564_img.disabled { +} +#u1564.disabled { + opacity:0.7; +} +#u1564_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1565_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u1565 { + border-width:0px; + position:absolute; + left:1080px; + top:676px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#999999; +} +#u1565 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1565_img.mouseOver { +} +#u1565.mouseOver { +} +#u1565_img.mouseDown { +} +#u1565.mouseDown { +} +#u1565_img.disabled { +} +#u1565.disabled { + opacity:0.7; +} +#u1565_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1566_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; +} +#u1566 { + border-width:0px; + position:absolute; + left:783px; + top:74px; + width:20px; + height:20px; + display:flex; + color:#02A7F0; +} +#u1566 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1566_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1567_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:426px; + height:32px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1567 { + border-width:0px; + position:absolute; + left:812px; + top:74px; + width:426px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1567 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1567_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1568_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1568 { + border-width:0px; + position:absolute; + left:783px; + top:138px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1568 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1568_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1569_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:157px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1569 { + border-width:0px; + position:absolute; + left:867px; + top:138px; + width:157px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1569 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1569_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1570_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1570 { + border-width:0px; + position:absolute; + left:783px; + top:178px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1570 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1570_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1571_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:383px; + height:105px; + 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; +} +#u1571 { + border-width:0px; + position:absolute; + left:867px; + top:178px; + width:383px; + height:105px; + display:flex; +} +#u1571 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1571_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1572_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1572 { + border-width:0px; + position:absolute; + left:783px; + top:309px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1572 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1572_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1573 label { + left:0px; + width:100%; +} +#u1573_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1573 { + border-width:0px; + position:absolute; + left:871px; + top:309px; + width:100px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1573 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1573_img.selected { +} +#u1573.selected { +} +#u1573_img.disabled { +} +#u1573.disabled { +} +#u1573_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:84px; + word-wrap:break-word; + text-transform:none; +} +#u1573_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1574 { + position:absolute; + left:867px; + top:354px; +} +#u1574_state0 { + position:relative; + left:0px; + top:0px; + width:383px; + height:264px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1574_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1575_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:48px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1575 { + border-width:0px; + position:absolute; + left:0px; + top:60px; + width:320px; + height:48px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1575 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1575_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1576_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1576 { + border-width:0px; + position:absolute; + left:-84px; + top:12px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1576 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1576_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1577_input { + position:absolute; + left:0px; + top:0px; + width:383px; + height:40px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1577_input.disabled { + position:absolute; + left:0px; + top:0px; + width:383px; + height:40px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1577_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:383px; + height:40px; +} +#u1577 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:383px; + height:40px; + display:flex; +} +#u1577 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1577_img.disabled { +} +#u1577.disabled { +} +.u1577_input_option { +} +#u1578_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1578 { + border-width:0px; + position:absolute; + left:-84px; + top:142px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1578 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1578_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1579_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:383px; + height:105px; + 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; +} +#u1579 { + border-width:0px; + position:absolute; + left:0px; + top:142px; + width:383px; + height:105px; + display:flex; +} +#u1579 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1579_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1574_state1 { + position:relative; + left:0px; + top:0px; + width:320px; + height:48px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + visibility:hidden; +} +#u1574_state1_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1580_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:48px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1580 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:48px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1580 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1580_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1581_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:40px; + height:23px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:20px; + color:#FF3399; +} +#u1581 { + border-width:0px; + position:absolute; + left:21px; + top:637px; + width:40px; + height:23px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:20px; + color:#FF3399; +} +#u1581 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1581_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1582_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:280px; + height:80px; + background:inherit; + background-color:rgba(255, 255, 255, 0); + box-sizing:border-box; + border-width:2px; + border-style:solid; + border-color:rgba(255, 51, 153, 1); + border-top:0px; + border-right:0px; + border-bottom:0px; + border-radius:0px; + border-top-left-radius:0px; + border-top-right-radius:0px; + border-bottom-right-radius:0px; + border-bottom-left-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#FF3399; + line-height:18px; +} +#u1582 { + border-width:0px; + position:absolute; + left:23px; + top:681px; + width:280px; + height:80px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#FF3399; + line-height:18px; +} +#u1582 .text { + position:absolute; + align-self:flex-start; + padding:4px 0px 4px 8px; + box-sizing:border-box; + width:100%; +} +#u1582_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1583 { + border-width:0px; + position:absolute; + left:67px; + top:306px; + width:0px; + height:0px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#656565; +} +#u1583_seg0 { + border-width:0px; + position:absolute; + left:-31px; + top:-5px; + width:31px; + height:10px; +} +#u1583_seg1 { + border-width:0px; + position:absolute; + left:-31px; + top:-5px; + width:10px; + height:336px; +} +#u1583_seg2 { + border-width:0px; + position:absolute; + left:-12px; + top:-9px; + width:18px; + height:18px; +} +#u1583_text { + border-width:0px; + position:absolute; + left:-76px; + top:144px; + width:100px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1584 { + border-width:0px; + position:absolute; + left:961px; + top:94px; + width:100px; + height:20px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} +#u1585 { + border-width:0px; + position:absolute; + left:808px; + top:383px; + width:0px; + height:0px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#656565; +} +#u1585_seg0 { + border-width:0px; + position:absolute; + left:-18px; + top:-5px; + width:18px; + height:10px; +} +#u1585_seg1 { + border-width:0px; + position:absolute; + left:-18px; + top:-5px; + width:10px; + height:38px; +} +#u1585_seg2 { + border-width:0px; + position:absolute; + left:-88px; + top:23px; + width:80px; + height:10px; +} +#u1585_seg3 { + border-width:0px; + position:absolute; + left:-88px; + top:23px; + width:10px; + height:320px; +} +#u1585_seg4 { + border-width:0px; + position:absolute; + left:-505px; + top:333px; + width:427px; + height:10px; +} +#u1585_seg5 { + border-width:0px; + position:absolute; + left:-12px; + top:-9px; + width:18px; + height:18px; +} +#u1585_text { + border-width:0px; + position:absolute; + left:-134px; + top:330px; + width:100px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1586 { + position:fixed; + left:50%; + margin-left:-284px; + top:50%; + margin-top:-300px; + visibility:hidden; +} +#u1586_state0 { + position:relative; + left:0px; + top:0px; + width:568px; + height:600px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1586_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1587_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:568px; + height:600px; + 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:8px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1587 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:568px; + height:600px; + display:flex; +} +#u1587 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1587_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1588_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:15px; + height:15px; +} +#u1588 { + border-width:0px; + position:absolute; + left:539px; + top:18px; + width:15px; + height:15px; + display:flex; + color:#00FF99; +} +#u1588 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1588_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1589_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:569px; + height:2px; +} +#u1589 { + border-width:0px; + position:absolute; + left:0px; + top:48px; + width:568px; + height:1px; + display:flex; +} +#u1589 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1589_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1590_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:64px; + height:18px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:16px; +} +#u1590 { + border-width:0px; + position:absolute; + left:20px; + top:17px; + width:64px; + height:18px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:16px; +} +#u1590 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1590_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1591_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:569px; + height:2px; +} +#u1591 { + border-width:0px; + position:absolute; + left:0px; + top:530px; + width:568px; + height:1px; + display:flex; +} +#u1591 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1591_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1592_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u1592 { + border-width:0px; + position:absolute; + left:450px; + top:549px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#FFFFFF; + line-height:20px; +} +#u1592 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1592_img.mouseOver { +} +#u1592.mouseOver { +} +#u1592_img.mouseDown { +} +#u1592.mouseDown { +} +#u1592_img.disabled { +} +#u1592.disabled { + opacity:0.7; +} +#u1592_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1593_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u1593 { + border-width:0px; + position:absolute; + left:360px; + top:549px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#999999; +} +#u1593 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1593_img.mouseOver { +} +#u1593.mouseOver { +} +#u1593_img.mouseDown { +} +#u1593.mouseDown { +} +#u1593_img.disabled { +} +#u1593.disabled { + opacity:0.7; +} +#u1593_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1594_input { + position:absolute; + left:0px; + top:0px; + width:500px; + height:65px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1594_input.mouseOver { + position:absolute; + left:0px; + top:0px; + width:500px; + height:65px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1594_input.focused { + position:absolute; + left:0px; + top:0px; + width:500px; + height:65px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1594_input.disabled { + position:absolute; + left:0px; + top:0px; + width:500px; + height:65px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1594_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:500px; + height:65px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u1594 { + border-width:0px; + position:absolute; + left:30px; + top:440px; + width:500px; + height:65px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u1594 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 10px; + box-sizing:border-box; + width:100%; +} +#u1594_div.mouseOver { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:500px; + height:65px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(64, 158, 255, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u1594.mouseOver { +} +#u1594_div.focused { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:500px; + height:65px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(64, 158, 255, 1); + border-radius:4px; + -moz-box-shadow:0px 0px 5px rgba(64, 158, 255, 0.247058823529412); + -webkit-box-shadow:0px 0px 5px rgba(64, 158, 255, 0.247058823529412); + box-shadow:0px 0px 5px rgba(64, 158, 255, 0.247058823529412); + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u1594.focused { +} +#u1594_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:500px; + height:65px; + background:inherit; + background-color:rgba(242, 242, 242, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u1594.disabled { +} +#u1595_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:373px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1595 { + border-width:0px; + position:absolute; + left:39px; + top:450px; + width:373px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1595 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1595_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1596 { + border-width:0px; + position:absolute; + left:20px; + top:55px; + width:528px; + height:370px; +} +#u1596_state0 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:528px; + height:370px; + overflow:auto; + -webkit-overflow-scrolling:touch; + -ms-overflow-x:hidden; + overflow-x:hidden; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1596_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1597 label { + left:0px; + width:100%; +} +#u1597_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1597 { + border-width:0px; + position:absolute; + left:47px; + top:575px; + width:300px; + height:15px; + display:flex; +} +#u1597 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1597_img.selected { +} +#u1597.selected { +} +#u1597_img.disabled { +} +#u1597.disabled { +} +#u1597_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1597_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1598 label { + left:0px; + width:100%; +} +#u1598_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1598 { + border-width:0px; + position:absolute; + left:47px; + top:615px; + width:300px; + height:15px; + display:flex; +} +#u1598 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1598_img.selected { +} +#u1598.selected { +} +#u1598_img.disabled { +} +#u1598.disabled { +} +#u1598_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1598_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1599 label { + left:0px; + width:100%; +} +#u1599_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1599 { + border-width:0px; + position:absolute; + left:45px; + top:295px; + width:300px; + height:15px; + display:flex; +} +#u1599 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1599_img.selected { +} +#u1599.selected { +} +#u1599_img.disabled { +} +#u1599.disabled { +} +#u1599_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1599_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1600_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:17px; + height:10px; +} +#u1600 { + border-width:0px; + position:absolute; + left:25px; + top:579px; + width:17px; + height:10px; + display:flex; + -webkit-transform:rotate(90deg); + -moz-transform:rotate(90deg); + -ms-transform:rotate(90deg); + transform:rotate(90deg); +} +#u1600 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1600_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1601_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:17px; + height:10px; +} +#u1601 { + border-width:0px; + position:absolute; + left:25px; + top:619px; + width:17px; + height:10px; + display:flex; + -webkit-transform:rotate(90deg); + -moz-transform:rotate(90deg); + -ms-transform:rotate(90deg); + transform:rotate(90deg); +} +#u1601 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1601_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1602_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:17px; + height:10px; +} +#u1602 { + border-width:0px; + position:absolute; + left:25px; + top:299px; + width:17px; + height:10px; + display:flex; + -webkit-transform:rotate(180deg); + -moz-transform:rotate(180deg); + -ms-transform:rotate(180deg); + transform:rotate(180deg); +} +#u1602 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1602_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1603 label { + left:0px; + width:100%; +} +#u1603_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1603 { + border-width:0px; + position:absolute; + left:65px; + top:135px; + width:300px; + height:15px; + display:flex; +} +#u1603 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1603_img.selected { +} +#u1603.selected { +} +#u1603_img.disabled { +} +#u1603.disabled { +} +#u1603_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1603_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1604 label { + left:0px; + width:100%; +} +#u1604_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1604 { + border-width:0px; + position:absolute; + left:65px; + top:255px; + width:300px; + height:15px; + display:flex; +} +#u1604 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1604_img.selected { +} +#u1604.selected { +} +#u1604_img.disabled { +} +#u1604.disabled { +} +#u1604_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1604_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1605 label { + left:0px; + width:100%; +} +#u1605_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1605 { + border-width:0px; + position:absolute; + left:65px; + top:175px; + width:300px; + height:15px; + display:flex; +} +#u1605 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1605_img.selected { +} +#u1605.selected { +} +#u1605_img.disabled { +} +#u1605.disabled { +} +#u1605_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1605_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1606 label { + left:0px; + width:100%; +} +#u1606_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1606 { + border-width:0px; + position:absolute; + left:65px; + top:55px; + width:300px; + height:15px; + display:flex; +} +#u1606 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1606_img.selected { +} +#u1606.selected { +} +#u1606_img.disabled { +} +#u1606.disabled { +} +#u1606_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1606_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1607 label { + left:0px; + width:100%; +} +#u1607_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1607 { + border-width:0px; + position:absolute; + left:50px; + top:15px; + width:300px; + height:15px; + display:flex; +} +#u1607 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1607_img.selected { +} +#u1607.selected { +} +#u1607_img.disabled { +} +#u1607.disabled { +} +#u1607_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1607_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1608_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:17px; + height:10px; +} +#u1608 { + border-width:0px; + position:absolute; + left:25px; + top:19px; + width:17px; + height:10px; + display:flex; + -webkit-transform:rotate(180deg); + -moz-transform:rotate(180deg); + -ms-transform:rotate(180deg); + transform:rotate(180deg); +} +#u1608 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1608_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1609 label { + left:0px; + width:100%; +} +#u1609_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1609 { + border-width:0px; + position:absolute; + left:65px; + top:95px; + width:300px; + height:15px; + display:flex; +} +#u1609 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1609_img.selected { +} +#u1609.selected { +} +#u1609_img.disabled { +} +#u1609.disabled { +} +#u1609_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1609_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1610 label { + left:0px; + width:100%; +} +#u1610_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1610 { + border-width:0px; + position:absolute; + left:65px; + top:215px; + width:300px; + height:15px; + display:flex; +} +#u1610 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1610_img.selected { +} +#u1610.selected { +} +#u1610_img.disabled { +} +#u1610.disabled { +} +#u1610_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1610_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1611 label { + left:0px; + width:100%; +} +#u1611_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1611 { + border-width:0px; + position:absolute; + left:65px; + top:415px; + width:300px; + height:15px; + display:flex; +} +#u1611 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1611_img.selected { +} +#u1611.selected { +} +#u1611_img.disabled { +} +#u1611.disabled { +} +#u1611_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1611_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1612 label { + left:0px; + width:100%; +} +#u1612_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1612 { + border-width:0px; + position:absolute; + left:65px; + top:535px; + width:300px; + height:15px; + display:flex; +} +#u1612 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1612_img.selected { +} +#u1612.selected { +} +#u1612_img.disabled { +} +#u1612.disabled { +} +#u1612_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1612_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1613 label { + left:0px; + width:100%; +} +#u1613_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1613 { + border-width:0px; + position:absolute; + left:65px; + top:455px; + width:300px; + height:15px; + display:flex; +} +#u1613 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1613_img.selected { +} +#u1613.selected { +} +#u1613_img.disabled { +} +#u1613.disabled { +} +#u1613_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1613_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1614 label { + left:0px; + width:100%; +} +#u1614_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1614 { + border-width:0px; + position:absolute; + left:65px; + top:335px; + width:300px; + height:15px; + display:flex; +} +#u1614 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1614_img.selected { +} +#u1614.selected { +} +#u1614_img.disabled { +} +#u1614.disabled { +} +#u1614_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1614_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1615 label { + left:0px; + width:100%; +} +#u1615_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1615 { + border-width:0px; + position:absolute; + left:65px; + top:375px; + width:300px; + height:15px; + display:flex; +} +#u1615 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1615_img.selected { +} +#u1615.selected { +} +#u1615_img.disabled { +} +#u1615.disabled { +} +#u1615_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1615_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1616 label { + left:0px; + width:100%; +} +#u1616_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1616 { + border-width:0px; + position:absolute; + left:65px; + top:495px; + width:300px; + height:15px; + display:flex; +} +#u1616 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1616_img.selected { +} +#u1616.selected { +} +#u1616_img.disabled { +} +#u1616.disabled { +} +#u1616_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:284px; + word-wrap:break-word; + text-transform:none; +} +#u1616_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1617_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:269px; + height:37px; +} +#u1617 { + border-width:0px; + position:absolute; + left:1427px; + top:20px; + width:269px; + height:37px; + display:flex; +} +#u1617 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1617_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1618 { + position:absolute; + left:50px; + top:130px; +} +#u1618_state0 { + position:relative; + left:0px; + top:0px; + width:1646px; + height:243px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1618_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1619_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:2px; + height:15px; + background:inherit; + background-color:rgba(128, 128, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1619 { + border-width:0px; + position:absolute; + left:1px; + top:5px; + width:2px; + height:15px; + display:flex; +} +#u1619 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1619_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1620_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:56px; + height:16px; + 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:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC'; + font-weight:500; + font-style:normal; +} +#u1620 { + border-width:0px; + position:absolute; + left:13px; + top:5px; + width:56px; + height:16px; + display:flex; + font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC'; + font-weight:500; + font-style:normal; +} +#u1620 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1620_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1621_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1647px; + height:2px; +} +#u1621 { + border-width:0px; + position:absolute; + left:0px; + top:34px; + width:1646px; + height:1px; + display:flex; + -webkit-transform:rotate(0.0337180630969462deg); + -moz-transform:rotate(0.0337180630969462deg); + -ms-transform:rotate(0.0337180630969462deg); + transform:rotate(0.0337180630969462deg); +} +#u1621 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1621_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1622_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:65px; + height:15px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u1622 { + border-width:0px; + position:absolute; + left:15px; + top:59px; + width:65px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u1622 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1622_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1623_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:6px; + height:17px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:13px; + color:#E26866; +} +#u1623 { + border-width:0px; + position:absolute; + left:0px; + top:59px; + width:6px; + height:17px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:13px; + color:#E26866; +} +#u1623 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1623_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1624_input { + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1624_input.disabled { + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1624_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1624 { + border-width:0px; + position:absolute; + left:85px; + top:52px; + width:305px; + height:32px; + display:flex; +} +#u1624 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1624_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1624.disabled { +} +#u1625_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:65px; + height:15px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u1625 { + border-width:0px; + position:absolute; + left:15px; + top:177px; + width:65px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u1625 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1625_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1626_input { + position:absolute; + left:0px; + top:0px; + width:1543px; + height:79px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1626_input.disabled { + position:absolute; + left:0px; + top:0px; + width:1543px; + height:79px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1626_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1543px; + height:79px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1626 { + border-width:0px; + position:absolute; + left:85px; + top:164px; + width:1543px; + height:79px; + display:flex; +} +#u1626 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1626_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1543px; + height:79px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1626.disabled { +} +#u1627 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1628_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:60px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1628 { + border-width:0px; + position:absolute; + left:15px; + top:117px; + width:60px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1628 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1628_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1629_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:10px; + height:16px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:20px; + color:#E26866; +} +#u1629 { + border-width:0px; + position:absolute; + left:0px; + top:114px; + width:10px; + height:16px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:20px; + color:#E26866; +} +#u1629 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1629_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1630_input { + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + letter-spacing:normal; + color:#7F7F7F; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1630_input.disabled { + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + letter-spacing:normal; + color:#7F7F7F; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1630_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:12px; + color:#7F7F7F; +} +#u1630 { + border-width:0px; + position:absolute; + left:85px; + top:109px; + width:305px; + height:32px; + display:flex; + font-size:12px; + color:#7F7F7F; +} +#u1630 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1630_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:12px; + color:#7F7F7F; +} +#u1630.disabled { +} +.u1630_input_option { + font-size:12px; + color:#7F7F7F; +} +#u1618_state1 { + position:relative; + left:0px; + top:0px; + width:1646px; + height:35px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + visibility:hidden; +} +#u1618_state1_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1631_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:2px; + height:15px; + background:inherit; + background-color:rgba(128, 128, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1631 { + border-width:0px; + position:absolute; + left:1px; + top:5px; + width:2px; + height:15px; + display:flex; +} +#u1631 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1631_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1632_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:56px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1632 { + border-width:0px; + position:absolute; + left:13px; + top:5px; + width:56px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1632 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1632_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1633_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1647px; + height:2px; +} +#u1633 { + border-width:0px; + position:absolute; + left:0px; + top:34px; + width:1646px; + height:1px; + display:flex; + -webkit-transform:rotate(0.0337180630969462deg); + -moz-transform:rotate(0.0337180630969462deg); + -ms-transform:rotate(0.0337180630969462deg); + transform:rotate(0.0337180630969462deg); +} +#u1633 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1633_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1634 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1635_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:56px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#6576FF; +} +#u1635 { + border-width:0px; + position:absolute; + left:1560px; + top:1px; + width:56px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#6576FF; +} +#u1635 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1635_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1636_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:11px; + height:6px; +} +#u1636 { + border-width:0px; + position:absolute; + left:1626px; + top:10px; + width:11px; + height:6px; + display:flex; + -webkit-transform:rotate(180deg); + -moz-transform:rotate(180deg); + -ms-transform:rotate(180deg); + transform:rotate(180deg); +} +#u1636 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1636_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1637 { + border-width:0px; + position:absolute; + left:50px; + top:400px; + width:1646px; + height:440px; +} +#u1637_state0 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1646px; + height:440px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1637_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1638_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:2px; + height:15px; + background:inherit; + background-color:rgba(128, 128, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1638 { + border-width:0px; + position:absolute; + left:1px; + top:5px; + width:2px; + height:15px; + display:flex; +} +#u1638 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1638_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1639_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:56px; + height:16px; + 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:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC'; + font-weight:500; + font-style:normal; +} +#u1639 { + border-width:0px; + position:absolute; + left:13px; + top:5px; + width:56px; + height:16px; + display:flex; + font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC'; + font-weight:500; + font-style:normal; +} +#u1639 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1639_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1640_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1647px; + height:2px; +} +#u1640 { + border-width:0px; + position:absolute; + left:0px; + top:34px; + width:1646px; + height:1px; + display:flex; + -webkit-transform:rotate(0.0337180630969462deg); + -moz-transform:rotate(0.0337180630969462deg); + -ms-transform:rotate(0.0337180630969462deg); + transform:rotate(0.0337180630969462deg); +} +#u1640 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1640_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1641_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:52px; + height:15px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u1641 { + border-width:0px; + position:absolute; + left:15px; + top:59px; + width:52px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u1641 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1641_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1642_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:65px; + height:15px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u1642 { + border-width:0px; + position:absolute; + left:15px; + top:177px; + width:65px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u1642 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1642_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1643_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:48px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1643 { + border-width:0px; + position:absolute; + left:15px; + top:117px; + width:48px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1643 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1643_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1644_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:8px; +} +#u1644 { + border-width:0px; + position:absolute; + left:21px; + top:5px; + width:1px; + height:8px; + display:flex; +} +#u1644 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1644_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1645 { + border-width:0px; + position:absolute; + left:85px; + top:177px; + width:740px; + height:221px; +} +#u1646_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:220px; + height:45px; +} +#u1646 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:220px; + height:45px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1646 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1646_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1647_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:270px; + height:45px; +} +#u1647 { + border-width:0px; + position:absolute; + left:220px; + top:0px; + width:270px; + height:45px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1647 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1647_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1648_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:250px; + height:45px; +} +#u1648 { + border-width:0px; + position:absolute; + left:490px; + top:0px; + width:250px; + height:45px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1648 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1648_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1649_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:220px; + height:42px; +} +#u1649 { + border-width:0px; + position:absolute; + left:0px; + top:45px; + width:220px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1649 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1649_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1650_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:270px; + height:42px; +} +#u1650 { + border-width:0px; + position:absolute; + left:220px; + top:45px; + width:270px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#000000; + text-align:left; +} +#u1650 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1650_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1651_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:250px; + height:42px; +} +#u1651 { + border-width:0px; + position:absolute; + left:490px; + top:45px; + width:250px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1651 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1651_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1652_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:220px; + height:42px; +} +#u1652 { + border-width:0px; + position:absolute; + left:0px; + top:87px; + width:220px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1652 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1652_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1653_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:270px; + height:42px; +} +#u1653 { + border-width:0px; + position:absolute; + left:220px; + top:87px; + width:270px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1653 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1653_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1654_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:250px; + height:42px; +} +#u1654 { + border-width:0px; + position:absolute; + left:490px; + top:87px; + width:250px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1654 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1654_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1655_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:220px; + height:42px; +} +#u1655 { + border-width:0px; + position:absolute; + left:0px; + top:129px; + width:220px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1655 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1655_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1656_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:270px; + height:42px; +} +#u1656 { + border-width:0px; + position:absolute; + left:220px; + top:129px; + width:270px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1656 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1656_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1657_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:250px; + height:42px; +} +#u1657 { + border-width:0px; + position:absolute; + left:490px; + top:129px; + width:250px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1657 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1657_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1658_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:220px; + height:50px; +} +#u1658 { + border-width:0px; + position:absolute; + left:0px; + top:171px; + width:220px; + height:50px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1658 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1658_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1659_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:270px; + height:50px; +} +#u1659 { + border-width:0px; + position:absolute; + left:220px; + top:171px; + width:270px; + height:50px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1659 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1659_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1660_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:250px; + height:50px; +} +#u1660 { + border-width:0px; + position:absolute; + left:490px; + top:171px; + width:250px; + height:50px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1660 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1660_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1661 { + border-width:0px; + position:absolute; + left:425px; + top:100px; + width:8px; + height:20px; +} +#u1661_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1662 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:8px; + height:20px; +} +#u1663_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:6px; + height:20px; + 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; +} +#u1663 { + border-width:0px; + position:absolute; + left:2px; + top:0px; + width:6px; + height:20px; + display:flex; +} +#u1663 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u1663_text { + border-width:0px; + white-space:nowrap; + text-transform:none; + visibility:hidden; +} +#u1662_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + visibility:hidden; +} +#u1664 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:54px; + height:20px; +} +#u1665_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:52px; + height:20px; + 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; +} +#u1665 { + border-width:0px; + position:absolute; + left:2px; + top:0px; + width:52px; + height:20px; + display:flex; +} +#u1665 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u1665_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1666 { + border-width:0px; + position:absolute; + left:20px; + top:40px; + width:54px; + height:20px; +} +#u1667_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:52px; + height:20px; + 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; +} +#u1667 { + border-width:0px; + position:absolute; + left:2px; + top:0px; + width:52px; + height:20px; + display:flex; +} +#u1667 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u1667_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1668 { + border-width:0px; + position:absolute; + left:20px; + top:60px; + width:54px; + height:20px; +} +#u1669_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:52px; + height:20px; + 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; +} +#u1669 { + border-width:0px; + position:absolute; + left:2px; + top:0px; + width:52px; + height:20px; + display:flex; +} +#u1669 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u1669_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1670_input { + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1670_input.disabled { + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1670_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1670 { + border-width:0px; + position:absolute; + left:81px; + top:51px; + width:305px; + height:32px; + display:flex; +} +#u1670 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1670_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1670.disabled { +} +#u1671_input { + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1671_input.disabled { + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1671_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1671 { + border-width:0px; + position:absolute; + left:81px; + top:112px; + width:305px; + height:32px; + display:flex; +} +#u1671 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1671_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:305px; + height:32px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1671.disabled { +} +#u1637_state1 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1646px; + height:440px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + visibility:hidden; +} +#u1637_state1_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1672_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:2px; + height:15px; + background:inherit; + background-color:rgba(128, 128, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1672 { + border-width:0px; + position:absolute; + left:1px; + top:5px; + width:2px; + height:15px; + display:flex; +} +#u1672 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1672_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1673_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:56px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1673 { + border-width:0px; + position:absolute; + left:13px; + top:5px; + width:56px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1673 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1673_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1674_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1647px; + height:2px; +} +#u1674 { + border-width:0px; + position:absolute; + left:0px; + top:34px; + width:1646px; + height:1px; + display:flex; + -webkit-transform:rotate(0.0337180630969462deg); + -moz-transform:rotate(0.0337180630969462deg); + -ms-transform:rotate(0.0337180630969462deg); + transform:rotate(0.0337180630969462deg); +} +#u1674 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1674_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1675 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1676_input { + position:absolute; + left:0px; + top:0px; + width:242px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1676_input.disabled { + position:absolute; + left:0px; + top:0px; + width:242px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1676_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:242px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1676 { + border-width:0px; + position:absolute; + left:366px; + top:670px; + width:242px; + height:32px; + display:flex; +} +#u1676 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1676_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:242px; + height:32px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1676.disabled { +} +#u1677_input { + position:absolute; + left:0px; + top:0px; + width:242px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1677_input.disabled { + position:absolute; + left:0px; + top:0px; + width:242px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1677_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:242px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1677 { + border-width:0px; + position:absolute; + left:366px; + top:628px; + width:242px; + height:32px; + display:flex; +} +#u1677 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1677_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:242px; + height:32px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1677.disabled { +} +#u1678_input { + position:absolute; + left:0px; + top:0px; + width:242px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1678_input.disabled { + position:absolute; + left:0px; + top:0px; + width:242px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1678_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:242px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1678 { + border-width:0px; + position:absolute; + left:366px; + top:758px; + width:242px; + height:32px; + display:flex; +} +#u1678 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1678_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:242px; + height:32px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1678.disabled { +} +#u1679_input { + position:absolute; + left:0px; + top:0px; + width:242px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1679_input.disabled { + position:absolute; + left:0px; + top:0px; + width:242px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1679_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:242px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1679 { + border-width:0px; + position:absolute; + left:366px; + top:712px; + width:242px; + height:32px; + display:flex; +} +#u1679 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1679_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:242px; + height:32px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1679.disabled { +} +#u1680 { + border-width:0px; + position:absolute; + left:1615px; + top:19px; + width:75px; + height:40px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} +#u1681 { + border-width:0px; + position:absolute; + left:1527px; + top:19px; + width:88px; + height:40px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} +#u1682 { + border-width:0px; + position:absolute; + left:1427px; + top:17px; + width:100px; + height:40px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} diff --git "a/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\346\250\241\345\236\213\350\256\255\347\273\203/data.js" "b/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\346\250\241\345\236\213\350\256\255\347\273\203/data.js" new file mode 100644 index 0000000000000000000000000000000000000000..4ec365835fc8deba0bbb771e67695860f79c9593 --- /dev/null +++ "b/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\346\250\241\345\236\213\350\256\255\347\273\203/data.js" @@ -0,0 +1,7 @@ +$axure.loadCurrentPage( +(function() { + var _ = function() { var r={},a=arguments; for(var i=0; i多选
",M="3",N="ca0de65c8fa5401a8323aebebe547acd",O=" 产品型号:",P="4",Q="cfa4c72435b941de9dfe716f5e77d6b3",R=" 产品组:",S="单选,预留对应后续ADC的产品组改动
",T="5",U="dc84d32466cb4de5be01914a25c96ba1",V="* 实验名称:",W="根据"产品组-模型类型"自动生成
无产品组+模型类型则为"站点名称"
可修改,系统唯一
",X="6",Y="c541555656ca4bff8440ffa551d02182",Z="● 未训练",ba="1. 状态有 未训练,训练中,训练失败,训练完成
",bb="7",bc="7734eb23464d4191a2efd1506225134b",bd="(下拉列表)",be="1.默认选中当前文件夹
",bf="8",bg="4ccff75ce8054696af39357a67f744ce",bh="9",bi="2513c4369fe24fc6b3b9d1ae9d789bb8",bj="(图片 )",bk="1.点击编辑打开编辑算子页面
",bl="style",bm="baseStyle",bn="627587b6038d43cca051c114ac41ad32",bo="pageAlignment",bp="center",bq="fill",br="fillType",bs="solid",bt="color",bu=0xFFFFFFFF,bv="image",bw="imageAlignment",bx="near",by="imageRepeat",bz="auto",bA="favicon",bB="sketchFactor",bC="0",bD="colorStyle",bE="appliedColor",bF="fontName",bG="Applied Font",bH="borderWidth",bI="borderVisibility",bJ="borderFill",bK=0xFF797979,bL="cornerRadius",bM="cornerVisibility",bN="outerShadow",bO="on",bP=false,bQ="offsetX",bR=5,bS="offsetY",bT="blurRadius",bU="r",bV=0,bW="g",bX="b",bY="a",bZ=0.349019607843137,ca="adaptiveStyles",cb="interactionMap",cc="diagram",cd="objects",ce="id",cf="8b6a2b3553304398a63b19a7bc21e809",cg="friendlyType",ch="页面框架2",ci="referenceDiagramObject",cj="styleType",ck="visible",cl=true,cm=1920,cn=1080,co="imageOverrides",cp="masterId",cq="55fef8e9a867461aa48f363dba2f102c",cr="3f50515d10d743b2958018981a97ac27",cs="S0",ct="动态面板",cu="dynamicPanel",cv=1663,cw=530,cx="location",cy="x",cz=40,cA="y",cB=110,cC="scrollbars",cD="none",cE="fitToContent",cF="propagate",cG="diagrams",cH="bd0fd9b43d9b4329886de0c9179c56b6",cI="Axure:PanelDiagram",cJ="42e7da2624a049f98313e2919bfa38fc",cK="数据表格",cL="表格",cM="parentDynamicPanel",cN="panelIndex",cO="table",cP=1565,cQ=213,cR=55,cS="16f433fbdea04a2b9c2dc7fdf73ae406",cT="单元格",cU="tableCell",cV="'PingFangSC-Regular', 'PingFang SC'",cW="foreGroundFill",cX=0xFF555555,cY="opacity",cZ=1,da=140,db=42,dc="9b4161a6aa0a435d9aea1729826fce91",dd=0xFFE9E9E9,de="horizontalAlignment",df="left",dg="paddingLeft",dh="15",di="stateStyles",dj="mouseOver",dk=0xF9F9F9,dl="fontSize",dm="14px",dn=45,dp="images",dq="normal~",dr="images/模型训练/u1352.png",ds="c541555656ca4bff8440ffa551d02182",dt="'Helvetica'",du=165,dv=300,dw="images/模型训练/u1354.png",dx="c7da274b6c134d0eb0985052beeca15d",dy=220,dz=1000,dA="images/模型训练/u1358.png",dB="f26d2ce823df4e12ae5f12eb35b6a9f6",dC=129,dD="711b239cab0342bcbf876d422190d03c",dE="bcab522b65b94229bd1a0333943bf7a3",dF="6cddd018532d4f5da2110f3a72a870b1",dG=87,dH="8ac1e1586e06472a95ff599c17b4775e",dI="a1bf8a719bc74328a0ca398a264f793e",dJ="6cb5cc1bf6d0497885da29a78090b22d",dK=171,dL="images/模型训练/u1376.png",dM="8d50a820750e44cc947bfe661bb72779",dN="images/模型训练/u1378.png",dO="8b57484672d148d3bee1ce86bdb7d3c9",dP="images/模型训练/u1382.png",dQ="cefb67d6ef0944f78dff010a04021f2b",dR=0xFFE2E4F4,dS="images/模型训练/u1344.png",dT="6937e70d82774439b0aa3367712774ba",dU="images/模型训练/u1346.png",dV="e3555594e92248a7914a28418ba17ab9",dW="images/模型训练/u1350.png",dX="ae6053575b074661bb593a8a79264508",dY=190,dZ=810,ea="images/模型训练/u1349.png",eb="47789b1d7d5d40deb438e06ddb4f95ac",ec="images/模型训练/u1357.png",ed="f8b819621a3c4699bd5ce8f1b930958a",ee="b44a3e2694d54d2ca035b5127fa28671",ef="f155deb0f8674d16a4427fe07a71347e",eg="images/模型训练/u1381.png",eh="1fcce2714e1a462ea86fea9018ab89ab",ei=345,ej=1220,ek="images/模型训练/u1351.png",el="824ccac236d946af8468b10ee4819a6b",em="images/模型训练/u1359.png",en="cae39ca79e8442808594f5544a22b43e",eo="7b6a64d72ce4411f9b3cd6d19dcca94d",ep="ea9f5ea40daf433e94fd26495901f557",eq="images/模型训练/u1383.png",er="38f6a429ab7d466983c250014f7c6fb6",es=160,et="images/模型训练/u1345.png",eu="0e51475c403447c2971864cebfb65f88",ev="images/模型训练/u1353.png",ew="0de527c019274d91aeab04e9cfbaabaf",ex="a9655beb34db40f9b08566f6afeaf78f",ey="7e56951cc2e0441293c7f2a28f533789",ez="images/模型训练/u1377.png",eA="0966eee6b71a4823a4b52522264f564c",eB=465,eC="abb816afe0234ea4832e86724c116f88",eD="17a40070ee0542e3a3bce720a3cc36ba",eE="84254ef9700c4171ba32935f67a33c34",eF="0c5940243c2e46c6b3dbe3ab810adc8c",eG="ebfc4eba7b084b25952fbc4470d5218d",eH=180,eI=630,eJ="images/模型训练/u1348.png",eK="2cdd4bd35cd3491ca1aef524def4c28e",eL="images/模型训练/u1356.png",eM="218f71674e9744a49d6c9814084175d9",eN="30650b926df340788ccb2d7666f92e0d",eO="e771a9d5cddd43e2a5f0b5c267c040b5",eP="images/模型训练/u1380.png",eQ="cb53a70e763744ee989a30e7d4a0c248",eR="组合",eS="layer",eT=784.560606060606,eU=698.393939393939,eV="objs",eW="6c4a883147a2411d9fbaee1ca2006b2d",eX="矩形",eY="vectorShape",eZ=1240,fa=285,fb=32,fc=0xFF6576FF,fd=0xFF2DB7F5,fe="40519e9ec4264601bfb12c514e4f4867",ff="lineSpacing",fg="22px",fh="generateCompound",fi="9f8bc295e5cb4c24bef4ec6781437f7a",fj="'Microsoft YaHei Regular', 'Microsoft YaHei'",fk=0xA5000000,fl=0.647058823529412,fm=1433,fn=290,fo=28,fp=22,fq="f08bf3155ec6472a83d3f794cfaf59f3",fr="a729dce033334ba986a0fa8ae0957180",fs=1470,ft=48,fu=0xFFD9D9D9,fv="16",fw="2dbe283a85e34f44b4a003c559ba2cfe",fx=1526,fy=14,fz="paddingBottom",fA="1f2ec346d19f4532b4ad7344b4f1428d",fB=1232.56060606061,fC="dab47e21f3e8456caf24a59b65d7182e",fD=1330,fE=88,fF="paddingRight",fG="30",fH="a89ba05a39a54b77b39b5cf3d5daa8c2",fI="图片 ",fJ="imageBox",fK=1395,fL=294,fM="0.400000005960464",fN="c782fa96c9604e70bd1ad6f6697a2fbf",fO="rotation",fP="90",fQ="images/算法开发/u519.svg",fR="e0fec6b2d28345faac7b7c289c3c6427",fS="c2a2e5e690034825a965ed634b5edb64",fT=0xFF666666,fU="12px",fV=1200,fW="d3f13657532a4295a847c8f280386c08",fX=1209,fY="180",fZ="images/算法开发/u522.png",ga="f398902cc92040329729ef6b08227b0c",gb=1184.56060606061,gc="5ec9886a250a4840af55728a30d5c633",gd=1282,ge="090af810a6504c6db97e9bbda65984c2",gf=1291,gg="d48e4c42eda147a3979b35d979041398",gh=-40,gi=-110,gj="b43b6fdf50554e8881866dce73994912",gk=-242,gl=-55,gm="1db4ff41d4a44c62b558dbe4538e1d97",gn=1390,go=10,gp=80,gq="paddingTop",gr="e4749bee63c64451925009873af32f6d",gs=0xFFA0ABFF,gt="7e1d9ee8d6bf43af8c405b105fda7684",gu=1480,gv="c295424060714f60a12d24d2c8e7cb0a",gw="文本框",gx="textBox",gy=322,gz="hint",gA="4889d666e8ad4c5e81e59863039a5cc0",gB="disabled",gC="9bd0236217a94d89b0314c8c7fc75f16",gD="44157808f2934100b68f2394a66b2bba",gE=1053,gF=0xFFDBDFEA,gG="HideHintOnFocused",gH="placeholderText",gI="请输入名称关键字搜索",gJ="7734eb23464d4191a2efd1506225134b",gK="下拉列表",gL="comboBox",gM=130,gN=33,gO="c568339db4984d358bd04c4ed6515825",gP=910,gQ="597a2822725d46e093672e1b75676ae6",gR="onClick",gS="description",gT="Click时 ",gU="cases",gV="conditionString",gW="isNewIfGroup",gX="caseColorHex",gY="9D33FA",gZ="actions",ha="action",hb="linkWindow",hc="打开 新建训练 在 当前窗口",hd="displayName",he="打开链接",hf="actionInfoDescriptions",hg="新建训练",hh="target",hi="targetType",hj="新建训练.html",hk="includeVariables",hl="linkType",hm="current",hn="tabbable",ho="6df2d80c2cb9490893fd39115257c3bc",hp=100,hq="e359a3ee12d84e23ac13530242194ffe",hr="热区",hs="imageMapRegion",ht=150,hu=1425,hv=109,hw="setPanelState",hx="设置 弹窗X 到 到 9-删除 ",hy="设置面板状态",hz="弹窗X 到 9-删除",hA="设置 弹窗X 到 到 9-删除 ",hB="panelsToStates",hC="panelPath",hD="819f797d56e440318ab15d8a0973c5b4",hE="stateInfo",hF="setStateType",hG="stateNumber",hH=2,hI="stateValue",hJ="exprType",hK="stringLiteral",hL="value",hM="stos",hN="loop",hO="showWhenSet",hP="options",hQ="compress",hR="fadeWidget",hS="显示 弹窗X 灯箱效果",hT="显示/隐藏",hU="显示 弹窗X",hV=" 灯箱效果",hW="objectsToFades",hX="objectPath",hY="fadeInfo",hZ="fadeType",ia="show",ib="showType",ic="lightbox",id="bringToFront",ie=47,ig=79,ih=155,ii="5a7ce803626749d1b34cae1676f260e9",ij=64,ik=1306,il=148,im="设置 弹窗X 到 到 2-停止 ",io="弹窗X 到 2-停止",ip="设置 弹窗X 到 到 2-停止 ",iq=3,ir="9254a34b13bd49bf8b71746faf338aa0",is=65,it=158,iu=1233,iv=101,iw="设置 抽屉 到 到 State1 ",ix="抽屉 到 State1",iy="设置 抽屉 到 到 State1 ",iz="a36b8950be3a4d69907d8e37ca1d6c4b",iA=1,iB="显示 抽屉 灯箱效果",iC="显示 抽屉",iD="4e82db90f2cd42acbe09051df4a0f996",iE=46,iF=1372,iG=105,iH=0xFFFFFF,iI="30263be4239b4afc892b6b5c24e09b82",iJ="3d92b8eb76f84f4eb1d2f5528969e7dc",iK=94,iL=16,iM="4b98dba3ba994a15a9e130e35aa2418a",iN=170,iO=495,iP="bfcc427c48cb4fdfbafc7c84a2beff95",iQ=92,iR=310,iS="3fc9a11e1ad84d0987900067a001f50f",iT=120,iU=545,iV="15a360e54db84524829bfba7f55a81ef",iW=59,iX="2285372321d148ec80932747449c36c9",iY=25,iZ=705,ja="c14c65c30b284a0aaced58253f0eb4bc",jb=175,jc=699,jd="设置 S0 到 到 2 ",je="S0 到 2",jf="设置 S0 到 到 2 ",jg="f963bbf7f46b411ba4a129963224852a",jh=441,ji="30fa247639c049ea9e5930ef1a53ee98",jj=0xFF7F7F7F,jk=30,jl="7d3d6fb162ed477ba5cca542609341f5",jm=0xFFF9F9F9,jn=440,jo="deccadc65ae34e828b55e8e7ee3b43e7",jp=210,jq="6c15d247bc31412eacdb469425c7b75b",jr=431,js="da248185e3a64b58b25b56f7520f09f2",jt=78,ju="4648a3573c8b431580aeca4f87cd4352",jv=50,jw="ef53adf7422d48aca23de6085607101a",jx="97dab2bfd3dc49bf8fa3937b35038a2e",jy="0d37174f3517423f998e759d28917224",jz=102,jA=445,jB="a5d28fd3f51a429f92e35aae44b33d07",jC="36adad672002419a8b593d8d9714ff73",jD=75,jE="a74b414f32d044dea331eaa4c9b9e341",jF="81c319c867d74873952c2f14e4d1521d",jG="3e82c10bca4a429cba34c8bbbc38526f",jH=390,jI="573f8b0c14624b049993a640fa3121af",jJ=255,jK="9b7d2f4f569a451a8628ca418f366e0c",jL="2cee62d358914369a967417a8828883e",jM="f5d77e878e6345c5aa4484f587b1c05b",jN=24,jO="e06b32bfb2984f198c403a734eb9ea8a",jP="32c9152fe887432b81058a39a462b6ce",jQ=34,jR="ba2b7ee6de5148c0afc450adcdb8429c",jS=73,jT="1ef738b9f3d542f5b368232019853d1e",jU="2ce18eb4e980461fa29041b0985fe699",jV="3b6c165fee5e4b28a6c562174d57f4fc",jW="1265ec11da954831a54893cd29239770",jX=706,jY="eb341974cf3044e9bae4d5193ff249f9",jZ=700,ka="设置 S0 到 到 1 ",kb="S0 到 1",kc="设置 S0 到 到 1 ",kd="9855419ffed14fc59e98aba164a13ffb",ke=275,kf="dc84d32466cb4de5be01914a25c96ba1",kg="9330b5288ad049598b7d28d25927fa34",kh=52,ki="5809f55829284b1ca44d5072aada6c0f",kj="250747d22c4e440f88d55381f787554b",kk="dbf48898c45a4863a4187877842929eb",kl="5ae66088d16d49a9bec7997de8a9f3da",km="2b27212fac40431d8f20ceac5e4da980",kn="d661f894efa84bb68ffb824073830b0f",ko="文本域",kp="textArea",kq=0xFF333333,kr=0xFFCCCCCC,ks="3c35f7f584574732b5edbd0cff195f77",kt="42ee17691d13435b8256d8d0a814778f",ku=539,kv=0xFFD7D7D7,kw="10",kx="请输入描述信息",ky="5667cf76addb48fbb4bfccc36d046ac6",kz="'微软雅黑'",kA="fontWeight",kB="400",kC=0xFF409EFF,kD=0xF2F2F2,kE="focused",kF=64,kG=158,kH=255,kI=0.247058823529412,kJ="7ab43cffe242402abb64197ed53041a2",kK=489,kL=0.0980392156862745,kM="50字符:字母、数字、汉字、英文横杠和下划线",kN="6cbe4d75ba7646a79ecbc996a74d3539",kO=570,kP=69,kQ="d79310d2f0954210add03483c6906bdb",kR=114,kS="a95afb06f8bb41cfb654db81302b8adf",kT=339,kU="269135c55bfd418fb24b676294366fc2",kV=159,kW="ca0de65c8fa5401a8323aebebe547acd",kX="89d4ee6d307b49ebacf75dcdcf848d67",kY="7f444edbc11f4a6fb9e3ec68ce8b9979",kZ="cfa4c72435b941de9dfe716f5e77d6b3",la="10afe7e365c14cad920fba66ef7e7220",lb="9220d89891c348f2a1fc2971881defc9",lc=249,ld="828b4a0054564387b1bccb0717ceb5cf",le="33a1f9dce0384ee29d2f31cb6d4498db",lf=204,lg="93785219b4ef442191302bd60f6dc3ce",lh=384,li="10f73957215f40898cad1804691e6c40",lj="909ac07822554d3b964cdbb0dcfd5675",lk="ff6b35e77be14c1cbd6d5fc058d46a75",ll="b6ae24bb4e2b4b6e8f428417ce8f6cd8",lm=296,ln=21,lo="e645519a633946c5bf076783c31b8364",lp="4988d43d80b44008a4a415096f1632af",lq=885,lr=126,ls="16px",lt="抽屉",lu=500,lv=980,lw=1720,lx="fixedHorizontal",ly="right",lz="fixedMarginHorizontal",lA="fixedVertical",lB="top",lC="fixedMarginVertical",lD="fixedKeepInFront",lE="bothAsNeeded",lF="231f957cc6cc482dbd9c76fbfb4831f7",lG="State1",lH="7717f841bda44f75bd95072220444ba9",lI=0xFFF2F2F2,lJ="b769bdd1162a4ba1852df6716816811a",lK="形状",lL=0xFF00FF99,lM="9df11a1112d143398203dd9500c15309",lN=0xFF707070,lO=0.313725490196078,lP="innerShadow",lQ=13,lR=15,lS=450,lT="隐藏 抽屉逐渐 300毫秒",lU="隐藏 抽屉",lV="逐渐 300毫秒",lW="hide",lX="easing",lY="fade",lZ="animation",ma="duration",mb="easingHide",mc="animationHide",md="durationHide",me="images/模型训练/u1470.svg",mf="360c2ac700324a86b2b4e37e6d70f931",mg="线段",mh="horizontalLine",mi=72,mj="images/页面框架/u464.svg",mk="00ccb4df1c424d67927eaf0ab67a75d6",ml=200,mm=20,mn="verticalAlignment",mo="middle",mp="e26bc6186e744b4fb240ec104777cb9c",mq=-1600,mr="413667a532e64d29b465b76fa4a6533d",ms=2,mt="a79a1fe7ec6b4ad58fc140e383b1863a",mu=99,mv=0xFF3F8FCC,mw=0xFF8080FF,mx="2a724b0655cf4aa785ee53f78c09d0d5",my="'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC'",mz="500",mA=56,mB="10298e6a49224045bd51fbbf887fef0a",mC=26,mD="1166a9e8bb204eb28bcadc3e6578ace1",mE="89b5d092bee54ad0a94451447df56881",mF="33be10941b8c405fad5223c2c2e17776",mG=49,mH=18,mI=141,mJ="f80c2aec2e9943f78e8ee2389828de93",mK=36,mL=177,mM="4b7617f2725d45e1be5982514809b494",mN=68,mO=178,mP="c2b840836b7a4b5393559c7c8ec58b28",mQ="1dbd39ef53a04aa480382044e3fed75f",mR="026387da60454f7bafcdbc1cbd680fa0",mS=256,mT="3467d8684e8046dd9ae65119995b8aba",mU=330,mV="c5582e53f13f495eb92ce686dba4713b",mW="a81dcd48e5254b1987672f4f68e1a0c7",mX="c4aa336649774142803cdb0ab69a7c09",mY=340,mZ="339e85d7a52942179c58dc8741be5e68",na="290aec4736a744d2b86c5f2e172cd01e",nb="874658b3078e40a9ad6af0f9e7ecbee8",nc="a308b0e975ac463faa0b7ef61a4ba32b",nd="3902713e25914c3fbf432b5ea78f7246",ne="20c4117cbb6f46f19a28082349a91243",nf="images/模型训练/u1490.png",ng="5f3810a2712542b58148b2bf50ffcaaa",nh="images/模型训练/u1492.png",ni="272f5768d8134ef5b97e98739f372567",nj="9a1fec04837a48df884fe749d5273d71",nk="cd8d6abcafa04ceaa2db3cde3df0afba",nl="images/模型训练/u1498.png",nm="2513c4369fe24fc6b3b9d1ae9d789bb8",nn="becf097643434b02ab8a22c8db46260d",no=401,np=35,nq="images/模型训练/u1499.png",nr="弹窗X",ns=600,nt=660,nu=1190,nv="6519fc20aaf14aa6b0d626a3e650d833",nw="0-新增",nx="00ec56ef65164f5798c83694d0976b50",ny="2ef500d477084fd1afe56993abc6d310",nz=565,nA="隐藏 弹窗X",nB="images/页面框架/u463.svg",nC="6dca3b2e339d45828b3c4dcb1f0f561a",nD="images/算法开发/u789.svg",nE="497beafe8ecd46788534581ef634b291",nF="59f1a3fc686a4f2e846c4c89fc793988",nG=590,nH="dab10721298f4bdbbf5e98275d8479e3",nI="mouseDown",nJ=0xFD596BFE,nK="0.7",nL="20px",nM=490,nN=609,nO="images/页面框架/u467.svg",nP="mouseOver~",nQ="images/页面框架/u467_mouseOver.svg",nR="mouseDown~",nS="images/页面框架/u467_mouseDown.svg",nT="disabled~",nU="769cfb7418e2475a92091edb64c173c8",nV=0xFFF0F7FF,nW=0xFE7ABBFF,nX=0xFFE4E4E4,nY=400,nZ="images/页面框架/u468.svg",oa="images/页面框架/u468_mouseOver.svg",ob="images/页面框架/u468_mouseDown.svg",oc=0x797979,od=0.149019607843137,oe="d08056ed2bca4c859b563132d4eb6fe6",of="9-删除",og="4b6f0135f5804d7d80cee89d765fb7a4",oh="fbf11082ad02482b8c71806b5edffcee",oi="d278e6d847b948568462e3dcb3efbf32",oj="d60fd75725184053a5da485217a98a43",ok="圆形",ol="700",om=0xFFD9001B,on="ffcbe4a9a4414466aff9afe40ba64136",oo="images/算法开发/u799.svg",op="9dbf00a9535949218539066c8dddaa96",oq=70,or=85,os="16e98e5fef904f88902bf8a3a71eac7b",ot="13px",ou="ccafc9761061440b9fbe3fed99aa465b",ov="2-停止",ow="1fde1e6d11ba492f8503db9636eb0a86",ox="bfdd65f4cabc499eb4dbcdc6a853f58c",oy="9e767a8c5518430b989506f6be600fc5",oz="63c19247a6db4b0db812204976fbede5",oA="9ce44e4bd40e4914bbb571146a8e9d64",oB="4c48a9b9470641ef8f3c811cbf490077",oC="5b2a498b0c3d4e188059b251267dd994",oD=104,oE="masters",oF="55fef8e9a867461aa48f363dba2f102c",oG="Axure:Master",oH="2d07ecff5cc04d819b9ed6a702b5cad4",oI=0xFFF5F6FA,oJ="6aedc8f927674ea1939d9d2d2cc90bfd",oK=63,oL="00fe000e74e34f85910a56df6febf3b3",oM=1871,oN=967,oO="6ab221094d11442a91178c201708bc59",oP="'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'",oQ="650",oR="8c7a4c5ad69a4369a5f7788171ac0b32",oS="onLoad",oT="Load时 ",oU="setFunction",oV="设置 文字于 当前等于"[[Pagename]]"",oW="设置文本",oX="当前 为 \"[[Pagename]]\"",oY="文字于 当前等于\"[[Pagename]]\"",oZ="expr",pa="block",pb="subExprs",pc="fcall",pd="functionName",pe="SetWidgetRichText",pf="arguments",pg="pathLiteral",ph="isThis",pi="isFocused",pj="isTarget",pk="[[Pagename]]",pl="sto",pm="var",pn="pagename",po="booleanLiteral",pp="objectPaths",pq="8b6a2b3553304398a63b19a7bc21e809",pr="scriptId",ps="u1337",pt="2d07ecff5cc04d819b9ed6a702b5cad4",pu="u1338",pv="6aedc8f927674ea1939d9d2d2cc90bfd",pw="u1339",px="00fe000e74e34f85910a56df6febf3b3",py="u1340",pz="6ab221094d11442a91178c201708bc59",pA="u1341",pB="3f50515d10d743b2958018981a97ac27",pC="u1342",pD="42e7da2624a049f98313e2919bfa38fc",pE="u1343",pF="cefb67d6ef0944f78dff010a04021f2b",pG="u1344",pH="38f6a429ab7d466983c250014f7c6fb6",pI="u1345",pJ="6937e70d82774439b0aa3367712774ba",pK="u1346",pL="0966eee6b71a4823a4b52522264f564c",pM="u1347",pN="ebfc4eba7b084b25952fbc4470d5218d",pO="u1348",pP="ae6053575b074661bb593a8a79264508",pQ="u1349",pR="e3555594e92248a7914a28418ba17ab9",pS="u1350",pT="1fcce2714e1a462ea86fea9018ab89ab",pU="u1351",pV="16f433fbdea04a2b9c2dc7fdf73ae406",pW="u1352",pX="0e51475c403447c2971864cebfb65f88",pY="u1353",pZ="u1354",qa="abb816afe0234ea4832e86724c116f88",qb="u1355",qc="2cdd4bd35cd3491ca1aef524def4c28e",qd="u1356",qe="47789b1d7d5d40deb438e06ddb4f95ac",qf="u1357",qg="c7da274b6c134d0eb0985052beeca15d",qh="u1358",qi="824ccac236d946af8468b10ee4819a6b",qj="u1359",qk="6cddd018532d4f5da2110f3a72a870b1",ql="u1360",qm="0de527c019274d91aeab04e9cfbaabaf",qn="u1361",qo="8ac1e1586e06472a95ff599c17b4775e",qp="u1362",qq="17a40070ee0542e3a3bce720a3cc36ba",qr="u1363",qs="218f71674e9744a49d6c9814084175d9",qt="u1364",qu="f8b819621a3c4699bd5ce8f1b930958a",qv="u1365",qw="a1bf8a719bc74328a0ca398a264f793e",qx="u1366",qy="cae39ca79e8442808594f5544a22b43e",qz="u1367",qA="f26d2ce823df4e12ae5f12eb35b6a9f6",qB="u1368",qC="a9655beb34db40f9b08566f6afeaf78f",qD="u1369",qE="711b239cab0342bcbf876d422190d03c",qF="u1370",qG="84254ef9700c4171ba32935f67a33c34",qH="u1371",qI="30650b926df340788ccb2d7666f92e0d",qJ="u1372",qK="b44a3e2694d54d2ca035b5127fa28671",qL="u1373",qM="bcab522b65b94229bd1a0333943bf7a3",qN="u1374",qO="7b6a64d72ce4411f9b3cd6d19dcca94d",qP="u1375",qQ="6cb5cc1bf6d0497885da29a78090b22d",qR="u1376",qS="7e56951cc2e0441293c7f2a28f533789",qT="u1377",qU="8d50a820750e44cc947bfe661bb72779",qV="u1378",qW="0c5940243c2e46c6b3dbe3ab810adc8c",qX="u1379",qY="e771a9d5cddd43e2a5f0b5c267c040b5",qZ="u1380",ra="f155deb0f8674d16a4427fe07a71347e",rb="u1381",rc="8b57484672d148d3bee1ce86bdb7d3c9",rd="u1382",re="ea9f5ea40daf433e94fd26495901f557",rf="u1383",rg="cb53a70e763744ee989a30e7d4a0c248",rh="u1384",ri="6c4a883147a2411d9fbaee1ca2006b2d",rj="u1385",rk="9f8bc295e5cb4c24bef4ec6781437f7a",rl="u1386",rm="a729dce033334ba986a0fa8ae0957180",rn="u1387",ro="2dbe283a85e34f44b4a003c559ba2cfe",rp="u1388",rq="1f2ec346d19f4532b4ad7344b4f1428d",rr="u1389",rs="dab47e21f3e8456caf24a59b65d7182e",rt="u1390",ru="a89ba05a39a54b77b39b5cf3d5daa8c2",rv="u1391",rw="e0fec6b2d28345faac7b7c289c3c6427",rx="u1392",ry="c2a2e5e690034825a965ed634b5edb64",rz="u1393",rA="d3f13657532a4295a847c8f280386c08",rB="u1394",rC="f398902cc92040329729ef6b08227b0c",rD="u1395",rE="5ec9886a250a4840af55728a30d5c633",rF="u1396",rG="090af810a6504c6db97e9bbda65984c2",rH="u1397",rI="d48e4c42eda147a3979b35d979041398",rJ="u1398",rK="b43b6fdf50554e8881866dce73994912",rL="u1399",rM="1db4ff41d4a44c62b558dbe4538e1d97",rN="u1400",rO="7e1d9ee8d6bf43af8c405b105fda7684",rP="u1401",rQ="c295424060714f60a12d24d2c8e7cb0a",rR="u1402",rS="u1403",rT="597a2822725d46e093672e1b75676ae6",rU="u1404",rV="6df2d80c2cb9490893fd39115257c3bc",rW="u1405",rX="e359a3ee12d84e23ac13530242194ffe",rY="u1406",rZ="5a7ce803626749d1b34cae1676f260e9",sa="u1407",sb="9254a34b13bd49bf8b71746faf338aa0",sc="u1408",sd="4e82db90f2cd42acbe09051df4a0f996",se="u1409",sf="3d92b8eb76f84f4eb1d2f5528969e7dc",sg="u1410",sh="bfcc427c48cb4fdfbafc7c84a2beff95",si="u1411",sj="3fc9a11e1ad84d0987900067a001f50f",sk="u1412",sl="15a360e54db84524829bfba7f55a81ef",sm="u1413",sn="c14c65c30b284a0aaced58253f0eb4bc",so="u1414",sp="f963bbf7f46b411ba4a129963224852a",sq="u1415",sr="30fa247639c049ea9e5930ef1a53ee98",ss="u1416",st="deccadc65ae34e828b55e8e7ee3b43e7",su="u1417",sv="6c15d247bc31412eacdb469425c7b75b",sw="u1418",sx="da248185e3a64b58b25b56f7520f09f2",sy="u1419",sz="4648a3573c8b431580aeca4f87cd4352",sA="u1420",sB="ef53adf7422d48aca23de6085607101a",sC="u1421",sD="97dab2bfd3dc49bf8fa3937b35038a2e",sE="u1422",sF="0d37174f3517423f998e759d28917224",sG="u1423",sH="a5d28fd3f51a429f92e35aae44b33d07",sI="u1424",sJ="36adad672002419a8b593d8d9714ff73",sK="u1425",sL="a74b414f32d044dea331eaa4c9b9e341",sM="u1426",sN="81c319c867d74873952c2f14e4d1521d",sO="u1427",sP="3e82c10bca4a429cba34c8bbbc38526f",sQ="u1428",sR="573f8b0c14624b049993a640fa3121af",sS="u1429",sT="9b7d2f4f569a451a8628ca418f366e0c",sU="u1430",sV="2cee62d358914369a967417a8828883e",sW="u1431",sX="f5d77e878e6345c5aa4484f587b1c05b",sY="u1432",sZ="e06b32bfb2984f198c403a734eb9ea8a",ta="u1433",tb="32c9152fe887432b81058a39a462b6ce",tc="u1434",td="ba2b7ee6de5148c0afc450adcdb8429c",te="u1435",tf="1ef738b9f3d542f5b368232019853d1e",tg="u1436",th="2ce18eb4e980461fa29041b0985fe699",ti="u1437",tj="1265ec11da954831a54893cd29239770",tk="u1438",tl="eb341974cf3044e9bae4d5193ff249f9",tm="u1439",tn="9855419ffed14fc59e98aba164a13ffb",to="u1440",tp="u1441",tq="9330b5288ad049598b7d28d25927fa34",tr="u1442",ts="u1443",tt="250747d22c4e440f88d55381f787554b",tu="u1444",tv="u1445",tw="5ae66088d16d49a9bec7997de8a9f3da",tx="u1446",ty="2b27212fac40431d8f20ceac5e4da980",tz="u1447",tA="d661f894efa84bb68ffb824073830b0f",tB="u1448",tC="5667cf76addb48fbb4bfccc36d046ac6",tD="u1449",tE="6cbe4d75ba7646a79ecbc996a74d3539",tF="u1450",tG="d79310d2f0954210add03483c6906bdb",tH="u1451",tI="a95afb06f8bb41cfb654db81302b8adf",tJ="u1452",tK="269135c55bfd418fb24b676294366fc2",tL="u1453",tM="u1454",tN="89d4ee6d307b49ebacf75dcdcf848d67",tO="u1455",tP="7f444edbc11f4a6fb9e3ec68ce8b9979",tQ="u1456",tR="u1457",tS="10afe7e365c14cad920fba66ef7e7220",tT="u1458",tU="9220d89891c348f2a1fc2971881defc9",tV="u1459",tW="828b4a0054564387b1bccb0717ceb5cf",tX="u1460",tY="33a1f9dce0384ee29d2f31cb6d4498db",tZ="u1461",ua="93785219b4ef442191302bd60f6dc3ce",ub="u1462",uc="10f73957215f40898cad1804691e6c40",ud="u1463",ue="909ac07822554d3b964cdbb0dcfd5675",uf="u1464",ug="ff6b35e77be14c1cbd6d5fc058d46a75",uh="u1465",ui="b6ae24bb4e2b4b6e8f428417ce8f6cd8",uj="u1466",uk="e645519a633946c5bf076783c31b8364",ul="u1467",um="a36b8950be3a4d69907d8e37ca1d6c4b",un="u1468",uo="7717f841bda44f75bd95072220444ba9",up="u1469",uq="b769bdd1162a4ba1852df6716816811a",ur="u1470",us="360c2ac700324a86b2b4e37e6d70f931",ut="u1471",uu="00ccb4df1c424d67927eaf0ab67a75d6",uv="u1472",uw="e26bc6186e744b4fb240ec104777cb9c",ux="u1473",uy="413667a532e64d29b465b76fa4a6533d",uz="u1474",uA="2a724b0655cf4aa785ee53f78c09d0d5",uB="u1475",uC="10298e6a49224045bd51fbbf887fef0a",uD="u1476",uE="1166a9e8bb204eb28bcadc3e6578ace1",uF="u1477",uG="89b5d092bee54ad0a94451447df56881",uH="u1478",uI="33be10941b8c405fad5223c2c2e17776",uJ="u1479",uK="f80c2aec2e9943f78e8ee2389828de93",uL="u1480",uM="4b7617f2725d45e1be5982514809b494",uN="u1481",uO="c2b840836b7a4b5393559c7c8ec58b28",uP="u1482",uQ="1dbd39ef53a04aa480382044e3fed75f",uR="u1483",uS="026387da60454f7bafcdbc1cbd680fa0",uT="u1484",uU="3467d8684e8046dd9ae65119995b8aba",uV="u1485",uW="c5582e53f13f495eb92ce686dba4713b",uX="u1486",uY="a81dcd48e5254b1987672f4f68e1a0c7",uZ="u1487",va="c4aa336649774142803cdb0ab69a7c09",vb="u1488",vc="3902713e25914c3fbf432b5ea78f7246",vd="u1489",ve="20c4117cbb6f46f19a28082349a91243",vf="u1490",vg="339e85d7a52942179c58dc8741be5e68",vh="u1491",vi="5f3810a2712542b58148b2bf50ffcaaa",vj="u1492",vk="874658b3078e40a9ad6af0f9e7ecbee8",vl="u1493",vm="272f5768d8134ef5b97e98739f372567",vn="u1494",vo="290aec4736a744d2b86c5f2e172cd01e",vp="u1495",vq="9a1fec04837a48df884fe749d5273d71",vr="u1496",vs="a308b0e975ac463faa0b7ef61a4ba32b",vt="u1497",vu="cd8d6abcafa04ceaa2db3cde3df0afba",vv="u1498",vw="u1499",vx="819f797d56e440318ab15d8a0973c5b4",vy="u1500",vz="00ec56ef65164f5798c83694d0976b50",vA="u1501",vB="2ef500d477084fd1afe56993abc6d310",vC="u1502",vD="6dca3b2e339d45828b3c4dcb1f0f561a",vE="u1503",vF="497beafe8ecd46788534581ef634b291",vG="u1504",vH="59f1a3fc686a4f2e846c4c89fc793988",vI="u1505",vJ="dab10721298f4bdbbf5e98275d8479e3",vK="u1506",vL="769cfb7418e2475a92091edb64c173c8",vM="u1507",vN="4b6f0135f5804d7d80cee89d765fb7a4",vO="u1508",vP="fbf11082ad02482b8c71806b5edffcee",vQ="u1509",vR="d278e6d847b948568462e3dcb3efbf32",vS="u1510",vT="d60fd75725184053a5da485217a98a43",vU="u1511",vV="9dbf00a9535949218539066c8dddaa96",vW="u1512",vX="16e98e5fef904f88902bf8a3a71eac7b",vY="u1513",vZ="1fde1e6d11ba492f8503db9636eb0a86",wa="u1514",wb="bfdd65f4cabc499eb4dbcdc6a853f58c",wc="u1515",wd="9e767a8c5518430b989506f6be600fc5",we="u1516",wf="63c19247a6db4b0db812204976fbede5",wg="u1517",wh="9ce44e4bd40e4914bbb571146a8e9d64",wi="u1518",wj="4c48a9b9470641ef8f3c811cbf490077",wk="u1519",wl="5b2a498b0c3d4e188059b251267dd994",wm="u1520"; +return _creator(); +})()); \ No newline at end of file diff --git "a/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\346\250\241\345\236\213\350\256\255\347\273\203/styles.css" "b/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\346\250\241\345\236\213\350\256\255\347\273\203/styles.css" new file mode 100644 index 0000000000000000000000000000000000000000..6cce2dc523ee3ef3536717a7a6b95d9bb37904a1 --- /dev/null +++ "b/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\346\250\241\345\236\213\350\256\255\347\273\203/styles.css" @@ -0,0 +1,7449 @@ +body { + margin:0px; + background-image:none; + position:relative; + left:0px; + width:1920px; + margin-left:auto; + margin-right:auto; + text-align:left; +} +.form_sketch { + border-color:transparent; + background-color:transparent; +} +#base { + position:absolute; + z-index:0; +} +#u1338_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1920px; + height:1080px; + background:inherit; + background-color:rgba(245, 246, 250, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1338 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1920px; + height:1080px; + display:flex; +} +#u1338 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1338_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1339_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1920px; + height:63px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1339 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1920px; + height:63px; + display:flex; +} +#u1339 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1339_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1340_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1871px; + height:967px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1340 { + border-width:0px; + position:absolute; + left:20px; + top:88px; + width:1871px; + height:967px; + display:flex; +} +#u1340 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1340_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1341_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:400px; + height:22px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:16px; +} +#u1341 { + border-width:0px; + position:absolute; + left:35px; + top:21px; + width:400px; + height:22px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:16px; +} +#u1341 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1341_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1342 { + border-width:0px; + position:absolute; + left:40px; + top:110px; + width:1663px; + height:530px; +} +#u1342_state0 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1663px; + height:530px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1342_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1343 { + border-width:0px; + position:absolute; + left:0px; + top:55px; + width:1565px; + height:213px; +} +#u1344_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:140px; + height:45px; +} +#u1344 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:140px; + height:45px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1344 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1344_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1345_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:160px; + height:45px; +} +#u1345 { + border-width:0px; + position:absolute; + left:140px; + top:0px; + width:160px; + height:45px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1345 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1345_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1346_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:165px; + height:45px; +} +#u1346 { + border-width:0px; + position:absolute; + left:300px; + top:0px; + width:165px; + height:45px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1346 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1346_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1347_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:165px; + height:45px; +} +#u1347 { + border-width:0px; + position:absolute; + left:465px; + top:0px; + width:165px; + height:45px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1347 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1347_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1348_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:180px; + height:45px; +} +#u1348 { + border-width:0px; + position:absolute; + left:630px; + top:0px; + width:180px; + height:45px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1348 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1348_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1349_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:190px; + height:45px; +} +#u1349 { + border-width:0px; + position:absolute; + left:810px; + top:0px; + width:190px; + height:45px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1349 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1349_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1350_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:220px; + height:45px; +} +#u1350 { + border-width:0px; + position:absolute; + left:1000px; + top:0px; + width:220px; + height:45px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1350 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1350_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1351_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:345px; + height:45px; +} +#u1351 { + border-width:0px; + position:absolute; + left:1220px; + top:0px; + width:345px; + height:45px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1351 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1351_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1352_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:140px; + height:42px; +} +#u1352 { + border-width:0px; + position:absolute; + left:0px; + top:45px; + width:140px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1352 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1352_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1353_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:160px; + height:42px; +} +#u1353 { + border-width:0px; + position:absolute; + left:140px; + top:45px; + width:160px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1353 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1353_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1354_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:165px; + height:42px; +} +#u1354 { + border-width:0px; + position:absolute; + left:300px; + top:45px; + width:165px; + height:42px; + display:flex; + font-family:'Helvetica'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1354 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1354_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1355_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:165px; + height:42px; +} +#u1355 { + border-width:0px; + position:absolute; + left:465px; + top:45px; + width:165px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1355 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1355_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1356_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:180px; + height:42px; +} +#u1356 { + border-width:0px; + position:absolute; + left:630px; + top:45px; + width:180px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1356 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1356_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1357_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:190px; + height:42px; +} +#u1357 { + border-width:0px; + position:absolute; + left:810px; + top:45px; + width:190px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1357 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1357_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1358_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:220px; + height:42px; +} +#u1358 { + border-width:0px; + position:absolute; + left:1000px; + top:45px; + width:220px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1358 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1358_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1359_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:345px; + height:42px; +} +#u1359 { + border-width:0px; + position:absolute; + left:1220px; + top:45px; + width:345px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1359 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1359_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1360_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:140px; + height:42px; +} +#u1360 { + border-width:0px; + position:absolute; + left:0px; + top:87px; + width:140px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1360 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1360_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1361_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:160px; + height:42px; +} +#u1361 { + border-width:0px; + position:absolute; + left:140px; + top:87px; + width:160px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1361 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1361_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1362_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:165px; + height:42px; +} +#u1362 { + border-width:0px; + position:absolute; + left:300px; + top:87px; + width:165px; + height:42px; + display:flex; + font-family:'Helvetica'; + font-weight:400; + font-style:normal; + font-size:14px; + text-align:left; +} +#u1362 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1362_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1363_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:165px; + height:42px; +} +#u1363 { + border-width:0px; + position:absolute; + left:465px; + top:87px; + width:165px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1363 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1363_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1364_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:180px; + height:42px; +} +#u1364 { + border-width:0px; + position:absolute; + left:630px; + top:87px; + width:180px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1364 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1364_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1365_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:190px; + height:42px; +} +#u1365 { + border-width:0px; + position:absolute; + left:810px; + top:87px; + width:190px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1365 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1365_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1366_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:220px; + height:42px; +} +#u1366 { + border-width:0px; + position:absolute; + left:1000px; + top:87px; + width:220px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1366 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1366_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1367_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:345px; + height:42px; +} +#u1367 { + border-width:0px; + position:absolute; + left:1220px; + top:87px; + width:345px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1367 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1367_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1368_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:140px; + height:42px; +} +#u1368 { + border-width:0px; + position:absolute; + left:0px; + top:129px; + width:140px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1368 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1368_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1369_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:160px; + height:42px; +} +#u1369 { + border-width:0px; + position:absolute; + left:140px; + top:129px; + width:160px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1369 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1369_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1370_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:165px; + height:42px; +} +#u1370 { + border-width:0px; + position:absolute; + left:300px; + top:129px; + width:165px; + height:42px; + display:flex; + font-family:'Helvetica'; + font-weight:400; + font-style:normal; + font-size:14px; + text-align:left; +} +#u1370 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1370_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1371_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:165px; + height:42px; +} +#u1371 { + border-width:0px; + position:absolute; + left:465px; + top:129px; + width:165px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1371 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1371_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1372_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:180px; + height:42px; +} +#u1372 { + border-width:0px; + position:absolute; + left:630px; + top:129px; + width:180px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1372 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1372_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1373_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:190px; + height:42px; +} +#u1373 { + border-width:0px; + position:absolute; + left:810px; + top:129px; + width:190px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1373 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1373_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1374_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:220px; + height:42px; +} +#u1374 { + border-width:0px; + position:absolute; + left:1000px; + top:129px; + width:220px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1374 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1374_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1375_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:345px; + height:42px; +} +#u1375 { + border-width:0px; + position:absolute; + left:1220px; + top:129px; + width:345px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1375 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1375_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1376_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:140px; + height:42px; +} +#u1376 { + border-width:0px; + position:absolute; + left:0px; + top:171px; + width:140px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1376 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1376_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1377_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:160px; + height:42px; +} +#u1377 { + border-width:0px; + position:absolute; + left:140px; + top:171px; + width:160px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1377 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1377_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1378_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:165px; + height:42px; +} +#u1378 { + border-width:0px; + position:absolute; + left:300px; + top:171px; + width:165px; + height:42px; + display:flex; + font-family:'Helvetica'; + font-weight:400; + font-style:normal; + font-size:14px; + text-align:left; +} +#u1378 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1378_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1379_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:165px; + height:42px; +} +#u1379 { + border-width:0px; + position:absolute; + left:465px; + top:171px; + width:165px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1379 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1379_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1380_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:180px; + height:42px; +} +#u1380 { + border-width:0px; + position:absolute; + left:630px; + top:171px; + width:180px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1380 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1380_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1381_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:190px; + height:42px; +} +#u1381 { + border-width:0px; + position:absolute; + left:810px; + top:171px; + width:190px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1381 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1381_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1382_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:220px; + height:42px; +} +#u1382 { + border-width:0px; + position:absolute; + left:1000px; + top:171px; + width:220px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1382 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1382_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1383_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:345px; + height:42px; +} +#u1383 { + border-width:0px; + position:absolute; + left:1220px; + top:171px; + width:345px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1383 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1383_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1384 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1385_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:32px; + height:32px; + background:inherit; + background-color:rgba(101, 118, 255, 1); + border:none; + border-radius:6px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:14px; + color:#FFFFFF; + line-height:22px; +} +#u1385 { + border-width:0px; + position:absolute; + left:1240px; + top:285px; + width:32px; + height:32px; + display:flex; + font-size:14px; + color:#FFFFFF; + line-height:22px; +} +#u1385 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1385_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1386_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:28px; + height:22px; + 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:'Microsoft YaHei Regular', 'Microsoft YaHei'; + font-weight:400; + font-style:normal; + font-size:14px; + color:rgba(0, 0, 0, 0.647058823529412); + line-height:22px; +} +#u1386 { + border-width:0px; + position:absolute; + left:1433px; + top:290px; + width:28px; + height:22px; + display:flex; + font-family:'Microsoft YaHei Regular', 'Microsoft YaHei'; + font-weight:400; + font-style:normal; + font-size:14px; + color:rgba(0, 0, 0, 0.647058823529412); + line-height:22px; +} +#u1386 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1386_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1387_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:48px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(217, 217, 217, 1); + border-radius:6px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:14px; + color:rgba(0, 0, 0, 0.647058823529412); + text-align:left; + line-height:22px; +} +#u1387 { + border-width:0px; + position:absolute; + left:1470px; + top:285px; + width:48px; + height:32px; + display:flex; + font-size:14px; + color:rgba(0, 0, 0, 0.647058823529412); + text-align:left; + line-height:22px; +} +#u1387 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 16px; + box-sizing:border-box; + width:100%; +} +#u1387_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1388_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:14px; + height:22px; + 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:'Microsoft YaHei Regular', 'Microsoft YaHei'; + font-weight:400; + font-style:normal; + font-size:14px; + color:rgba(0, 0, 0, 0.647058823529412); + line-height:22px; +} +#u1388 { + border-width:0px; + position:absolute; + left:1526px; + top:290px; + width:14px; + height:22px; + display:flex; + font-family:'Microsoft YaHei Regular', 'Microsoft YaHei'; + font-weight:400; + font-style:normal; + font-size:14px; + color:rgba(0, 0, 0, 0.647058823529412); + line-height:22px; +} +#u1388 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 2px 0px; + box-sizing:border-box; + width:100%; +} +#u1388_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1389 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1390_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:88px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(217, 217, 217, 1); + border-radius:6px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:14px; + color:rgba(0, 0, 0, 0.647058823529412); + text-align:left; + line-height:22px; +} +#u1390 { + border-width:0px; + position:absolute; + left:1330px; + top:285px; + width:88px; + height:32px; + display:flex; + font-size:14px; + color:rgba(0, 0, 0, 0.647058823529412); + text-align:left; + line-height:22px; +} +#u1390 .text { + position:absolute; + align-self:center; + padding:2px 30px 2px 8px; + box-sizing:border-box; + width:100%; +} +#u1390_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1391_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u1391 { + border-width:0px; + position:absolute; + left:1395px; + top:294px; + width:14px; + height:14px; + display:flex; + -webkit-transform:rotate(90deg); + -moz-transform:rotate(90deg); + -ms-transform:rotate(90deg); + transform:rotate(90deg); + opacity:0.400000005960464; +} +#u1391 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1391_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1392 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1393_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:32px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(217, 217, 217, 1); + border-radius:6px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:12px; + color:#666666; +} +#u1393 { + border-width:0px; + position:absolute; + left:1200px; + top:285px; + width:32px; + height:32px; + display:flex; + font-size:12px; + color:#666666; +} +#u1393 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1393_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1394_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u1394 { + border-width:0px; + position:absolute; + left:1209px; + top:294px; + width:14px; + height:14px; + display:flex; + -webkit-transform:rotate(180deg); + -moz-transform:rotate(180deg); + -ms-transform:rotate(180deg); + transform:rotate(180deg); + opacity:0.400000005960464; +} +#u1394 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1394_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1395 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1396_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:32px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(217, 217, 217, 1); + border-radius:6px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:12px; + color:#666666; +} +#u1396 { + border-width:0px; + position:absolute; + left:1282px; + top:285px; + width:32px; + height:32px; + display:flex; + font-size:12px; + color:#666666; +} +#u1396 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1396_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1397_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u1397 { + border-width:0px; + position:absolute; + left:1291px; + top:294px; + width:14px; + height:14px; + display:flex; + opacity:0.400000005960464; +} +#u1397 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1397_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1398 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1399 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1400_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:80px; + height:32px; + background:inherit; + background-color:rgba(101, 118, 255, 1); + border:none; + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#FFFFFF; + line-height:22px; +} +#u1400 { + border-width:0px; + position:absolute; + left:1390px; + top:10px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#FFFFFF; + line-height:22px; +} +#u1400 .text { + position:absolute; + align-self:center; + padding:0px 16px 0px 16px; + box-sizing:border-box; + width:100%; +} +#u1400_div.mouseOver { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:80px; + height:32px; + background:inherit; + background-color:rgba(160, 171, 255, 1); + border:none; + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#FFFFFF; + line-height:22px; +} +#u1400.mouseOver { +} +#u1400_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1401_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:80px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(217, 217, 217, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:rgba(0, 0, 0, 0.647058823529412); + line-height:22px; +} +#u1401 { + border-width:0px; + position:absolute; + left:1480px; + top:10px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:rgba(0, 0, 0, 0.647058823529412); + line-height:22px; +} +#u1401 .text { + position:absolute; + align-self:center; + padding:2px 16px 2px 16px; + box-sizing:border-box; + width:100%; +} +#u1401_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1402_input { + position:absolute; + left:0px; + top:0px; + width:322px; + height:32px; + padding:3px 2px 3px 7px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1402_input.disabled { + position:absolute; + left:0px; + top:0px; + width:322px; + height:32px; + padding:3px 2px 3px 7px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1402_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:322px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1402 { + border-width:0px; + position:absolute; + left:1053px; + top:10px; + width:322px; + height:32px; + display:flex; +} +#u1402 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 7px; + box-sizing:border-box; + width:100%; +} +#u1402_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:322px; + height:32px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1402.disabled { +} +#u1403_input { + position:absolute; + left:0px; + top:0px; + width:130px; + height:33px; + padding:3px 2px 3px 8px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1403_input.disabled { + position:absolute; + left:0px; + top:0px; + width:130px; + height:33px; + padding:3px 2px 3px 8px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1403_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:130px; + height:33px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:14px; +} +#u1403 { + border-width:0px; + position:absolute; + left:910px; + top:10px; + width:130px; + height:33px; + display:flex; + font-size:14px; +} +#u1403 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 8px; + box-sizing:border-box; + width:100%; +} +#u1403_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:130px; + height:33px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:14px; +} +#u1403.disabled { +} +.u1403_input_option { + font-size:14px; +} +#u1404_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:80px; + height:32px; + background:inherit; + background-color:rgba(101, 118, 255, 1); + border:none; + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#FFFFFF; + line-height:22px; +} +#u1404 { + border-width:0px; + position:absolute; + left:0px; + top:10px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#FFFFFF; + line-height:22px; +} +#u1404 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1404_div.mouseOver { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:80px; + height:32px; + background:inherit; + background-color:rgba(160, 171, 255, 1); + border:none; + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#FFFFFF; + line-height:22px; +} +#u1404.mouseOver { +} +#u1404_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1405_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:80px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(217, 217, 217, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:rgba(0, 0, 0, 0.647058823529412); + line-height:22px; +} +#u1405 { + border-width:0px; + position:absolute; + left:100px; + top:10px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:rgba(0, 0, 0, 0.647058823529412); + line-height:22px; +} +#u1405 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1405_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1406 { + border-width:0px; + position:absolute; + left:1425px; + top:109px; + width:45px; + height:150px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} +#u1407 { + border-width:0px; + position:absolute; + left:1306px; + top:148px; + width:64px; + height:28px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} +#u1408 { + border-width:0px; + position:absolute; + left:1233px; + top:101px; + width:65px; + height:158px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} +#u1409 { + border-width:0px; + position:absolute; + left:1372px; + top:105px; + width:46px; + height:158px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} +#u1342_state1 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1663px; + height:530px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + visibility:hidden; +} +#u1342_state1_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1410_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:94px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1410 { + border-width:0px; + position:absolute; + left:170px; + top:495px; + width:94px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1410 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1410_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1411_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:92px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1411 { + border-width:0px; + position:absolute; + left:310px; + top:165px; + width:92px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1411 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1411_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1412_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:120px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1412 { + border-width:0px; + position:absolute; + left:170px; + top:545px; + width:120px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1412 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1412_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1413_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:59px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1413 { + border-width:0px; + position:absolute; + left:25px; + top:705px; + width:59px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1413 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1413_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1414_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:80px; + height:32px; + background:inherit; + background-color:rgba(101, 118, 255, 1); + border:none; + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#FFFFFF; + line-height:22px; +} +#u1414 { + border-width:0px; + position:absolute; + left:175px; + top:699px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#FFFFFF; + line-height:22px; +} +#u1414 .text { + position:absolute; + align-self:center; + padding:0px 16px 0px 16px; + box-sizing:border-box; + width:100%; +} +#u1414_div.mouseOver { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:80px; + height:32px; + background:inherit; + background-color:rgba(160, 171, 255, 1); + border:none; + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#FFFFFF; + line-height:22px; +} +#u1414.mouseOver { +} +#u1414_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1415 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1416_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; + background:inherit; + background-color:rgba(249, 249, 249, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(127, 127, 127, 1); + border-radius:3px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#7F7F7F; +} +#u1416 { + border-width:0px; + position:absolute; + left:170px; + top:440px; + width:100px; + height:30px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#7F7F7F; +} +#u1416 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1416_div.mouseOver { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; + background:inherit; + background-color:rgba(249, 249, 249, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(127, 127, 127, 1); + border-radius:3px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#7F7F7F; +} +#u1416.mouseOver { +} +#u1416_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1417_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:28px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1417 { + border-width:0px; + position:absolute; + left:310px; + top:210px; + width:28px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1417 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1417_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1418_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:431px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1418 { + border-width:0px; + position:absolute; + left:310px; + top:300px; + width:431px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1418 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1418_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1419_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:78px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1419 { + border-width:0px; + position:absolute; + left:25px; + top:495px; + width:78px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1419 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1419_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1420_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:50px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1420 { + border-width:0px; + position:absolute; + left:170px; + top:120px; + width:50px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1420 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1420_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1421_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:50px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1421 { + border-width:0px; + position:absolute; + left:170px; + top:165px; + width:50px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1421 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1421_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1422_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:50px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1422 { + border-width:0px; + position:absolute; + left:25px; + top:545px; + width:50px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1422 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1422_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1423_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:102px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1423 { + border-width:0px; + position:absolute; + left:25px; + top:445px; + width:102px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1423 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1423_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1424_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:78px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1424 { + border-width:0px; + position:absolute; + left:25px; + top:30px; + width:78px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1424 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1424_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1425_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:78px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1425 { + border-width:0px; + position:absolute; + left:170px; + top:75px; + width:78px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1425 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1425_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1426_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:78px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1426 { + border-width:0px; + position:absolute; + left:170px; + top:300px; + width:78px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1426 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1426_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1427_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:50px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1427 { + border-width:0px; + position:absolute; + left:170px; + top:345px; + width:50px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1427 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1427_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1428_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:78px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1428 { + border-width:0px; + position:absolute; + left:170px; + top:390px; + width:78px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1428 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1428_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1429_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:64px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1429 { + border-width:0px; + position:absolute; + left:170px; + top:255px; + width:64px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1429 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1429_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1430_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:78px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1430 { + border-width:0px; + position:absolute; + left:170px; + top:210px; + width:78px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1430 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1430_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1431_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:50px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1431 { + border-width:0px; + position:absolute; + left:170px; + top:30px; + width:50px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1431 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1431_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1432_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:24px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1432 { + border-width:0px; + position:absolute; + left:310px; + top:30px; + width:24px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1432 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1432_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1433_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:24px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1433 { + border-width:0px; + position:absolute; + left:310px; + top:75px; + width:24px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1433 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1433_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1434_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:34px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1434 { + border-width:0px; + position:absolute; + left:310px; + top:120px; + width:34px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1434 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1434_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1435_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:73px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1435 { + border-width:0px; + position:absolute; + left:310px; + top:255px; + width:73px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1435 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1435_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1436_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:28px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1436 { + border-width:0px; + position:absolute; + left:310px; + top:345px; + width:28px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1436 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1436_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1437_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:28px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1437 { + border-width:0px; + position:absolute; + left:310px; + top:390px; + width:28px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1437 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1437_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1342_state2 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1663px; + height:530px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + visibility:hidden; +} +#u1342_state2_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1438_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:59px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1438 { + border-width:0px; + position:absolute; + left:25px; + top:706px; + width:59px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1438 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1438_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1439_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:80px; + height:32px; + background:inherit; + background-color:rgba(101, 118, 255, 1); + border:none; + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#FFFFFF; + line-height:22px; +} +#u1439 { + border-width:0px; + position:absolute; + left:175px; + top:700px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#FFFFFF; + line-height:22px; +} +#u1439 .text { + position:absolute; + align-self:center; + padding:0px 16px 0px 16px; + box-sizing:border-box; + width:100%; +} +#u1439_div.mouseOver { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:80px; + height:32px; + background:inherit; + background-color:rgba(160, 171, 255, 1); + border:none; + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#FFFFFF; + line-height:22px; +} +#u1439.mouseOver { +} +#u1439_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1440_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:80px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(217, 217, 217, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:rgba(0, 0, 0, 0.647058823529412); + line-height:22px; +} +#u1440 { + border-width:0px; + position:absolute; + left:275px; + top:700px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:rgba(0, 0, 0, 0.647058823529412); + line-height:22px; +} +#u1440 .text { + position:absolute; + align-self:center; + padding:2px 16px 2px 16px; + box-sizing:border-box; + width:100%; +} +#u1440_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1441_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:80px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1441 { + border-width:0px; + position:absolute; + left:25px; + top:495px; + width:80px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1441 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1441_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1442_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:52px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1442 { + border-width:0px; + position:absolute; + left:170px; + top:120px; + width:52px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1442 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1442_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1443_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:52px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1443 { + border-width:0px; + position:absolute; + left:170px; + top:165px; + width:52px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1443 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1443_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1444_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:50px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1444 { + border-width:0px; + position:absolute; + left:25px; + top:545px; + width:50px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1444 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1444_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1445_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:80px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1445 { + border-width:0px; + position:absolute; + left:25px; + top:445px; + width:80px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1445 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1445_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1446_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:78px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1446 { + border-width:0px; + position:absolute; + left:25px; + top:30px; + width:78px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1446 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1446_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1447_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:80px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1447 { + border-width:0px; + position:absolute; + left:170px; + top:75px; + width:80px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1447 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1447_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1448_input { + position:absolute; + left:0px; + top:0px; + width:700px; + height:110px; + padding:11px 10px 11px 10px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; + resize:none; +} +#u1448_input.disabled { + position:absolute; + left:0px; + top:0px; + width:700px; + height:110px; + padding:11px 10px 11px 10px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; + resize:none; +} +#u1448_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:700px; + height:110px; + 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:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1448 { + border-width:0px; + position:absolute; + left:170px; + top:539px; + width:700px; + height:110px; + display:flex; +} +#u1448 .text { + position:absolute; + align-self:flex-start; + padding:10px 10px 10px 10px; + box-sizing:border-box; + width:100%; +} +#u1448_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:700px; + height:110px; + background:inherit; + background-color:rgba(255, 255, 255, 0); + border:none; + border-left:0px; + border-top:0px; + border-right:0px; + border-bottom:0px; + border-radius:4px; + border-top-left-radius:0px; + border-top-right-radius:0px; + border-bottom-right-radius:0px; + border-bottom-left-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1448.disabled { +} +#u1449_input { + position:absolute; + left:0px; + top:0px; + width:700px; + height:32px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1449_input.mouseOver { + position:absolute; + left:0px; + top:0px; + width:700px; + height:32px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1449_input.focused { + position:absolute; + left:0px; + top:0px; + width:700px; + height:32px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1449_input.disabled { + position:absolute; + left:0px; + top:0px; + width:700px; + height:32px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1449_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:700px; + height:32px; + 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:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u1449 { + border-width:0px; + position:absolute; + left:170px; + top:489px; + width:700px; + height:32px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u1449 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 10px; + box-sizing:border-box; + width:100%; +} +#u1449_div.mouseOver { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:700px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(64, 158, 255, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u1449.mouseOver { +} +#u1449_div.focused { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:700px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(64, 158, 255, 1); + border-radius:4px; + -moz-box-shadow:0px 0px 5px rgba(64, 158, 255, 0.247058823529412); + -webkit-box-shadow:0px 0px 5px rgba(64, 158, 255, 0.247058823529412); + box-shadow:0px 0px 5px rgba(64, 158, 255, 0.247058823529412); + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u1449.focused { +} +#u1449_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:700px; + height:32px; + background:inherit; + background-color:rgba(242, 242, 242, 0); + border:none; + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u1449.disabled { +} +#u1450_input { + position:absolute; + left:0px; + top:0px; + width:570px; + height:32px; + padding:3px 2px 3px 7px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1450_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:570px; + height:32px; + 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:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + color:#333333; +} +#u1450 { + border-width:0px; + position:absolute; + left:300px; + top:69px; + width:570px; + height:32px; + display:flex; + color:#333333; +} +#u1450 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 7px; + box-sizing:border-box; + width:100%; +} +.u1450_input_option { + color:#333333; +} +#u1451_input { + position:absolute; + left:0px; + top:0px; + width:570px; + height:32px; + padding:3px 2px 3px 7px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1451_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:570px; + height:32px; + 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:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + color:#333333; +} +#u1451 { + border-width:0px; + position:absolute; + left:300px; + top:114px; + width:570px; + height:32px; + display:flex; + color:#333333; +} +#u1451 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 7px; + box-sizing:border-box; + width:100%; +} +.u1451_input_option { + color:#333333; +} +#u1452_input { + position:absolute; + left:0px; + top:0px; + width:570px; + height:32px; + padding:3px 2px 3px 7px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1452_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:570px; + height:32px; + 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:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + color:#333333; +} +#u1452 { + border-width:0px; + position:absolute; + left:300px; + top:339px; + width:570px; + height:32px; + display:flex; + color:#333333; +} +#u1452 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 7px; + box-sizing:border-box; + width:100%; +} +.u1452_input_option { + color:#333333; +} +#u1453_input { + position:absolute; + left:0px; + top:0px; + width:570px; + height:32px; + padding:3px 2px 3px 7px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1453_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:570px; + height:32px; + 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:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + color:#333333; +} +#u1453 { + border-width:0px; + position:absolute; + left:300px; + top:159px; + width:570px; + height:32px; + display:flex; + color:#333333; +} +#u1453 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 7px; + box-sizing:border-box; + width:100%; +} +.u1453_input_option { + color:#333333; +} +#u1454_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:78px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1454 { + border-width:0px; + position:absolute; + left:170px; + top:300px; + width:78px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1454 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1454_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1455_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:50px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1455 { + border-width:0px; + position:absolute; + left:170px; + top:345px; + width:50px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1455 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1455_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1456_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:78px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1456 { + border-width:0px; + position:absolute; + left:170px; + top:390px; + width:78px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1456 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1456_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1457_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:64px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1457 { + border-width:0px; + position:absolute; + left:170px; + top:255px; + width:64px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1457 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1457_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1458_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:78px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1458 { + border-width:0px; + position:absolute; + left:170px; + top:210px; + width:78px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1458 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1458_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1459_input { + position:absolute; + left:0px; + top:0px; + width:570px; + height:32px; + padding:3px 2px 3px 7px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1459_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:570px; + height:32px; + 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:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + color:#333333; +} +#u1459 { + border-width:0px; + position:absolute; + left:300px; + top:249px; + width:570px; + height:32px; + display:flex; + color:#333333; +} +#u1459 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 7px; + box-sizing:border-box; + width:100%; +} +.u1459_input_option { + color:#333333; +} +#u1460_input { + position:absolute; + left:0px; + top:0px; + width:570px; + height:32px; + padding:3px 2px 3px 7px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1460_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:570px; + height:32px; + 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:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + color:#333333; +} +#u1460 { + border-width:0px; + position:absolute; + left:300px; + top:294px; + width:570px; + height:32px; + display:flex; + color:#333333; +} +#u1460 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 7px; + box-sizing:border-box; + width:100%; +} +.u1460_input_option { + color:#333333; +} +#u1461_input { + position:absolute; + left:0px; + top:0px; + width:570px; + height:32px; + padding:3px 2px 3px 7px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1461_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:570px; + height:32px; + 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:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + color:#333333; +} +#u1461 { + border-width:0px; + position:absolute; + left:300px; + top:204px; + width:570px; + height:32px; + display:flex; + color:#333333; +} +#u1461 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 7px; + box-sizing:border-box; + width:100%; +} +.u1461_input_option { + color:#333333; +} +#u1462_input { + position:absolute; + left:0px; + top:0px; + width:570px; + height:32px; + padding:3px 2px 3px 7px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1462_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:570px; + height:32px; + 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:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + color:#333333; +} +#u1462 { + border-width:0px; + position:absolute; + left:300px; + top:384px; + width:570px; + height:32px; + display:flex; + color:#333333; +} +#u1462 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 7px; + box-sizing:border-box; + width:100%; +} +.u1462_input_option { + color:#333333; +} +#u1463_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:52px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1463 { + border-width:0px; + position:absolute; + left:170px; + top:30px; + width:52px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1463 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1463_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1464_input { + position:absolute; + left:0px; + top:0px; + width:570px; + height:32px; + padding:3px 2px 3px 7px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1464_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:570px; + height:32px; + 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:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + color:#333333; +} +#u1464 { + border-width:0px; + position:absolute; + left:300px; + top:24px; + width:570px; + height:32px; + display:flex; + color:#333333; +} +#u1464 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 7px; + box-sizing:border-box; + width:100%; +} +.u1464_input_option { + color:#333333; +} +#u1465_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; + background:inherit; + background-color:rgba(249, 249, 249, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(127, 127, 127, 1); + border-radius:3px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#7F7F7F; +} +#u1465 { + border-width:0px; + position:absolute; + left:170px; + top:440px; + width:100px; + height:30px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#7F7F7F; +} +#u1465 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1465_div.mouseOver { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; + background:inherit; + background-color:rgba(249, 249, 249, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(127, 127, 127, 1); + border-radius:3px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#7F7F7F; +} +#u1465.mouseOver { +} +#u1465_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1466_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1466 { + border-width:0px; + position:absolute; + left:296px; + top:21px; + width:1px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1466 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1466_text { + border-width:0px; + white-space:nowrap; + text-transform:none; + visibility:hidden; +} +#u1467_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:55px; + height:22px; + 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-size:16px; +} +#u1467 { + border-width:0px; + position:absolute; + left:885px; + top:126px; + width:55px; + height:22px; + display:flex; + font-size:16px; +} +#u1467 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1467_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1468 { + position:fixed; + right:0px; + top:0px; + width:500px; + height:980px; + visibility:hidden; +} +#u1468_state0 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:500px; + height:980px; + overflow:auto; + -webkit-overflow-scrolling:touch; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1468_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1469_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:500px; + height:980px; + 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:8px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1469 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:500px; + height:980px; + display:flex; +} +#u1469 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1469_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1470_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:13px; + height:15px; +} +#u1470 { + border-width:0px; + position:absolute; + left:450px; + top:42px; + width:13px; + height:15px; + display:flex; + color:#00FF99; +} +#u1470 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1470_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1471_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:501px; + height:2px; +} +#u1471 { + border-width:0px; + position:absolute; + left:0px; + top:72px; + width:500px; + height:1px; + display:flex; +} +#u1471 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1471_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1472_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:200px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:16px; +} +#u1472 { + border-width:0px; + position:absolute; + left:20px; + top:42px; + width:200px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:16px; +} +#u1472 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1472_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1473 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1474_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:2px; + height:15px; + background:inherit; + background-color:rgba(128, 128, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1474 { + border-width:0px; + position:absolute; + left:20px; + top:99px; + width:2px; + height:15px; + display:flex; +} +#u1474 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1474_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1475_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:56px; + height:16px; + 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:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC'; + font-weight:500; + font-style:normal; +} +#u1475 { + border-width:0px; + position:absolute; + left:32px; + top:99px; + width:56px; + height:16px; + display:flex; + font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC'; + font-weight:500; + font-style:normal; +} +#u1475 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1475_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1476 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1477_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:2px; + height:15px; + background:inherit; + background-color:rgba(128, 128, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1477 { + border-width:0px; + position:absolute; + left:20px; + top:220px; + width:2px; + height:15px; + display:flex; +} +#u1477 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1477_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1478_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:56px; + height:16px; + 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:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC'; + font-weight:500; + font-style:normal; +} +#u1478 { + border-width:0px; + position:absolute; + left:32px; + top:220px; + width:56px; + height:16px; + display:flex; + font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC'; + font-weight:500; + font-style:normal; +} +#u1478 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1478_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1479_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:49px; + height:18px; + 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-size:16px; + color:#7F7F7F; +} +#u1479 { + border-width:0px; + position:absolute; + left:25px; + top:141px; + width:49px; + height:18px; + display:flex; + font-size:16px; + color:#7F7F7F; +} +#u1479 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1479_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1480_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:36px; + height:18px; + 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-size:16px; + color:#7F7F7F; +} +#u1480 { + border-width:0px; + position:absolute; + left:25px; + top:177px; + width:36px; + height:18px; + display:flex; + font-size:16px; + color:#7F7F7F; +} +#u1480 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1480_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1481_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:68px; + height:18px; + 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-size:16px; +} +#u1481 { + border-width:0px; + position:absolute; + left:120px; + top:178px; + width:68px; + height:18px; + display:flex; + font-size:16px; +} +#u1481 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1481_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1482_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:68px; + height:18px; + 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-size:16px; +} +#u1482 { + border-width:0px; + position:absolute; + left:120px; + top:141px; + width:68px; + height:18px; + display:flex; + font-size:16px; +} +#u1482 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1482_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1483_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:80px; + height:18px; + 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-size:16px; + color:#7F7F7F; +} +#u1483 { + border-width:0px; + position:absolute; + left:25px; + top:255px; + width:80px; + height:18px; + display:flex; + font-size:16px; + color:#7F7F7F; +} +#u1483 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1483_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1484_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:64px; + height:18px; + 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-size:16px; +} +#u1484 { + border-width:0px; + position:absolute; + left:120px; + top:256px; + width:64px; + height:18px; + display:flex; + font-size:16px; +} +#u1484 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1484_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1485_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:80px; + height:18px; + 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-size:16px; + color:#7F7F7F; +} +#u1485 { + border-width:0px; + position:absolute; + left:25px; + top:330px; + width:80px; + height:18px; + display:flex; + font-size:16px; + color:#7F7F7F; +} +#u1485 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1485_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1486_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:48px; + height:18px; + 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-size:16px; + color:#7F7F7F; +} +#u1486 { + border-width:0px; + position:absolute; + left:25px; + top:290px; + width:48px; + height:18px; + display:flex; + font-size:16px; + color:#7F7F7F; +} +#u1486 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1486_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1487_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:34px; + height:18px; + 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-size:16px; +} +#u1487 { + border-width:0px; + position:absolute; + left:120px; + top:290px; + width:34px; + height:18px; + display:flex; + font-size:16px; +} +#u1487 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1487_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1488 { + border-width:0px; + position:absolute; + left:120px; + top:330px; + width:340px; + height:213px; +} +#u1489_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:180px; + height:45px; +} +#u1489 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:180px; + height:45px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1489 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1489_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1490_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:160px; + height:45px; +} +#u1490 { + border-width:0px; + position:absolute; + left:180px; + top:0px; + width:160px; + height:45px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1490 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1490_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1491_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:180px; + height:42px; +} +#u1491 { + border-width:0px; + position:absolute; + left:0px; + top:45px; + width:180px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1491 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1491_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1492_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:160px; + height:42px; +} +#u1492 { + border-width:0px; + position:absolute; + left:180px; + top:45px; + width:160px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1492 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1492_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1493_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:180px; + height:42px; +} +#u1493 { + border-width:0px; + position:absolute; + left:0px; + top:87px; + width:180px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1493 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1493_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1494_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:160px; + height:42px; +} +#u1494 { + border-width:0px; + position:absolute; + left:180px; + top:87px; + width:160px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1494 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1494_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1495_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:180px; + height:42px; +} +#u1495 { + border-width:0px; + position:absolute; + left:0px; + top:129px; + width:180px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1495 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1495_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1496_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:160px; + height:42px; +} +#u1496 { + border-width:0px; + position:absolute; + left:180px; + top:129px; + width:160px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1496 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1496_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1497_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:180px; + height:42px; +} +#u1497 { + border-width:0px; + position:absolute; + left:0px; + top:171px; + width:180px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1497 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1497_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1498_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:160px; + height:42px; +} +#u1498 { + border-width:0px; + position:absolute; + left:180px; + top:171px; + width:160px; + height:42px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u1498 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u1498_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1499_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:30px; + height:30px; +} +#u1499 { + border-width:0px; + position:absolute; + left:401px; + top:35px; + width:30px; + height:30px; + display:flex; +} +#u1499 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1499_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1500 { + position:fixed; + left:50%; + margin-left:-300px; + top:50%; + margin-top:-330px; + visibility:hidden; +} +#u1500_state0 { + position:relative; + left:0px; + top:0px; + width:600px; + height:660px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1500_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1501_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:600px; + height:660px; + 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:8px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; +} +#u1501 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:600px; + height:660px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; +} +#u1501 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1501_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1502_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:15px; + height:15px; +} +#u1502 { + border-width:0px; + position:absolute; + left:565px; + top:18px; + width:15px; + height:15px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + color:#00FF99; +} +#u1502 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1502_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1503_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:601px; + height:2px; +} +#u1503 { + border-width:0px; + position:absolute; + left:0px; + top:48px; + width:600px; + height:1px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; +} +#u1503 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1503_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1504_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:64px; + height:21px; + 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:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:16px; +} +#u1504 { + border-width:0px; + position:absolute; + left:20px; + top:15px; + width:64px; + height:21px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:16px; +} +#u1504 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1504_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1505_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:601px; + height:2px; +} +#u1505 { + border-width:0px; + position:absolute; + left:0px; + top:590px; + width:600px; + height:1px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; +} +#u1505 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1505_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1506_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u1506 { + border-width:0px; + position:absolute; + left:490px; + top:609px; + width:80px; + height:32px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#FFFFFF; + line-height:20px; +} +#u1506 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1506_img.mouseOver { +} +#u1506.mouseOver { +} +#u1506_img.mouseDown { +} +#u1506.mouseDown { +} +#u1506_img.disabled { +} +#u1506.disabled { + opacity:0.7; +} +#u1506_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1507_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u1507 { + border-width:0px; + position:absolute; + left:400px; + top:609px; + width:80px; + height:32px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#7F7F7F; +} +#u1507 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1507_img.mouseOver { +} +#u1507.mouseOver { +} +#u1507_img.mouseDown { +} +#u1507.mouseDown { +} +#u1507_img.disabled { +} +#u1507.disabled { + opacity:0.7; +} +#u1507_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1500_state1 { + position:relative; + left:0px; + top:0px; + width:500px; + height:200px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + visibility:hidden; +} +#u1500_state1_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1508_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:500px; + height:200px; + 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:8px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1508 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:500px; + height:200px; + display:flex; +} +#u1508 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1508_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1509_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u1509 { + border-width:0px; + position:absolute; + left:390px; + top:150px; + width:80px; + height:32px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#FFFFFF; + line-height:20px; +} +#u1509 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1509_img.mouseOver { +} +#u1509.mouseOver { +} +#u1509_img.mouseDown { +} +#u1509.mouseDown { +} +#u1509_img.disabled { +} +#u1509.disabled { + opacity:0.7; +} +#u1509_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1510_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u1510 { + border-width:0px; + position:absolute; + left:300px; + top:150px; + width:80px; + height:32px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#7F7F7F; +} +#u1510 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1510_img.mouseOver { +} +#u1510.mouseOver { +} +#u1510_img.mouseDown { +} +#u1510.mouseDown { +} +#u1510_img.disabled { +} +#u1510.disabled { + opacity:0.7; +} +#u1510_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1511_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; +} +#u1511 { + border-width:0px; + position:absolute; + left:50px; + top:40px; + width:20px; + height:20px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:14px; + color:#D9001B; +} +#u1511 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1511_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1512_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:70px; + height:16px; + 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; +} +#u1512 { + border-width:0px; + position:absolute; + left:85px; + top:42px; + width:70px; + height:16px; + display:flex; +} +#u1512 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1512_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1513_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:130px; + height:15px; + 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-size:13px; +} +#u1513 { + border-width:0px; + position:absolute; + left:85px; + top:75px; + width:130px; + height:15px; + display:flex; + font-size:13px; +} +#u1513 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1513_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1500_state2 { + position:relative; + left:0px; + top:0px; + width:500px; + height:200px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + visibility:hidden; +} +#u1500_state2_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1514_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:500px; + height:200px; + 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:8px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1514 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:500px; + height:200px; + display:flex; +} +#u1514 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1514_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1515_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:500px; + height:200px; + 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:8px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1515 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:500px; + height:200px; + display:flex; +} +#u1515 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1515_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1516_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u1516 { + border-width:0px; + position:absolute; + left:390px; + top:150px; + width:80px; + height:32px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#FFFFFF; + line-height:20px; +} +#u1516 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1516_img.mouseOver { +} +#u1516.mouseOver { +} +#u1516_img.mouseDown { +} +#u1516.mouseDown { +} +#u1516_img.disabled { +} +#u1516.disabled { + opacity:0.7; +} +#u1516_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1517_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u1517 { + border-width:0px; + position:absolute; + left:300px; + top:150px; + width:80px; + height:32px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#7F7F7F; +} +#u1517 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1517_img.mouseOver { +} +#u1517.mouseOver { +} +#u1517_img.mouseDown { +} +#u1517.mouseDown { +} +#u1517_img.disabled { +} +#u1517.disabled { + opacity:0.7; +} +#u1517_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1518_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; +} +#u1518 { + border-width:0px; + position:absolute; + left:50px; + top:40px; + width:20px; + height:20px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:14px; + color:#D9001B; +} +#u1518 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1518_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1519_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:70px; + height:16px; + 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; +} +#u1519 { + border-width:0px; + position:absolute; + left:85px; + top:42px; + width:70px; + height:16px; + display:flex; +} +#u1519 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1519_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1520_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:104px; + height:15px; + 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-size:13px; +} +#u1520 { + border-width:0px; + position:absolute; + left:85px; + top:73px; + width:104px; + height:15px; + display:flex; + font-size:13px; +} +#u1520 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1520_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} diff --git "a/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\347\256\227\346\263\225\345\274\200\345\217\221/data.js" "b/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\347\256\227\346\263\225\345\274\200\345\217\221/data.js" new file mode 100644 index 0000000000000000000000000000000000000000..da9c42280ec59492ff2ec76168d57c97ef8946e0 --- /dev/null +++ "b/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\347\256\227\346\263\225\345\274\200\345\217\221/data.js" @@ -0,0 +1,7 @@ +$axure.loadCurrentPage( +(function() { + var _ = function() { var r={},a=arguments; for(var i=0; i数据集单选
",M="3",N="ae0aa6a8c2b54eab963171049708a79c",O="支持多选产品型号
",P="4",Q="bb47bbd4f1f240c593ba77a994702cde",R="* 版本:",S="单选
",T="5",U="188318d8597e4fba83362a74a2ab1ef8",V=" 产品型号:",W="多选
",X="style",Y="baseStyle",Z="627587b6038d43cca051c114ac41ad32",ba="pageAlignment",bb="center",bc="fill",bd="fillType",be="solid",bf="color",bg=0xFFFFFFFF,bh="image",bi="imageAlignment",bj="near",bk="imageRepeat",bl="auto",bm="favicon",bn="sketchFactor",bo="0",bp="colorStyle",bq="appliedColor",br="fontName",bs="Applied Font",bt="borderWidth",bu="borderVisibility",bv="borderFill",bw=0xFF797979,bx="cornerRadius",by="cornerVisibility",bz="outerShadow",bA="on",bB=false,bC="offsetX",bD=5,bE="offsetY",bF="blurRadius",bG="r",bH=0,bI="g",bJ="b",bK="a",bL=0.349019607843137,bM="adaptiveStyles",bN="interactionMap",bO="diagram",bP="objects",bQ="id",bR="5a75a174a733487ba72b326b964d49f5",bS="friendlyType",bT="页面框架",bU="referenceDiagramObject",bV="styleType",bW="visible",bX=true,bY=1920,bZ=1300,ca="imageOverrides",cb="masterId",cc="4b990bb6cff949a1b5064d9025ac7466",cd="e42fbe0a3e3841c3ba612341de895f7e",ce="数据表格",cf="表格",cg="table",ch=1460,ci=205,cj="location",ck="x",cl=50,cm="y",cn=172,co="d0353fc316a84a3abd125a6f6afae5e9",cp="单元格",cq="tableCell",cr="'PingFangSC-Regular', 'PingFang SC'",cs="foreGroundFill",ct=0xFF555555,cu="opacity",cv=1,cw=300,cx=40,cy="9b4161a6aa0a435d9aea1729826fce91",cz=0xFFE9E9E9,cA="horizontalAlignment",cB="left",cC="paddingLeft",cD="15",cE="stateStyles",cF="mouseOver",cG=0xF9F9F9,cH="fontSize",cI="14px",cJ=45,cK="images",cL="normal~",cM="images/算法开发/u492.png",cN="2d25d11524874349a7c39791c7d07b10",cO=125,cP="1bd363d259ee434184fe2a1ccc16a4f1",cQ=85,cR="acb450adfe3a4ad9864ab5d8a68ec003",cS=165,cT="images/算法开发/u507.png",cU="463764b3649b46ab853296b0073394db",cV=0xFFE2E4F4,cW="images/算法开发/u487.png",cX="25727175ecdb4a4e958f25ba2fbc055f",cY=290,cZ=830,da="images/算法开发/u488.png",db="8b98334b85714d4c9a951fb38bea5519",dc="'Helvetica'",dd="images/算法开发/u493.png",de="c9632c230d57455fb3a04a351117ae59",df="9be4ac2f8ad34c5d8a4cd8535690b7a3",dg="8b6c94834e2b4152b8ca5dbc03aa890c",dh="images/算法开发/u508.png",di="3e46ced491bb497696a6dbbc5456bd87",dj=340,dk=1120,dl="images/算法开发/u491.png",dm="c073a246672748dd8db37e779bad3e00",dn="images/算法开发/u496.png",dp="0afa32a28a754d0596514725795304cf",dq="8a50488a0ff34464bd6cfa6b06a7362a",dr="8d0913df30b84b5e92681447b6042489",ds="images/算法开发/u511.png",dt="8c18a4c61d0442bb9b5a877e9e8fb606",du="b279ac1ce00e45259b59a795c610dffa",dv="c43efe88f849472d84e74968fefff333",dw="3685b405b8344a758666314e11c79e6d",dx="4634f6f2c9594e2b8167a72eca94539b",dy="ad1c3e0649444d4984e23fe87b7fb3af",dz=240,dA=590,dB="images/算法开发/u489.png",dC="315edfaa16d04665b8692de1f4f9c793",dD="images/算法开发/u494.png",dE="9dbd0381088547759ad987fcaa66a339",dF="b53f1ee3d6364f238770c97d920b2800",dG="68f089d1975a422cb3adeac56c028e89",dH="images/算法开发/u509.png",dI="316c7b916f12468391dcad5fead0295b",dJ="组合",dK="layer",dL=1096.56060606061,dM=868.393939393939,dN="objs",dO="981bf5c70b3749859b51a12b41c61a7b",dP="矩形",dQ="vectorShape",dR=1190,dS=413,dT=32,dU=0xFF6576FF,dV=0xFF2DB7F5,dW="6",dX="40519e9ec4264601bfb12c514e4f4867",dY="lineSpacing",dZ="22px",ea="generateCompound",eb="ec0f74c7ddfe494887b1b2c27962fe99",ec="'Microsoft YaHei Regular', 'Microsoft YaHei'",ed=0xA5000000,ee=0.647058823529412,ef=1383,eg=418,eh=28,ei=22,ej="f08bf3155ec6472a83d3f794cfaf59f3",ek="eeb4e71b227e4c15b4ed4f91dc038b02",el=1420,em=48,en=0xFFD9D9D9,eo="16",ep="9e1986f2f8a24bf8b15646470b59a685",eq=1476,er=14,es="paddingBottom",et="6fd49654d5ab4e27920b26c3324ec553",eu=1544.56060606061,ev="8773253b6d68488d8d4d316cbc66275c",ew=1280,ex=88,ey="8",ez="paddingRight",eA="30",eB="31fb65698a3146718a3f476bd92f7404",eC="图片 ",eD="imageBox",eE=1345,eF=422,eG="0.400000005960464",eH="c782fa96c9604e70bd1ad6f6697a2fbf",eI="rotation",eJ="90",eK="images/算法开发/u519.svg",eL="propagate",eM="351c4d4567ee473c8ce6e40d9faab2a9",eN="fd36f37b07fd42de899865039200b65c",eO=0xFF666666,eP="12px",eQ=1150,eR="eda8d2c1caf84f80a5b1f838ca019019",eS=1159,eT="180",eU="images/算法开发/u522.png",eV="4a38f5aeeafd4b76a46c0b8e9d2ab700",eW=1496.56060606061,eX="3150654cf0de4cfbaf86b8995c3a69a3",eY=1232,eZ="24cee4179e6f404a8cee2470cabeecb2",fa=1241,fb="5656e8a57b3f473ba066b50e303b37f2",fc="7d2aa689e6584a9d92733c4d569276e1",fd=70,fe=115,ff="5840921b195d4d13985c17640456eaa2",fg=1315,fh=80,fi="paddingTop",fj="e4749bee63c64451925009873af32f6d",fk=0xFFA0ABFF,fl="f5508d75f86e478684040e9c423f29f7",fm=1405,fn="b9ca45d0194a4bcca0dfdbd3d9ffe71b",fo="文本框",fp="textBox",fq="hint",fr="4889d666e8ad4c5e81e59863039a5cc0",fs="disabled",ft="9bd0236217a94d89b0314c8c7fc75f16",fu="44157808f2934100b68f2394a66b2bba",fv=1000,fw=0xFFDBDFEA,fx="HideHintOnFocused",fy="placeholderText",fz="请输入名称关键字搜索",fA="c535780b419246608637e9e69d1d4947",fB=61,fC=100,fD="onClick",fE="description",fF="Click时 ",fG="cases",fH="conditionString",fI="isNewIfGroup",fJ="caseColorHex",fK="9D33FA",fL="actions",fM="action",fN="linkWindow",fO="打开 上传算子 在 当前窗口",fP="displayName",fQ="打开链接",fR="actionInfoDescriptions",fS="上传算子",fT="target",fU="targetType",fV="上传算子.html",fW="includeVariables",fX="linkType",fY="current",fZ="tabbable",ga="1169837d59534a3bb9ff7eb97634bc37",gb="弹窗X",gc="动态面板",gd="dynamicPanel",ge=600,gf=660,gg=1720,gh="fixedHorizontal",gi="fixedMarginHorizontal",gj="fixedVertical",gk="middle",gl="fixedMarginVertical",gm="fixedKeepInFront",gn="scrollbars",go="none",gp="fitToContent",gq="diagrams",gr="d6c4075f854a4f8580adfc2fcb007f8a",gs="0-新增",gt="Axure:PanelDiagram",gu="b7129cd55619466d81a866d870f9f208",gv="parentDynamicPanel",gw="panelIndex",gx="'微软雅黑'",gy=0xFFF2F2F2,gz="a2d557f16741455ebb6a5a23640899e0",gA=555,gB=523,gC="63ead46f882945a6a20b24a0a7c1ff5a",gD="3407b7b4331d4f40853f040b225581af",gE="fontWeight",gF="400",gG=420,gH=0xFF409EFF,gI=0xFFCCCCCC,gJ="focused",gK=64,gL=158,gM=255,gN=0.247058823529412,gO="7ab43cffe242402abb64197ed53041a2",gP=135,gQ=23,gR=0xFFD7D7D7,gS="10",gT=0.0980392156862745,gU="50字符:字母、数字、汉字、英文横杠和下划线",gV="84c4d7d2a8eb438286b8e17330527cc3",gW=75,gX=17,gY="4b98dba3ba994a15a9e130e35aa2418a",gZ=25,ha=30,hb="13px",hc="d458a4945ea044a79f7f13647e0c173e",hd=90,he=15,hf=400,hg="e79bd715a2d348e3a2814a09e4a09806",hh="下拉列表",hi="comboBox",hj="c568339db4984d358bd04c4ed6515825",hk="2829faada5f8449da03773b96e566862",hl=120,hm=394,hn="cbbae4ae60e74eb1851510afc40a3844",ho=0xFFFF3399,hp=36,hq=435,hr=18,hs="16px",ht="e9bb90fdbe074e2795147507efd0336f",hu="8fe2136cce9d46a38bc325ce48e5875b",hv=29,hw=461,hx=526,hy=62,hz="18px",hA="780e39172a514e95b8e8625a5b15545c",hB="X1A",hC=535,hD=314,hE=20,hF=65,hG="02f043bc8e634894a89d4a8bda30f9fe",hH="4d494dfe6e1a4118966c791b96fbe177",hI="09f979266a9c4227943c1b92bd17e3bb",hJ="单选按钮",hK="radioButton",hL="selected",hM=84,hN="b61231a94db9418aac4b368e51f035a6",hO="verticalAlignment",hP="setPanelState",hQ="设置 X1A-1A 到 到 0 ",hR="设置面板状态",hS="X1A-1A 到 0",hT="设置 X1A-1A 到 到 0 ",hU="panelsToStates",hV="panelPath",hW="8598130309a044cdb5a8806c8a81e676",hX="stateInfo",hY="setStateType",hZ="stateNumber",ia=1,ib="stateValue",ic="exprType",id="stringLiteral",ie="value",ig="stos",ih="loop",ii="showWhenSet",ij="options",ik="compress",il="images/算法开发/u543.svg",im="selected~",io="images/算法开发/u543_selected.svg",ip="disabled~",iq="images/算法开发/u543_disabled.svg",ir="extraLeft",is="4a5c64b01e2f4d27a88de461b5bcaf07",it=204,iu="设置 X1A-1A 到 到 1 ",iv="X1A-1A 到 1",iw="设置 X1A-1A 到 到 1 ",ix=2,iy="images/算法开发/u544.svg",iz="images/算法开发/u544_selected.svg",iA="images/算法开发/u544_disabled.svg",iB="4f35eeda82bd4feaa2617b0ce560baef",iC=73,iD=287,iE="images/算法开发/u545.svg",iF="images/算法开发/u545_selected.svg",iG="images/算法开发/u545_disabled.svg",iH="be97c3bc16504ac19b6014502fee42b7",iI=130,iJ="52d8370289aa4388860ec40ce62cfcdf",iK=47,iL=250,iM="c56e7cf47c9f4f4cb66ad3a3ee67768a",iN="56a897fc0e6c4923b39c069bb8e3555f",iO=364,iP=170,iQ=284,iR=0xFFAAAAAA,iS="f37183c596e141079631535575c11b29",iT=55,iU="3c35f7f584574732b5edbd0cff195f77",iV=285,iW=124,iX="34c0f857e47c422b950245933a04daab",iY=110,iZ="8f59a0810bee4a2c82bc70eb7cdabe0d",ja=365,jb="76f380069bcc451c971768977a7e136a",jc=9,jd=348,je=131,jf="517998cd525a4229a6d77664af72fe3b",jg=480,jh="7dc00b0b5f6c4ecdb33556f392415a02",ji=210,jj="47c2bb0c47704b7cad65b898f6fca443",jk="f102b815e49b4d18a6a58b73c84dae22",jl="d3e9c861803448019544718e6e45de3c",jm=164,jn="badf80a06bfb42c19b21d269eee8d500",jo="8664e867293b4139b6e8a4caa7dad786",jp=244,jq="X1A-1A",jr=530,js=39,jt="76770ca40bf6450bad337687c17e5038",ju="90cb3a3d005443df82c1e87ae418c052",jv=-1860,jw=-164,jx="efca0cf80da842938f946aaa05422e60",jy="X1A-X",jz=200,jA="setFunction",jB="设置 文字于 XL-X1-00等于"BP_1D025_产品组01"",jC="设置文本",jD="XL-X1-00 为 \"BP_1D025_产品组01\"",jE="文字于 XL-X1-00等于\"BP_1D025_产品组01\"",jF="expr",jG="block",jH="subExprs",jI="fcall",jJ="functionName",jK="SetWidgetRichText",jL="arguments",jM="pathLiteral",jN="isThis",jO="isFocused",jP="isTarget",jQ="73560b08e71b4352b1daf302d25213f7",jR="BP_1D025_产品组01",jS="booleanLiteral",jT="verticalAsNeeded",jU="784582437eaf437aa239c7c9b6fff33e",jV="c48509f37ab84bb7b04b625c1786f23f",jW="树",jX="treeNodeObject",jY=190,jZ="93a4c3353b6f4562af635b7116d6bf94",ka=10,kb="c0ba9c9a06a44200abd01602080ec5a8",kc="节点",kd=69,ke="091e518f5613484fa68148af7c5406a2",kf="isContained",kg="b6bb4a3c01e44e3f846d7d6346f9de2b",kh="becf097643434b02ab8a22c8db46260d",ki=16,kj=2,kk="images/算法开发/u567.png",kl="ffa7dc92f52b4a5fb622195c2e13c972",km=6,kn="images/算法开发/u566.png",ko="images/算法开发/u566_selected.png",kp="65b8f0e435704e11969e93d041ddde42",kq=180,kr=78,ks="c42a95a4b4334be0988282fbf0958fe8",kt="7045e5fc1fc2406d80cc4bd097011cb5",ku="d02acf6565b6424ab3d7c4d7cd194103",kv="55ad22e4a4e64859a101545f8684ad91",kw="27ee570bf2bc43978571f669d66fe0f6",kx="113bd588f0e14c5db94600cfab711375",ky="a748a7a337844d0884961eb7aa46e589",kz="9e5064ae006b4dc99d1ecfb75f808921",kA=97,kB="97c56fb394d54269b3671056f3f38d1c",kC="53739dc5294f419d84f4c666a0d72d7e",kD="buttonShapeId",kE="04d533f5b1b8418a905dbee12c092e8b",kF="317f278909c14f519a2a5a734aac666e",kG="9be8abfcf8344070b282a1ba8e9e909d",kH="4a0bf1eae261410e878500e5644f91bd",kI="isExpanded",kJ="7594ebf68f164c92be4ddf518927ab27",kK="80a57975aba24353ad50fe286b96834d",kL="1eddbe2a94794bb9be4ca02ff65ba178",kM="fa6a96d6094e4dfb873de0b32e139ffc",kN=96,kO="27d2f8c5d8394ee08a35dd53c9aaf4ae",kP="c8499e9325ab4e61a36eb50d4fe9b2e9",kQ="e77a296c394b4f17973c6e2bb9b6ecdc",kR="09005e66f7394197b4885c4bcc8b7661",kS="6ffcd2642b59456e81172873efb033af",kT="1fb60da0931249609dadc517f440b889",kU="98e4a3ef6524458ca91bab67dd9f4a8f",kV="c7b7bde3aaa1493a96f56af7f1a30848",kW="956b98c5ac0540e7ab01318f5a71d01f",kX="372fc4c66b6a4b4bac1b77674862670e",kY="e54d6bf0eabc4349b36cf2a18df074fc",kZ="432776070e6f4ff3b8135abcd0763e8b",la="9b6616a53d0b47729b697d8bdb2067cb",lb="078de0eaf5eb445daa7f601d2c5bfdfd",lc="5d83993b5bdc4324b7a314fb485b4b02",ld=83,le="7198141b3c974042ae3b276b6e8f3d69",lf="8e8385ae46ad4782851f2ffaafcb22f3",lg="199a2d56989944cd878f6cdaa62461f2",lh="4c09d25b0ca54a78923150a6b854eb4c",li="d126e5be611142ab90ffd59f2e551eeb",lj="3540370c822c442cbf4c6424a60620a0",lk="d840d1f297d84991b1bbf4d168c29aa6",ll="6144b3f882614ae78e80ad957098c169",lm="665680ab87e443cba3e4db5e1441f38c",ln="49e83bfa5dcc42788f55fe317086c14e",lo="36c2437896334a30bd07b1472e28a0e0",lp="9103342feaf44a169dd64f08ceaac5f0",lq="169656eef38147aeb1cd1d9ae307f4be",lr="b3d4632a9b96440cb280a6cbb9deb102",ls="d76e1eb34bea48b59afd12d90bdb2ff4",lt="67f6d5d5377845d6911c4db81fbc495e",lu=140,lv="191db4ca5fa048e9b1fe33932c449e6d",lw="9c557c0ce9b840d59a02819b175cc29e",lx="2978b1f6f7a740b480265f00d8a7dc72",ly=95,lz="85c878a957254b388c04983ef56e21d9",lA="f68d11963fa44e678e50d011c7fd7e91",lB="88476dcf091549f98863c4ef74ebbc62",lC="b2deccf3d25d4317bd317299417de49d",lD="bf127fda4fd3463ea7338cc308c38502",lE="0014f1f608f34901a9465e7a9b3a3590",lF="7f5c9f4f4e3d49e2a67c9dd4a5dbecd7",lG=320,lH=99,lI="d2a3edb039184dd0b5e6234bdacf4ce7",lJ="2b91fd51bffd4d3a97aab7d2981902c2",lK="bfd79e27aaf84199a173834af047f61c",lL="4cf98bd4cd5a4d6785a91016533ff8d8",lM="2c511c6224844a18b951ddaad268292e",lN="d10d5b80f57248a4a239d26311a070ff",lO="04d031c3ce1a4dee959568c2543010df",lP=114,lQ="6efdc779eb2d490ab9b6b590956c9770",lR="bf14ff56124c497db5b15398ff9b3820",lS="456456e65def46268387d2d57ec88411",lT="f5d63496adf04ea7b11f03e416103b28",lU="df2193661a8c4fdb89352b17391c1d0b",lV="227c8c323ca343feb18ec04630be459e",lW="53feff7f74724d2083da31c4011ccb0d",lX="cfda964b39224a2b9652753fec3ff69a",lY="dcef5450287c4370bc1923acd4b08979",lZ="08e9bda5f53f4e6dada197850a3f10d6",ma="aa8948f895334057a4fbc7ed70bb0447",mb="52d9d9ea0ddf46ec87d8844240057923",mc="adeabdb48f4d49399bdf24279f2c938e",md="47149c7fd8c24157bf4a150baf939fb0",me="306f280346724120829c771c286e9746",mf="ebd03c34a7304f25b52d7d2afcd0b186",mg="34dca812d15846d6800ea026d1142c7d",mh="0c76a3c0c42b47c285ce10f053589927",mi="ce51b97c92ee4e328eb7c98fbd87ac1b",mj="e34a97bc3fed4bd8842e67b10388b95f",mk="128c791f6bb14c628313d69369b99624",ml="8e0f7647c047439aa6248dbafdcaca1f",mm="01fc45b83ae64959a9c0eb2b815eba79",mn="432e50efdf01433fb0dcc7c3f9b82342",mo="b655e59d4c9349fa87e30cb2730bb882",mp="271a1fda6aa64de19a758f106319ec41",mq="dacc6b4d5fb34e5cba2bde013400b2dd",mr="bd2cb50a8b4b44af8297928d9e2b9b26",ms="f2b5af5b3891474182905e21849c557d",mt="d90abc1a26b44ed2be54c28051690118",mu="48b54bf4392442b88bb2477f47df426b",mv="6a90b059c0e546d1bf8693e96cc37a5b",mw="6081322c4e714c82a234caab4697542b",mx="41ef00a5a98d4812affb1cac912656fb",my="8c27cab41b644ae89d3fc29a9c2508df",mz="f2e4c6bd4c224016a6471f2aa431e7f2",mA="fbbf07f0d244406e9bf3959fe9304683",mB="6d772283b78a4b30af34a3c7d9be4806",mC="233a4888f8b340ac978f15a8ec56c9c9",mD="80c7df3b381049d488780697b5bfbd8f",mE="2a7208015c744b27a92ec06040eddf3c",mF="95306ec0d16d47899b5d40243d2f227e",mG="8cb2c969987f42afacf0ff0b0fba1cf5",mH="5ec845169f4b42058adf5be630df57bb",mI="c7fd6544d0ea4840b66ce91ee8fd59d4",mJ="形状",mK="26c731cb771b44a88eb8b6e97e78c80e",mL=0xFFFFFF,mM=0.313725490196078,mN="innerShadow",mO=503,mP=12,mQ="images/算法开发/u679.svg",mR="XL-X1-00",mS=0x19333333,mT="7",mU="onFocus",mV="获取焦点时 ",mW="fadeWidget",mX="显示 X1A-X bring to front",mY="显示/隐藏",mZ="显示 X1A-X",na=" bring to front",nb="objectsToFades",nc="objectPath",nd="fadeInfo",ne="fadeType",nf="show",ng="showType",nh="bringToFront",ni="onLostFocus",nj="LostFocus时 ",nk="隐藏 X1A-X",nl="hide",nm="ae0aa6a8c2b54eab963171049708a79c",nn="ce72dae976a24996ba372133f3f3299c",no="188318d8597e4fba83362a74a2ab1ef8",np=46,nq="2c6271d40df646ffb7642001beb5fffe",nr="bb47bbd4f1f240c593ba77a994702cde",ns="3836de79def04a709ba375cdc3048ae9",nt="c371a8eae74a4bddae1dd48928df1811",nu="6020e01bc9d0427f882ef9de1fe9ddd3",nv="6054ff084fe74fcd8cc57aa37820b332",nw="bfdd798e4ca34e349e48b3d9417bdf1e",nx="29b8d1da3a7b4d7681d4c357a3058a20",ny=207,nz=520,nA="7ace4f20031147808ab5b8146e9271ad",nB=360,nC=81,nD="c737cc9e2eb1499f9fbff9943bade727",nE="18e7f3eac4c147f6bca6c9eed41ad205",nF="c3ca3e1b7ed0410fb1456f5100dd9f51",nG="c5be6d017bf5470197a5c69b45934f88",nH="eafc3aab55d84eeca8684f45bb1502fd",nI="2ed05f9866e64da89adfe70ad0d3763c",nJ="3adf25af40fa4535b62ce9b0d153bd26",nK="5a711dbdc54d41f9933a062bc70c9735",nL=123,nM="cf4e9d5c7933458eabf289f45393a97e",nN="771a2a9d736940a6a9526ef7ad938a3e",nO="4d4686ffd11f4d208c5af8eb7e428f41",nP=127,nQ="2891a094797d4b7f94ce7f38dcfc21ee",nR="264ce403a7a448319ee1167d7a66343b",nS="ea063eb9f3374bae8b7c433e8589c8f4",nT="bb3dec26299f430caf38f5e2e4373f07",nU="0039a9c799ca4088b377740b86c1e417",nV="2d965bde35134d48a454a3a2033c868b",nW="216f84dfae964050b2905c584864b50e",nX="c803da7d283444e18ecd74959739ab5b",nY="c8528af5675144369db5bb7d8c73f6a4",nZ="49342ad08d8d4f68977b05fc3658f1bf",oa="3568802b6e67476da28fb2e9d8fa2fd7",ob="58ce1fa1931e439480c8dc9f623ded5e",oc="02914438c5e54f2ca0a90e9a4600ee15",od="9f6be7e9b9844f3092297e3f62a096d6",oe="53b1ccc1d1fb404cabd842a75c3c6e75",of="2b3640577f87488393dad29cc17727db",og="a6bf7a76ccc1402ea7fa31bdf9c894f1",oh="c76242ba7cd244bcade3f616790ee89e",oi="477d02fd918346019546ca4195a99333",oj="88e3c5e051044a43ba1cb618a0627902",ok="46f1049c31c64014b2d8b85fc41392a0",ol="7518186b0ce042a4b7a7af8d7c5bd18b",om="c170140478014927896789dbef84923c",on="89ca20a7104e4b2ba73f2e7128eb0dc8",oo="70c77777761b49799c36b84d1b214ad4",op="2d288308f19146b294269783f17d805c",oq="87d31611ff9e4163b31cc76a7ac596b4",or="d264475240bc4f90ad1ad177daf368b7",os="7a991be0239a4478bed42bafbd2a0ae7",ot="3115f57d87864768b910d623be7160e2",ou="9bba19b370134277af810eb66c17fc0b",ov="1592c2054f194755bc149b144c33e4c8",ow="f8174b2fd77a4a74957c54abb236c894",ox="59077ee1d3ee4616a8d5def05773b32a",oy="5203bdea5e254368b6e52afb16b68ed9",oz="33a12bbf56c948439dc6280da20d3922",oA="74f4c57b948b4a2e9574d4e0314d6521",oB="21b23ddc247f4ddca9c4de80c36de9a6",oC="3e2a7dfe0b9e44f895410bd8ccbc668b",oD="cd55c0b57d774a8e9e5e5e0460a22f6e",oE="2d84e8cb739e43bf8b3f3420c5b001a4",oF="39db31ddaa1a4b9397bc26827168b01e",oG="11ff4807fccf4049b33da7ed17f52a1d",oH="6958b1e9f87b497fb8e80b19b23a512d",oI="c05bd06d7f6241c39521b6a517acd64e",oJ=60,oK="68f3e16ef5af4788a70940c137448e3c",oL="c2de5ab79d6c4f4f942d0bf4969cab30",oM="ad7e0ea0e6d543e2904ca1aa89b9ecdc",oN="65be8028eb6a412eb7fa021d444857f7",oO="216cfcc8474d426c9e650362cca0df99",oP="4c4cb0ea019c4c19b7d5c9ddbfacf1e8",oQ="6edbfc07805f48faabdffd3e0e342add",oR="f440b1a11e964dbda6c6dbf04fea1bd8",oS="6ae9c833a2674772baefba366136ea10",oT="5086331ab8cc40d5b915a948ecbb21a6",oU=260,oV="868d2c8d70c846d2a2b1b528e9fc178e",oW="4a0cffe966ce4da9a2a3370737a40e69",oX="eb64876d91f64ca9971d8f2f48d75be5",oY="6b5236032dfb4a3db6d3f68aca8dd2f1",oZ="6019e13cc8144f0ea16a7384c00a0ecc",pa="02dac1fe9a3449a5afa32d50d3a3bb07",pb="b53f544c3aa645839f41e5b63c470e2e",pc=82,pd="141fec451ccd456cbd3b4abc1c239279",pe="3442405822e74d158e9bcf187d0af0bb",pf="320fc017c31741369329462589ec7abc",pg="28c3759c5d8e4135b533ae83cffc28bb",ph="df7151d23ebf48a3917823dd424ed255",pi="97fa321393f743008c5ae2835869b265",pj="6c29680c2de0402e9bbad4c7c8ce6912",pk="188ea797b6484395872dc6b6c94ee81c",pl="c28d7700665d4fd2b8e22930c2ab1cd4",pm="b42bd1686e75479d8566db4c62f51156",pn="021d49ef97de44998916d6958590217b",po="af92cd3d816f441fb18513526afb4026",pp=460,pq=86,pr="559745df48c948bf892a3e168207e486",ps="8e0ab5a2ca464d7c8aa390dca5cd6a45",pt="4eb9cfe238b1475994e7b20a3a5975db",pu="6a13a62d4527422d89abf969eef2fac9",pv="b007b659b62d4536bbf08028986a68cf",pw="485f44787ca34958890a7f2513a675f2",px="5e26c316ec264305a9dbd9b89fe2a746",py="40d6781eb02a4dd3a6e8e931bb7492a3",pz="b08c9f06360a4559b36a4d7fd4ea528a",pA="d826fe22b8a244d0ac2ec19a1d0a2f49",pB="fbc5a5b12ce945a592983479b4b9fd9d",pC="9a6d51a364b4412989f561dbdbfc3863",pD="9b10d1ed79bb473c9687e8dacc311b95",pE=0xFF00FF99,pF="9df11a1112d143398203dd9500c15309",pG=0xFF707070,pH=565,pI="隐藏 弹窗X",pJ="images/页面框架/u463.svg",pK="9d9d5ba656fb4c3280f004a2bc71ebbd",pL="线段",pM="horizontalLine",pN="images/算法开发/u789.svg",pO="6c104f5357004bed9c9a6056063c296c",pP=64,pQ=21,pR="effc4e05c4c04b4cb84ef248887c8f10",pS="40a7654db31a4709928d01bef9cee962",pT=0xF2F2F2,pU=0xFF8080FF,pV="mouseDown",pW=0xFD596BFE,pX="0.7",pY="20px",pZ=490,qa=609,qb="images/页面框架/u467.svg",qc="mouseOver~",qd="images/页面框架/u467_mouseOver.svg",qe="mouseDown~",qf="images/页面框架/u467_mouseDown.svg",qg="845082fd8b76494abe593efe348d9cd6",qh=0xFF7F7F7F,qi=0xFFF0F7FF,qj=0xFE7ABBFF,qk=0xFFE4E4E4,ql="images/页面框架/u468.svg",qm="images/页面框架/u468_mouseOver.svg",qn="images/页面框架/u468_mouseDown.svg",qo="544acdcd8a24432e8d299b1499bc4fcf",qp="656e14c5e720440285de530751fc2e6e",qq=168,qr="2285372321d148ec80932747449c36c9",qs=617,qt=0x797979,qu=0.149019607843137,qv="7aac2cd1cbd447808675686b8ad3ab47",qw="9-删除",qx="13a93c53ce814e38a7c3851492a81ff0",qy=500,qz="d59ca3e577a945cd8981cb90da5f9ada",qA=390,qB=150,qC="72bf62f35fbd4c5f88935db7286a8199",qD="56ff49c284ae41bc89795dc2aafc988d",qE="圆形",qF="700",qG=0xFFD9001B,qH="ffcbe4a9a4414466aff9afe40ba64136",qI="images/算法开发/u799.svg",qJ="15bcb87ec13a4030b237ccd29c2308e9",qK=42,qL="f4e81f0dedbf49b587798225ee1d3e70",qM="baa3ba22960f47c0acb870a3a73fc3d9",qN="热区",qO="imageMapRegion",qP=157,qQ=1240,qR=220,qS="打开 编辑 在 当前窗口",qT="编辑",qU="编辑.html",qV="1d9156963dc444dca707825864e215d3",qW=1316,qX="设置 弹窗X 到 到 9-删除 ",qY="弹窗X 到 9-删除",qZ="设置 弹窗X 到 到 9-删除 ",ra="显示 弹窗X 灯箱效果",rb="显示 弹窗X",rc=" 灯箱效果",rd="lightbox",re=47,rf=79,rg=155,rh="07f509eae0ad4f258fe77d5da6c49a9c",ri=52,rj=1180,rk="打开 详情 在 当前窗口",rl="详情",rm="详情.html",rn="masters",ro="4b990bb6cff949a1b5064d9025ac7466",rp="Axure:Master",rq="b4af901033b249d38ee8eb1b94777365",rr="573733447bee46eea78d2b52ca56b99a",rs="a79a1fe7ec6b4ad58fc140e383b1863a",rt=0xFFF5F6FA,ru="458c47cd3b3c4a7eb8cf043d32222b99",rv=63,rw="07056249b2ee422393616a7350baacea",rx=1859,ry=900,rz="a7ce4e4c5c6d4f7da2e684ee804f68d0",rA="'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'",rB="650",rC="8c7a4c5ad69a4369a5f7788171ac0b32",rD=35,rE="onLoad",rF="Load时 ",rG="设置 文字于 当前等于"[[Pagename]]"",rH="当前 为 \"[[Pagename]]\"",rI="文字于 当前等于\"[[Pagename]]\"",rJ="[[Pagename]]",rK="sto",rL="var",rM="pagename",rN="打开 底层 在 当前窗口",rO="底层",rP="backUrl",rQ="objectPaths",rR="5a75a174a733487ba72b326b964d49f5",rS="scriptId",rT="u480",rU="b4af901033b249d38ee8eb1b94777365",rV="u481",rW="573733447bee46eea78d2b52ca56b99a",rX="u482",rY="458c47cd3b3c4a7eb8cf043d32222b99",rZ="u483",sa="07056249b2ee422393616a7350baacea",sb="u484",sc="a7ce4e4c5c6d4f7da2e684ee804f68d0",sd="u485",se="e42fbe0a3e3841c3ba612341de895f7e",sf="u486",sg="463764b3649b46ab853296b0073394db",sh="u487",si="8c18a4c61d0442bb9b5a877e9e8fb606",sj="u488",sk="ad1c3e0649444d4984e23fe87b7fb3af",sl="u489",sm="25727175ecdb4a4e958f25ba2fbc055f",sn="u490",so="3e46ced491bb497696a6dbbc5456bd87",sp="u491",sq="d0353fc316a84a3abd125a6f6afae5e9",sr="u492",ss="b279ac1ce00e45259b59a795c610dffa",st="u493",su="315edfaa16d04665b8692de1f4f9c793",sv="u494",sw="8b98334b85714d4c9a951fb38bea5519",sx="u495",sy="c073a246672748dd8db37e779bad3e00",sz="u496",sA="1bd363d259ee434184fe2a1ccc16a4f1",sB="u497",sC="c43efe88f849472d84e74968fefff333",sD="u498",sE="9dbd0381088547759ad987fcaa66a339",sF="u499",sG="c9632c230d57455fb3a04a351117ae59",sH="u500",sI="0afa32a28a754d0596514725795304cf",sJ="u501",sK="2d25d11524874349a7c39791c7d07b10",sL="u502",sM="3685b405b8344a758666314e11c79e6d",sN="u503",sO="b53f1ee3d6364f238770c97d920b2800",sP="u504",sQ="9be4ac2f8ad34c5d8a4cd8535690b7a3",sR="u505",sS="8a50488a0ff34464bd6cfa6b06a7362a",sT="u506",sU="acb450adfe3a4ad9864ab5d8a68ec003",sV="u507",sW="4634f6f2c9594e2b8167a72eca94539b",sX="u508",sY="68f089d1975a422cb3adeac56c028e89",sZ="u509",ta="8b6c94834e2b4152b8ca5dbc03aa890c",tb="u510",tc="8d0913df30b84b5e92681447b6042489",td="u511",te="316c7b916f12468391dcad5fead0295b",tf="u512",tg="981bf5c70b3749859b51a12b41c61a7b",th="u513",ti="ec0f74c7ddfe494887b1b2c27962fe99",tj="u514",tk="eeb4e71b227e4c15b4ed4f91dc038b02",tl="u515",tm="9e1986f2f8a24bf8b15646470b59a685",tn="u516",to="6fd49654d5ab4e27920b26c3324ec553",tp="u517",tq="8773253b6d68488d8d4d316cbc66275c",tr="u518",ts="31fb65698a3146718a3f476bd92f7404",tt="u519",tu="351c4d4567ee473c8ce6e40d9faab2a9",tv="u520",tw="fd36f37b07fd42de899865039200b65c",tx="u521",ty="eda8d2c1caf84f80a5b1f838ca019019",tz="u522",tA="4a38f5aeeafd4b76a46c0b8e9d2ab700",tB="u523",tC="3150654cf0de4cfbaf86b8995c3a69a3",tD="u524",tE="24cee4179e6f404a8cee2470cabeecb2",tF="u525",tG="5656e8a57b3f473ba066b50e303b37f2",tH="u526",tI="7d2aa689e6584a9d92733c4d569276e1",tJ="u527",tK="5840921b195d4d13985c17640456eaa2",tL="u528",tM="f5508d75f86e478684040e9c423f29f7",tN="u529",tO="b9ca45d0194a4bcca0dfdbd3d9ffe71b",tP="u530",tQ="c535780b419246608637e9e69d1d4947",tR="u531",tS="1169837d59534a3bb9ff7eb97634bc37",tT="u532",tU="b7129cd55619466d81a866d870f9f208",tV="u533",tW="a2d557f16741455ebb6a5a23640899e0",tX="u534",tY="3407b7b4331d4f40853f040b225581af",tZ="u535",ua="84c4d7d2a8eb438286b8e17330527cc3",ub="u536",uc="d458a4945ea044a79f7f13647e0c173e",ud="u537",ue="e79bd715a2d348e3a2814a09e4a09806",uf="u538",ug="cbbae4ae60e74eb1851510afc40a3844",uh="u539",ui="8fe2136cce9d46a38bc325ce48e5875b",uj="u540",uk="780e39172a514e95b8e8625a5b15545c",ul="u541",um="4d494dfe6e1a4118966c791b96fbe177",un="u542",uo="09f979266a9c4227943c1b92bd17e3bb",up="u543",uq="4a5c64b01e2f4d27a88de461b5bcaf07",ur="u544",us="4f35eeda82bd4feaa2617b0ce560baef",ut="u545",uu="be97c3bc16504ac19b6014502fee42b7",uv="u546",uw="52d8370289aa4388860ec40ce62cfcdf",ux="u547",uy="c56e7cf47c9f4f4cb66ad3a3ee67768a",uz="u548",uA="56a897fc0e6c4923b39c069bb8e3555f",uB="u549",uC="f37183c596e141079631535575c11b29",uD="u550",uE="34c0f857e47c422b950245933a04daab",uF="u551",uG="8f59a0810bee4a2c82bc70eb7cdabe0d",uH="u552",uI="76f380069bcc451c971768977a7e136a",uJ="u553",uK="517998cd525a4229a6d77664af72fe3b",uL="u554",uM="7dc00b0b5f6c4ecdb33556f392415a02",uN="u555",uO="u556",uP="f102b815e49b4d18a6a58b73c84dae22",uQ="u557",uR="d3e9c861803448019544718e6e45de3c",uS="u558",uT="badf80a06bfb42c19b21d269eee8d500",uU="u559",uV="8664e867293b4139b6e8a4caa7dad786",uW="u560",uX="8598130309a044cdb5a8806c8a81e676",uY="u561",uZ="90cb3a3d005443df82c1e87ae418c052",va="u562",vb="efca0cf80da842938f946aaa05422e60",vc="u563",vd="c48509f37ab84bb7b04b625c1786f23f",ve="u564",vf="c0ba9c9a06a44200abd01602080ec5a8",vg="u565",vh="ffa7dc92f52b4a5fb622195c2e13c972",vi="u566",vj="b6bb4a3c01e44e3f846d7d6346f9de2b",vk="u567",vl="091e518f5613484fa68148af7c5406a2",vm="u568",vn="98e4a3ef6524458ca91bab67dd9f4a8f",vo="u569",vp="956b98c5ac0540e7ab01318f5a71d01f",vq="u570",vr="372fc4c66b6a4b4bac1b77674862670e",vs="u571",vt="c7b7bde3aaa1493a96f56af7f1a30848",vu="u572",vv="e54d6bf0eabc4349b36cf2a18df074fc",vw="u573",vx="078de0eaf5eb445daa7f601d2c5bfdfd",vy="u574",vz="9b6616a53d0b47729b697d8bdb2067cb",vA="u575",vB="432776070e6f4ff3b8135abcd0763e8b",vC="u576",vD="199a2d56989944cd878f6cdaa62461f2",vE="u577",vF="d126e5be611142ab90ffd59f2e551eeb",vG="u578",vH="4c09d25b0ca54a78923150a6b854eb4c",vI="u579",vJ="5d83993b5bdc4324b7a314fb485b4b02",vK="u580",vL="8e8385ae46ad4782851f2ffaafcb22f3",vM="u581",vN="7198141b3c974042ae3b276b6e8f3d69",vO="u582",vP="3540370c822c442cbf4c6424a60620a0",vQ="u583",vR="9103342feaf44a169dd64f08ceaac5f0",vS="u584",vT="6144b3f882614ae78e80ad957098c169",vU="u585",vV="d840d1f297d84991b1bbf4d168c29aa6",vW="u586",vX="665680ab87e443cba3e4db5e1441f38c",vY="u587",vZ="36c2437896334a30bd07b1472e28a0e0",wa="u588",wb="49e83bfa5dcc42788f55fe317086c14e",wc="u589",wd="169656eef38147aeb1cd1d9ae307f4be",we="u590",wf="d76e1eb34bea48b59afd12d90bdb2ff4",wg="u591",wh="b3d4632a9b96440cb280a6cbb9deb102",wi="u592",wj="67f6d5d5377845d6911c4db81fbc495e",wk="u593",wl="88476dcf091549f98863c4ef74ebbc62",wm="u594",wn="9c557c0ce9b840d59a02819b175cc29e",wo="u595",wp="191db4ca5fa048e9b1fe33932c449e6d",wq="u596",wr="2978b1f6f7a740b480265f00d8a7dc72",ws="u597",wt="f68d11963fa44e678e50d011c7fd7e91",wu="u598",wv="85c878a957254b388c04983ef56e21d9",ww="u599",wx="b2deccf3d25d4317bd317299417de49d",wy="u600",wz="0014f1f608f34901a9465e7a9b3a3590",wA="u601",wB="bf127fda4fd3463ea7338cc308c38502",wC="u602",wD="65b8f0e435704e11969e93d041ddde42",wE="u603",wF="7045e5fc1fc2406d80cc4bd097011cb5",wG="u604",wH="55ad22e4a4e64859a101545f8684ad91",wI="u605",wJ="c42a95a4b4334be0988282fbf0958fe8",wK="u606",wL="7594ebf68f164c92be4ddf518927ab27",wM="u607",wN="e77a296c394b4f17973c6e2bb9b6ecdc",wO="u608",wP="1eddbe2a94794bb9be4ca02ff65ba178",wQ="u609",wR="80a57975aba24353ad50fe286b96834d",wS="u610",wT="fa6a96d6094e4dfb873de0b32e139ffc",wU="u611",wV="c8499e9325ab4e61a36eb50d4fe9b2e9",wW="u612",wX="27d2f8c5d8394ee08a35dd53c9aaf4ae",wY="u613",wZ="09005e66f7394197b4885c4bcc8b7661",xa="u614",xb="1fb60da0931249609dadc517f440b889",xc="u615",xd="6ffcd2642b59456e81172873efb033af",xe="u616",xf="27ee570bf2bc43978571f669d66fe0f6",xg="u617",xh="04d533f5b1b8418a905dbee12c092e8b",xi="u618",xj="a748a7a337844d0884961eb7aa46e589",xk="u619",xl="113bd588f0e14c5db94600cfab711375",xm="u620",xn="9e5064ae006b4dc99d1ecfb75f808921",xo="u621",xp="53739dc5294f419d84f4c666a0d72d7e",xq="u622",xr="97c56fb394d54269b3671056f3f38d1c",xs="u623",xt="317f278909c14f519a2a5a734aac666e",xu="u624",xv="4a0bf1eae261410e878500e5644f91bd",xw="u625",xx="9be8abfcf8344070b282a1ba8e9e909d",xy="u626",xz="7f5c9f4f4e3d49e2a67c9dd4a5dbecd7",xA="u627",xB="bfd79e27aaf84199a173834af047f61c",xC="u628",xD="2b91fd51bffd4d3a97aab7d2981902c2",xE="u629",xF="d2a3edb039184dd0b5e6234bdacf4ce7",xG="u630",xH="52d9d9ea0ddf46ec87d8844240057923",xI="u631",xJ="47149c7fd8c24157bf4a150baf939fb0",xK="u632",xL="306f280346724120829c771c286e9746",xM="u633",xN="adeabdb48f4d49399bdf24279f2c938e",xO="u634",xP="ebd03c34a7304f25b52d7d2afcd0b186",xQ="u635",xR="271a1fda6aa64de19a758f106319ec41",xS="u636",xT="0c76a3c0c42b47c285ce10f053589927",xU="u637",xV="34dca812d15846d6800ea026d1142c7d",xW="u638",xX="ce51b97c92ee4e328eb7c98fbd87ac1b",xY="u639",xZ="b655e59d4c9349fa87e30cb2730bb882",ya="u640",yb="128c791f6bb14c628313d69369b99624",yc="u641",yd="e34a97bc3fed4bd8842e67b10388b95f",ye="u642",yf="8e0f7647c047439aa6248dbafdcaca1f",yg="u643",yh="432e50efdf01433fb0dcc7c3f9b82342",yi="u644",yj="01fc45b83ae64959a9c0eb2b815eba79",yk="u645",yl="dacc6b4d5fb34e5cba2bde013400b2dd",ym="u646",yn="8cb2c969987f42afacf0ff0b0fba1cf5",yo="u647",yp="5ec845169f4b42058adf5be630df57bb",yq="u648",yr="bd2cb50a8b4b44af8297928d9e2b9b26",ys="u649",yt="f2b5af5b3891474182905e21849c557d",yu="u650",yv="95306ec0d16d47899b5d40243d2f227e",yw="u651",yx="48b54bf4392442b88bb2477f47df426b",yy="u652",yz="d90abc1a26b44ed2be54c28051690118",yA="u653",yB="6a90b059c0e546d1bf8693e96cc37a5b",yC="u654",yD="6d772283b78a4b30af34a3c7d9be4806",yE="u655",yF="41ef00a5a98d4812affb1cac912656fb",yG="u656",yH="6081322c4e714c82a234caab4697542b",yI="u657",yJ="8c27cab41b644ae89d3fc29a9c2508df",yK="u658",yL="fbbf07f0d244406e9bf3959fe9304683",yM="u659",yN="f2e4c6bd4c224016a6471f2aa431e7f2",yO="u660",yP="233a4888f8b340ac978f15a8ec56c9c9",yQ="u661",yR="2a7208015c744b27a92ec06040eddf3c",yS="u662",yT="80c7df3b381049d488780697b5bfbd8f",yU="u663",yV="4cf98bd4cd5a4d6785a91016533ff8d8",yW="u664",yX="aa8948f895334057a4fbc7ed70bb0447",yY="u665",yZ="d10d5b80f57248a4a239d26311a070ff",za="u666",zb="2c511c6224844a18b951ddaad268292e",zc="u667",zd="04d031c3ce1a4dee959568c2543010df",ze="u668",zf="08e9bda5f53f4e6dada197850a3f10d6",zg="u669",zh="bf14ff56124c497db5b15398ff9b3820",zi="u670",zj="6efdc779eb2d490ab9b6b590956c9770",zk="u671",zl="456456e65def46268387d2d57ec88411",zm="u672",zn="dcef5450287c4370bc1923acd4b08979",zo="u673",zp="df2193661a8c4fdb89352b17391c1d0b",zq="u674",zr="f5d63496adf04ea7b11f03e416103b28",zs="u675",zt="227c8c323ca343feb18ec04630be459e",zu="u676",zv="cfda964b39224a2b9652753fec3ff69a",zw="u677",zx="53feff7f74724d2083da31c4011ccb0d",zy="u678",zz="c7fd6544d0ea4840b66ce91ee8fd59d4",zA="u679",zB="73560b08e71b4352b1daf302d25213f7",zC="u680",zD="u681",zE="ce72dae976a24996ba372133f3f3299c",zF="u682",zG="u683",zH="u684",zI="u685",zJ="c371a8eae74a4bddae1dd48928df1811",zK="u686",zL="6020e01bc9d0427f882ef9de1fe9ddd3",zM="u687",zN="29b8d1da3a7b4d7681d4c357a3058a20",zO="u688",zP="c803da7d283444e18ecd74959739ab5b",zQ="u689",zR="3568802b6e67476da28fb2e9d8fa2fd7",zS="u690",zT="49342ad08d8d4f68977b05fc3658f1bf",zU="u691",zV="c8528af5675144369db5bb7d8c73f6a4",zW="u692",zX="87d31611ff9e4163b31cc76a7ac596b4",zY="u693",zZ="7a991be0239a4478bed42bafbd2a0ae7",Aa="u694",Ab="3115f57d87864768b910d623be7160e2",Ac="u695",Ad="d264475240bc4f90ad1ad177daf368b7",Ae="u696",Af="9bba19b370134277af810eb66c17fc0b",Ag="u697",Ah="59077ee1d3ee4616a8d5def05773b32a",Ai="u698",Aj="f8174b2fd77a4a74957c54abb236c894",Ak="u699",Al="1592c2054f194755bc149b144c33e4c8",Am="u700",An="39db31ddaa1a4b9397bc26827168b01e",Ao="u701",Ap="ad7e0ea0e6d543e2904ca1aa89b9ecdc",Aq="u702",Ar="6958b1e9f87b497fb8e80b19b23a512d",As="u703",At="11ff4807fccf4049b33da7ed17f52a1d",Au="u704",Av="6edbfc07805f48faabdffd3e0e342add",Aw="u705",Ax="6ae9c833a2674772baefba366136ea10",Ay="u706",Az="f440b1a11e964dbda6c6dbf04fea1bd8",AA="u707",AB="65be8028eb6a412eb7fa021d444857f7",AC="u708",AD="4c4cb0ea019c4c19b7d5c9ddbfacf1e8",AE="u709",AF="216cfcc8474d426c9e650362cca0df99",AG="u710",AH="c05bd06d7f6241c39521b6a517acd64e",AI="u711",AJ="c2de5ab79d6c4f4f942d0bf4969cab30",AK="u712",AL="68f3e16ef5af4788a70940c137448e3c",AM="u713",AN="5203bdea5e254368b6e52afb16b68ed9",AO="u714",AP="cd55c0b57d774a8e9e5e5e0460a22f6e",AQ="u715",AR="2d84e8cb739e43bf8b3f3420c5b001a4",AS="u716",AT="33a12bbf56c948439dc6280da20d3922",AU="u717",AV="74f4c57b948b4a2e9574d4e0314d6521",AW="u718",AX="3e2a7dfe0b9e44f895410bd8ccbc668b",AY="u719",AZ="21b23ddc247f4ddca9c4de80c36de9a6",Ba="u720",Bb="58ce1fa1931e439480c8dc9f623ded5e",Bc="u721",Bd="9f6be7e9b9844f3092297e3f62a096d6",Be="u722",Bf="53b1ccc1d1fb404cabd842a75c3c6e75",Bg="u723",Bh="02914438c5e54f2ca0a90e9a4600ee15",Bi="u724",Bj="2b3640577f87488393dad29cc17727db",Bk="u725",Bl="2d288308f19146b294269783f17d805c",Bm="u726",Bn="c76242ba7cd244bcade3f616790ee89e",Bo="u727",Bp="a6bf7a76ccc1402ea7fa31bdf9c894f1",Bq="u728",Br="477d02fd918346019546ca4195a99333",Bs="u729",Bt="89ca20a7104e4b2ba73f2e7128eb0dc8",Bu="u730",Bv="70c77777761b49799c36b84d1b214ad4",Bw="u731",Bx="88e3c5e051044a43ba1cb618a0627902",By="u732",Bz="46f1049c31c64014b2d8b85fc41392a0",BA="u733",BB="c170140478014927896789dbef84923c",BC="u734",BD="7518186b0ce042a4b7a7af8d7c5bd18b",BE="u735",BF="5086331ab8cc40d5b915a948ecbb21a6",BG="u736",BH="021d49ef97de44998916d6958590217b",BI="u737",BJ="4a0cffe966ce4da9a2a3370737a40e69",BK="u738",BL="868d2c8d70c846d2a2b1b528e9fc178e",BM="u739",BN="eb64876d91f64ca9971d8f2f48d75be5",BO="u740",BP="6019e13cc8144f0ea16a7384c00a0ecc",BQ="u741",BR="02dac1fe9a3449a5afa32d50d3a3bb07",BS="u742",BT="6b5236032dfb4a3db6d3f68aca8dd2f1",BU="u743",BV="b53f544c3aa645839f41e5b63c470e2e",BW="u744",BX="b42bd1686e75479d8566db4c62f51156",BY="u745",BZ="3442405822e74d158e9bcf187d0af0bb",Ca="u746",Cb="141fec451ccd456cbd3b4abc1c239279",Cc="u747",Cd="320fc017c31741369329462589ec7abc",Ce="u748",Cf="188ea797b6484395872dc6b6c94ee81c",Cg="u749",Ch="c28d7700665d4fd2b8e22930c2ab1cd4",Ci="u750",Cj="28c3759c5d8e4135b533ae83cffc28bb",Ck="u751",Cl="df7151d23ebf48a3917823dd424ed255",Cm="u752",Cn="6c29680c2de0402e9bbad4c7c8ce6912",Co="u753",Cp="97fa321393f743008c5ae2835869b265",Cq="u754",Cr="7ace4f20031147808ab5b8146e9271ad",Cs="u755",Ct="2d965bde35134d48a454a3a2033c868b",Cu="u756",Cv="216f84dfae964050b2905c584864b50e",Cw="u757",Cx="c737cc9e2eb1499f9fbff9943bade727",Cy="u758",Cz="18e7f3eac4c147f6bca6c9eed41ad205",CA="u759",CB="0039a9c799ca4088b377740b86c1e417",CC="u760",CD="c5be6d017bf5470197a5c69b45934f88",CE="u761",CF="c3ca3e1b7ed0410fb1456f5100dd9f51",CG="u762",CH="eafc3aab55d84eeca8684f45bb1502fd",CI="u763",CJ="bb3dec26299f430caf38f5e2e4373f07",CK="u764",CL="3adf25af40fa4535b62ce9b0d153bd26",CM="u765",CN="2ed05f9866e64da89adfe70ad0d3763c",CO="u766",CP="5a711dbdc54d41f9933a062bc70c9735",CQ="u767",CR="ea063eb9f3374bae8b7c433e8589c8f4",CS="u768",CT="771a2a9d736940a6a9526ef7ad938a3e",CU="u769",CV="cf4e9d5c7933458eabf289f45393a97e",CW="u770",CX="4d4686ffd11f4d208c5af8eb7e428f41",CY="u771",CZ="264ce403a7a448319ee1167d7a66343b",Da="u772",Db="2891a094797d4b7f94ce7f38dcfc21ee",Dc="u773",Dd="af92cd3d816f441fb18513526afb4026",De="u774",Df="d826fe22b8a244d0ac2ec19a1d0a2f49",Dg="u775",Dh="8e0ab5a2ca464d7c8aa390dca5cd6a45",Di="u776",Dj="559745df48c948bf892a3e168207e486",Dk="u777",Dl="4eb9cfe238b1475994e7b20a3a5975db",Dm="u778",Dn="b08c9f06360a4559b36a4d7fd4ea528a",Do="u779",Dp="b007b659b62d4536bbf08028986a68cf",Dq="u780",Dr="6a13a62d4527422d89abf969eef2fac9",Ds="u781",Dt="485f44787ca34958890a7f2513a675f2",Du="u782",Dv="40d6781eb02a4dd3a6e8e931bb7492a3",Dw="u783",Dx="5e26c316ec264305a9dbd9b89fe2a746",Dy="u784",Dz="fbc5a5b12ce945a592983479b4b9fd9d",DA="u785",DB="6054ff084fe74fcd8cc57aa37820b332",DC="u786",DD="9a6d51a364b4412989f561dbdbfc3863",DE="u787",DF="9b10d1ed79bb473c9687e8dacc311b95",DG="u788",DH="9d9d5ba656fb4c3280f004a2bc71ebbd",DI="u789",DJ="6c104f5357004bed9c9a6056063c296c",DK="u790",DL="effc4e05c4c04b4cb84ef248887c8f10",DM="u791",DN="40a7654db31a4709928d01bef9cee962",DO="u792",DP="845082fd8b76494abe593efe348d9cd6",DQ="u793",DR="544acdcd8a24432e8d299b1499bc4fcf",DS="u794",DT="656e14c5e720440285de530751fc2e6e",DU="u795",DV="13a93c53ce814e38a7c3851492a81ff0",DW="u796",DX="d59ca3e577a945cd8981cb90da5f9ada",DY="u797",DZ="72bf62f35fbd4c5f88935db7286a8199",Ea="u798",Eb="56ff49c284ae41bc89795dc2aafc988d",Ec="u799",Ed="15bcb87ec13a4030b237ccd29c2308e9",Ee="u800",Ef="f4e81f0dedbf49b587798225ee1d3e70",Eg="u801",Eh="baa3ba22960f47c0acb870a3a73fc3d9",Ei="u802",Ej="1d9156963dc444dca707825864e215d3",Ek="u803",El="07f509eae0ad4f258fe77d5da6c49a9c",Em="u804"; +return _creator(); +})()); \ No newline at end of file diff --git "a/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\347\256\227\346\263\225\345\274\200\345\217\221/styles.css" "b/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\347\256\227\346\263\225\345\274\200\345\217\221/styles.css" new file mode 100644 index 0000000000000000000000000000000000000000..9416df1f6d8928976ba324a5c226de7144ae924f --- /dev/null +++ "b/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\347\256\227\346\263\225\345\274\200\345\217\221/styles.css" @@ -0,0 +1,11864 @@ +body { + margin:0px; + background-image:none; + position:relative; + left:0px; + width:1920px; + margin-left:auto; + margin-right:auto; + text-align:left; +} +.form_sketch { + border-color:transparent; + background-color:transparent; +} +#base { + position:absolute; + z-index:0; +} +#u481 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u482_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1920px; + height:1300px; + background:inherit; + background-color:rgba(245, 246, 250, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u482 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1920px; + height:1300px; + display:flex; +} +#u482 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u482_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u483_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1920px; + height:63px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u483 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1920px; + height:63px; + display:flex; +} +#u483 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u483_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u484_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1859px; + height:900px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u484 { + border-width:0px; + position:absolute; + left:25px; + top:88px; + width:1859px; + height:900px; + display:flex; +} +#u484 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u484_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u485_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:400px; + height:22px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:16px; +} +#u485 { + border-width:0px; + position:absolute; + left:35px; + top:21px; + width:400px; + height:22px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:16px; +} +#u485 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u485_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u486 { + border-width:0px; + position:absolute; + left:50px; + top:172px; + width:1460px; + height:205px; +} +#u487_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:300px; + height:45px; +} +#u487 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:300px; + height:45px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u487 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u487_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u488_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:45px; +} +#u488 { + border-width:0px; + position:absolute; + left:300px; + top:0px; + width:290px; + height:45px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u488 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u488_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u489_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:240px; + height:45px; +} +#u489 { + border-width:0px; + position:absolute; + left:590px; + top:0px; + width:240px; + height:45px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u489 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u489_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u490_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:45px; +} +#u490 { + border-width:0px; + position:absolute; + left:830px; + top:0px; + width:290px; + height:45px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u490 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u490_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u491_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:340px; + height:45px; +} +#u491 { + border-width:0px; + position:absolute; + left:1120px; + top:0px; + width:340px; + height:45px; + display:flex; + font-family:'Helvetica'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u491 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u491_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u492_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:300px; + height:40px; +} +#u492 { + border-width:0px; + position:absolute; + left:0px; + top:45px; + width:300px; + height:40px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u492 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u492_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u493_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:40px; +} +#u493 { + border-width:0px; + position:absolute; + left:300px; + top:45px; + width:290px; + height:40px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u493 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u493_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u494_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:240px; + height:40px; +} +#u494 { + border-width:0px; + position:absolute; + left:590px; + top:45px; + width:240px; + height:40px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u494 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u494_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u495_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:40px; +} +#u495 { + border-width:0px; + position:absolute; + left:830px; + top:45px; + width:290px; + height:40px; + display:flex; + font-family:'Helvetica'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u495 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u495_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u496_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:340px; + height:40px; +} +#u496 { + border-width:0px; + position:absolute; + left:1120px; + top:45px; + width:340px; + height:40px; + display:flex; + font-family:'Helvetica'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u496 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u496_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u497_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:300px; + height:40px; +} +#u497 { + border-width:0px; + position:absolute; + left:0px; + top:85px; + width:300px; + height:40px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u497 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u497_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u498_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:40px; +} +#u498 { + border-width:0px; + position:absolute; + left:300px; + top:85px; + width:290px; + height:40px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u498 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u498_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u499_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:240px; + height:40px; +} +#u499 { + border-width:0px; + position:absolute; + left:590px; + top:85px; + width:240px; + height:40px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u499 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u499_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u500_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:40px; +} +#u500 { + border-width:0px; + position:absolute; + left:830px; + top:85px; + width:290px; + height:40px; + display:flex; + font-family:'Helvetica'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u500 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u500_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u501_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:340px; + height:40px; +} +#u501 { + border-width:0px; + position:absolute; + left:1120px; + top:85px; + width:340px; + height:40px; + display:flex; + font-family:'Helvetica'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u501 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u501_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u502_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:300px; + height:40px; +} +#u502 { + border-width:0px; + position:absolute; + left:0px; + top:125px; + width:300px; + height:40px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u502 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u502_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u503_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:40px; +} +#u503 { + border-width:0px; + position:absolute; + left:300px; + top:125px; + width:290px; + height:40px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u503 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u503_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u504_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:240px; + height:40px; +} +#u504 { + border-width:0px; + position:absolute; + left:590px; + top:125px; + width:240px; + height:40px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u504 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u504_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u505_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:40px; +} +#u505 { + border-width:0px; + position:absolute; + left:830px; + top:125px; + width:290px; + height:40px; + display:flex; + font-family:'Helvetica'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u505 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u505_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u506_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:340px; + height:40px; +} +#u506 { + border-width:0px; + position:absolute; + left:1120px; + top:125px; + width:340px; + height:40px; + display:flex; + font-family:'Helvetica'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u506 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u506_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u507_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:300px; + height:40px; +} +#u507 { + border-width:0px; + position:absolute; + left:0px; + top:165px; + width:300px; + height:40px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u507 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u507_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u508_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:40px; +} +#u508 { + border-width:0px; + position:absolute; + left:300px; + top:165px; + width:290px; + height:40px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u508 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u508_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u509_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:240px; + height:40px; +} +#u509 { + border-width:0px; + position:absolute; + left:590px; + top:165px; + width:240px; + height:40px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u509 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u509_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u510_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:40px; +} +#u510 { + border-width:0px; + position:absolute; + left:830px; + top:165px; + width:290px; + height:40px; + display:flex; + font-family:'Helvetica'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u510 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u510_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u511_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:340px; + height:40px; +} +#u511 { + border-width:0px; + position:absolute; + left:1120px; + top:165px; + width:340px; + height:40px; + display:flex; + font-family:'Helvetica'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#555555; + text-align:left; +} +#u511 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 15px; + box-sizing:border-box; + width:100%; +} +#u511_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u512 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u513_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:32px; + height:32px; + background:inherit; + background-color:rgba(101, 118, 255, 1); + border:none; + border-radius:6px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:14px; + color:#FFFFFF; + line-height:22px; +} +#u513 { + border-width:0px; + position:absolute; + left:1190px; + top:413px; + width:32px; + height:32px; + display:flex; + font-size:14px; + color:#FFFFFF; + line-height:22px; +} +#u513 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u513_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u514_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:28px; + height:22px; + 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:'Microsoft YaHei Regular', 'Microsoft YaHei'; + font-weight:400; + font-style:normal; + font-size:14px; + color:rgba(0, 0, 0, 0.647058823529412); + line-height:22px; +} +#u514 { + border-width:0px; + position:absolute; + left:1383px; + top:418px; + width:28px; + height:22px; + display:flex; + font-family:'Microsoft YaHei Regular', 'Microsoft YaHei'; + font-weight:400; + font-style:normal; + font-size:14px; + color:rgba(0, 0, 0, 0.647058823529412); + line-height:22px; +} +#u514 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u514_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u515_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:48px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(217, 217, 217, 1); + border-radius:6px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:14px; + color:rgba(0, 0, 0, 0.647058823529412); + text-align:left; + line-height:22px; +} +#u515 { + border-width:0px; + position:absolute; + left:1420px; + top:413px; + width:48px; + height:32px; + display:flex; + font-size:14px; + color:rgba(0, 0, 0, 0.647058823529412); + text-align:left; + line-height:22px; +} +#u515 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 16px; + box-sizing:border-box; + width:100%; +} +#u515_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u516_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:14px; + height:22px; + 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:'Microsoft YaHei Regular', 'Microsoft YaHei'; + font-weight:400; + font-style:normal; + font-size:14px; + color:rgba(0, 0, 0, 0.647058823529412); + line-height:22px; +} +#u516 { + border-width:0px; + position:absolute; + left:1476px; + top:418px; + width:14px; + height:22px; + display:flex; + font-family:'Microsoft YaHei Regular', 'Microsoft YaHei'; + font-weight:400; + font-style:normal; + font-size:14px; + color:rgba(0, 0, 0, 0.647058823529412); + line-height:22px; +} +#u516 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 2px 0px; + box-sizing:border-box; + width:100%; +} +#u516_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u517 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u518_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:88px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(217, 217, 217, 1); + border-radius:6px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:14px; + color:rgba(0, 0, 0, 0.647058823529412); + text-align:left; + line-height:22px; +} +#u518 { + border-width:0px; + position:absolute; + left:1280px; + top:413px; + width:88px; + height:32px; + display:flex; + font-size:14px; + color:rgba(0, 0, 0, 0.647058823529412); + text-align:left; + line-height:22px; +} +#u518 .text { + position:absolute; + align-self:center; + padding:2px 30px 2px 8px; + box-sizing:border-box; + width:100%; +} +#u518_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u519_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u519 { + border-width:0px; + position:absolute; + left:1345px; + top:422px; + width:14px; + height:14px; + display:flex; + -webkit-transform:rotate(90deg); + -moz-transform:rotate(90deg); + -ms-transform:rotate(90deg); + transform:rotate(90deg); + opacity:0.400000005960464; +} +#u519 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u519_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u520 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u521_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:32px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(217, 217, 217, 1); + border-radius:6px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:12px; + color:#666666; +} +#u521 { + border-width:0px; + position:absolute; + left:1150px; + top:413px; + width:32px; + height:32px; + display:flex; + font-size:12px; + color:#666666; +} +#u521 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u521_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u522_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u522 { + border-width:0px; + position:absolute; + left:1159px; + top:422px; + width:14px; + height:14px; + display:flex; + -webkit-transform:rotate(180deg); + -moz-transform:rotate(180deg); + -ms-transform:rotate(180deg); + transform:rotate(180deg); + opacity:0.400000005960464; +} +#u522 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u522_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u523 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u524_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:32px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(217, 217, 217, 1); + border-radius:6px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:12px; + color:#666666; +} +#u524 { + border-width:0px; + position:absolute; + left:1232px; + top:413px; + width:32px; + height:32px; + display:flex; + font-size:12px; + color:#666666; +} +#u524 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u524_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u525_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:14px; + height:14px; +} +#u525 { + border-width:0px; + position:absolute; + left:1241px; + top:422px; + width:14px; + height:14px; + display:flex; + opacity:0.400000005960464; +} +#u525 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u525_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u526 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u527 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u528_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:80px; + height:32px; + background:inherit; + background-color:rgba(101, 118, 255, 1); + border:none; + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#FFFFFF; + line-height:22px; +} +#u528 { + border-width:0px; + position:absolute; + left:1315px; + top:115px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#FFFFFF; + line-height:22px; +} +#u528 .text { + position:absolute; + align-self:center; + padding:0px 16px 0px 16px; + box-sizing:border-box; + width:100%; +} +#u528_div.mouseOver { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:80px; + height:32px; + background:inherit; + background-color:rgba(160, 171, 255, 1); + border:none; + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#FFFFFF; + line-height:22px; +} +#u528.mouseOver { +} +#u528_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u529_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:80px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(217, 217, 217, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:rgba(0, 0, 0, 0.647058823529412); + line-height:22px; +} +#u529 { + border-width:0px; + position:absolute; + left:1405px; + top:115px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:rgba(0, 0, 0, 0.647058823529412); + line-height:22px; +} +#u529 .text { + position:absolute; + align-self:center; + padding:2px 16px 2px 16px; + box-sizing:border-box; + width:100%; +} +#u529_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u530_input { + position:absolute; + left:0px; + top:0px; + width:300px; + height:32px; + padding:3px 2px 3px 5px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u530_input.disabled { + position:absolute; + left:0px; + top:0px; + width:300px; + height:32px; + padding:3px 2px 3px 5px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u530_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:300px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u530 { + border-width:0px; + position:absolute; + left:1000px; + top:115px; + width:300px; + height:32px; + display:flex; +} +#u530 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 5px; + box-sizing:border-box; + width:100%; +} +#u530_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:300px; + height:32px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u530.disabled { +} +#u531_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:32px; + background:inherit; + background-color:rgba(101, 118, 255, 1); + border:none; + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#FFFFFF; + line-height:22px; +} +#u531 { + border-width:0px; + position:absolute; + left:61px; + top:115px; + width:100px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#FFFFFF; + line-height:22px; +} +#u531 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u531_div.mouseOver { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:32px; + background:inherit; + background-color:rgba(160, 171, 255, 1); + border:none; + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#FFFFFF; + line-height:22px; +} +#u531.mouseOver { +} +#u531_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u532 { + position:fixed; + left:50%; + margin-left:-300px; + top:50%; + margin-top:-330px; + visibility:hidden; +} +#u532_state0 { + position:relative; + left:0px; + top:0px; + width:600px; + height:660px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u532_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u533_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:600px; + height:660px; + 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:8px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; +} +#u533 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:600px; + height:660px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; +} +#u533 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u533_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u534 { + position:absolute; + left:0px; + top:50px; +} +#u534_state0 { + position:relative; + left:0px; + top:0px; + width:555px; + height:523px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u534_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u535_input { + position:absolute; + left:0px; + top:0px; + width:420px; + height:32px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u535_input.mouseOver { + position:absolute; + left:0px; + top:0px; + width:420px; + height:32px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u535_input.focused { + position:absolute; + left:0px; + top:0px; + width:420px; + height:32px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u535_input.disabled { + position:absolute; + left:0px; + top:0px; + width:420px; + height:32px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u535_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:420px; + height:32px; + 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:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u535 { + border-width:0px; + position:absolute; + left:135px; + top:23px; + width:420px; + height:32px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u535 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 10px; + box-sizing:border-box; + width:100%; +} +#u535_div.mouseOver { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:420px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(64, 158, 255, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u535.mouseOver { +} +#u535_div.focused { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:420px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(64, 158, 255, 1); + border-radius:4px; + -moz-box-shadow:0px 0px 5px rgba(64, 158, 255, 0.247058823529412); + -webkit-box-shadow:0px 0px 5px rgba(64, 158, 255, 0.247058823529412); + box-shadow:0px 0px 5px rgba(64, 158, 255, 0.247058823529412); + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u535.focused { +} +#u535_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:420px; + height:32px; + background:inherit; + background-color:rgba(242, 242, 242, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(215, 215, 215, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u535.disabled { +} +#u536_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:75px; + height:17px; + 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:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u536 { + border-width:0px; + position:absolute; + left:25px; + top:30px; + width:75px; + height:17px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u536 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u536_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u537_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:90px; + height:15px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u537 { + border-width:0px; + position:absolute; + left:25px; + top:400px; + width:90px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u537 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u537_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u538_input { + position:absolute; + left:0px; + top:0px; + width:420px; + height:30px; + padding:3px 2px 3px 10px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u538_input.disabled { + position:absolute; + left:0px; + top:0px; + width:420px; + height:30px; + padding:3px 2px 3px 10px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u538_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:420px; + height:30px; + 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:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:12px; +} +#u538 { + border-width:0px; + position:absolute; + left:120px; + top:394px; + width:420px; + height:30px; + display:flex; + font-size:12px; +} +#u538 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 10px; + box-sizing:border-box; + width:100%; +} +#u538_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:420px; + height:30px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(215, 215, 215, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:12px; +} +#u538.disabled { +} +.u538_input_option { + font-size:12px; +} +#u539_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:48px; + height:18px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:16px; + color:#FF3399; +} +#u539 { + border-width:0px; + position:absolute; + left:36px; + top:435px; + width:48px; + height:18px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:16px; + color:#FF3399; +} +#u539 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u539_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u540_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:526px; + height:62px; + background:inherit; + background-color:rgba(255, 255, 255, 0); + box-sizing:border-box; + border-width:2px; + border-style:solid; + border-color:rgba(255, 51, 153, 1); + border-top:0px; + border-right:0px; + border-bottom:0px; + border-radius:0px; + border-top-left-radius:0px; + border-top-right-radius:0px; + border-bottom-right-radius:0px; + border-bottom-left-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#FF3399; + line-height:18px; +} +#u540 { + border-width:0px; + position:absolute; + left:29px; + top:461px; + width:526px; + height:62px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:14px; + color:#FF3399; + line-height:18px; +} +#u540 .text { + position:absolute; + align-self:flex-start; + padding:4px 0px 4px 8px; + box-sizing:border-box; + width:100%; +} +#u540_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u541 { + position:absolute; + left:20px; + top:65px; +} +#u541_state0 { + position:relative; + left:0px; + top:0px; + width:535px; + height:314px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u541_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u542_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:15px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u542 { + border-width:0px; + position:absolute; + left:15px; + top:5px; + width:100px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u542 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u542_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u543 label { + left:0px; + width:100%; +} +#u543_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u543 { + border-width:0px; + position:absolute; + left:120px; + top:5px; + width:84px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u543 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u543_img.selected { +} +#u543.selected { +} +#u543_img.disabled { +} +#u543.disabled { +} +#u543_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:68px; + word-wrap:break-word; + text-transform:none; +} +#u543_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u544 label { + left:0px; + width:100%; +} +#u544_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u544 { + border-width:0px; + position:absolute; + left:204px; + top:5px; + width:84px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u544 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u544_img.selected { +} +#u544.selected { +} +#u544_img.disabled { +} +#u544.disabled { +} +#u544_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:68px; + word-wrap:break-word; + text-transform:none; +} +#u544_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u545 label { + left:0px; + width:100%; +} +#u545_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u545 { + border-width:0px; + position:absolute; + left:287px; + top:5px; + width:73px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u545 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u545_img.selected { +} +#u545.selected { +} +#u545_img.disabled { +} +#u545.disabled { +} +#u545_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:57px; + word-wrap:break-word; + text-transform:none; +} +#u545_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u546_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:73px; + height:15px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u546 { + border-width:0px; + position:absolute; + left:5px; + top:130px; + width:73px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u546 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u546_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u547_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:47px; + height:15px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u547 { + border-width:0px; + position:absolute; + left:90px; + top:250px; + width:47px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u547 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u547_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u548_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:73px; + height:15px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u548 { + border-width:0px; + position:absolute; + left:90px; + top:290px; + width:73px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u548 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u548_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u549_input { + position:absolute; + left:0px; + top:0px; + width:364px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u549_input.disabled { + position:absolute; + left:0px; + top:0px; + width:364px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u549_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:364px; + height:30px; + 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:12px; +} +#u549 { + border-width:0px; + position:absolute; + left:170px; + top:284px; + width:364px; + height:30px; + display:flex; + font-size:12px; +} +#u549 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u549_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:364px; + height:30px; + background:inherit; + background-color:rgba(240, 240, 240, 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:12px; +} +#u549.disabled { +} +.u549_input_option { + font-size:12px; +} +#u550_input { + position:absolute; + left:0px; + top:0px; + width:55px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u550_input.disabled { + position:absolute; + left:0px; + top:0px; + width:55px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u550_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:55px; + height:30px; + 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; +} +#u550 { + border-width:0px; + position:absolute; + left:285px; + top:124px; + width:55px; + height:30px; + display:flex; +} +#u550 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u550_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:55px; + height:30px; + background:inherit; + background-color:rgba(240, 240, 240, 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; +} +#u550.disabled { +} +#u551_input { + position:absolute; + left:0px; + top:0px; + width:110px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u551_input.disabled { + position:absolute; + left:0px; + top:0px; + width:110px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u551_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:110px; + height:30px; + 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; +} +#u551 { + border-width:0px; + position:absolute; + left:170px; + top:124px; + width:110px; + height:30px; + display:flex; +} +#u551 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u551_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:110px; + height:30px; + background:inherit; + background-color:rgba(240, 240, 240, 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; +} +#u551.disabled { +} +#u552_input { + position:absolute; + left:0px; + top:0px; + width:110px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u552_input.disabled { + position:absolute; + left:0px; + top:0px; + width:110px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u552_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:110px; + height:30px; + 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; +} +#u552 { + border-width:0px; + position:absolute; + left:365px; + top:124px; + width:110px; + height:30px; + display:flex; +} +#u552 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u552_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:110px; + height:30px; + background:inherit; + background-color:rgba(240, 240, 240, 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; +} +#u552.disabled { +} +#u553_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u553 { + border-width:0px; + position:absolute; + left:348px; + top:131px; + width:9px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u553 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u553_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u554_input { + position:absolute; + left:0px; + top:0px; + width:55px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u554_input.disabled { + position:absolute; + left:0px; + top:0px; + width:55px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u554_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:55px; + height:30px; + 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; +} +#u554 { + border-width:0px; + position:absolute; + left:480px; + top:124px; + width:55px; + height:30px; + display:flex; +} +#u554 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u554_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:55px; + height:30px; + background:inherit; + background-color:rgba(240, 240, 240, 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; +} +#u554.disabled { +} +#u555_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:73px; + height:15px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u555 { + border-width:0px; + position:absolute; + left:90px; + top:210px; + width:73px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u555 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u555_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u556_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:73px; + height:15px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u556 { + border-width:0px; + position:absolute; + left:90px; + top:130px; + width:73px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u556 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u556_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u557_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:73px; + height:15px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u557 { + border-width:0px; + position:absolute; + left:90px; + top:170px; + width:73px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u557 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u557_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u558_input { + position:absolute; + left:0px; + top:0px; + width:364px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u558_input.disabled { + position:absolute; + left:0px; + top:0px; + width:364px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u558_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:364px; + height:30px; + 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:12px; +} +#u558 { + border-width:0px; + position:absolute; + left:170px; + top:164px; + width:364px; + height:30px; + display:flex; + font-size:12px; +} +#u558 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u558_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:364px; + height:30px; + background:inherit; + background-color:rgba(240, 240, 240, 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:12px; +} +#u558.disabled { +} +.u558_input_option { + font-size:12px; +} +#u559_input { + position:absolute; + left:0px; + top:0px; + width:364px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u559_input.disabled { + position:absolute; + left:0px; + top:0px; + width:364px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u559_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:364px; + height:30px; + 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:12px; +} +#u559 { + border-width:0px; + position:absolute; + left:170px; + top:204px; + width:364px; + height:30px; + display:flex; + font-size:12px; +} +#u559 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u559_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:364px; + height:30px; + background:inherit; + background-color:rgba(240, 240, 240, 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:12px; +} +#u559.disabled { +} +.u559_input_option { + font-size:12px; +} +#u560_input { + position:absolute; + left:0px; + top:0px; + width:364px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u560_input.disabled { + position:absolute; + left:0px; + top:0px; + width:364px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u560_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:364px; + height:30px; + 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:12px; +} +#u560 { + border-width:0px; + position:absolute; + left:170px; + top:244px; + width:364px; + height:30px; + display:flex; + font-size:12px; +} +#u560 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u560_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:364px; + height:30px; + background:inherit; + background-color:rgba(240, 240, 240, 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:12px; +} +#u560.disabled { +} +.u560_input_option { + font-size:12px; +} +#u561 { + position:absolute; + left:5px; + top:39px; +} +#u561_state0 { + position:relative; + left:0px; + top:0px; + width:530px; + height:70px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u561_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u562 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u563 { + border-width:0px; + position:absolute; + left:110px; + top:32px; + width:420px; + height:200px; + visibility:hidden; +} +#u563_state0 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:420px; + height:200px; + overflow:auto; + -webkit-overflow-scrolling:touch; + -ms-overflow-x:hidden; + overflow-x:hidden; + background-color:rgba(255, 255, 255, 1); + background-image:none; + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(170, 170, 170, 1); + border-radius:4px; + border-top-left-radius:0px; + border-top-right-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u563_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u563_state0_content { + left:-1px; + top:-1px; +} +#u564 { + border-width:0px; + position:absolute; + left:5px; + top:10px; + width:190px; + height:600px; +} +#u564_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u565 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:69px; + height:20px; +} +#u566_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u566 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u566 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u566_img.selected { +} +#u566.selected { +} +#u566_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u567_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u567 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u567 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u567_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u568_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:27px; + height:20px; + 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; +} +#u568 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:27px; + height:20px; + display:flex; +} +#u568 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u568_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:27px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u568.selected { +} +#u568_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u565_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u569 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:69px; + height:20px; +} +#u570_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u570 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u570 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u570_img.selected { +} +#u570.selected { +} +#u570_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u571_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u571 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u571 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u571_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u572_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:27px; + height:20px; + 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; +} +#u572 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:27px; + height:20px; + display:flex; +} +#u572 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u572_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:27px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u572.selected { +} +#u572_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u569_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u573 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:62px; + height:20px; +} +#u574_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u574 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u574 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u574_img.selected { +} +#u574.selected { +} +#u574_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u575_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u575 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u575 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u575_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u576_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; + 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; +} +#u576 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:20px; + height:20px; + display:flex; +} +#u576 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u576_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u576.selected { +} +#u576_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u573_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u577 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:85px; + height:20px; +} +#u578_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u578 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u578 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u578_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u579_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:43px; + height:20px; + 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; +} +#u579 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:43px; + height:20px; + display:flex; +} +#u579 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u579_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:43px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u579.selected { +} +#u579_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u580 { + border-width:0px; + position:absolute; + left:20px; + top:40px; + width:83px; + height:20px; +} +#u581_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u581 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u581 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u581_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u582_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:41px; + height:20px; + 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; +} +#u582 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:41px; + height:20px; + display:flex; +} +#u582 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u582_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:41px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u582.selected { +} +#u582_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u583 { + border-width:0px; + position:absolute; + left:20px; + top:80px; + width:78px; + height:20px; +} +#u584_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u584 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u584 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u584_img.selected { +} +#u584.selected { +} +#u584_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u585_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u585 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u585 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u585_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u586_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:36px; + height:20px; + 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; +} +#u586 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:36px; + height:20px; + display:flex; +} +#u586 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u586_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:36px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u586.selected { +} +#u586_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u583_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u587 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:96px; + height:20px; +} +#u588_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u588 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u588 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u588_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u589_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:54px; + height:20px; + 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; +} +#u589 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:54px; + height:20px; + display:flex; +} +#u589 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u589_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:54px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u589.selected { +} +#u589_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u590 { + border-width:0px; + position:absolute; + left:20px; + top:40px; + width:96px; + height:20px; +} +#u591_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u591 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u591 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u591_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u592_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:54px; + height:20px; + 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; +} +#u592 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:54px; + height:20px; + display:flex; +} +#u592 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u592_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:54px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u592.selected { +} +#u592_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u593 { + border-width:0px; + position:absolute; + left:20px; + top:140px; + width:70px; + height:20px; +} +#u594_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u594 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u594 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u594_img.selected { +} +#u594.selected { +} +#u594_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u595_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u595 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u595 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u595_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u596_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:28px; + height:20px; + 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; +} +#u596 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:28px; + height:20px; + display:flex; +} +#u596 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u596_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:28px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u596.selected { +} +#u596_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u593_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + visibility:hidden; +} +#u597 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:95px; + height:20px; +} +#u598_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u598 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u598 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u598_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u599_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:53px; + height:20px; + 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; +} +#u599 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:53px; + height:20px; + display:flex; +} +#u599 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u599_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:53px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u599.selected { +} +#u599_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u600 { + border-width:0px; + position:absolute; + left:20px; + top:40px; + width:95px; + height:20px; +} +#u601_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u601 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u601 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u601_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u602_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:53px; + height:20px; + 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; +} +#u602 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:53px; + height:20px; + display:flex; +} +#u602 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u602_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:53px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u602.selected { +} +#u602_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u603 { + border-width:0px; + position:absolute; + left:20px; + top:180px; + width:78px; + height:20px; +} +#u604_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u604 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u604 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u604_img.selected { +} +#u604.selected { +} +#u604_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u605_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u605 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u605 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u605_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u606_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:36px; + height:20px; + 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; +} +#u606 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:36px; + height:20px; + display:flex; +} +#u606 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u606_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:36px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u606.selected { +} +#u606_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u603_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u607 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:62px; + height:20px; +} +#u608_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u608 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u608 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u608_img.selected { +} +#u608.selected { +} +#u608_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u609_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u609 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u609 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u609_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u610_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; + 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; +} +#u610 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:20px; + height:20px; + display:flex; +} +#u610 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u610_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u610.selected { +} +#u610_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u607_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u611 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:96px; + height:20px; +} +#u612_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u612 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u612 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u612_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u613_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:54px; + height:20px; + 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; +} +#u613 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:54px; + height:20px; + display:flex; +} +#u613 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u613_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:54px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u613.selected { +} +#u613_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u614 { + border-width:0px; + position:absolute; + left:20px; + top:40px; + width:96px; + height:20px; +} +#u615_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u615 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u615 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u615_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u616_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:54px; + height:20px; + 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; +} +#u616 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:54px; + height:20px; + display:flex; +} +#u616 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u616_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:54px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u616.selected { +} +#u616_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u617 { + border-width:0px; + position:absolute; + left:20px; + top:80px; + width:78px; + height:20px; +} +#u618_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u618 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u618 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u618_img.selected { +} +#u618.selected { +} +#u618_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u619_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u619 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u619 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u619_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u620_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:36px; + height:20px; + 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; +} +#u620 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:36px; + height:20px; + display:flex; +} +#u620 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u620_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:36px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u620.selected { +} +#u620_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u617_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u621 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:97px; + height:20px; +} +#u622_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u622 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u622 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u622_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u623_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:55px; + height:20px; + 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; +} +#u623 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:55px; + height:20px; + display:flex; +} +#u623 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u623_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:55px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u623.selected { +} +#u623_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u624 { + border-width:0px; + position:absolute; + left:20px; + top:40px; + width:97px; + height:20px; +} +#u625_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u625 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u625 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u625_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u626_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:55px; + height:20px; + 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; +} +#u626 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:55px; + height:20px; + display:flex; +} +#u626 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u626_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:55px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u626.selected { +} +#u626_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u627 { + border-width:0px; + position:absolute; + left:0px; + top:320px; + width:99px; + height:20px; +} +#u628_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u628 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u628 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u628_img.selected { +} +#u628.selected { +} +#u628_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u629_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u629 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u629 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u629_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u630_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:57px; + height:20px; + 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; +} +#u630 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:57px; + height:20px; + display:flex; +} +#u630 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u630_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:57px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u630.selected { +} +#u630_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u627_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u631 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:62px; + height:20px; +} +#u632_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u632 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u632 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u632_img.selected { +} +#u632.selected { +} +#u632_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u633_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u633 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u633 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u633_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u634_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; + 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; +} +#u634 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:20px; + height:20px; + display:flex; +} +#u634 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u634_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u634.selected { +} +#u634_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u631_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u635 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:78px; + height:20px; +} +#u636_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u636 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u636 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u636_img.selected { +} +#u636.selected { +} +#u636_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u637_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u637 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u637 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u637_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u638_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:36px; + height:20px; + 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; +} +#u638 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:36px; + height:20px; + display:flex; +} +#u638 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u638_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:36px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u638.selected { +} +#u638_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u635_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u639 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:88px; + height:20px; +} +#u640_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u640 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u640 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u640_img.selected { +} +#u640.selected { +} +#u640_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u641_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u641 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u641 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u641_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u642_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:46px; + height:20px; + 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; +} +#u642 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:46px; + height:20px; + display:flex; +} +#u642 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u642_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:46px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u642.selected { +} +#u642_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u639_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u643 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:96px; + height:20px; +} +#u644_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u644 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u644 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u644_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u645_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:54px; + height:20px; + 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; +} +#u645 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:54px; + height:20px; + display:flex; +} +#u645 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u645_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:54px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u645.selected { +} +#u645_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u646 { + border-width:0px; + position:absolute; + left:20px; + top:100px; + width:69px; + height:20px; +} +#u647_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u647 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u647 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u647_img.selected { +} +#u647.selected { +} +#u647_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u648_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u648 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u648 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u648_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u649_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:27px; + height:20px; + 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; +} +#u649 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:27px; + height:20px; + display:flex; +} +#u649 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u649_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:27px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u649.selected { +} +#u649_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u646_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u650 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:96px; + height:20px; +} +#u651_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u651 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u651 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u651_img.selected { +} +#u651.selected { +} +#u651_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u652_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u652 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u652 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u652_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u653_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:54px; + height:20px; + 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; +} +#u653 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:54px; + height:20px; + display:flex; +} +#u653 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u653_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:54px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u653.selected { +} +#u653_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u650_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u654 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:96px; + height:20px; +} +#u655_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u655 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u655 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u655_img.selected { +} +#u655.selected { +} +#u655_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u656_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u656 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u656 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u656_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u657_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:54px; + height:20px; + 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; +} +#u657 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:54px; + height:20px; + display:flex; +} +#u657 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u657_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:54px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u657.selected { +} +#u657_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u654_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u658 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:110px; + height:20px; +} +#u659_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u659 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u659 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u659_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u660_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:68px; + height:20px; + 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; +} +#u660 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:68px; + height:20px; + display:flex; +} +#u660 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u660_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:68px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u660.selected { +} +#u660_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u661 { + border-width:0px; + position:absolute; + left:20px; + top:40px; + width:110px; + height:20px; +} +#u662_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u662 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u662 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u662_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u663_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:68px; + height:20px; + 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; +} +#u663 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:68px; + height:20px; + display:flex; +} +#u663 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u663_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:68px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u663.selected { +} +#u663_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u664 { + border-width:0px; + position:absolute; + left:20px; + top:200px; + width:69px; + height:20px; +} +#u665_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u665 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u665 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u665_img.selected { +} +#u665.selected { +} +#u665_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u666_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u666 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u666 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u666_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u667_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:27px; + height:20px; + 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; +} +#u667 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:27px; + height:20px; + display:flex; +} +#u667 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u667_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:27px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u667.selected { +} +#u667_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u664_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u668 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:114px; + height:20px; +} +#u669_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u669 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u669 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u669_img.selected { +} +#u669.selected { +} +#u669_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u670_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u670 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u670 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u670_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u671_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:72px; + height:20px; + 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; +} +#u671 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:72px; + height:20px; + display:flex; +} +#u671 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u671_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:72px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u671.selected { +} +#u671_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u668_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u672 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:88px; + height:20px; +} +#u673_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u673 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u673 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u673_img.selected { +} +#u673.selected { +} +#u673_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u674_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u674 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u674 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u674_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u675_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:46px; + height:20px; + 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; +} +#u675 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:46px; + height:20px; + display:flex; +} +#u675 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u675_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:46px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u675.selected { +} +#u675_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u672_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u676 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:97px; + height:20px; +} +#u677_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u677 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u677 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u677_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u678_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:55px; + height:20px; + 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; +} +#u678 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:55px; + height:20px; + display:flex; +} +#u678 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u678_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:55px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u678.selected { +} +#u678_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u679_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:14px; + height:9px; +} +#u679 { + border-width:0px; + position:absolute; + left:503px; + top:12px; + width:14px; + height:9px; + display:flex; +} +#u679 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u679_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u680_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:420px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 0); + 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; + text-align:left; +} +#u680 { + border-width:0px; + position:absolute; + left:110px; + top:0px; + width:420px; + height:32px; + display:flex; + text-align:left; +} +#u680 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 7px; + box-sizing:border-box; + width:100%; +} +#u680_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:420px; + height:32px; + background:inherit; + background-color:rgba(51, 51, 51, 0.0980392156862745); + 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; + text-align:left; +} +#u680.disabled { +} +#u680_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u681_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:90px; + height:15px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u681 { + border-width:0px; + position:absolute; + left:0px; + top:6px; + width:90px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u681 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u681_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u682_input { + position:absolute; + left:0px; + top:0px; + width:420px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u682_input.disabled { + position:absolute; + left:0px; + top:0px; + width:420px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u682_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:420px; + height:30px; + 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:12px; +} +#u682 { + border-width:0px; + position:absolute; + left:110px; + top:40px; + width:420px; + height:30px; + display:flex; + font-size:12px; +} +#u682 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u682_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:420px; + height:30px; + background:inherit; + background-color:rgba(240, 240, 240, 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:12px; +} +#u682.disabled { +} +.u682_input_option { + font-size:12px; +} +#u683_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:73px; + height:15px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u683 { + border-width:0px; + position:absolute; + left:0px; + top:46px; + width:73px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u683 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u683_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u561_state1 { + position:relative; + left:0px; + top:0px; + width:530px; + height:70px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + visibility:hidden; +} +#u561_state1_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u684_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:90px; + height:15px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u684 { + border-width:0px; + position:absolute; + left:0px; + top:46px; + width:90px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u684 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u684_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u685_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:90px; + height:15px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u685 { + border-width:0px; + position:absolute; + left:0px; + top:6px; + width:90px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u685 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u685_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u686 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u687 { + border-width:0px; + position:absolute; + left:110px; + top:32px; + width:420px; + height:200px; + visibility:hidden; +} +#u687_state0 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:420px; + height:200px; + overflow:auto; + -webkit-overflow-scrolling:touch; + -ms-overflow-x:hidden; + overflow-x:hidden; + background-color:rgba(255, 255, 255, 1); + background-image:none; + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(170, 170, 170, 1); + border-radius:4px; + border-top-left-radius:0px; + border-top-right-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u687_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u687_state0_content { + left:-1px; + top:-1px; +} +#u688 { + border-width:0px; + position:absolute; + left:5px; + top:10px; + width:207px; + height:520px; +} +#u688_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u689 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:69px; + height:20px; +} +#u690_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u690 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u690 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u690_img.selected { +} +#u690.selected { +} +#u690_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u691_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u691 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u691 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u691_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u692_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:27px; + height:20px; + 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; +} +#u692 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:27px; + height:20px; + display:flex; +} +#u692 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u692_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:27px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u692.selected { +} +#u692_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u689_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u693 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:114px; + height:20px; +} +#u694_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u694 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u694 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u694_img.selected { +} +#u694.selected { +} +#u694_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u695_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u695 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u695 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u695_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u696_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:72px; + height:20px; + 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; +} +#u696 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:72px; + height:20px; + display:flex; +} +#u696 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u696_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:72px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u696.selected { +} +#u696_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u693_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u697 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:62px; + height:20px; +} +#u698_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u698 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u698 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u698_img.selected { +} +#u698.selected { +} +#u698_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u699_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u699 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u699 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u699_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u700_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; + 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; +} +#u700 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:20px; + height:20px; + display:flex; +} +#u700 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u700_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u700.selected { +} +#u700_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u697_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u701 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:85px; + height:20px; +} +#u702_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u702 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u702 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u702_img.selected { +} +#u702.selected { +} +#u702_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u703_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u703 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u703 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u703_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u704_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:43px; + height:20px; + 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; +} +#u704 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:43px; + height:20px; + display:flex; +} +#u704 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u704_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:43px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u704.selected { +} +#u704_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u701_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u705 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:127px; + height:20px; +} +#u706_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u706 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u706 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u706_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u707_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:85px; + height:20px; + 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; +} +#u707 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:85px; + height:20px; + display:flex; +} +#u707 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u707_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:85px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u707.selected { +} +#u707_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u708 { + border-width:0px; + position:absolute; + left:20px; + top:40px; + width:127px; + height:20px; +} +#u709_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u709 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u709 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u709_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u710_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:85px; + height:20px; + 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; +} +#u710 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:85px; + height:20px; + display:flex; +} +#u710 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u710_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:85px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u710.selected { +} +#u710_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u711 { + border-width:0px; + position:absolute; + left:20px; + top:60px; + width:127px; + height:20px; +} +#u712_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u712 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u712 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u712_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u713_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:85px; + height:20px; + 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; +} +#u713 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:85px; + height:20px; + display:flex; +} +#u713 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u713_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:85px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u713.selected { +} +#u713_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u714 { + border-width:0px; + position:absolute; + left:20px; + top:100px; + width:83px; + height:20px; +} +#u715_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u715 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u715 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u715_img.selected { +} +#u715.selected { +} +#u715_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u716_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u716 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u716 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u716_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u717_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:41px; + height:20px; + 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; +} +#u717 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:41px; + height:20px; + display:flex; +} +#u717 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u717_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:41px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u717.selected { +} +#u717_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u714_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u718 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:127px; + height:20px; +} +#u719_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u719 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u719 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u719_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u720_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:85px; + height:20px; + 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; +} +#u720 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:85px; + height:20px; + display:flex; +} +#u720 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u720_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:85px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u720.selected { +} +#u720_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u721 { + border-width:0px; + position:absolute; + left:20px; + top:180px; + width:114px; + height:20px; +} +#u722_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u722 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u722 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u722_img.selected { +} +#u722.selected { +} +#u722_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u723_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u723 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u723 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u723_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u724_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:72px; + height:20px; + 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; +} +#u724 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:72px; + height:20px; + display:flex; +} +#u724 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u724_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:72px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u724.selected { +} +#u724_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u721_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u725 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:78px; + height:20px; +} +#u726_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u726 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u726 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u726_img.selected { +} +#u726.selected { +} +#u726_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u727_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u727 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u727 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u727_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u728_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:36px; + height:20px; + 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; +} +#u728 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:36px; + height:20px; + display:flex; +} +#u728 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u728_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:36px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u728.selected { +} +#u728_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u725_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u729 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:88px; + height:20px; +} +#u730_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u730 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u730 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u730_img.selected { +} +#u730.selected { +} +#u730_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u731_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u731 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u731 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u731_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u732_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:46px; + height:20px; + 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; +} +#u732 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:46px; + height:20px; + display:flex; +} +#u732 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u732_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:46px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u732.selected { +} +#u732_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u729_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u733 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:127px; + height:20px; +} +#u734_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u734 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u734 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u734_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u735_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:85px; + height:20px; + 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; +} +#u735 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:85px; + height:20px; + display:flex; +} +#u735 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u735_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:85px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u735.selected { +} +#u735_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u736 { + border-width:0px; + position:absolute; + left:0px; + top:260px; + width:62px; + height:20px; +} +#u737_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u737 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u737 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u737_img.selected { +} +#u737.selected { +} +#u737_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u738_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u738 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u738 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u738_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u739_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; + 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; +} +#u739 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:20px; + height:20px; + display:flex; +} +#u739 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u739_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u739.selected { +} +#u739_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u736_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u740 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:114px; + height:20px; +} +#u741_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u741 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u741 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u741_img.selected { +} +#u741.selected { +} +#u741_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u742_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u742 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u742 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u742_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u743_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:72px; + height:20px; + 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; +} +#u743 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:72px; + height:20px; + display:flex; +} +#u743 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u743_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:72px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u743.selected { +} +#u743_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u740_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u744 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:82px; + height:20px; +} +#u745_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u745 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u745 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u745_img.selected { +} +#u745.selected { +} +#u745_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u746_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u746 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u746 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u746_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u747_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:40px; + height:20px; + 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; +} +#u747 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:40px; + height:20px; + display:flex; +} +#u747 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u747_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:40px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u747.selected { +} +#u747_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u744_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u748 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:96px; + height:20px; +} +#u749_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u749 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u749 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u749_img.selected { +} +#u749.selected { +} +#u749_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u750_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u750 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u750 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u750_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u751_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:54px; + height:20px; + 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; +} +#u751 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:54px; + height:20px; + display:flex; +} +#u751 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u751_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:54px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u751.selected { +} +#u751_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u748_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u752 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:127px; + height:20px; +} +#u753_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u753 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u753 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u753_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u754_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:85px; + height:20px; + 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; +} +#u754 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:85px; + height:20px; + display:flex; +} +#u754 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u754_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:85px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u754.selected { +} +#u754_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u755 { + border-width:0px; + position:absolute; + left:0px; + top:360px; + width:81px; + height:20px; +} +#u756_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u756 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u756 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u756_img.selected { +} +#u756.selected { +} +#u756_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u757_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u757 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u757 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u757_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u758_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:39px; + height:20px; + 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; +} +#u758 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:39px; + height:20px; + display:flex; +} +#u758 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u758_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:39px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u758.selected { +} +#u758_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u755_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u759 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:96px; + height:20px; +} +#u760_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u760 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u760 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u760_img.selected { +} +#u760.selected { +} +#u760_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u761_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u761 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u761 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u761_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u762_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:54px; + height:20px; + 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; +} +#u762 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:54px; + height:20px; + display:flex; +} +#u762 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u762_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:54px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u762.selected { +} +#u762_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u759_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u763 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:96px; + height:20px; +} +#u764_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u764 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u764 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u764_img.selected { +} +#u764.selected { +} +#u764_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u765_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u765 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u765 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u765_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u766_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:54px; + height:20px; + 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; +} +#u766 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:54px; + height:20px; + display:flex; +} +#u766 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u766_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:54px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u766.selected { +} +#u766_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u763_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u767 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:123px; + height:20px; +} +#u768_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u768 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u768 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u768_img.selected { +} +#u768.selected { +} +#u768_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u769_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u769 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u769 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u769_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u770_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:81px; + height:20px; + 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; +} +#u770 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:81px; + height:20px; + display:flex; +} +#u770 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u770_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:81px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u770.selected { +} +#u770_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u767_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u771 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:127px; + height:20px; +} +#u772_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u772 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u772 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u772_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u773_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:85px; + height:20px; + 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; +} +#u773 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:85px; + height:20px; + display:flex; +} +#u773 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u773_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:85px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u773.selected { +} +#u773_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u774 { + border-width:0px; + position:absolute; + left:0px; + top:460px; + width:86px; + height:20px; +} +#u775_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u775 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u775 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u775_img.selected { +} +#u775.selected { +} +#u775_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u776_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u776 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u776 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u776_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u777_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:44px; + height:20px; + 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; +} +#u777 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:44px; + height:20px; + display:flex; +} +#u777 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u777_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:44px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u777.selected { +} +#u777_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u774_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u778 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:114px; + height:20px; +} +#u779_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:9px; + height:9px; +} +#u779 { + border-width:0px; + position:absolute; + left:6px; + top:6px; + width:9px; + height:9px; + display:flex; +} +#u779 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u779_img.selected { +} +#u779.selected { +} +#u779_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u780_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u780 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u780 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u780_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u781_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:72px; + height:20px; + 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; +} +#u781 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:72px; + height:20px; + display:flex; +} +#u781 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u781_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:72px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u781.selected { +} +#u781_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u778_children { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u782 { + border-width:0px; + position:absolute; + left:20px; + top:20px; + width:127px; + height:20px; +} +#u783_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:16px; + height:16px; +} +#u783 { + border-width:0px; + position:absolute; + left:22px; + top:2px; + width:16px; + height:16px; + display:flex; +} +#u783 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u783_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u784_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:85px; + height:20px; + 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; +} +#u784 { + border-width:0px; + position:absolute; + left:42px; + top:0px; + width:85px; + height:20px; + display:flex; +} +#u784 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 3px; + box-sizing:border-box; + width:100%; +} +#u784_div.selected { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:85px; + height:20px; + background:inherit; + background-color:rgba(215, 215, 215, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u784.selected { +} +#u784_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u785_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:14px; + height:9px; +} +#u785 { + border-width:0px; + position:absolute; + left:503px; + top:12px; + width:14px; + height:9px; + display:flex; +} +#u785 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u785_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u786_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:420px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 0); + 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; + text-align:left; +} +#u786 { + border-width:0px; + position:absolute; + left:110px; + top:0px; + width:420px; + height:32px; + display:flex; + text-align:left; +} +#u786 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 7px; + box-sizing:border-box; + width:100%; +} +#u786_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:420px; + height:32px; + background:inherit; + background-color:rgba(51, 51, 51, 0.0980392156862745); + 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; + text-align:left; +} +#u786.disabled { +} +#u786_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u787_input { + position:absolute; + left:0px; + top:0px; + width:420px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u787_input.disabled { + position:absolute; + left:0px; + top:0px; + width:420px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u787_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:420px; + height:30px; + 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:12px; +} +#u787 { + border-width:0px; + position:absolute; + left:110px; + top:40px; + width:420px; + height:30px; + display:flex; + font-size:12px; +} +#u787 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u787_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:420px; + height:30px; + background:inherit; + background-color:rgba(240, 240, 240, 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:12px; +} +#u787.disabled { +} +.u787_input_option { + font-size:12px; +} +#u788_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:15px; + height:15px; +} +#u788 { + border-width:0px; + position:absolute; + left:565px; + top:18px; + width:15px; + height:15px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + color:#00FF99; +} +#u788 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u788_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u789_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:601px; + height:2px; +} +#u789 { + border-width:0px; + position:absolute; + left:0px; + top:48px; + width:600px; + height:1px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; +} +#u789 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u789_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u790_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:64px; + height:21px; + 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:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:16px; +} +#u790 { + border-width:0px; + position:absolute; + left:20px; + top:15px; + width:64px; + height:21px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:16px; +} +#u790 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u790_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u791_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:601px; + height:2px; +} +#u791 { + border-width:0px; + position:absolute; + left:0px; + top:590px; + width:600px; + height:1px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; +} +#u791 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u791_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u792_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u792 { + border-width:0px; + position:absolute; + left:490px; + top:609px; + width:80px; + height:32px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#FFFFFF; + line-height:20px; +} +#u792 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u792_img.mouseOver { +} +#u792.mouseOver { +} +#u792_img.mouseDown { +} +#u792.mouseDown { +} +#u792_img.disabled { +} +#u792.disabled { + opacity:0.7; +} +#u792_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u793_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u793 { + border-width:0px; + position:absolute; + left:400px; + top:609px; + width:80px; + height:32px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#7F7F7F; +} +#u793 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u793_img.mouseOver { +} +#u793.mouseOver { +} +#u793_img.mouseDown { +} +#u793.mouseDown { +} +#u793_img.disabled { +} +#u793.disabled { + opacity:0.7; +} +#u793_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u794_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u794 { + border-width:0px; + position:absolute; + left:25px; + top:609px; + width:80px; + height:32px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#FFFFFF; + line-height:20px; +} +#u794 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u794_img.mouseOver { +} +#u794.mouseOver { +} +#u794_img.mouseDown { +} +#u794.mouseDown { +} +#u794_img.disabled { +} +#u794.disabled { + opacity:0.7; +} +#u794_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u795_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:168px; + height:14px; + 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-size:12px; + color:#AAAAAA; +} +#u795 { + border-width:0px; + position:absolute; + left:114px; + top:617px; + width:168px; + height:14px; + display:flex; + font-size:12px; + color:#AAAAAA; +} +#u795 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u795_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u532_state1 { + position:relative; + left:0px; + top:0px; + width:500px; + height:200px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + visibility:hidden; +} +#u532_state1_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u796_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:500px; + height:200px; + 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:8px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u796 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:500px; + height:200px; + display:flex; +} +#u796 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u796_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u797_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u797 { + border-width:0px; + position:absolute; + left:390px; + top:150px; + width:80px; + height:32px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#FFFFFF; + line-height:20px; +} +#u797 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u797_img.mouseOver { +} +#u797.mouseOver { +} +#u797_img.mouseDown { +} +#u797.mouseDown { +} +#u797_img.disabled { +} +#u797.disabled { + opacity:0.7; +} +#u797_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u798_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u798 { + border-width:0px; + position:absolute; + left:300px; + top:150px; + width:80px; + height:32px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#7F7F7F; +} +#u798 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u798_img.mouseOver { +} +#u798.mouseOver { +} +#u798_img.mouseDown { +} +#u798.mouseDown { +} +#u798_img.disabled { +} +#u798.disabled { + opacity:0.7; +} +#u798_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u799_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; +} +#u799 { + border-width:0px; + position:absolute; + left:50px; + top:40px; + width:20px; + height:20px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:14px; + color:#D9001B; +} +#u799 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u799_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u800_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:70px; + height:16px; + 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; +} +#u800 { + border-width:0px; + position:absolute; + left:85px; + top:42px; + width:70px; + height:16px; + display:flex; +} +#u800 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u800_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u801_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:130px; + height:15px; + 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-size:13px; +} +#u801 { + border-width:0px; + position:absolute; + left:85px; + top:75px; + width:130px; + height:15px; + display:flex; + font-size:13px; +} +#u801 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u801_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u802 { + border-width:0px; + position:absolute; + left:1240px; + top:220px; + width:48px; + height:157px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} +#u803 { + border-width:0px; + position:absolute; + left:1316px; + top:220px; + width:40px; + height:157px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} +#u804 { + border-width:0px; + position:absolute; + left:1180px; + top:220px; + width:52px; + height:157px; + overflow:hidden; + background-image:url('../../resources/images/transparent.gif'); +} diff --git "a/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\347\274\226\350\276\221/data.js" "b/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\347\274\226\350\276\221/data.js" new file mode 100644 index 0000000000000000000000000000000000000000..acd91259e4defc076cc0ad64efbb40c8e4f1232b --- /dev/null +++ "b/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\347\274\226\350\276\221/data.js" @@ -0,0 +1,7 @@ +$axure.loadCurrentPage( +(function() { + var _ = function() { var r={},a=arguments; for(var i=0; i1. 自适应文字高度,表格行高自适应
2. 最高显示3行,3行以上,文本框内不滚动。
",M="3",N="7949c71764a544fd8c776de332ab2504",O="新建",P="1.点击新建,在表格下新增一行
",Q="4",R="e4402a5add2e4ec1bd1d82837f4a23de",S="(下拉列表)",T="1. 选项值有 STRING,BOOLEAN,FLOAT,INTEGER
",U="5",V="4991a120f06c4a15bfce12c4ad2a0c80",W="?",X="1. 点击问号从右侧滑动出现提示框
",Y="6",Z="37f837c4609149e2a440b3ad093e644c",ba="保存",bb="1.保存时要做必填校验
",bc="style",bd="baseStyle",be="627587b6038d43cca051c114ac41ad32",bf="pageAlignment",bg="center",bh="fill",bi="fillType",bj="solid",bk="color",bl=0xFFFFFFFF,bm="image",bn="imageAlignment",bo="near",bp="imageRepeat",bq="auto",br="favicon",bs="sketchFactor",bt="0",bu="colorStyle",bv="appliedColor",bw="fontName",bx="Applied Font",by="borderWidth",bz="borderVisibility",bA="borderFill",bB=0xFF797979,bC="cornerRadius",bD="cornerVisibility",bE="outerShadow",bF="on",bG=false,bH="offsetX",bI=5,bJ="offsetY",bK="blurRadius",bL="r",bM=0,bN="g",bO="b",bP="a",bQ=0.349019607843137,bR="adaptiveStyles",bS="interactionMap",bT="diagram",bU="objects",bV="id",bW="231f670aac464031adb36e0b51618301",bX="friendlyType",bY="页面框架",bZ="referenceDiagramObject",ca="styleType",cb="visible",cc=true,cd=1920,ce=1300,cf="imageOverrides",cg="masterId",ch="4b990bb6cff949a1b5064d9025ac7466",ci="88195f27852a49d29751fc4147885ba8",cj="新建功能",ck="动态面板",cl="dynamicPanel",cm=568,cn=520,co="location",cp="x",cq=232,cr="y",cs=1203,ct="fixedHorizontal",cu="fixedMarginHorizontal",cv="fixedVertical",cw="middle",cx="fixedMarginVertical",cy="fixedKeepInFront",cz="scrollbars",cA="none",cB="fitToContent",cC="propagate",cD="diagrams",cE="1144a18f4d8745fc9b57c16832f50168",cF="新建项目",cG="Axure:PanelDiagram",cH="157b2056e3124e18ae43a192bd6858b3",cI="矩形",cJ="parentDynamicPanel",cK="panelIndex",cL="vectorShape",cM=272,cN="9b4161a6aa0a435d9aea1729826fce91",cO="8",cP=0xFFF2F2F2,cQ="generateCompound",cR="d85600cfbe00401e88cecfbd03293b79",cS="形状",cT="foreGroundFill",cU=0xFF00FF99,cV="opacity",cW=1,cX="9df11a1112d143398203dd9500c15309",cY=0xFFFFFF,cZ=0xFF707070,da=10,db=0.313725490196078,dc="innerShadow",dd=15,de=539,df=18,dg="onClick",dh="description",di="Click时 ",dj="cases",dk="conditionString",dl="isNewIfGroup",dm="caseColorHex",dn="9D33FA",dp="actions",dq="action",dr="fadeWidget",ds="隐藏 新建功能逐渐 300毫秒",dt="displayName",du="显示/隐藏",dv="actionInfoDescriptions",dw="隐藏 新建功能",dx="逐渐 300毫秒",dy="objectsToFades",dz="objectPath",dA="fadeInfo",dB="fadeType",dC="hide",dD="options",dE="easing",dF="fade",dG="animation",dH="duration",dI=300,dJ="easingHide",dK="animationHide",dL="durationHide",dM="showType",dN="bringToFront",dO="tabbable",dP="images",dQ="normal~",dR="images/页面框架/u463.svg",dS="06a6645ce78b4a1ba426cb6f7d0daa63",dT="线段",dU="horizontalLine",dV=48,dW="images/上传算子/u819.svg",dX="7c9ced60964f4b8885e11965becc4069",dY="'PingFangSC-Regular', 'PingFang SC'",dZ=74,ea=16,eb="4b98dba3ba994a15a9e130e35aa2418a",ec=19,ed=17,ee="fontSize",ef="16px",eg="verticalAlignment",eh="c36c5f2e17e245a08ed507e637e856c2",ei=200,ej="8fb0dfe271e9441eb51b242795822402",ek=80,el=32,em=0xF2F2F2,en=0xFF6576FF,eo="paddingTop",ep="stateStyles",eq="mouseOver",er=0xFF8080FF,es="mouseDown",et=0xFD596BFE,eu="disabled",ev="0.7",ew="lineSpacing",ex="20px",ey="paddingRight",ez="paddingBottom",eA="paddingLeft",eB=466,eC=220,eD="12px",eE="images/页面框架/u467.svg",eF="mouseOver~",eG="images/页面框架/u467_mouseOver.svg",eH="mouseDown~",eI="images/页面框架/u467_mouseDown.svg",eJ="disabled~",eK="5d9226cd521e465885ff56f8650efbe4",eL=0xFF999999,eM=0xFF409EFF,eN=0xFFF0F7FF,eO=0xFE7ABBFF,eP=0xFFE4E4E4,eQ=376,eR="images/页面框架/u468.svg",eS="images/页面框架/u468_mouseOver.svg",eT="images/页面框架/u468_mouseDown.svg",eU="24136564df4d4fe4b933dc9e6b9e4782",eV="表格",eW="table",eX=528,eY=60,eZ=22,fa=83,fb="515e416e82424010afabd98ef5b54a05",fc="单元格",fd="tableCell",fe=264,ff=30,fg="33ea2511485c479dbf973af3302f2352",fh=0x3F409EFF,fi=0xFFDBDFEA,fj="images/上传算子/u825.png",fk="6595f1224c414c64808be7c498d661b5",fl="images/上传算子/u827.png",fm="4b3f6664f9504085adabbfd00173d764",fn="images/上传算子/u826.png",fo="c1c3d267caa748fb9236f8b54fc399d2",fp="images/上传算子/u828.png",fq="7a79ca3fb4d7485ea169242d8fe016af",fr="文本框",fs="textBox",ft=253,fu=20,fv="hint",fw="3c35f7f584574732b5edbd0cff195f77",fx="2829faada5f8449da03773b96e566862",fy="44157808f2934100b68f2394a66b2bba",fz=293,fA=118,fB="HideHintOnFocused",fC="placeholderText",fD="f7c2230bd61241e68cdf454b01ebdf4b",fE="进度条",fF="组合",fG="layer",fH=-16,fI=330,fJ="objs",fK="90042d59d2ce41e1a369ae1bfe0e41df",fL="灰色条",fM=0xFF00BB9A,fN=8,fO=0xFFE9E9E9,fP="150",fQ="horizontalAlignment",fR="left",fS="12",fT="10",fU="7d3d6fb162ed477ba5cca542609341f5",fV="ebb749fb23264d85aa79045143baf575",fW="亮色条",fX="fontWeight",fY="400",fZ=90,ga="45",gb="c72728965d8f4811b550f773cd680f33",gc="提示",gd="'Arial Normal', 'Arial'",ge=39,gf="10px",gg=322,gh=231,gi="images/上传算子/提示_u833.svg",gj="f205f643ec3342f9a0afcc8d5f7cdc1b",gk="4988d43d80b44008a4a415096f1632af",gl=14,gm=244,gn="84d8e044d5304e0c9f2101004b3cb21c",go=320,gp="8f51ae529a1e49778eaad5c44f233a1a",gq=56,gr="2285372321d148ec80932747449c36c9",gs=55,gt=343,gu="0bc2534cd98e45b788a17af52d912d84",gv="636822bc3085484f9c7fce0324772028",gw=0xFF000000,gx="images/上传算子/u837.svg",gy="a597fbac21a345558769dd40f7350fd0",gz=50,gA=88,gB=381,gC="ebe8abe639554b51ba28ded27354587b",gD="ea1c36705be148ff8715fa4c3b3da0df",gE=121,gF=420,gG="86374365f2f34304b3564cc37d9332ac",gH="20ac4170af1b474dab45bf2249b58014",gI="'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'",gJ="650",gK=54,gL=21,gM="8c7a4c5ad69a4369a5f7788171ac0b32",gN=47,gO=476,gP="6090f489d0754dada4e3556ad9c61bc2",gQ="垂直线",gR="verticalLine",gS="619b2148ccc1497285562264d51992f9",gT=259,gU="images/上传算子/u843.svg",gV="7a21c9ec031d497f83e93539a06d010a",gW=273,gX=345,gY="images/上传算子/u844.svg",gZ="c39557a830184cc9a1ce3d38ebf113e8",ha=112,hb=303,hc="6c69212917174074ac94616e8e6e6389",hd=378,he="6dfcdb59e48c41c489cd8dc935bdbb03",hf=333,hg="8e3d7a892c7342f496f0e677ae4bfe57",hh=408,hi="04635272886d4061aceb27225aa89da2",hj=363,hk=406,hl="4650b31093094e728ba499a1d4872989",hm=313,hn=478,ho="b601db653c3144de979b49d7bab61afc",hp=285,hq=0x797979,hr=0.149019607843137,hs="0f2ab8065da74484935a540875841b20",ht="编辑项目",hu="ea768387828b43b2ad1c3185e63c37fa",hv=1,hw=609,hx="08bdfc8ff4fd41718aba7461ff65f32e",hy="fe7b14fcbf454a368ae5b977613246ee",hz="dbdd84e0c28b4bcb9aa9fc030c93502e",hA="9c9f2b8eb9a5479481c945a0c4e805bb",hB="'微软雅黑'",hC=400,hD=40,hE=0xFFCCCCCC,hF="focused",hG=64,hH=158,hI=255,hJ=0.247058823529412,hK="7ab43cffe242402abb64197ed53041a2",hL=120,hM=68,hN=0.0980392156862745,hO="20字符:字母、数字、汉字、英文横杠(不可在首尾)和下划线",hP="ba45137986fe4cb7990b808b3aaab7d9",hQ=543,hR="72ba83844fe24ca39137f3fbb843c097",hS=440,hT=562,hU="76bf09608c3345fba5be5fe6098179d0",hV=350,hW="a3be41753e2d4c6b9948cb21be869cfc",hX=307,hY="f773d7dc16e849d8a6cf5284652d803a",hZ="700",ia=0xFFE26866,ib=304,ic="15b81720cc7d41719ea3dc8a791536ee",id=36,ie=79,ig="59c6b8a0220e47d1be77f85c83c6a8ad",ih=76,ii="1aed549595e04df4a4197df195fff5bd",ij=-18,ik=-1181,il="d72339ed43f547f2a5016dc770315959",im=138,io=126,ip="请用一段话描述Notebook",iq="080a18bb067941d9ab506cd74f7eef04",ir=472,is="312a06813b0f4393a305bf48059e8253",it=61,iu=131,iv="ab1cb85e285e4fe8a12d74ac163adb8c",iw=128,ix="1e8bd74ef2524cb7b6d745972284f691",iy="单选按钮",iz="radioButton",iA="selected",iB=100,iC="b61231a94db9418aac4b368e51f035a6",iD="9bd0236217a94d89b0314c8c7fc75f16",iE=301,iF="images/上传算子/u869.svg",iG="selected~",iH="images/上传算子/u869_selected.svg",iI="images/上传算子/u869_disabled.svg",iJ="extraLeft",iK="2811c90e67e142cba5bd277f97e816b0",iL=331,iM="images/上传算子/u870.svg",iN="images/上传算子/u870_selected.svg",iO="images/上传算子/u870_disabled.svg",iP="ea2ffc197ccc4e8f9ffb1b5084d2f8ca",iQ=339,iR="bf66450098b74df99e87b621e5e998a1",iS="images/上传算子/u872.png",iT="882e08dc586145c1b724d5deb6f59ba1",iU="56b78352870a451082cbe9b40ee99480",iV="images/上传算子/u880.png",iW="73bee7b199ca4a4889dcb138b8967ad2",iX="466a884a1848415fbcb856c37e332a07",iY="c69fcca081ee46dc8c4ec1018f774a32",iZ="d4bf0ffa8650437587e407c6e65adf92",ja="f16a7243e14a4a1bb5c6d521e0694d47",jb="8a515e9f101f4038bd52b22c0bb849d8",jc="ce792674d86546eca61ff8719ea356c3",jd="images/上传算子/u875.png",je="2c531c31083842cfadc7b07b1c1655ef",jf="368e18edf603416695798fb914e5e86b",jg="images/上传算子/u883.png",jh="b090ad9bdda34a71ab0c4480ff2703d2",ji=78,jj=129,jk=377,jl="images/上传算子/u884.svg",jm="images/上传算子/u884_selected.svg",jn="images/上传算子/u884_disabled.svg",jo="b4b1b20a27e246c19196272942ce883c",jp=407,jq="images/上传算子/u885.svg",jr="images/上传算子/u885_selected.svg",js="images/上传算子/u885_disabled.svg",jt="718518ab53224570b5e7af91e735c326",ju=442,jv="cbe84439b2684799a784ddda089b2cc4",jw=35,jx=441,jy="setPanelState",jz="设置 当前 到 State",jA="设置面板状态",jB="当前 到 下一项 循环",jC="panelsToStates",jD="panelPath",jE="stateInfo",jF="setStateType",jG="next",jH="stateNumber",jI=2,jJ="stateValue",jK="exprType",jL="stringLiteral",jM="value",jN="stos",jO="loop",jP="showWhenSet",jQ="compress",jR="98df2761d0a24983bd9d91130dd41129",jS="State2",jT="47a21d1056ec4bb1a9411b3d0135822e",jU="fb6a93d7be084314af5e276581163c68",jV="23",jW="d2bc8ecd50a940cb91206d59610e5b2a",jX="圆形",jY="images/上传算子/u889.svg",jZ="90860963402b4cec9aaf3664afc8dcf1",ka="State1",kb="2da2a5ff65f44f8fb93af5ae3b13eb50",kc=0xFF0099FF,kd="e7b03321df1b4a13a260892faeb50b46",ke="98e6d716d9574756b905a3ea1fe33cde",kf=0xA5000000,kg=0.647058823529412,kh=37,ki="14px",kj=0xFFD9D9D9,kk="e4749bee63c64451925009873af32f6d",kl="22px",km="685426aa510945239f6128aed9109dee",kn="图片 ",ko="imageBox",kp="'Microsoft YaHei Regular', 'Microsoft YaHei'",kq=215,kr=57,ks="0.449999988079071",kt="rotation",ku="90",kv="c782fa96c9604e70bd1ad6f6697a2fbf",kw="images/上传算子/u893.png",kx="2bf9d7b3d49a4efb9e5b1ead89daf3cb",ky=41,kz="270",kA="f73c5146279345ae99fd37854eaf5627",kB=209,kC="3f97fea5aa6b432f805daf3658888381",kD="images/上传算子/u895.svg",kE="6526f6b6a88442b3bf79ffa4a6957517",kF=194,kG=53,kH=31,kI="images/上传算子/u896.svg",kJ="0ee23b5540c544748cf2698dcd1658f0",kK="下拉列表",kL="comboBox",kM=0xFF7F7F7F,kN=114,kO="c568339db4984d358bd04c4ed6515825",kP="52c2f47050b34ae4adaad89b64668a0f",kQ="显示 当此Notebook未操作时间超过设置的 弹出效果",kR="显示 当此Notebook未操作时间超过设置的",kS=" 弹出效果",kT="0cc99655a61744a1a92bc9f4be404dfe",kU="show",kV="flyout",kW="images/上传算子/u898.svg",kX=0xFF666666,kY=473,kZ="15",la="top",lb="3ce7b3fb0d234dc3b535f79e53df2dc0",lc=1630,ld=23,le="linkWindow",lf="打开 底层 在 当前窗口",lg="打开链接",lh="底层",li="target",lj="targetType",lk="backUrl",ll="includeVariables",lm="linkType",ln="current",lo="images/上传算子/u900.svg",lp="4f40d334603a46059d19f4518489c38e",lq="tab2",lr="becf097643434b02ab8a22c8db46260d",ls=863,lt=110,lu="images/上传算子/tab2_u903.png",lv="f9736d76760840dc9e3b5ff52a0dff70",lw="37f837c4609149e2a440b3ad093e644c",lx=58,ly=28,lz=1551,lA="images/上传算子/保存_u905.png",lB="bb5d9f3fd93a40d2a1883385d69d419b",lC="算子编辑",lD=1647,lE=1078,lF=180,lG="9927073148314c7d99b51b69728cb039",lH="e3f3f8ba6e9a4397bc26a7e8df2c4aa5",lI="基础信息",lJ=1430,lK=279,lL="onResize",lM="Resize时 ",lN="显示 当前 推动 元件 下方",lO="显示 当前",lP=" 推动 元件 下方",lQ="vertical",lR="compressEasing",lS="compressDuration",lT=500,lU="onSwipeLeft",lV="SwipeLeft时 ",lW="设置动态面板状态",lX="d72b4ca8719e4b148ecb1afb959405b3",lY="f07b415dcb03438d8826205beb741adf",lZ=2,ma="a79a1fe7ec6b4ad58fc140e383b1863a",mb=0xFF3F8FCC,mc="862d621732d14cf0b7ae4ed5318cc25f",md="'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC'",me="500",mf=13,mg="ff05c4e96487418ab178ce658707f81e",mh=1420,mi=34,mj=0xFFDADFE6,mk="0.0337180630969462",ml="images/编辑/u1126.svg",mm="4311151ce69741ca89a4bddb5328e5b0",mn=65,mo=59,mp="13px",mq="3458b17b029248d9aa8aac46493d129c",mr=6,ms="2fffbb20f91d423cafb09a1c209ccef8",mt="4889d666e8ad4c5e81e59863039a5cc0",mu="991e8b5e81cb425abf962546d004013e",mv=85,mw=52,mx="汉字、英文、数字、下划线,4-50字符",my="358600fec82146c8ac2fc7fff26f1147",mz=-60,mA=-194,mB="52fdc57bf5144867824c9f9ea55d269d",mC=181,mD="c39e2f39764645c685b04c1ba5a7a65e",mE=1149,mF=168,mG="ca1b319dd84947e7898e815f582eba1d",mH=115,mI="87d37eb682c841ff868b444a3af28338",mJ="d9b11acee20d462f8e5f24bbad53c4ab",mK=108,mL="13ba24d5d83e4c36a2524d73a0a71919",mM="7e52f15d7133421b9a3249dc56190e01",mN="切换显示/隐藏 选择文件Show 向下滑动 500毫秒, Hide 向上滑动 500毫秒",mO="切换可见性 选择文件",mP="Show 向下滑动 500毫秒, Hide 向上滑动 500毫秒",mQ="9f5e0f1deee147a78f26ab143c77feb9",mR="toggle",mS="slideDown",mT="slideUp",mU="请选择启动文件,例如train.py",mV="选择文件",mW=140,mX="images/上传算子/选择文件_u925.png",mY="4991a120f06c4a15bfce12c4ad2a0c80",mZ=415,na="显示 弹窗 灯箱效果",nb="显示 弹窗",nc=" 灯箱效果",nd="9a44102f78e142ffb06700a26e13d318",ne="lightbox",nf=47,ng=79,nh=155,ni="设置 弹窗 到 到 State1 ",nj="弹窗 到 State1",nk="设置 弹窗 到 到 State1 ",nl="f8870d98a6e4468389c9f0e4f8460588",nm=1141,nn=207,no="caa5b72c90b546b4b9b3cea6b2b95a50",np="4d5ea58fa4094a95b55576bfdd661cb0",nq="c1c818d35f71440fbfc6b2d02849f7b5",nr="596dfec0c4b14b8db255d87397fd161a",ns=1646,nt="images/上传算子/u930.svg",nu="40a077ddf93047a7ad01c3f0c76f9f2b",nv=-50,nw=-113,nx="设置 基础信息 到 到 下一项 循环 如果隐藏则显示 推动和拉动元件 下方",ny="基础信息 到 下一项 循环",nz="如果隐藏则显示 推动和拉动元件 下方",nA="设置 基础信息 到 到 下一项 循环 如果隐藏则显示 推动和拉动元件 下方",nB="04af82138ed44a85b38910b7b0ac25d3",nC=1568,nD="8ded741a00044f7497c92f5d4fde27f6",nE=11,nF=1634,nG="180",nH="images/上传算子/u933.svg",nI="f7c9a106d9e24d9f9ec4ad56f5885ef3",nJ="超参",nK=386,nL=480,nM="10697d5ba2944b539c8f7379cdf155c5",nN="80841a4a0c21478aa9a2c9c583fd5834",nO="98fa68b1dc0f4b7cab9cab5c6eee0095",nP="key",nQ="654167cd66fc4a668525e05080232986",nR="8d93287fa25342be887a5456c0b17326",nS=0xFFAAAAAA,nT=12,nU=101,nV=4,nW="11px",nX="7949c71764a544fd8c776de332ab2504",nY=49,nZ="ea5c9448568441548565e27e3f41740a",oa=1408,ob=109,oc="1eec2a85507d44f0b246a0b8035a477b",od=290,oe=38,of="images/上传算子/u941.png",og="03db92c1952848e6b9becb709d4b075a",oh="images/上传算子/u947.png",oi="440602d371a740278dcf9022656c7f3a",oj=42,ok="images/上传算子/u953.png",ol="88a37e35f11a48b68a5f9c0c6f7a3fc9",om=154,on="images/编辑/u1154.png",oo="fbe1d084bbee409884cc69c665dd443a",op="images/编辑/u1160.png",oq="2700fea09f204627a38c52b91769cec6",or="images/编辑/u1166.png",os="6274ed1d74c9428394741980dc6a306e",ot=444,ou="images/编辑/u1155.png",ov="40ef022700004c95a7a45daed03ffdd7",ow="images/编辑/u1161.png",ox="2c0d89a982dd4908a4cb6966d7ad088e",oy="images/编辑/u1167.png",oz="1b35f6912f83450f8cdf4ff26c6005fa",oA=744,oB=235,oC="images/编辑/u1156.png",oD="ed1f6c0c79234d358f32b385e1226d6a",oE="images/编辑/u1162.png",oF="69fa35417b3048688ccb92e2f9699be0",oG="images/编辑/u1168.png",oH="b9ea999da4df46a8b9b7adf19ab9ecf3",oI=979,oJ=199,oK="images/编辑/u1157.png",oL="71e6f29766244cd7815bd4d680e9df97",oM="images/编辑/u1163.png",oN="f38c324179144e4996220cf539d055f7",oO="images/编辑/u1169.png",oP="7470423e5a234c79adf6704755ac7eed",oQ=1178,oR=230,oS="images/编辑/u1158.png",oT="b2de82ff08ee46ceab958b199b3e49b1",oU="images/编辑/u1164.png",oV="ca66b6c267764eedbe1e0e5ee90bf588",oW="images/编辑/u1170.png",oX="1e224db1f8f6418fbdd8d64def02ddfc",oY=160,oZ="images/上传算子/u965.png",pa="c945aa8b91534485bd8885d8bf13525d",pb="images/编辑/u1178.png",pc="4d78eac84f7e4116877bac74e942d369",pd="images/编辑/u1179.png",pe="0ab2c1a31b6c46ef833d38407af342ec",pf="images/编辑/u1180.png",pg="4ed118712d464e72ae68127159a087ac",ph="images/编辑/u1181.png",pi="e3d8a3a7d6d34459822ed08685f2e9f7",pj="images/编辑/u1182.png",pk="26478f9c395347c9a06fbdb67dfc1941",pl="9878069c328245589dea8e6bd3939025",pm="ce773209168b4b8f8d70aea632b663f0",pn="ebc36cee53b14ecbb71541e97d4f0583",po="14a9c4d44ea347ac8c9920816bd28874",pp="1326f2bd82ba4fd08dc765f0943b4b6a",pq="4a942d5cfb6340b0ac0f3c1ea84ebe51",pr=159,ps="efec0d31601e41a6a51b11812a3f25a1",pt=29,pu=456,pv=192,pw="请输入参数的描述信息",px="87131a8a7f1447409d14958ce5ac98a0",py=153,pz="1526ec44a9b24fe68732cd52fe7ea2d5",pA=-964,pB="8aa369ec94dc425085c73ff0e9290fe9",pC="4f6d74ecb22443dfa0be54073416a287",pD=1274,pE=161,pF="f586977211a44dbfbed1db681f57ad95",pG=1249,pH="images/上传算子/u978.svg",pI="a8be31c436e34be0a430623875bca9ea",pJ=269,pK="e4402a5add2e4ec1bd1d82837f4a23de",pL=141,pM=305,pN=158,pO="b0b6cafbf2d641449fda2cf254827ddb",pP=204,pQ=765,pR="请输入参数的默认值",pS="ccfafe063d8e4de1a3e95d8097fe5982",pT="779700c07bf5440bb2bb0365f7864cb9",pU=26,pV=1000,pW="14330eee0a004b64965b5741bf3ff56c",pX=1259,pY=169,pZ="124b2f41e3fe4a3e800dcf17c71df6cb",qa=1284,qb=171,qc="7da02af42512438f963b152f7b24219b",qd=203,qe="4c2d6ca6cd634a8b8e2f50b053750bbd",qf=201,qg="cdc8aa994cd0468e9ac41c066f1d9658",qh=1269,qi=179,qj="771b8f3e59ee4e0b8bef6adc21b0f6d8",qk=1294,ql="5e0d7ce608ec4871abec9bef9df0e2aa",qm="7a262e66f8a3482eaccd9fcf148bd5ee",qn=233,qo="c445964d8e3344c3b030f02cb7a97a16",qp=1279,qq=189,qr="e221b5c9ba7c4298bc9c7dec9ef50103",qs=1304,qt=191,qu="1f6c50d296e44f73b93065ef4e9610cc",qv=275,qw="00c6118e9b12487a85354a55c86bf8f4",qx="fe91bb3f17ab496e91d678e359816b0b",qy="41570678fef54844b148cf5fb422e620",qz="10fd17e08b2f442fa75138f7f9dd1b4a",qA="6996cf5817c44ebe962c3fc3e4896afa",qB="6fa957af07fd4a0891386d4dfc7bce8e",qC=193,qD="82e3110f65364d6d888a561f43160ce6",qE="b1e1c8dbb9c74917a584f4722ccd0169",qF=254,qG=27,qH="aacd413349334048a3881e3ab172d813",qI="a8361795aa4143eabb6667715538926a",qJ="5ee73b2211b04f3aa21b4dfaee286cc3",qK="82fdcb6ac4dd453da353f8789eca2291",qL="ca28649cae3a420a90bf92ae4c04719f",qM=238,qN="19af0134c21f45cbb036e4640f06a5cd",qO="8ce2fed9af0a46d7bc3a3665d4991c17",qP="35a8e878c8624089bfa8e51d5ab9d01f",qQ="dbf35277ae824efa91bb95ad1f487072",qR="onLoad",qS="Load时 ",qT="setFunction",qU="设置 文字于 当前等于"[[LVAR1]]"",qV="设置文本",qW="当前 为 \"[[LVAR1]]\"",qX="文字于 当前等于\"[[LVAR1]]\"",qY="expr",qZ="block",ra="subExprs",rb="fcall",rc="functionName",rd="SetWidgetRichText",re="arguments",rf="pathLiteral",rg="isThis",rh="isFocused",ri="isTarget",rj="[[LVAR1]]",rk="localVariables",rl="lvar1",rm="GetWidgetText",rn="sto",ro="var",rp="booleanLiteral",rq="2028bb22973c486ebfd3f6bbf524df45",rr="ee9c4d30757744348691ad7bbf107b0e",rs="设置 超参 到 到 下一项 循环 如果隐藏则显示 推动和拉动元件 下方",rt="超参 到 下一项 循环",ru="设置 超参 到 到 下一项 循环 如果隐藏则显示 推动和拉动元件 下方",rv="1cf68b6273cf4695add6c3812e22f91d",rw="c2f5e8261f4140fe9dccf8123b0cdc1d",rx="弹窗",ry=1291,rz="7ea7201aba4842bfaee913d098d638dd",rA="628e762939354552912fe52add9a9231",rB="40519e9ec4264601bfb12c514e4f4867",rC=600,rD="right",rE="d33d25beefda4560abc89f873a0bee96",rF=25,rG="隐藏 弹窗",rH="images/上传算子/u1017.svg",rI="d3bbd0eeb403496ebd66619f0c6009ee",rJ="images/算法开发/u789.svg",rK="9abed9c568fa4bc788282b05cecd08ac",rL=24,rM="18px",rN="11a7d17d22f443829b91447f4a675727",rO="5304a1b09f8843bbad909c28b9727adc",rP=484,rQ=0x198080FF,rR="3b97556fbeab4cc581842419aa088b37",rS="91c386e631e24388a7524d3428c32dd8",rT="3cfbecb3331a4b3f9eafc67db1511801",rU="f804ed4f204342d39dfc3021ba76a056",rV="1a14f2d296964a008d72666715853c1c",rW="1d0cf36b93a7497ab1f7ef3f11de2577",rX=416,rY="43f3e2bf150e4a6680acc2abc1ffa444",rZ=249,sa="masters",sb="4b990bb6cff949a1b5064d9025ac7466",sc="Axure:Master",sd="b4af901033b249d38ee8eb1b94777365",se="573733447bee46eea78d2b52ca56b99a",sf=0xFFF5F6FA,sg="458c47cd3b3c4a7eb8cf043d32222b99",sh=63,si=0xFFD7D7D7,sj="07056249b2ee422393616a7350baacea",sk=1859,sl=900,sm="a7ce4e4c5c6d4f7da2e684ee804f68d0",sn="设置 文字于 当前等于"[[Pagename]]"",so="当前 为 \"[[Pagename]]\"",sp="文字于 当前等于\"[[Pagename]]\"",sq="[[Pagename]]",sr="pagename",ss="objectPaths",st="231f670aac464031adb36e0b51618301",su="scriptId",sv="u1028",sw="b4af901033b249d38ee8eb1b94777365",sx="u1029",sy="573733447bee46eea78d2b52ca56b99a",sz="u1030",sA="458c47cd3b3c4a7eb8cf043d32222b99",sB="u1031",sC="07056249b2ee422393616a7350baacea",sD="u1032",sE="a7ce4e4c5c6d4f7da2e684ee804f68d0",sF="u1033",sG="88195f27852a49d29751fc4147885ba8",sH="u1034",sI="157b2056e3124e18ae43a192bd6858b3",sJ="u1035",sK="d85600cfbe00401e88cecfbd03293b79",sL="u1036",sM="06a6645ce78b4a1ba426cb6f7d0daa63",sN="u1037",sO="7c9ced60964f4b8885e11965becc4069",sP="u1038",sQ="c36c5f2e17e245a08ed507e637e856c2",sR="u1039",sS="8fb0dfe271e9441eb51b242795822402",sT="u1040",sU="5d9226cd521e465885ff56f8650efbe4",sV="u1041",sW="24136564df4d4fe4b933dc9e6b9e4782",sX="u1042",sY="515e416e82424010afabd98ef5b54a05",sZ="u1043",ta="4b3f6664f9504085adabbfd00173d764",tb="u1044",tc="6595f1224c414c64808be7c498d661b5",td="u1045",te="c1c3d267caa748fb9236f8b54fc399d2",tf="u1046",tg="7a79ca3fb4d7485ea169242d8fe016af",th="u1047",ti="f7c2230bd61241e68cdf454b01ebdf4b",tj="u1048",tk="90042d59d2ce41e1a369ae1bfe0e41df",tl="u1049",tm="ebb749fb23264d85aa79045143baf575",tn="u1050",to="c72728965d8f4811b550f773cd680f33",tp="u1051",tq="u1052",tr="84d8e044d5304e0c9f2101004b3cb21c",ts="u1053",tt="8f51ae529a1e49778eaad5c44f233a1a",tu="u1054",tv="0bc2534cd98e45b788a17af52d912d84",tw="u1055",tx="a597fbac21a345558769dd40f7350fd0",ty="u1056",tz="ebe8abe639554b51ba28ded27354587b",tA="u1057",tB="ea1c36705be148ff8715fa4c3b3da0df",tC="u1058",tD="86374365f2f34304b3564cc37d9332ac",tE="u1059",tF="20ac4170af1b474dab45bf2249b58014",tG="u1060",tH="6090f489d0754dada4e3556ad9c61bc2",tI="u1061",tJ="7a21c9ec031d497f83e93539a06d010a",tK="u1062",tL="c39557a830184cc9a1ce3d38ebf113e8",tM="u1063",tN="6c69212917174074ac94616e8e6e6389",tO="u1064",tP="6dfcdb59e48c41c489cd8dc935bdbb03",tQ="u1065",tR="8e3d7a892c7342f496f0e677ae4bfe57",tS="u1066",tT="04635272886d4061aceb27225aa89da2",tU="u1067",tV="4650b31093094e728ba499a1d4872989",tW="u1068",tX="b601db653c3144de979b49d7bab61afc",tY="u1069",tZ="ea768387828b43b2ad1c3185e63c37fa",ua="u1070",ub="08bdfc8ff4fd41718aba7461ff65f32e",uc="u1071",ud="fe7b14fcbf454a368ae5b977613246ee",ue="u1072",uf="dbdd84e0c28b4bcb9aa9fc030c93502e",ug="u1073",uh="9c9f2b8eb9a5479481c945a0c4e805bb",ui="u1074",uj="ba45137986fe4cb7990b808b3aaab7d9",uk="u1075",ul="72ba83844fe24ca39137f3fbb843c097",um="u1076",un="76bf09608c3345fba5be5fe6098179d0",uo="u1077",up="a3be41753e2d4c6b9948cb21be869cfc",uq="u1078",ur="f773d7dc16e849d8a6cf5284652d803a",us="u1079",ut="15b81720cc7d41719ea3dc8a791536ee",uu="u1080",uv="59c6b8a0220e47d1be77f85c83c6a8ad",uw="u1081",ux="1aed549595e04df4a4197df195fff5bd",uy="u1082",uz="d72339ed43f547f2a5016dc770315959",uA="u1083",uB="080a18bb067941d9ab506cd74f7eef04",uC="u1084",uD="312a06813b0f4393a305bf48059e8253",uE="u1085",uF="ab1cb85e285e4fe8a12d74ac163adb8c",uG="u1086",uH="1e8bd74ef2524cb7b6d745972284f691",uI="u1087",uJ="2811c90e67e142cba5bd277f97e816b0",uK="u1088",uL="ea2ffc197ccc4e8f9ffb1b5084d2f8ca",uM="u1089",uN="bf66450098b74df99e87b621e5e998a1",uO="u1090",uP="73bee7b199ca4a4889dcb138b8967ad2",uQ="u1091",uR="d4bf0ffa8650437587e407c6e65adf92",uS="u1092",uT="ce792674d86546eca61ff8719ea356c3",uU="u1093",uV="882e08dc586145c1b724d5deb6f59ba1",uW="u1094",uX="466a884a1848415fbcb856c37e332a07",uY="u1095",uZ="f16a7243e14a4a1bb5c6d521e0694d47",va="u1096",vb="2c531c31083842cfadc7b07b1c1655ef",vc="u1097",vd="56b78352870a451082cbe9b40ee99480",ve="u1098",vf="c69fcca081ee46dc8c4ec1018f774a32",vg="u1099",vh="8a515e9f101f4038bd52b22c0bb849d8",vi="u1100",vj="368e18edf603416695798fb914e5e86b",vk="u1101",vl="b090ad9bdda34a71ab0c4480ff2703d2",vm="u1102",vn="b4b1b20a27e246c19196272942ce883c",vo="u1103",vp="718518ab53224570b5e7af91e735c326",vq="u1104",vr="cbe84439b2684799a784ddda089b2cc4",vs="u1105",vt="47a21d1056ec4bb1a9411b3d0135822e",vu="u1106",vv="d2bc8ecd50a940cb91206d59610e5b2a",vw="u1107",vx="2da2a5ff65f44f8fb93af5ae3b13eb50",vy="u1108",vz="e7b03321df1b4a13a260892faeb50b46",vA="u1109",vB="98e6d716d9574756b905a3ea1fe33cde",vC="u1110",vD="685426aa510945239f6128aed9109dee",vE="u1111",vF="2bf9d7b3d49a4efb9e5b1ead89daf3cb",vG="u1112",vH="f73c5146279345ae99fd37854eaf5627",vI="u1113",vJ="6526f6b6a88442b3bf79ffa4a6957517",vK="u1114",vL="0ee23b5540c544748cf2698dcd1658f0",vM="u1115",vN="52c2f47050b34ae4adaad89b64668a0f",vO="u1116",vP="0cc99655a61744a1a92bc9f4be404dfe",vQ="u1117",vR="3ce7b3fb0d234dc3b535f79e53df2dc0",vS="u1118",vT="4f40d334603a46059d19f4518489c38e",vU="u1119",vV="f9736d76760840dc9e3b5ff52a0dff70",vW="u1120",vX="u1121",vY="bb5d9f3fd93a40d2a1883385d69d419b",vZ="u1122",wa="e3f3f8ba6e9a4397bc26a7e8df2c4aa5",wb="u1123",wc="f07b415dcb03438d8826205beb741adf",wd="u1124",we="862d621732d14cf0b7ae4ed5318cc25f",wf="u1125",wg="ff05c4e96487418ab178ce658707f81e",wh="u1126",wi="4311151ce69741ca89a4bddb5328e5b0",wj="u1127",wk="3458b17b029248d9aa8aac46493d129c",wl="u1128",wm="2fffbb20f91d423cafb09a1c209ccef8",wn="u1129",wo="358600fec82146c8ac2fc7fff26f1147",wp="u1130",wq="52fdc57bf5144867824c9f9ea55d269d",wr="u1131",ws="c39e2f39764645c685b04c1ba5a7a65e",wt="u1132",wu="ca1b319dd84947e7898e815f582eba1d",wv="u1133",ww="87d37eb682c841ff868b444a3af28338",wx="u1134",wy="d9b11acee20d462f8e5f24bbad53c4ab",wz="u1135",wA="7e52f15d7133421b9a3249dc56190e01",wB="u1136",wC="9f5e0f1deee147a78f26ab143c77feb9",wD="u1137",wE="u1138",wF="f8870d98a6e4468389c9f0e4f8460588",wG="u1139",wH="4d5ea58fa4094a95b55576bfdd661cb0",wI="u1140",wJ="c1c818d35f71440fbfc6b2d02849f7b5",wK="u1141",wL="596dfec0c4b14b8db255d87397fd161a",wM="u1142",wN="40a077ddf93047a7ad01c3f0c76f9f2b",wO="u1143",wP="04af82138ed44a85b38910b7b0ac25d3",wQ="u1144",wR="8ded741a00044f7497c92f5d4fde27f6",wS="u1145",wT="f7c9a106d9e24d9f9ec4ad56f5885ef3",wU="u1146",wV="80841a4a0c21478aa9a2c9c583fd5834",wW="u1147",wX="98fa68b1dc0f4b7cab9cab5c6eee0095",wY="u1148",wZ="654167cd66fc4a668525e05080232986",xa="u1149",xb="8d93287fa25342be887a5456c0b17326",xc="u1150",xd="u1151",xe="ea5c9448568441548565e27e3f41740a",xf="u1152",xg="1eec2a85507d44f0b246a0b8035a477b",xh="u1153",xi="88a37e35f11a48b68a5f9c0c6f7a3fc9",xj="u1154",xk="6274ed1d74c9428394741980dc6a306e",xl="u1155",xm="1b35f6912f83450f8cdf4ff26c6005fa",xn="u1156",xo="b9ea999da4df46a8b9b7adf19ab9ecf3",xp="u1157",xq="7470423e5a234c79adf6704755ac7eed",xr="u1158",xs="03db92c1952848e6b9becb709d4b075a",xt="u1159",xu="fbe1d084bbee409884cc69c665dd443a",xv="u1160",xw="40ef022700004c95a7a45daed03ffdd7",xx="u1161",xy="ed1f6c0c79234d358f32b385e1226d6a",xz="u1162",xA="71e6f29766244cd7815bd4d680e9df97",xB="u1163",xC="b2de82ff08ee46ceab958b199b3e49b1",xD="u1164",xE="440602d371a740278dcf9022656c7f3a",xF="u1165",xG="2700fea09f204627a38c52b91769cec6",xH="u1166",xI="2c0d89a982dd4908a4cb6966d7ad088e",xJ="u1167",xK="69fa35417b3048688ccb92e2f9699be0",xL="u1168",xM="f38c324179144e4996220cf539d055f7",xN="u1169",xO="ca66b6c267764eedbe1e0e5ee90bf588",xP="u1170",xQ="26478f9c395347c9a06fbdb67dfc1941",xR="u1171",xS="9878069c328245589dea8e6bd3939025",xT="u1172",xU="ce773209168b4b8f8d70aea632b663f0",xV="u1173",xW="ebc36cee53b14ecbb71541e97d4f0583",xX="u1174",xY="14a9c4d44ea347ac8c9920816bd28874",xZ="u1175",ya="1326f2bd82ba4fd08dc765f0943b4b6a",yb="u1176",yc="1e224db1f8f6418fbdd8d64def02ddfc",yd="u1177",ye="c945aa8b91534485bd8885d8bf13525d",yf="u1178",yg="4d78eac84f7e4116877bac74e942d369",yh="u1179",yi="0ab2c1a31b6c46ef833d38407af342ec",yj="u1180",yk="4ed118712d464e72ae68127159a087ac",yl="u1181",ym="e3d8a3a7d6d34459822ed08685f2e9f7",yn="u1182",yo="4a942d5cfb6340b0ac0f3c1ea84ebe51",yp="u1183",yq="efec0d31601e41a6a51b11812a3f25a1",yr="u1184",ys="u1185",yt="1526ec44a9b24fe68732cd52fe7ea2d5",yu="u1186",yv="8aa369ec94dc425085c73ff0e9290fe9",yw="u1187",yx="4f6d74ecb22443dfa0be54073416a287",yy="u1188",yz="f586977211a44dbfbed1db681f57ad95",yA="u1189",yB="a8be31c436e34be0a430623875bca9ea",yC="u1190",yD="u1191",yE="b0b6cafbf2d641449fda2cf254827ddb",yF="u1192",yG="ccfafe063d8e4de1a3e95d8097fe5982",yH="u1193",yI="779700c07bf5440bb2bb0365f7864cb9",yJ="u1194",yK="14330eee0a004b64965b5741bf3ff56c",yL="u1195",yM="124b2f41e3fe4a3e800dcf17c71df6cb",yN="u1196",yO="7da02af42512438f963b152f7b24219b",yP="u1197",yQ="4c2d6ca6cd634a8b8e2f50b053750bbd",yR="u1198",yS="cdc8aa994cd0468e9ac41c066f1d9658",yT="u1199",yU="771b8f3e59ee4e0b8bef6adc21b0f6d8",yV="u1200",yW="5e0d7ce608ec4871abec9bef9df0e2aa",yX="u1201",yY="7a262e66f8a3482eaccd9fcf148bd5ee",yZ="u1202",za="c445964d8e3344c3b030f02cb7a97a16",zb="u1203",zc="e221b5c9ba7c4298bc9c7dec9ef50103",zd="u1204",ze="1f6c50d296e44f73b93065ef4e9610cc",zf="u1205",zg="00c6118e9b12487a85354a55c86bf8f4",zh="u1206",zi="fe91bb3f17ab496e91d678e359816b0b",zj="u1207",zk="41570678fef54844b148cf5fb422e620",zl="u1208",zm="10fd17e08b2f442fa75138f7f9dd1b4a",zn="u1209",zo="6996cf5817c44ebe962c3fc3e4896afa",zp="u1210",zq="6fa957af07fd4a0891386d4dfc7bce8e",zr="u1211",zs="82e3110f65364d6d888a561f43160ce6",zt="u1212",zu="b1e1c8dbb9c74917a584f4722ccd0169",zv="u1213",zw="aacd413349334048a3881e3ab172d813",zx="u1214",zy="a8361795aa4143eabb6667715538926a",zz="u1215",zA="5ee73b2211b04f3aa21b4dfaee286cc3",zB="u1216",zC="82fdcb6ac4dd453da353f8789eca2291",zD="u1217",zE="ca28649cae3a420a90bf92ae4c04719f",zF="u1218",zG="19af0134c21f45cbb036e4640f06a5cd",zH="u1219",zI="35a8e878c8624089bfa8e51d5ab9d01f",zJ="u1220",zK="dbf35277ae824efa91bb95ad1f487072",zL="u1221",zM="2028bb22973c486ebfd3f6bbf524df45",zN="u1222",zO="ee9c4d30757744348691ad7bbf107b0e",zP="u1223",zQ="1cf68b6273cf4695add6c3812e22f91d",zR="u1224",zS="c2f5e8261f4140fe9dccf8123b0cdc1d",zT="u1225",zU="9a44102f78e142ffb06700a26e13d318",zV="u1226",zW="628e762939354552912fe52add9a9231",zX="u1227",zY="d33d25beefda4560abc89f873a0bee96",zZ="u1228",Aa="d3bbd0eeb403496ebd66619f0c6009ee",Ab="u1229",Ac="9abed9c568fa4bc788282b05cecd08ac",Ad="u1230",Ae="11a7d17d22f443829b91447f4a675727",Af="u1231",Ag="5304a1b09f8843bbad909c28b9727adc",Ah="u1232",Ai="91c386e631e24388a7524d3428c32dd8",Aj="u1233",Ak="3cfbecb3331a4b3f9eafc67db1511801",Al="u1234",Am="f804ed4f204342d39dfc3021ba76a056",An="u1235",Ao="1a14f2d296964a008d72666715853c1c",Ap="u1236",Aq="1d0cf36b93a7497ab1f7ef3f11de2577",Ar="u1237",As="43f3e2bf150e4a6680acc2abc1ffa444",At="u1238"; +return _creator(); +})()); \ No newline at end of file diff --git "a/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\347\274\226\350\276\221/styles.css" "b/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\347\274\226\350\276\221/styles.css" new file mode 100644 index 0000000000000000000000000000000000000000..ed5901e79a8dca38cfb2e929abde783ff00aac52 --- /dev/null +++ "b/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\347\274\226\350\276\221/styles.css" @@ -0,0 +1,8981 @@ +body { + margin:0px; + background-image:none; + position:relative; + left:0px; + width:1920px; + margin-left:auto; + margin-right:auto; + text-align:left; +} +.form_sketch { + border-color:transparent; + background-color:transparent; +} +#base { + position:absolute; + z-index:0; +} +#u1029 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1030_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1920px; + height:1300px; + background:inherit; + background-color:rgba(245, 246, 250, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1030 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1920px; + height:1300px; + display:flex; +} +#u1030 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1030_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1031_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1920px; + height:63px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1031 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1920px; + height:63px; + display:flex; +} +#u1031 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1031_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1032_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1859px; + height:900px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1032 { + border-width:0px; + position:absolute; + left:25px; + top:88px; + width:1859px; + height:900px; + display:flex; +} +#u1032 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1032_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1033_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:400px; + height:22px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:16px; +} +#u1033 { + border-width:0px; + position:absolute; + left:35px; + top:21px; + width:400px; + height:22px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:16px; +} +#u1033 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1033_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1034 { + position:fixed; + left:50%; + margin-left:-284px; + top:50%; + margin-top:-260px; + visibility:hidden; +} +#u1034_state0 { + position:relative; + left:0px; + top:0px; + width:568px; + height:520px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1034_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1035_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:568px; + height:272px; + 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:8px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1035 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:568px; + height:272px; + display:flex; +} +#u1035 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1035_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1036_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:15px; + height:15px; +} +#u1036 { + border-width:0px; + position:absolute; + left:539px; + top:18px; + width:15px; + height:15px; + display:flex; + color:#00FF99; +} +#u1036 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1036_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1037_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:569px; + height:2px; +} +#u1037 { + border-width:0px; + position:absolute; + left:0px; + top:48px; + width:568px; + height:1px; + display:flex; +} +#u1037 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1037_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1038_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:74px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:16px; +} +#u1038 { + border-width:0px; + position:absolute; + left:19px; + top:17px; + width:74px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:16px; +} +#u1038 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1038_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1039_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:569px; + height:2px; +} +#u1039 { + border-width:0px; + position:absolute; + left:0px; + top:200px; + width:568px; + height:1px; + display:flex; +} +#u1039 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1039_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1040_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u1040 { + border-width:0px; + position:absolute; + left:466px; + top:220px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#FFFFFF; + line-height:20px; +} +#u1040 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1040_img.mouseOver { +} +#u1040.mouseOver { +} +#u1040_img.mouseDown { +} +#u1040.mouseDown { +} +#u1040_img.disabled { +} +#u1040.disabled { + opacity:0.7; +} +#u1040_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1041_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u1041 { + border-width:0px; + position:absolute; + left:376px; + top:220px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#999999; +} +#u1041 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1041_img.mouseOver { +} +#u1041.mouseOver { +} +#u1041_img.mouseDown { +} +#u1041.mouseDown { +} +#u1041_img.disabled { +} +#u1041.disabled { + opacity:0.7; +} +#u1041_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1042 { + border-width:0px; + position:absolute; + left:22px; + top:83px; + width:528px; + height:60px; +} +#u1043_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:264px; + height:30px; +} +#u1043 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:264px; + height:30px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1043 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1043_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1044_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:264px; + height:30px; +} +#u1044 { + border-width:0px; + position:absolute; + left:264px; + top:0px; + width:264px; + height:30px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1044 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1044_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1045_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:264px; + height:30px; +} +#u1045 { + border-width:0px; + position:absolute; + left:0px; + top:30px; + width:264px; + height:30px; + display:flex; +} +#u1045 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1045_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1046_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:264px; + height:30px; +} +#u1046 { + border-width:0px; + position:absolute; + left:264px; + top:30px; + width:264px; + height:30px; + display:flex; +} +#u1046 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1046_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1047_input { + position:absolute; + left:0px; + top:0px; + width:253px; + height:20px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1047_input.disabled { + position:absolute; + left:0px; + top:0px; + width:253px; + height:20px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1047_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:253px; + height:20px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1047 { + border-width:0px; + position:absolute; + left:293px; + top:118px; + width:253px; + height:20px; + display:flex; +} +#u1047 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1047_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:253px; + height:20px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1047.disabled { +} +#u1048 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1049_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:300px; + height:8px; + background:inherit; + background-color:rgba(233, 233, 233, 1); + border:none; + border-radius:150px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:16px; + color:#00BB9A; + text-align:left; + line-height:16px; +} +#u1049 { + border-width:0px; + position:absolute; + left:22px; + top:232px; + width:300px; + height:8px; + display:flex; + font-size:16px; + color:#00BB9A; + text-align:left; + line-height:16px; +} +#u1049 .text { + position:absolute; + align-self:center; + padding:2px 10px 2px 12px; + box-sizing:border-box; + width:100%; +} +#u1049_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1050_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:90px; + height:8px; + background:inherit; + background-color:rgba(101, 118, 255, 1); + border:none; + border-radius:45px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#FFFFFF; + line-height:16px; +} +#u1050 { + border-width:0px; + position:absolute; + left:22px; + top:232px; + width:90px; + height:8px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#FFFFFF; + line-height:16px; +} +#u1050 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1050_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1051_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:39px; + height:10px; +} +#u1051 { + border-width:0px; + position:absolute; + left:322px; + top:231px; + width:39px; + height:10px; + display:flex; + font-family:'Arial Normal', 'Arial'; + font-weight:400; + font-style:normal; + font-size:10px; + text-align:center; + line-height:16px; +} +#u1051 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1051_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1052_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:48px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1052 { + border-width:0px; + position:absolute; + left:22px; + top:244px; + width:48px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1052 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1052_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1053_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:568px; + height:200px; + 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; +} +#u1053 { + border-width:0px; + position:absolute; + left:0px; + top:320px; + width:568px; + height:200px; + display:flex; +} +#u1053 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1053_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1054_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:56px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1054 { + border-width:0px; + position:absolute; + left:55px; + top:343px; + width:56px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1054 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1054_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1055_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:18px; + height:20px; +} +#u1055 { + border-width:0px; + position:absolute; + left:22px; + top:343px; + width:18px; + height:20px; + display:flex; +} +#u1055 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1055_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1056_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:50px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1056 { + border-width:0px; + position:absolute; + left:88px; + top:381px; + width:50px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1056 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1056_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1057_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:18px; + height:20px; +} +#u1057 { + border-width:0px; + position:absolute; + left:55px; + top:381px; + width:18px; + height:20px; + display:flex; +} +#u1057 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1057_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1058_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:50px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1058 { + border-width:0px; + position:absolute; + left:121px; + top:420px; + width:50px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1058 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1058_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1059_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:18px; + height:20px; +} +#u1059 { + border-width:0px; + position:absolute; + left:88px; + top:420px; + width:18px; + height:20px; + display:flex; +} +#u1059 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1059_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1060_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:54px; + height:21px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; +} +#u1060 { + border-width:0px; + position:absolute; + left:47px; + top:476px; + width:54px; + height:21px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; +} +#u1060 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1060_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1061_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:2px; + height:201px; +} +#u1061 { + border-width:0px; + position:absolute; + left:259px; + top:320px; + width:1px; + height:200px; + display:flex; +} +#u1061 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1061_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1062_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:16px; +} +#u1062 { + border-width:0px; + position:absolute; + left:273px; + top:345px; + width:20px; + height:16px; + display:flex; +} +#u1062 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1062_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1063_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:112px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1063 { + border-width:0px; + position:absolute; + left:303px; + top:343px; + width:112px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1063 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1063_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1064_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:16px; +} +#u1064 { + border-width:0px; + position:absolute; + left:303px; + top:378px; + width:20px; + height:16px; + display:flex; +} +#u1064 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1064_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1065_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:50px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1065 { + border-width:0px; + position:absolute; + left:333px; + top:376px; + width:50px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1065 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1065_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1066_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:16px; +} +#u1066 { + border-width:0px; + position:absolute; + left:333px; + top:408px; + width:20px; + height:16px; + display:flex; +} +#u1066 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1066_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1067_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:50px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1067 { + border-width:0px; + position:absolute; + left:363px; + top:406px; + width:50px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1067 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1067_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1068_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:54px; + height:21px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; +} +#u1068 { + border-width:0px; + position:absolute; + left:313px; + top:478px; + width:54px; + height:21px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; +} +#u1068 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1068_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1069_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:90px; + height:21px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; +} +#u1069 { + border-width:0px; + position:absolute; + left:0px; + top:285px; + width:90px; + height:21px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; +} +#u1069 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1069_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1034_state1 { + position:relative; + left:0px; + top:0px; + width:568px; + height:609px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + visibility:hidden; +} +#u1034_state1_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1070_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:568px; + height:609px; + 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:8px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1070 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:568px; + height:609px; + display:flex; +} +#u1070 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1070_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1071_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:15px; + height:15px; +} +#u1071 { + border-width:0px; + position:absolute; + left:539px; + top:18px; + width:15px; + height:15px; + display:flex; + color:#00FF99; +} +#u1071 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1071_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1072_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:569px; + height:2px; +} +#u1072 { + border-width:0px; + position:absolute; + left:0px; + top:48px; + width:568px; + height:1px; + display:flex; +} +#u1072 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1072_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1073_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:74px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:16px; +} +#u1073 { + border-width:0px; + position:absolute; + left:19px; + top:17px; + width:74px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:16px; +} +#u1073 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1073_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1074_input { + position:absolute; + left:0px; + top:0px; + width:400px; + height:40px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1074_input.mouseOver { + position:absolute; + left:0px; + top:0px; + width:400px; + height:40px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1074_input.focused { + position:absolute; + left:0px; + top:0px; + width:400px; + height:40px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1074_input.disabled { + position:absolute; + left:0px; + top:0px; + width:400px; + height:40px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1074_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:400px; + height:40px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u1074 { + border-width:0px; + position:absolute; + left:120px; + top:68px; + width:400px; + height:40px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u1074 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 10px; + box-sizing:border-box; + width:100%; +} +#u1074_div.mouseOver { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:400px; + height:40px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(64, 158, 255, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u1074.mouseOver { +} +#u1074_div.focused { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:400px; + height:40px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(64, 158, 255, 1); + border-radius:4px; + -moz-box-shadow:0px 0px 5px rgba(64, 158, 255, 0.247058823529412); + -webkit-box-shadow:0px 0px 5px rgba(64, 158, 255, 0.247058823529412); + box-shadow:0px 0px 5px rgba(64, 158, 255, 0.247058823529412); + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u1074.focused { +} +#u1074_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:400px; + height:40px; + background:inherit; + background-color:rgba(242, 242, 242, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u1074.disabled { +} +#u1075_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:569px; + height:2px; +} +#u1075 { + border-width:0px; + position:absolute; + left:0px; + top:543px; + width:568px; + height:1px; + display:flex; +} +#u1075 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1075_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1076_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u1076 { + border-width:0px; + position:absolute; + left:440px; + top:562px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#FFFFFF; + line-height:20px; +} +#u1076 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1076_img.mouseOver { +} +#u1076.mouseOver { +} +#u1076_img.mouseDown { +} +#u1076.mouseDown { +} +#u1076_img.disabled { +} +#u1076.disabled { + opacity:0.7; +} +#u1076_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1077_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u1077 { + border-width:0px; + position:absolute; + left:350px; + top:562px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#999999; +} +#u1077 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1077_img.mouseOver { +} +#u1077.mouseOver { +} +#u1077_img.mouseDown { +} +#u1077.mouseDown { +} +#u1077_img.disabled { +} +#u1077.disabled { + opacity:0.7; +} +#u1077_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1078_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:48px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1078 { + border-width:0px; + position:absolute; + left:30px; + top:307px; + width:48px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1078 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1078_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1079_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:10px; + height:16px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:20px; + color:#E26866; +} +#u1079 { + border-width:0px; + position:absolute; + left:15px; + top:304px; + width:10px; + height:16px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:20px; + color:#E26866; +} +#u1079 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1079_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1080_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:36px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1080 { + border-width:0px; + position:absolute; + left:32px; + top:79px; + width:36px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1080 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1080_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1081_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:10px; + height:16px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:20px; + color:#E26866; +} +#u1081 { + border-width:0px; + position:absolute; + left:17px; + top:76px; + width:10px; + height:16px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:20px; + color:#E26866; +} +#u1081 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1081_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1082 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1083_input { + position:absolute; + left:0px; + top:0px; + width:400px; + height:138px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1083_input.mouseOver { + position:absolute; + left:0px; + top:0px; + width:400px; + height:138px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1083_input.focused { + position:absolute; + left:0px; + top:0px; + width:400px; + height:138px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1083_input.disabled { + position:absolute; + left:0px; + top:0px; + width:400px; + height:138px; + padding:3px 2px 3px 10px; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#333333; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1083_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:400px; + height:138px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u1083 { + border-width:0px; + position:absolute; + left:120px; + top:126px; + width:400px; + height:138px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u1083 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 10px; + box-sizing:border-box; + width:100%; +} +#u1083_div.mouseOver { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:400px; + height:138px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(64, 158, 255, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u1083.mouseOver { +} +#u1083_div.focused { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:400px; + height:138px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(64, 158, 255, 1); + border-radius:4px; + -moz-box-shadow:0px 0px 5px rgba(64, 158, 255, 0.247058823529412); + -webkit-box-shadow:0px 0px 5px rgba(64, 158, 255, 0.247058823529412); + box-shadow:0px 0px 5px rgba(64, 158, 255, 0.247058823529412); + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u1083.focused { +} +#u1083_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:400px; + height:138px; + background:inherit; + background-color:rgba(242, 242, 242, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + text-align:left; +} +#u1083.disabled { +} +#u1084_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:36px; + height:16px; + 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; + color:#DBDFEA; +} +#u1084 { + border-width:0px; + position:absolute; + left:472px; + top:232px; + width:36px; + height:16px; + display:flex; + color:#DBDFEA; +} +#u1084 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1084_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1085_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:61px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1085 { + border-width:0px; + position:absolute; + left:32px; + top:131px; + width:61px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1085 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1085_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1086_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:10px; + height:16px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:20px; + color:#E26866; +} +#u1086 { + border-width:0px; + position:absolute; + left:17px; + top:128px; + width:10px; + height:16px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:20px; + color:#E26866; +} +#u1086 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1086_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1087 label { + left:0px; + width:100%; +} +#u1087_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1087 { + border-width:0px; + position:absolute; + left:118px; + top:301px; + width:100px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1087 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1087_img.selected { +} +#u1087.selected { +} +#u1087_img.disabled { +} +#u1087.disabled { +} +#u1087_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:84px; + word-wrap:break-word; + text-transform:none; +} +#u1087_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1088 label { + left:0px; + width:100%; +} +#u1088_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1088 { + border-width:0px; + position:absolute; + left:331px; + top:301px; + width:100px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1088 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1088_img.selected { +} +#u1088.selected { +} +#u1088_img.disabled { +} +#u1088.disabled { +} +#u1088_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:84px; + word-wrap:break-word; + text-transform:none; +} +#u1088_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1089 { + border-width:0px; + position:absolute; + left:120px; + top:339px; + width:400px; + height:90px; +} +#u1090_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; +} +#u1090 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1090 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1090_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1091_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; +} +#u1091 { + border-width:0px; + position:absolute; + left:100px; + top:0px; + width:100px; + height:30px; + display:flex; +} +#u1091 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1091_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1092_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; +} +#u1092 { + border-width:0px; + position:absolute; + left:200px; + top:0px; + width:100px; + height:30px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1092 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1092_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1093_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; +} +#u1093 { + border-width:0px; + position:absolute; + left:300px; + top:0px; + width:100px; + height:30px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1093 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1093_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1094_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; +} +#u1094 { + border-width:0px; + position:absolute; + left:0px; + top:30px; + width:100px; + height:30px; + display:flex; +} +#u1094 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1094_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1095_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; +} +#u1095 { + border-width:0px; + position:absolute; + left:100px; + top:30px; + width:100px; + height:30px; + display:flex; +} +#u1095 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1095_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1096_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; +} +#u1096 { + border-width:0px; + position:absolute; + left:200px; + top:30px; + width:100px; + height:30px; + display:flex; +} +#u1096 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1096_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1097_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; +} +#u1097 { + border-width:0px; + position:absolute; + left:300px; + top:30px; + width:100px; + height:30px; + display:flex; +} +#u1097 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1097_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1098_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; +} +#u1098 { + border-width:0px; + position:absolute; + left:0px; + top:60px; + width:100px; + height:30px; + display:flex; +} +#u1098 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1098_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1099_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; +} +#u1099 { + border-width:0px; + position:absolute; + left:100px; + top:60px; + width:100px; + height:30px; + display:flex; +} +#u1099 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1099_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1100_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; +} +#u1100 { + border-width:0px; + position:absolute; + left:200px; + top:60px; + width:100px; + height:30px; + display:flex; +} +#u1100 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1100_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1101_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:100px; + height:30px; +} +#u1101 { + border-width:0px; + position:absolute; + left:300px; + top:60px; + width:100px; + height:30px; + display:flex; +} +#u1101 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1101_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1102 label { + left:0px; + width:100%; +} +#u1102_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1102 { + border-width:0px; + position:absolute; + left:129px; + top:377px; + width:78px; + height:15px; + display:flex; +} +#u1102 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1102_img.selected { +} +#u1102.selected { +} +#u1102_img.disabled { +} +#u1102.disabled { +} +#u1102_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:62px; + word-wrap:break-word; + text-transform:none; +} +#u1102_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1103 label { + left:0px; + width:100%; +} +#u1103_img { + border-width:0px; + position:absolute; + left:0px; + top:2px; + width:12px; + height:12px; +} +#u1103 { + border-width:0px; + position:absolute; + left:129px; + top:407px; + width:78px; + height:15px; + display:flex; +} +#u1103 .text { + position:absolute; + align-self:center; + padding:0px 2px 0px 2px; + box-sizing:border-box; +} +#u1103_img.selected { +} +#u1103.selected { +} +#u1103_img.disabled { +} +#u1103.disabled { +} +#u1103_text { + border-width:0px; + position:absolute; + left:14px; + top:0px; + width:62px; + word-wrap:break-word; + text-transform:none; +} +#u1103_input { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; + opacity:0; +} +#u1104_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:48px; + height:14px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1104 { + border-width:0px; + position:absolute; + left:32px; + top:442px; + width:48px; + height:14px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; +} +#u1104 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1104_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1105 { + position:absolute; + left:120px; + top:441px; +} +#u1105_state0 { + position:relative; + left:0px; + top:0px; + width:35px; + height:20px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1105_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1106_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:35px; + height:20px; + background:inherit; + background-color:rgba(242, 242, 242, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(228, 228, 228, 1); + border-radius:23px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1106 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:35px; + height:20px; + display:flex; +} +#u1106 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1106_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1107_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; +} +#u1107 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; + display:flex; +} +#u1107 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1107_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1105_state1 { + position:relative; + left:0px; + top:0px; + width:345px; + height:69px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + visibility:hidden; +} +#u1105_state1_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1108_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:35px; + height:20px; + background:inherit; + background-color:rgba(0, 153, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(228, 228, 228, 1); + border-radius:23px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1108 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:35px; + height:20px; + display:flex; +} +#u1108 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1108_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1109_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; +} +#u1109 { + border-width:0px; + position:absolute; + left:15px; + top:0px; + width:20px; + height:20px; + display:flex; +} +#u1109 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1109_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1110_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:231px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(217, 217, 217, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:14px; + color:rgba(0, 0, 0, 0.647058823529412); + text-align:left; + line-height:22px; +} +#u1110 { + border-width:0px; + position:absolute; + left:0px; + top:37px; + width:231px; + height:32px; + display:flex; + font-size:14px; + color:rgba(0, 0, 0, 0.647058823529412); + text-align:left; + line-height:22px; +} +#u1110 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 12px; + box-sizing:border-box; + width:100%; +} +#u1110_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1111_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:10px; + height:10px; +} +#u1111 { + border-width:0px; + position:absolute; + left:215px; + top:57px; + width:10px; + height:10px; + display:flex; + -webkit-transform:rotate(90deg); + -moz-transform:rotate(90deg); + -ms-transform:rotate(90deg); + transform:rotate(90deg); + opacity:0.449999988079071; + font-family:'Microsoft YaHei Regular', 'Microsoft YaHei'; + font-weight:400; + font-style:normal; + color:#999999; +} +#u1111 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1111_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1112_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:10px; + height:10px; +} +#u1112 { + border-width:0px; + position:absolute; + left:215px; + top:41px; + width:10px; + height:10px; + display:flex; + -webkit-transform:rotate(270deg); + -moz-transform:rotate(270deg); + -ms-transform:rotate(270deg); + transform:rotate(270deg); + opacity:0.449999988079071; + font-family:'Microsoft YaHei Regular', 'Microsoft YaHei'; + font-weight:400; + font-style:normal; + color:#999999; +} +#u1112 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1112_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1113_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:23px; + height:2px; +} +#u1113 { + border-width:0px; + position:absolute; + left:209px; + top:54px; + width:22px; + height:1px; + display:flex; + font-family:'Microsoft YaHei Regular', 'Microsoft YaHei'; + font-weight:400; + font-style:normal; +} +#u1113 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1113_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1114_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:32px; + height:2px; +} +#u1114 { + border-width:0px; + position:absolute; + left:194px; + top:53px; + width:31px; + height:1px; + display:flex; + -webkit-transform:rotate(90deg); + -moz-transform:rotate(90deg); + -ms-transform:rotate(90deg); + transform:rotate(90deg); + font-family:'Microsoft YaHei Regular', 'Microsoft YaHei'; + font-weight:400; + font-style:normal; +} +#u1114 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1114_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1115_input { + position:absolute; + left:0px; + top:0px; + width:114px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + letter-spacing:normal; + color:#7F7F7F; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1115_input.disabled { + position:absolute; + left:0px; + top:0px; + width:114px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + letter-spacing:normal; + color:#7F7F7F; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1115_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:114px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:12px; + color:#7F7F7F; +} +#u1115 { + border-width:0px; + position:absolute; + left:231px; + top:37px; + width:114px; + height:32px; + display:flex; + font-size:12px; + color:#7F7F7F; +} +#u1115 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1115_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:114px; + height:32px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-size:12px; + color:#7F7F7F; +} +#u1115.disabled { +} +.u1115_input_option { + font-size:12px; + color:#7F7F7F; +} +#u1116_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:22px; + height:22px; +} +#u1116 { + border-width:0px; + position:absolute; + left:83px; + top:441px; + width:22px; + height:22px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:12px; + color:#FFFFFF; +} +#u1116 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1116_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1117_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:300px; + height:68px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(228, 228, 228, 1); + border-radius:3px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#666666; + text-align:left; +} +#u1117 { + border-width:0px; + position:absolute; + left:83px; + top:473px; + width:300px; + height:68px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#666666; + text-align:left; +} +#u1117 .text { + position:absolute; + align-self:flex-start; + padding:15px 15px 15px 15px; + box-sizing:border-box; + width:100%; +} +#u1117_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1118_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:15px; + height:18px; +} +#u1118 { + border-width:0px; + position:absolute; + left:1630px; + top:23px; + width:15px; + height:18px; + display:flex; + color:#00FF99; +} +#u1118 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1118_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1119_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:863px; + height:55px; +} +#u1119 { + border-width:0px; + position:absolute; + left:420px; + top:110px; + width:863px; + height:55px; + display:flex; +} +#u1119 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1119_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1120 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1121_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:58px; + height:28px; +} +#u1121 { + border-width:0px; + position:absolute; + left:1551px; + top:18px; + width:58px; + height:28px; + display:flex; +} +#u1121 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1121_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1122 { + border-width:0px; + position:absolute; + left:48px; + top:180px; + width:1647px; + height:1078px; +} +#u1122_state0 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1647px; + height:1078px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1122_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1123 { + border-width:0px; + position:absolute; + left:78px; + top:194px; + width:1430px; + height:279px; + touch-action:pan-y; +} +#u1123_state0 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1430px; + height:279px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1123_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1124_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:2px; + height:10px; + background:inherit; + background-color:rgba(63, 143, 204, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1124 { + border-width:0px; + position:absolute; + left:1px; + top:5px; + width:2px; + height:10px; + display:flex; +} +#u1124 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1124_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1125_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:56px; + height:16px; + 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:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC'; + font-weight:500; + font-style:normal; +} +#u1125 { + border-width:0px; + position:absolute; + left:13px; + top:0px; + width:56px; + height:16px; + display:flex; + font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC'; + font-weight:500; + font-style:normal; +} +#u1125 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1125_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1126_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1421px; + height:2px; +} +#u1126 { + border-width:0px; + position:absolute; + left:0px; + top:34px; + width:1420px; + height:1px; + display:flex; + -webkit-transform:rotate(0.0337180630969462deg); + -moz-transform:rotate(0.0337180630969462deg); + -ms-transform:rotate(0.0337180630969462deg); + transform:rotate(0.0337180630969462deg); +} +#u1126 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1126_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1127_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:65px; + height:15px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u1127 { + border-width:0px; + position:absolute; + left:15px; + top:59px; + width:65px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u1127 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1127_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1128_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:6px; + height:17px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:13px; + color:#E26866; +} +#u1128 { + border-width:0px; + position:absolute; + left:0px; + top:59px; + width:6px; + height:17px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:13px; + color:#E26866; +} +#u1128 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1128_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1129_input { + position:absolute; + left:0px; + top:0px; + width:320px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1129_input.disabled { + position:absolute; + left:0px; + top:0px; + width:320px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1129_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1129 { + border-width:0px; + position:absolute; + left:85px; + top:52px; + width:320px; + height:32px; + display:flex; +} +#u1129 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1129_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:32px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1129.disabled { +} +#u1130 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1131_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:65px; + height:15px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u1131 { + border-width:0px; + position:absolute; + left:15px; + top:181px; + width:65px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u1131 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1131_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1132_input { + position:absolute; + left:0px; + top:0px; + width:1149px; + height:79px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1132_input.disabled { + position:absolute; + left:0px; + top:0px; + width:1149px; + height:79px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1132_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1149px; + height:79px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1132 { + border-width:0px; + position:absolute; + left:85px; + top:168px; + width:1149px; + height:79px; + display:flex; +} +#u1132 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1132_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1149px; + height:79px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1132.disabled { +} +#u1133_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:65px; + height:15px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u1133 { + border-width:0px; + position:absolute; + left:15px; + top:115px; + width:65px; + height:15px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; +} +#u1133 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1133_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1134_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:6px; + height:17px; + 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:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:13px; + color:#E26866; +} +#u1134 { + border-width:0px; + position:absolute; + left:0px; + top:115px; + width:6px; + height:17px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:13px; + color:#E26866; +} +#u1134 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1134_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1135 { + position:absolute; + left:85px; + top:108px; +} +#u1135_state0 { + position:relative; + left:0px; + top:0px; + width:320px; + height:32px; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1135_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1136_input { + position:absolute; + left:0px; + top:0px; + width:320px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1136_input.disabled { + position:absolute; + left:0px; + top:0px; + width:320px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1136_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1136 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:32px; + display:flex; +} +#u1136 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1136_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:32px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1136.disabled { +} +#u1137_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:320px; + height:140px; +} +#u1137 { + border-width:0px; + position:absolute; + left:0px; + top:32px; + width:320px; + height:140px; + display:flex; +} +#u1137 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1137_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1138_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:22px; + height:22px; +} +#u1138 { + border-width:0px; + position:absolute; + left:415px; + top:115px; + width:22px; + height:22px; + display:flex; + font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC'; + font-weight:650; + font-style:normal; + font-size:12px; + color:#FFFFFF; +} +#u1138 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1138_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1139_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:300px; + height:68px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(228, 228, 228, 1); + border-radius:3px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#666666; + text-align:left; +} +#u1139 { + border-width:0px; + position:absolute; + left:1141px; + top:207px; + width:300px; + height:68px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#666666; + text-align:left; +} +#u1139 .text { + position:absolute; + align-self:flex-start; + padding:15px 15px 15px 15px; + box-sizing:border-box; + width:100%; +} +#u1139_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1123_state1 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1430px; + height:279px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + visibility:hidden; +} +#u1123_state1_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1140_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:2px; + height:10px; + background:inherit; + background-color:rgba(63, 143, 204, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1140 { + border-width:0px; + position:absolute; + left:1px; + top:5px; + width:2px; + height:10px; + display:flex; +} +#u1140 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1140_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1141_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:56px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1141 { + border-width:0px; + position:absolute; + left:13px; + top:0px; + width:56px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1141 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1141_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1142_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1647px; + height:2px; +} +#u1142 { + border-width:0px; + position:absolute; + left:0px; + top:34px; + width:1646px; + height:1px; + display:flex; + -webkit-transform:rotate(0.0337180630969462deg); + -moz-transform:rotate(0.0337180630969462deg); + -ms-transform:rotate(0.0337180630969462deg); + transform:rotate(0.0337180630969462deg); +} +#u1142 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1142_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1143 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1144_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:56px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#6576FF; +} +#u1144 { + border-width:0px; + position:absolute; + left:1568px; + top:1px; + width:56px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#6576FF; +} +#u1144 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1144_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1145_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:11px; + height:6px; +} +#u1145 { + border-width:0px; + position:absolute; + left:1634px; + top:10px; + width:11px; + height:6px; + display:flex; + -webkit-transform:rotate(180deg); + -moz-transform:rotate(180deg); + -ms-transform:rotate(180deg); + transform:rotate(180deg); +} +#u1145 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1145_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1146 { + border-width:0px; + position:absolute; + left:78px; + top:480px; + width:1430px; + height:386px; +} +#u1146_state0 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1430px; + height:386px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1146_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1147_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:2px; + height:10px; + background:inherit; + background-color:rgba(63, 143, 204, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1147 { + border-width:0px; + position:absolute; + left:1px; + top:5px; + width:2px; + height:10px; + display:flex; +} +#u1147 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1147_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1148_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:28px; + height:16px; + 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:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC'; + font-weight:500; + font-style:normal; +} +#u1148 { + border-width:0px; + position:absolute; + left:13px; + top:0px; + width:28px; + height:16px; + display:flex; + font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC'; + font-weight:500; + font-style:normal; +} +#u1148 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1148_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1149_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1647px; + height:2px; +} +#u1149 { + border-width:0px; + position:absolute; + left:0px; + top:34px; + width:1646px; + height:1px; + display:flex; + -webkit-transform:rotate(0.0337180630969462deg); + -moz-transform:rotate(0.0337180630969462deg); + -ms-transform:rotate(0.0337180630969462deg); + transform:rotate(0.0337180630969462deg); +} +#u1149 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1149_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1150_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:273px; + height:12px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:11px; + color:#AAAAAA; +} +#u1150 { + border-width:0px; + position:absolute; + left:101px; + top:4px; + width:273px; + height:12px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:11px; + color:#AAAAAA; +} +#u1150 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1150_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1151_img { + border-width:0px; + position:absolute; + left:-10px; + top:-10px; + width:100px; + height:52px; +} +#u1151 { + border-width:0px; + position:absolute; + left:2px; + top:49px; + width:80px; + height:32px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:12px; + color:#FFFFFF; + line-height:20px; +} +#u1151 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1151_img.mouseOver { +} +#u1151.mouseOver { +} +#u1151_img.mouseDown { +} +#u1151.mouseDown { +} +#u1151_img.disabled { +} +#u1151.disabled { + opacity:0.7; +} +#u1151_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1152 { + border-width:0px; + position:absolute; + left:2px; + top:109px; + width:1408px; + height:200px; +} +#u1153_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:38px; +} +#u1153 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:38px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1153 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1153_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1154_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:154px; + height:38px; +} +#u1154 { + border-width:0px; + position:absolute; + left:290px; + top:0px; + width:154px; + height:38px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1154 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1154_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1155_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:300px; + height:38px; +} +#u1155 { + border-width:0px; + position:absolute; + left:444px; + top:0px; + width:300px; + height:38px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1155 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1155_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1156_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:235px; + height:38px; +} +#u1156 { + border-width:0px; + position:absolute; + left:744px; + top:0px; + width:235px; + height:38px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1156 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1156_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1157_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:199px; + height:38px; +} +#u1157 { + border-width:0px; + position:absolute; + left:979px; + top:0px; + width:199px; + height:38px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1157 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1157_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1158_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:230px; + height:38px; +} +#u1158 { + border-width:0px; + position:absolute; + left:1178px; + top:0px; + width:230px; + height:38px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1158 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1158_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1159_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:40px; +} +#u1159 { + border-width:0px; + position:absolute; + left:0px; + top:38px; + width:290px; + height:40px; + display:flex; + color:#000000; + text-align:left; +} +#u1159 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1159_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1160_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:154px; + height:40px; +} +#u1160 { + border-width:0px; + position:absolute; + left:290px; + top:38px; + width:154px; + height:40px; + display:flex; +} +#u1160 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1160_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1161_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:300px; + height:40px; +} +#u1161 { + border-width:0px; + position:absolute; + left:444px; + top:38px; + width:300px; + height:40px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1161 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1161_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1162_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:235px; + height:40px; +} +#u1162 { + border-width:0px; + position:absolute; + left:744px; + top:38px; + width:235px; + height:40px; + display:flex; +} +#u1162 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1162_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1163_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:199px; + height:40px; +} +#u1163 { + border-width:0px; + position:absolute; + left:979px; + top:38px; + width:199px; + height:40px; + display:flex; +} +#u1163 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1163_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1164_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:230px; + height:40px; +} +#u1164 { + border-width:0px; + position:absolute; + left:1178px; + top:38px; + width:230px; + height:40px; + display:flex; +} +#u1164 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1164_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1165_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:42px; +} +#u1165 { + border-width:0px; + position:absolute; + left:0px; + top:78px; + width:290px; + height:42px; + display:flex; +} +#u1165 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1165_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1166_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:154px; + height:42px; +} +#u1166 { + border-width:0px; + position:absolute; + left:290px; + top:78px; + width:154px; + height:42px; + display:flex; + color:#000000; + text-align:left; +} +#u1166 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1166_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1167_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:300px; + height:42px; +} +#u1167 { + border-width:0px; + position:absolute; + left:444px; + top:78px; + width:300px; + height:42px; + display:flex; +} +#u1167 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1167_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1168_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:235px; + height:42px; +} +#u1168 { + border-width:0px; + position:absolute; + left:744px; + top:78px; + width:235px; + height:42px; + display:flex; +} +#u1168 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1168_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1169_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:199px; + height:42px; +} +#u1169 { + border-width:0px; + position:absolute; + left:979px; + top:78px; + width:199px; + height:42px; + display:flex; +} +#u1169 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1169_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1170_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:230px; + height:42px; +} +#u1170 { + border-width:0px; + position:absolute; + left:1178px; + top:78px; + width:230px; + height:42px; + display:flex; +} +#u1170 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1170_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1171_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:40px; +} +#u1171 { + border-width:0px; + position:absolute; + left:0px; + top:120px; + width:290px; + height:40px; + display:flex; +} +#u1171 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1171_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1172_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:154px; + height:40px; +} +#u1172 { + border-width:0px; + position:absolute; + left:290px; + top:120px; + width:154px; + height:40px; + display:flex; + color:#000000; + text-align:left; +} +#u1172 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1172_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1173_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:300px; + height:40px; +} +#u1173 { + border-width:0px; + position:absolute; + left:444px; + top:120px; + width:300px; + height:40px; + display:flex; +} +#u1173 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1173_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1174_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:235px; + height:40px; +} +#u1174 { + border-width:0px; + position:absolute; + left:744px; + top:120px; + width:235px; + height:40px; + display:flex; +} +#u1174 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1174_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1175_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:199px; + height:40px; +} +#u1175 { + border-width:0px; + position:absolute; + left:979px; + top:120px; + width:199px; + height:40px; + display:flex; +} +#u1175 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1175_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1176_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:230px; + height:40px; +} +#u1176 { + border-width:0px; + position:absolute; + left:1178px; + top:120px; + width:230px; + height:40px; + display:flex; +} +#u1176 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1176_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1177_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:40px; +} +#u1177 { + border-width:0px; + position:absolute; + left:0px; + top:160px; + width:290px; + height:40px; + display:flex; +} +#u1177 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1177_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1178_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:154px; + height:40px; +} +#u1178 { + border-width:0px; + position:absolute; + left:290px; + top:160px; + width:154px; + height:40px; + display:flex; +} +#u1178 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1178_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1179_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:300px; + height:40px; +} +#u1179 { + border-width:0px; + position:absolute; + left:444px; + top:160px; + width:300px; + height:40px; + display:flex; +} +#u1179 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1179_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1180_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:235px; + height:40px; +} +#u1180 { + border-width:0px; + position:absolute; + left:744px; + top:160px; + width:235px; + height:40px; + display:flex; +} +#u1180 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1180_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1181_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:199px; + height:40px; +} +#u1181 { + border-width:0px; + position:absolute; + left:979px; + top:160px; + width:199px; + height:40px; + display:flex; +} +#u1181 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1181_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1182_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:230px; + height:40px; +} +#u1182 { + border-width:0px; + position:absolute; + left:1178px; + top:160px; + width:230px; + height:40px; + display:flex; +} +#u1182 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1182_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1183_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1183 { + border-width:0px; + position:absolute; + left:42px; + top:159px; + width:1px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1183 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1183_text { + border-width:0px; + white-space:nowrap; + text-transform:none; + visibility:hidden; +} +#u1184_input { + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1184_input.disabled { + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1184_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1184 { + border-width:0px; + position:absolute; + left:456px; + top:192px; + width:290px; + height:29px; + display:flex; +} +#u1184 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1184_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1184.disabled { +} +#u1185_input { + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1185_input.disabled { + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1185_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1185 { + border-width:0px; + position:absolute; + left:456px; + top:153px; + width:290px; + height:29px; + display:flex; +} +#u1185 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1185_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1185.disabled { +} +#u1186 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1187 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1188_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:28px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1188 { + border-width:0px; + position:absolute; + left:1274px; + top:161px; + width:28px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1188 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1188_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1189_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:18px; + height:20px; +} +#u1189 { + border-width:0px; + position:absolute; + left:1249px; + top:159px; + width:18px; + height:20px; + display:flex; +} +#u1189 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1189_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1190_input { + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1190_input.disabled { + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1190_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1190 { + border-width:0px; + position:absolute; + left:456px; + top:269px; + width:290px; + height:29px; + display:flex; +} +#u1190 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1190_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1190.disabled { +} +#u1191_input { + position:absolute; + left:0px; + top:0px; + width:141px; + height:22px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1191_input.disabled { + position:absolute; + left:0px; + top:0px; + width:141px; + height:22px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1191_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:141px; + height:22px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1191 { + border-width:0px; + position:absolute; + left:305px; + top:158px; + width:141px; + height:22px; + display:flex; +} +#u1191 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1191_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:141px; + height:22px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1191.disabled { +} +.u1191_input_option { +} +#u1192_input { + position:absolute; + left:0px; + top:0px; + width:204px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1192_input.disabled { + position:absolute; + left:0px; + top:0px; + width:204px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1192_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:204px; + height:29px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1192 { + border-width:0px; + position:absolute; + left:765px; + top:231px; + width:204px; + height:29px; + display:flex; +} +#u1192 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1192_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:204px; + height:29px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1192.disabled { +} +#u1193_input { + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1193_input.disabled { + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1193_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1193 { + border-width:0px; + position:absolute; + left:456px; + top:231px; + width:290px; + height:29px; + display:flex; +} +#u1193 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1193_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:290px; + height:29px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1193.disabled { +} +#u1194_input { + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1194_input.disabled { + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1194_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1194 { + border-width:0px; + position:absolute; + left:1000px; + top:158px; + width:141px; + height:26px; + display:flex; +} +#u1194 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1194_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1194.disabled { +} +.u1194_input_option { +} +#u1195 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1196 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1197_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:28px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1197 { + border-width:0px; + position:absolute; + left:1274px; + top:203px; + width:28px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1197 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1197_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1198_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:18px; + height:20px; +} +#u1198 { + border-width:0px; + position:absolute; + left:1249px; + top:201px; + width:18px; + height:20px; + display:flex; +} +#u1198 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1198_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1199 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1200 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1201_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:28px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1201 { + border-width:0px; + position:absolute; + left:1274px; + top:235px; + width:28px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1201 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1201_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1202_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:18px; + height:20px; +} +#u1202 { + border-width:0px; + position:absolute; + left:1249px; + top:233px; + width:18px; + height:20px; + display:flex; +} +#u1202 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1202_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1203 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1204 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1205_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:28px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1205 { + border-width:0px; + position:absolute; + left:1274px; + top:275px; + width:28px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1205 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1205_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1206_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:18px; + height:20px; +} +#u1206 { + border-width:0px; + position:absolute; + left:1249px; + top:273px; + width:18px; + height:20px; + display:flex; +} +#u1206 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1206_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1207_input { + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1207_input.disabled { + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1207_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1207 { + border-width:0px; + position:absolute; + left:1000px; + top:199px; + width:141px; + height:26px; + display:flex; +} +#u1207 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1207_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1207.disabled { +} +.u1207_input_option { +} +#u1208_input { + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1208_input.disabled { + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1208_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1208 { + border-width:0px; + position:absolute; + left:1000px; + top:235px; + width:141px; + height:26px; + display:flex; +} +#u1208 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1208_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1208.disabled { +} +.u1208_input_option { +} +#u1209_input { + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1209_input.disabled { + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1209_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1209 { + border-width:0px; + position:absolute; + left:1000px; + top:279px; + width:141px; + height:26px; + display:flex; +} +#u1209 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1209_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:141px; + height:26px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1209.disabled { +} +.u1209_input_option { +} +#u1210_input { + position:absolute; + left:0px; + top:0px; + width:204px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1210_input.disabled { + position:absolute; + left:0px; + top:0px; + width:204px; + height:32px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1210_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:204px; + height:32px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1210 { + border-width:0px; + position:absolute; + left:765px; + top:269px; + width:204px; + height:32px; + display:flex; +} +#u1210 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1210_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:204px; + height:32px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1210.disabled { +} +#u1211_input { + position:absolute; + left:0px; + top:0px; + width:204px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1211_input.disabled { + position:absolute; + left:0px; + top:0px; + width:204px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1211_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:204px; + height:29px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1211 { + border-width:0px; + position:absolute; + left:765px; + top:193px; + width:204px; + height:29px; + display:flex; +} +#u1211 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1211_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:204px; + height:29px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1211.disabled { +} +#u1212_input { + position:absolute; + left:0px; + top:0px; + width:204px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1212_input.disabled { + position:absolute; + left:0px; + top:0px; + width:204px; + height:30px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1212_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:204px; + height:30px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1212 { + border-width:0px; + position:absolute; + left:765px; + top:153px; + width:204px; + height:30px; + display:flex; +} +#u1212 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1212_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:204px; + height:30px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1212.disabled { +} +#u1213_input { + position:absolute; + left:0px; + top:0px; + width:254px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1213_input.disabled { + position:absolute; + left:0px; + top:0px; + width:254px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1213_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:254px; + height:29px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1213 { + border-width:0px; + position:absolute; + left:27px; + top:153px; + width:254px; + height:29px; + display:flex; +} +#u1213 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1213_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:254px; + height:29px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1213.disabled { +} +#u1214_input { + position:absolute; + left:0px; + top:0px; + width:254px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1214_input.disabled { + position:absolute; + left:0px; + top:0px; + width:254px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1214_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:254px; + height:29px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1214 { + border-width:0px; + position:absolute; + left:27px; + top:192px; + width:254px; + height:29px; + display:flex; +} +#u1214 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1214_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:254px; + height:29px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1214.disabled { +} +#u1215_input { + position:absolute; + left:0px; + top:0px; + width:254px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1215_input.disabled { + position:absolute; + left:0px; + top:0px; + width:254px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1215_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:254px; + height:29px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1215 { + border-width:0px; + position:absolute; + left:27px; + top:233px; + width:254px; + height:29px; + display:flex; +} +#u1215 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1215_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:254px; + height:29px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1215.disabled { +} +#u1216_input { + position:absolute; + left:0px; + top:0px; + width:254px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1216_input.disabled { + position:absolute; + left:0px; + top:0px; + width:254px; + height:29px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1216_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:254px; + height:29px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1216 { + border-width:0px; + position:absolute; + left:27px; + top:273px; + width:254px; + height:29px; + display:flex; +} +#u1216 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1216_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:254px; + height:29px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + box-sizing:border-box; + border-width:1px; + border-style:solid; + border-color:rgba(219, 223, 234, 1); + border-radius:4px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1216.disabled { +} +#u1217_input { + position:absolute; + left:0px; + top:0px; + width:141px; + height:22px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1217_input.disabled { + position:absolute; + left:0px; + top:0px; + width:141px; + height:22px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1217_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:141px; + height:22px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1217 { + border-width:0px; + position:absolute; + left:305px; + top:199px; + width:141px; + height:22px; + display:flex; +} +#u1217 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1217_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:141px; + height:22px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1217.disabled { +} +.u1217_input_option { +} +#u1218_input { + position:absolute; + left:0px; + top:0px; + width:141px; + height:22px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1218_input.disabled { + position:absolute; + left:0px; + top:0px; + width:141px; + height:22px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1218_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:141px; + height:22px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1218 { + border-width:0px; + position:absolute; + left:305px; + top:238px; + width:141px; + height:22px; + display:flex; +} +#u1218 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1218_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:141px; + height:22px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1218.disabled { +} +.u1218_input_option { +} +#u1219_input { + position:absolute; + left:0px; + top:0px; + width:141px; + height:22px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1219_input.disabled { + position:absolute; + left:0px; + top:0px; + width:141px; + height:22px; + padding:3px 2px 3px 2px; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + font-size:13px; + letter-spacing:normal; + color:#000000; + vertical-align:none; + text-align:left; + text-transform:none; + background-color:transparent; + border-color:transparent; +} +#u1219_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:141px; + height:22px; + background:inherit; + background-color:rgba(255, 255, 255, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1219 { + border-width:0px; + position:absolute; + left:305px; + top:275px; + width:141px; + height:22px; + display:flex; +} +#u1219 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1219_div.disabled { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:141px; + height:22px; + background:inherit; + background-color:rgba(240, 240, 240, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1219.disabled { +} +.u1219_input_option { +} +#u1146_state1 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1430px; + height:386px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + visibility:hidden; +} +#u1146_state1_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1220_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:2px; + height:10px; + background:inherit; + background-color:rgba(63, 143, 204, 1); + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1220 { + border-width:0px; + position:absolute; + left:1px; + top:5px; + width:2px; + height:10px; + display:flex; +} +#u1220 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1220_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1221_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:30px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1221 { + border-width:0px; + position:absolute; + left:13px; + top:0px; + width:1px; + height:30px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; +} +#u1221 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1221_text { + border-width:0px; + white-space:nowrap; + text-transform:none; + visibility:hidden; +} +#u1222_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1647px; + height:2px; +} +#u1222 { + border-width:0px; + position:absolute; + left:0px; + top:34px; + width:1646px; + height:1px; + display:flex; + -webkit-transform:rotate(0.0337180630969462deg); + -moz-transform:rotate(0.0337180630969462deg); + -ms-transform:rotate(0.0337180630969462deg); + transform:rotate(0.0337180630969462deg); +} +#u1222 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1222_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1223 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:0px; + height:0px; +} +#u1224_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:56px; + height:16px; + 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:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#6576FF; +} +#u1224 { + border-width:0px; + position:absolute; + left:1568px; + top:1px; + width:56px; + height:16px; + display:flex; + font-family:'PingFangSC-Regular', 'PingFang SC'; + font-weight:400; + font-style:normal; + color:#6576FF; +} +#u1224 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1224_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1225_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:11px; + height:6px; +} +#u1225 { + border-width:0px; + position:absolute; + left:1634px; + top:10px; + width:11px; + height:6px; + display:flex; + -webkit-transform:rotate(180deg); + -moz-transform:rotate(180deg); + -ms-transform:rotate(180deg); + transform:rotate(180deg); +} +#u1225 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1225_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1226 { + border-width:0px; + position:absolute; + left:1291px; + top:0px; + width:520px; + height:1000px; + visibility:hidden; +} +#u1226_state0 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:520px; + height:1000px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; +} +#u1226_state0_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1227_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:600px; + height:1000px; + 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:right; +} +#u1227 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:600px; + height:1000px; + display:flex; + text-align:right; +} +#u1227 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1227_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1228_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; +} +#u1228 { + border-width:0px; + position:absolute; + left:25px; + top:26px; + width:20px; + height:20px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + color:#00FF99; +} +#u1228 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1228_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1229_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:601px; + height:2px; +} +#u1229 { + border-width:0px; + position:absolute; + left:0px; + top:60px; + width:600px; + height:1px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; +} +#u1229 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1229_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1230_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:109px; + height:24px; + 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:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:18px; +} +#u1230 { + border-width:0px; + position:absolute; + left:65px; + top:21px; + width:109px; + height:24px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:18px; +} +#u1230 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1230_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1231_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:500px; + height:207px; + 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-size:20px; +} +#u1231 { + border-width:0px; + position:absolute; + left:25px; + top:100px; + width:500px; + height:207px; + display:flex; + font-size:20px; +} +#u1231 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1231_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1232_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:484px; + height:50px; + background:inherit; + background-color:rgba(128, 128, 255, 0.0980392156862745); + 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:18px; + text-align:left; +} +#u1232 { + border-width:0px; + position:absolute; + left:25px; + top:350px; + width:484px; + height:50px; + display:flex; + font-size:18px; + text-align:left; +} +#u1232 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1232_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1226_state1 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:520px; + height:1000px; + -ms-overflow-x:hidden; + overflow-x:hidden; + -ms-overflow-y:hidden; + overflow-y:hidden; + background-image:none; + border:none; + border-radius:0px; + -moz-box-shadow:none; + -webkit-box-shadow:none; + box-shadow:none; + visibility:hidden; +} +#u1226_state1_content { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:1px; + height:1px; +} +#u1233_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:600px; + height:1000px; + 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:right; +} +#u1233 { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:600px; + height:1000px; + display:flex; + text-align:right; +} +#u1233 .text { + position:absolute; + align-self:flex-start; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1233_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1234_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:20px; + height:20px; +} +#u1234 { + border-width:0px; + position:absolute; + left:25px; + top:26px; + width:20px; + height:20px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + color:#00FF99; +} +#u1234 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1234_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1235_img { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:601px; + height:2px; +} +#u1235 { + border-width:0px; + position:absolute; + left:0px; + top:60px; + width:600px; + height:1px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; +} +#u1235 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1235_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; + visibility:hidden; +} +#u1236_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:109px; + height:24px; + 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:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:18px; +} +#u1236 { + border-width:0px; + position:absolute; + left:65px; + top:21px; + width:109px; + height:24px; + display:flex; + font-family:'微软雅黑'; + font-weight:400; + font-style:normal; + font-size:18px; +} +#u1236 .text { + position:absolute; + align-self:center; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1236_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} +#u1237_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:416px; + height:138px; + 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-size:20px; +} +#u1237 { + border-width:0px; + position:absolute; + left:25px; + top:100px; + width:416px; + height:138px; + display:flex; + font-size:20px; +} +#u1237 .text { + position:absolute; + align-self:flex-start; + padding:0px 0px 0px 0px; + box-sizing:border-box; + width:100%; +} +#u1237_text { + border-width:0px; + white-space:nowrap; + text-transform:none; +} +#u1238_div { + border-width:0px; + position:absolute; + left:0px; + top:0px; + width:484px; + height:50px; + background:inherit; + background-color:rgba(128, 128, 255, 0.0980392156862745); + 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:18px; + text-align:left; +} +#u1238 { + border-width:0px; + position:absolute; + left:25px; + top:249px; + width:484px; + height:50px; + display:flex; + font-size:18px; + text-align:left; +} +#u1238 .text { + position:absolute; + align-self:center; + padding:2px 2px 2px 2px; + box-sizing:border-box; + width:100%; +} +#u1238_text { + border-width:0px; + word-wrap:break-word; + text-transform:none; +} diff --git "a/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\350\257\246\346\203\205-\345\234\250\347\272\277\351\242\204\346\265\213/data.js" "b/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\350\257\246\346\203\205-\345\234\250\347\272\277\351\242\204\346\265\213/data.js" new file mode 100644 index 0000000000000000000000000000000000000000..963376cba8ac4cdc29c94735d6e26ec963cdbd46 --- /dev/null +++ "b/document/\345\216\237\345\236\213/\344\272\272\345\267\245\346\231\272\350\203\275\350\256\255\347\273\203\345\271\263\345\217\260/files/\350\257\246\346\203\205-\345\234\250\347\272\277\351\242\204\346\265\213/data.js" @@ -0,0 +1,7 @@ +$axure.loadCurrentPage( +(function() { + var _ = function() { var r={},a=arguments; for(var i=0; i
+ + Google Chrome requires an extension to view locally stored projects. Alternatively, + upload your RP file to Axure Cloud or use a different + browser.
+
+
+
+ + What is a Chrome Extension? Extensions are downloadable + plug-ins for Google Chrome that modify the browser + and allow you additional capabilities. +
++ Why do I need to install the extension? Google requires + this extension to be installed to allow the viewing of local files in + Chrome +
++ Why does this extension require a high access level? This + extension requires a high access level to allow the viewing of the file:// + protocol. Axure does not track or access any of your information. +
++ Need help or have any questions? Contact our support team at + support@axure.com. +
+
+ + To view locally stored projects in Safari, you will need to "disable local file restrictions". Alternatively, + you can upload your RP file to Axure Cloud or publish the local files to a web server.
+
+
+ + Need help or have any questions? Drop us a line at + support@axure.com. +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+