commit a2271a1d8c08bb949f34092ef6611da2fb4ae4ff Author: yangjun <1173114630@qq.com> Date: Thu Sep 25 16:19:06 2025 +0800 初始化 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cb10d8b --- /dev/null +++ b/.gitignore @@ -0,0 +1,14 @@ +*.iml +.gradle +/local.properties +/.idea/caches/build_file_checksums.ser +/.idea/libraries +/.idea/modules.xml +/.idea/workspace.xml +.DS_Store +/build +/captures +.externalNativeBuild +/.idea/ +/app/build/ +/app/release/ diff --git a/README.md b/README.md new file mode 100644 index 0000000..47f3b3b --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +SSS \ No newline at end of file diff --git a/app/build.gradle b/app/build.gradle new file mode 100644 index 0000000..35c48b8 --- /dev/null +++ b/app/build.gradle @@ -0,0 +1,114 @@ +apply plugin: 'com.android.application' + +android { + compileSdk 35 + + namespace 'com.android.UniPlugin' + defaultConfig { + applicationId "com.android.UniPlugin" + minSdkVersion 21 + targetSdkVersion 33 //建议此属性值设为21 io.dcloud.PandoraEntry 作为apk入口时 必须设置 targetSDKVersion>=21 沉浸式才生效 + + versionCode 161 + versionName "1.6.1" + multiDexEnabled true + ndk { + ndk { + //设置支持的SO库架构(开发者可以根据需要,选择一个或多个平台的so) + abiFilters "armeabi", "armeabi-v7a", "arm64-v8a", "x86","x86_64" + } + } + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } + } + + signingConfigs { + config { + keyAlias 'key0' + keyPassword '123456' + storeFile file('uniplugin.jks') + storePassword '123456' + v1SigningEnabled true + v2SigningEnabled true + } + } + + buildTypes { + release { + signingConfig signingConfigs.config + zipAlignEnabled false + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + debug { + signingConfig signingConfigs.config + zipAlignEnabled false + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' + } + } + //使用uniapp时,需复制下面代码 + /*代码开始*/ + aaptOptions { + additionalParameters '--auto-add-overlay' + //noCompress 'foo', 'bar' + ignoreAssetsPattern "!.svn:!.git:.*:!CVS:!thumbs.db:!picasa.ini:!*.scc:*~" + } + lint { + baseline = file("lint-baseline.xml") + } + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } + + packagingOptions { + // 选择第一个匹配的文件(推荐) + pickFirst 'lib/arm64-v8a/libc++_shared.so' + // 如果其他 ABI 也存在冲突,添加对应路径 + pickFirst 'lib/armeabi-v7a/libc++_shared.so' + pickFirst 'lib/x86/libc++_shared.so' + jniLibs { + useLegacyPackaging true + } + } + /*代码结束*/ + sourceSets { + main { + jniLibs.srcDirs = ['libs'] + } + } +} +dependencies { + implementation fileTree(dir: 'libs', include: ['*.jar']) + implementation fileTree(dir: 'libs', include: ['*.aar']) + + /*uniapp所需库-----------------------开始*/ + implementation 'androidx.recyclerview:recyclerview:1.1.0' + implementation 'com.facebook.fresco:fresco:1.13.0' + implementation "com.facebook.fresco:animated-gif:1.13.0" + /*uniapp所需库-----------------------结束*/ + // 基座需要,必须添加 + implementation 'com.github.bumptech.glide:glide:4.9.0' + implementation 'com.alibaba:fastjson:1.2.83' + implementation 'androidx.webkit:webkit:1.3.0' + implementation 'androidx.localbroadcastmanager:localbroadcastmanager:1.0.0' + implementation 'androidx.core:core:1.1.0' + implementation "androidx.fragment:fragment:1.1.0" + implementation 'androidx.appcompat:appcompat:1.1.0' + + implementation project(':mylibrary') + // uts依赖 + implementation "com.squareup.okhttp3:okhttp:3.12.12" + implementation "androidx.core:core-ktx:1.6.0" + implementation "org.jetbrains.kotlin:kotlin-stdlib:1.6.0" + implementation "org.jetbrains.kotlin:kotlin-reflect:1.6.0" + implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.8" + implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.8" + implementation "com.github.getActivity:XXPermissions:18.0" + implementation 'com.google.android.material:material:1.5.0' + implementation 'androidx.constraintlayout:constraintlayout:2.1.4' + +} diff --git a/app/libs/TPBizCommon_Android_V1.0.0_release.aar b/app/libs/TPBizCommon_Android_V1.0.0_release.aar new file mode 100644 index 0000000..0b6ba7b Binary files /dev/null and b/app/libs/TPBizCommon_Android_V1.0.0_release.aar differ diff --git a/app/libs/TPRender_Android_V1.0.0_release.aar b/app/libs/TPRender_Android_V1.0.0_release.aar new file mode 100644 index 0000000..a69c599 Binary files /dev/null and b/app/libs/TPRender_Android_V1.0.0_release.aar differ diff --git a/app/libs/TUMSCloudSDK_Android_V1.0.6_release.aar b/app/libs/TUMSCloudSDK_Android_V1.0.6_release.aar new file mode 100644 index 0000000..343a7f2 Binary files /dev/null and b/app/libs/TUMSCloudSDK_Android_V1.0.6_release.aar differ diff --git a/app/libs/android-gif-drawable-1.2.28.aar b/app/libs/android-gif-drawable-1.2.28.aar new file mode 100644 index 0000000..f50965f Binary files /dev/null and b/app/libs/android-gif-drawable-1.2.28.aar differ diff --git a/app/libs/breakpad-build-release.aar b/app/libs/breakpad-build-release.aar new file mode 100644 index 0000000..5efe624 Binary files /dev/null and b/app/libs/breakpad-build-release.aar differ diff --git a/app/libs/install-apk-release.aar b/app/libs/install-apk-release.aar new file mode 100644 index 0000000..dedb4d8 Binary files /dev/null and b/app/libs/install-apk-release.aar differ diff --git a/app/libs/lib.5plus.base-release.aar b/app/libs/lib.5plus.base-release.aar new file mode 100644 index 0000000..6482615 Binary files /dev/null and b/app/libs/lib.5plus.base-release.aar differ diff --git a/app/libs/oaid_sdk_1.0.25.aar b/app/libs/oaid_sdk_1.0.25.aar new file mode 100644 index 0000000..47ca06d Binary files /dev/null and b/app/libs/oaid_sdk_1.0.25.aar differ diff --git a/app/libs/uniapp-v8-release.aar b/app/libs/uniapp-v8-release.aar new file mode 100644 index 0000000..63d5cd9 Binary files /dev/null and b/app/libs/uniapp-v8-release.aar differ diff --git a/app/libs/utsplugin-release.aar b/app/libs/utsplugin-release.aar new file mode 100644 index 0000000..e1f4052 Binary files /dev/null and b/app/libs/utsplugin-release.aar differ diff --git a/app/lint-baseline.xml b/app/lint-baseline.xml new file mode 100644 index 0000000..9a4b8c6 --- /dev/null +++ b/app/lint-baseline.xml @@ -0,0 +1,15 @@ + + + + + + + + diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro new file mode 100644 index 0000000..2e69541 --- /dev/null +++ b/app/proguard-rules.pro @@ -0,0 +1,149 @@ +-optimizationpasses 5 +-dontusemixedcaseclassnames +-dontskipnonpubliclibraryclasses +-dontpreverify +-verbose + +#-optimizations !code/simplification/arithmetic,!field/*,!class/merging/* +-dontoptimize + +-keep public class * extends android.app.Activity +-keep public class * extends android.app.Application +-keep public class * extends android.app.Service +-keep public class * extends android.content.BroadcastReceiver +-keep public class * extends android.content.ContentProvider +-keep public class * extends android.app.backup.BackupAgentHelper +-keep public class * extends android.preference.Preference +-keep public class * extends io.dcloud.common.DHInterface.IPlugin +-keep public class * extends io.dcloud.common.DHInterface.IFeature +-keep public class * extends io.dcloud.common.DHInterface.IBoot +-keep public class * extends io.dcloud.common.DHInterface.IReflectAble + +-keep class io.dcloud.feature.speech.** {*;} +-keep class io.dcloud.net.** {*;} +-keep class io.dcloud.common.constant.** {*;} +-keep class io.dcloud.common.sonic.** {*;} +-keep class io.dcloud.common.DHInterface.** {*;} +-keep class io.dcloud.common.util.** {*;} +-keep class io.dcloud.common.adapter.** {*;} +-keep class io.dcloud.feature.internal.reflect.** {*;} +-keep class io.dcloud.feature.internal.sdk.** {*;} +-keep class io.dcloud.feature.payment.** {*;} +-keep class io.dcloud.sdk.** {*;} +-keep class com.** {*;} +-keep class io.dcloud.nineoldandroids.** {*;} +-keep class vi.com.gdi.** {*;} +-keep class androidx.** {*;} +-dontwarn pl.droidsonroids.gif.** + +-keepclasseswithmembers class * extends io.dcloud.js.geolocation.GeoManagerBase { + ; +} + +-keep class io.dcloud.share.AbsWebviewClient +-keepclasseswithmembers class io.dcloud.share.AbsWebviewClient { + ; +} + +-keep class io.dcloud.share.ShareAuthorizeView +-keepclasseswithmembers class io.dcloud.share.ShareAuthorizeView { + ; +} +-keep class io.dcloud.share.IFShareApi +-keep public class * extends io.dcloud.share.IFShareApi +-keepclasseswithmembers class io.dcloud.share.IFShareApi { + ; +} + + + + +-keepattributes Exceptions,InnerClasses,Signature,Deprecated, SourceFile,LineNumberTable,*Annotation*,EnclosingMethod +-keep class io.dcloud.appstream.StreamAppManager +-keepclasseswithmembers class io.dcloud.appstream.StreamAppManager { + public protected ; +} + +-keep class io.dcloud.common.DHInterface.IReflectAble +-keep public class * extends io.dcloud.common.DHInterface.IReflectAble{ + public protected ; + public protected *; +} +-keep class **.R +-keep class **.R$* { + public static ; +} +-keep public class * extends io.dcloud.common.DHInterface.IJsInterface{ + public protected ; + public protected *; +} + +-keepclasseswithmembers class io.dcloud.EntryProxy { + ; +} + +-keep class * implements android.os.IInterface { + ; +} + +-keepclasseswithmembers class *{ + public static java.lang.String getJsContent(); +} +-keepclasseswithmembers class io.dcloud.appstream.StreamAppScriptEntry { + ; +} +-keepclasseswithmembers class *{ + public static void onReceiver1(android.content.Intent, android.content.Context); +} + +-keepclasseswithmembers class *{ + public static io.dcloud.share.AbsWebviewClient getWebviewClient(io.dcloud.share.ShareAuthorizeView); +} +-keepclasseswithmembers class *{ + public java.lang.String exec(java.lang.String,java.lang.String,java.lang.String[]); +} +-keepattributes Exceptions,InnerClasses,Signature,Deprecated, SourceFile,LineNumberTable,*Annotation*,EnclosingMethod + +-keepclasseswithmembers class * { + public (android.content.Context, android.util.AttributeSet); +} + +-keepclasseswithmembers class * { + public (android.content.Context, android.util.AttributeSet, int); +} + +-keep public class * extends android.app.Application{ + public static ; + public *; +} + +-keepclassmembers class * extends android.app.Activity { + public void *(android.view.View); + public static ; +} + +-keepclassmembers enum * { + public static **[] values(); + public static ** valueOf(java.lang.String); +} + +-keep class * implements android.os.Parcelable { + public static final android.os.Parcelable$Creator *; +} + +-keepattributes Signature +-keep class io.dcloud.encryption.K {*;} +-dontwarn com.igexin.** +-keep class org.json.** { *; } +-dontwarn com.amap.** +-dontwarn org.apache.commons.** +-dontwarn com.sina.weibo.sdk.** + + +-keep class uni.** {*;} +-keep class pl.** {*;} +-keep class io.** {*;} +-keep class org.mozilla.**{*;} + +-keep class androidtranscoder.**{*;} +-keep class XI.**{*;} \ No newline at end of file diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..803ccd2 --- /dev/null +++ b/app/src/main/AndroidManifest.xml @@ -0,0 +1,92 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/__uniappautomator.js b/app/src/main/assets/apps/__UNI__FB2D473/www/__uniappautomator.js new file mode 100644 index 0000000..0f9252f --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/__uniappautomator.js @@ -0,0 +1,16 @@ +var n; +/*! ***************************************************************************** +Copyright (c) Microsoft Corporation. + +Permission to use, copy, modify, and/or distribute this software for any +purpose with or without fee is hereby granted. + +THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH +REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY +AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, +INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM +LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR +OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR +PERFORMANCE OF THIS SOFTWARE. +***************************************************************************** */ +function __spreadArrays(){for(var s=0,i=0,il=arguments.length;in;n++)r(e,e._deferreds[n]);e._deferreds=null}function c(e,n){var t=!1;try{e((function(e){t||(t=!0,i(n,e))}),(function(e){t||(t=!0,f(n,e))}))}catch(o){if(t)return;t=!0,f(n,o)}}var a=setTimeout;o.prototype.catch=function(e){return this.then(null,e)},o.prototype.then=function(e,n){var o=new this.constructor(t);return r(this,new function(e,n,t){this.onFulfilled="function"==typeof e?e:null,this.onRejected="function"==typeof n?n:null,this.promise=t}(e,n,o)),o},o.prototype.finally=e,o.all=function(e){return new o((function(t,o){function r(e,n){try{if(n&&("object"==typeof n||"function"==typeof n)){var u=n.then;if("function"==typeof u)return void u.call(n,(function(n){r(e,n)}),o)}i[e]=n,0==--f&&t(i)}catch(c){o(c)}}if(!n(e))return o(new TypeError("Promise.all accepts an array"));var i=Array.prototype.slice.call(e);if(0===i.length)return t([]);for(var f=i.length,u=0;i.length>u;u++)r(u,i[u])}))},o.resolve=function(e){return e&&"object"==typeof e&&e.constructor===o?e:new o((function(n){n(e)}))},o.reject=function(e){return new o((function(n,t){t(e)}))},o.race=function(e){return new o((function(t,r){if(!n(e))return r(new TypeError("Promise.race accepts an array"));for(var i=0,f=e.length;f>i;i++)o.resolve(e[i]).then(t,r)}))},o._immediateFn="function"==typeof setImmediate&&function(e){setImmediate(e)}||function(e){a(e,0)},o._unhandledRejectionFn=function(e){void 0!==console&&console&&console.warn("Possible Unhandled Promise Rejection:",e)};var l=function(){if("undefined"!=typeof self)return self;if("undefined"!=typeof window)return window;if("undefined"!=typeof global)return global;throw Error("unable to locate global object")}();"Promise"in l?l.Promise.prototype.finally||(l.Promise.prototype.finally=e):l.Promise=o},"object"==typeof exports&&"undefined"!=typeof module?n():"function"==typeof define&&define.amd?define(n):n();var getRandomValues="undefined"!=typeof crypto&&crypto.getRandomValues&&crypto.getRandomValues.bind(crypto)||"undefined"!=typeof msCrypto&&"function"==typeof msCrypto.getRandomValues&&msCrypto.getRandomValues.bind(msCrypto),rnds8=new Uint8Array(16);function rng(){if(!getRandomValues)throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");return getRandomValues(rnds8)}for(var byteToHex=[],i=0;i<256;++i)byteToHex[i]=(i+256).toString(16).substr(1);function v4(options,buf,offset){var i=buf&&offset||0;"string"==typeof options&&(buf="binary"===options?new Array(16):null,options=null);var rnds=(options=options||{}).random||(options.rng||rng)();if(rnds[6]=15&rnds[6]|64,rnds[8]=63&rnds[8]|128,buf)for(var ii=0;ii<16;++ii)buf[i+ii]=rnds[ii];return buf||function(buf,offset){var i=offset||0,bth=byteToHex;return[bth[buf[i++]],bth[buf[i++]],bth[buf[i++]],bth[buf[i++]],"-",bth[buf[i++]],bth[buf[i++]],"-",bth[buf[i++]],bth[buf[i++]],"-",bth[buf[i++]],bth[buf[i++]],"-",bth[buf[i++]],bth[buf[i++]],bth[buf[i++]],bth[buf[i++]],bth[buf[i++]],bth[buf[i++]]].join("")}(rnds)}var hasOwnProperty=Object.prototype.hasOwnProperty,isArray=Array.isArray,PATH_RE=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g;function getPaths(path,data){if(isArray(path))return path;if(data&&(val=data,key=path,hasOwnProperty.call(val,key)))return[path];var val,key,res=[];return path.replace(PATH_RE,(function(match,p1,offset,string){return res.push(offset?string.replace(/\\(\\)?/g,"$1"):p1||match),string})),res}function getDataByPath(data,path){var dataPath,paths=getPaths(path,data);for(dataPath=paths.shift();null!=dataPath;){if(null==(data=data[dataPath]))return;dataPath=paths.shift()}return data}var elementMap=new Map;function transEl(el){var _a;if(!function(el){if(el){var tagName=el.tagName;return 0===tagName.indexOf("UNI-")||"BODY"===tagName||0===tagName.indexOf("V-UNI-")||el.__isUniElement}return!1}(el))throw Error("no such element");var element,elementId,elem={elementId:(element=el,elementId=element._id,elementId||(elementId=v4(),element._id=elementId,elementMap.set(elementId,{id:elementId,element:element})),elementId),tagName:el.tagName.toLocaleLowerCase().replace("uni-","")};if(el.__vue__)(vm=el.__vue__)&&(vm.$parent&&vm.$parent.$el===el&&(vm=vm.$parent),vm&&!(null===(_a=vm.$options)||void 0===_a?void 0:_a.isReserved)&&(elem.nodeId=function(vm){if(vm._$weex)return vm._uid;if(vm._$id)return vm._$id;if(vm.uid)return vm.uid;var parent_1=function(vm){for(var parent=vm.$parent;parent;){if(parent._$id)return parent;parent=parent.$parent}}(vm);if(!vm.$parent)return"-1";var vnode=vm.$vnode,context=vnode.context;return context&&context!==parent_1&&context._$id?context._$id+";"+parent_1._$id+","+vnode.data.attrs._i:parent_1._$id+","+vnode.data.attrs._i}(vm)));else var vm;return"video"===elem.tagName&&(elem.videoId=elem.nodeId),elem}function getVm(el){return el.__vue__?{isVue3:!1,vm:el.__vue__}:{isVue3:!0,vm:el.__vueParentComponent}}function getScrollViewMain(el){var _a=getVm(el),isVue3=_a.isVue3,vm=_a.vm;return isVue3?vm.exposed.$getMain():vm.$refs.main}var FUNCTIONS={input:{input:function(el,value){var _a=getVm(el),isVue3=_a.isVue3,vm=_a.vm;isVue3?vm.exposed&&vm.exposed.$triggerInput({value:value}):(vm.valueSync=value,vm.$triggerInput({},{value:value}))}},textarea:{input:function(el,value){var _a=getVm(el),isVue3=_a.isVue3,vm=_a.vm;isVue3?vm.exposed&&vm.exposed.$triggerInput({value:value}):(vm.valueSync=value,vm.$triggerInput({},{value:value}))}},"scroll-view":{scrollTo:function(el,x,y){var main=getScrollViewMain(el);main.scrollLeft=x,main.scrollTop=y},scrollTop:function(el){return getScrollViewMain(el).scrollTop},scrollLeft:function(el){return getScrollViewMain(el).scrollLeft},scrollWidth:function(el){return getScrollViewMain(el).scrollWidth},scrollHeight:function(el){return getScrollViewMain(el).scrollHeight}},swiper:{swipeTo:function(el,index){el.__vue__.current=index}},"movable-view":{moveTo:function(el,x,y){el.__vue__._animationTo(x,y)}},switch:{tap:function(el){el.click()}},slider:{slideTo:function(el,value){var vm=el.__vue__,slider=vm.$refs["uni-slider"],offsetWidth=slider.offsetWidth,boxLeft=slider.getBoundingClientRect().left;vm.value=value,vm._onClick({x:(value-vm.min)*offsetWidth/(vm.max-vm.min)+boxLeft})}}};function createTouchList(touchInits){var _a,touches=touchInits.map((function(touch){return function(touch){if(document.createTouch)return document.createTouch(window,touch.target,touch.identifier,touch.pageX,touch.pageY,touch.screenX,touch.screenY,touch.clientX,touch.clientY);return new Touch(touch)}(touch)}));return document.createTouchList?(_a=document).createTouchList.apply(_a,touches):touches}var WebAdapter={getWindow:function(pageId){return window},getDocument:function(pageId){return document},getEl:function(elementId){var element=elementMap.get(elementId);if(!element)throw Error("element destroyed");return element.element},getOffset:function(node){var rect=node.getBoundingClientRect();return Promise.resolve({left:rect.left+window.pageXOffset,top:rect.top+window.pageYOffset})},querySelector:function(context,selector){return"page"===selector&&(selector="body"),Promise.resolve(transEl(context.querySelector(selector)))},querySelectorAll:function(context,selector){var elements=[],nodeList=document.querySelectorAll(selector);return[].forEach.call(nodeList,(function(node){try{elements.push(transEl(node))}catch(e){}})),Promise.resolve({elements:elements})},queryProperties:function(context,names){return Promise.resolve({properties:names.map((function(name){var value=getDataByPath(context,name.replace(/-([a-z])/g,(function(g){return g[1].toUpperCase()})));return"document.documentElement.scrollTop"===name&&0===value&&(value=getDataByPath(context,"document.body.scrollTop")),value}))})},queryAttributes:function(context,names){return Promise.resolve({attributes:names.map((function(name){return String(context.getAttribute(name))}))})},queryStyles:function(context,names){var style=getComputedStyle(context);return Promise.resolve({styles:names.map((function(name){return style[name]}))})},queryHTML:function(context,type){return Promise.resolve({html:(html="outer"===type?context.outerHTML:context.innerHTML,html.replace(/\n/g,"").replace(/(]*>)(]*>[^<]*<\/span>)(.*?<\/uni-text>)/g,"$1$3").replace(/<\/?[^>]*>/g,(function(replacement){return-1":""===replacement?"":0!==replacement.indexOf(" promise.resolve(callback()).then(() => value), + reason => promise.resolve(callback()).then(() => { + throw reason + }) + ) + } +}; + +if (typeof uni !== 'undefined' && uni && uni.requireGlobal) { + const global = uni.requireGlobal() + ArrayBuffer = global.ArrayBuffer + Int8Array = global.Int8Array + Uint8Array = global.Uint8Array + Uint8ClampedArray = global.Uint8ClampedArray + Int16Array = global.Int16Array + Uint16Array = global.Uint16Array + Int32Array = global.Int32Array + Uint32Array = global.Uint32Array + Float32Array = global.Float32Array + Float64Array = global.Float64Array + BigInt64Array = global.BigInt64Array + BigUint64Array = global.BigUint64Array +}; + + +(()=>{var S=Object.create;var u=Object.defineProperty;var I=Object.getOwnPropertyDescriptor;var C=Object.getOwnPropertyNames;var E=Object.getPrototypeOf,_=Object.prototype.hasOwnProperty;var y=(A,t)=>()=>(t||A((t={exports:{}}).exports,t),t.exports);var G=(A,t,s,r)=>{if(t&&typeof t=="object"||typeof t=="function")for(let a of C(t))!_.call(A,a)&&a!==s&&u(A,a,{get:()=>t[a],enumerable:!(r=I(t,a))||r.enumerable});return A};var k=(A,t,s)=>(s=A!=null?S(E(A)):{},G(t||!A||!A.__esModule?u(s,"default",{value:A,enumerable:!0}):s,A));var B=y((q,D)=>{D.exports=Vue});var Q=Object.prototype.toString,f=A=>Q.call(A),p=A=>f(A).slice(8,-1);function N(){return typeof __channelId__=="string"&&__channelId__}function P(A,t){switch(p(t)){case"Function":return"function() { [native code] }";default:return t}}function j(A,t,s){return N()?(s.push(t.replace("at ","uni-app:///")),console[A].apply(console,s)):s.map(function(a){let o=f(a).toLowerCase();if(["[object object]","[object array]","[object module]"].indexOf(o)!==-1)try{a="---BEGIN:JSON---"+JSON.stringify(a,P)+"---END:JSON---"}catch(i){a=o}else if(a===null)a="---NULL---";else if(a===void 0)a="---UNDEFINED---";else{let i=p(a).toUpperCase();i==="NUMBER"||i==="BOOLEAN"?a="---BEGIN:"+i+"---"+a+"---END:"+i+"---":a=String(a)}return a}).join("---COMMA---")+" "+t}function h(A,t,...s){let r=j(A,t,s);r&&console[A](r)}var m={data(){return{locale:"en",fallbackLocale:"en",localization:{en:{done:"OK",cancel:"Cancel"},zh:{done:"\u5B8C\u6210",cancel:"\u53D6\u6D88"},"zh-hans":{},"zh-hant":{},messages:{}},localizationTemplate:{}}},onLoad(){this.initLocale()},created(){this.initLocale()},methods:{initLocale(){if(this.__initLocale)return;this.__initLocale=!0;let A=(plus.webview.currentWebview().extras||{}).data||{};if(A.messages&&(this.localization.messages=A.messages),A.locale){this.locale=A.locale.toLowerCase();return}let t={chs:"hans",cn:"hans",sg:"hans",cht:"hant",tw:"hant",hk:"hant",mo:"hant"},s=plus.os.language.toLowerCase().split("/")[0].replace("_","-").split("-"),r=s[1];r&&(s[1]=t[r]||r),s.length=s.length>2?2:s.length,this.locale=s.join("-")},localize(A){let t=this.locale,s=t.split("-")[0],r=this.fallbackLocale,a=o=>Object.assign({},this.localization[o],(this.localizationTemplate||{})[o]);return a("messages")[A]||a(t)[A]||a(s)[A]||a(r)[A]||A}}},w={onLoad(){this.initMessage()},methods:{initMessage(){let{from:A,callback:t,runtime:s,data:r={},useGlobalEvent:a}=plus.webview.currentWebview().extras||{};this.__from=A,this.__runtime=s,this.__page=plus.webview.currentWebview().id,this.__useGlobalEvent=a,this.data=JSON.parse(JSON.stringify(r)),plus.key.addEventListener("backbutton",()=>{typeof this.onClose=="function"?this.onClose():plus.webview.currentWebview().close("auto")});let o=this,i=function(n){let l=n.data&&n.data.__message;!l||o.__onMessageCallback&&o.__onMessageCallback(l.data)};if(this.__useGlobalEvent)weex.requireModule("globalEvent").addEventListener("plusMessage",i);else{let n=new BroadcastChannel(this.__page);n.onmessage=i}},postMessage(A={},t=!1){let s=JSON.parse(JSON.stringify({__message:{__page:this.__page,data:A,keep:t}})),r=this.__from;if(this.__runtime==="v8")this.__useGlobalEvent?plus.webview.postMessageToUniNView(s,r):new BroadcastChannel(r).postMessage(s);else{let a=plus.webview.getWebviewById(r);a&&a.evalJS(`__plusMessage&&__plusMessage(${JSON.stringify({data:s})})`)}},onMessage(A){this.__onMessageCallback=A}}};var e=k(B());var b=(A,t)=>{let s=A.__vccOpts||A;for(let[r,a]of t)s[r]=a;return s};var F=Object.defineProperty,T=Object.defineProperties,O=Object.getOwnPropertyDescriptors,v=Object.getOwnPropertySymbols,M=Object.prototype.hasOwnProperty,U=Object.prototype.propertyIsEnumerable,L=(A,t,s)=>t in A?F(A,t,{enumerable:!0,configurable:!0,writable:!0,value:s}):A[t]=s,R=(A,t)=>{for(var s in t||(t={}))M.call(t,s)&&L(A,s,t[s]);if(v)for(var s of v(t))U.call(t,s)&&L(A,s,t[s]);return A},z=(A,t)=>T(A,O(t)),H={map_center_marker_container:{"":{alignItems:"flex-start",width:22,height:70}},map_center_marker:{"":{width:22,height:35}},"unichooselocation-icons":{"":{fontFamily:"unichooselocation",textDecoration:"none",textAlign:"center"}},page:{"":{flex:1,position:"relative"}},"flex-r":{"":{flexDirection:"row",flexWrap:"nowrap"}},"flex-c":{"":{flexDirection:"column",flexWrap:"nowrap"}},"flex-fill":{"":{flex:1}},"a-i-c":{"":{alignItems:"center"}},"j-c-c":{"":{justifyContent:"center"}},"nav-cover":{"":{position:"absolute",left:0,top:0,right:0,height:100,backgroundImage:"linear-gradient(to bottom, rgba(0, 0, 0, .3), rgba(0, 0, 0, 0))"}},statusbar:{"":{height:22}},"title-view":{"":{paddingTop:5,paddingRight:15,paddingBottom:5,paddingLeft:15}},"btn-cancel":{"":{paddingTop:0,paddingRight:0,paddingBottom:0,paddingLeft:0}},"btn-cancel-text":{"":{fontSize:30,color:"#ffffff"}},"btn-done":{"":{backgroundColor:"#007AFF",borderRadius:3,paddingTop:5,paddingRight:12,paddingBottom:5,paddingLeft:12}},"btn-done-disabled":{"":{backgroundColor:"#62abfb"}},"text-done":{"":{color:"#ffffff",fontSize:15,fontWeight:"bold",lineHeight:15,height:15}},"text-done-disabled":{"":{color:"#c0ddfe"}},"map-view":{"":{flex:2,position:"relative"}},map:{"":{width:"750rpx",justifyContent:"center",alignItems:"center"}},"map-location":{"":{position:"absolute",right:20,bottom:25,width:44,height:44,backgroundColor:"#ffffff",borderRadius:40,boxShadow:"0 2px 4px rgba(100, 100, 100, 0.2)"}},"map-location-text":{"":{fontSize:20}},"map-location-text-active":{"":{color:"#007AFF"}},"result-area":{"":{flex:2,position:"relative"}},"search-bar":{"":{paddingTop:12,paddingRight:15,paddingBottom:12,paddingLeft:15,backgroundColor:"#ffffff"}},"search-area":{"":{backgroundColor:"#ebebeb",borderRadius:5,height:30,paddingLeft:8}},"search-text":{"":{fontSize:14,lineHeight:16,color:"#b4b4b4"}},"search-icon":{"":{fontSize:16,color:"#b4b4b4",marginRight:4}},"search-tab":{"":{flexDirection:"row",paddingTop:2,paddingRight:16,paddingBottom:2,paddingLeft:16,marginTop:-10,backgroundColor:"#FFFFFF"}},"search-tab-item":{"":{marginTop:0,marginRight:5,marginBottom:0,marginLeft:5,textAlign:"center",fontSize:14,lineHeight:32,color:"#333333",borderBottomStyle:"solid",borderBottomWidth:2,borderBottomColor:"rgba(0,0,0,0)"}},"search-tab-item-active":{"":{borderBottomColor:"#0079FF"}},"no-data":{"":{color:"#808080"}},"no-data-search":{"":{marginTop:50}},"list-item":{"":{position:"relative",paddingTop:12,paddingRight:15,paddingBottom:12,paddingLeft:15}},"list-line":{"":{position:"absolute",left:15,right:0,bottom:0,height:.5,backgroundColor:"#d3d3d3"}},"list-name":{"":{fontSize:14,lines:1,textOverflow:"ellipsis"}},"list-address":{"":{fontSize:12,color:"#808080",lines:1,textOverflow:"ellipsis",marginTop:5}},"list-icon-area":{"":{paddingLeft:10,paddingRight:10}},"list-selected-icon":{"":{fontSize:20,color:"#007AFF"}},"search-view":{"":{position:"absolute",left:0,top:0,right:0,bottom:0,backgroundColor:"#f6f6f6"}},"searching-area":{"":{flex:5}},"search-input":{"":{fontSize:14,height:30,paddingLeft:6}},"search-cancel":{"":{color:"#0079FF",marginLeft:10}},"loading-view":{"":{paddingTop:15,paddingRight:15,paddingBottom:15,paddingLeft:15}},"loading-icon":{"":{width:28,height:28,color:"#808080"}}},Y=weex.requireModule("dom");Y.addRule("fontFace",{fontFamily:"unichooselocation",src:"url('data:font/truetype;charset=utf-8;base64,AAEAAAALAIAAAwAwR1NVQrD+s+0AAAE4AAAAQk9TLzI8gE4kAAABfAAAAFZjbWFw4nGd6QAAAegAAAGyZ2x5Zn61L/EAAAOoAAACJGhlYWQXJ/zZAAAA4AAAADZoaGVhB94DhgAAALwAAAAkaG10eBQAAAAAAAHUAAAAFGxvY2EBUAGyAAADnAAAAAxtYXhwARMAZgAAARgAAAAgbmFtZWs+cdAAAAXMAAAC2XBvc3SV1XYLAAAIqAAAAE4AAQAAA4D/gABcBAAAAAAABAAAAQAAAAAAAAAAAAAAAAAAAAUAAQAAAAEAAFP+qyxfDzz1AAsEAAAAAADaBFxuAAAAANoEXG4AAP+gBAADYAAAAAgAAgAAAAAAAAABAAAABQBaAAQAAAAAAAIAAAAKAAoAAAD/AAAAAAAAAAEAAAAKAB4ALAABREZMVAAIAAQAAAAAAAAAAQAAAAFsaWdhAAgAAAABAAAAAQAEAAQAAAABAAgAAQAGAAAAAQAAAAAAAQQAAZAABQAIAokCzAAAAI8CiQLMAAAB6wAyAQgAAAIABQMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAUGZFZABA5grsMgOA/4AAXAOAAIAAAAABAAAAAAAABAAAAAQAAAAEAAAABAAAAAQAAAAAAAAFAAAAAwAAACwAAAAEAAABcgABAAAAAABsAAMAAQAAACwAAwAKAAABcgAEAEAAAAAKAAgAAgAC5grmHOZR7DL//wAA5grmHOZR7DL//wAAAAAAAAAAAAEACgAKAAoACgAAAAQAAwACAAEAAAEGAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAwAAAAAAEAAAAAAAAAABAAA5goAAOYKAAAABAAA5hwAAOYcAAAAAwAA5lEAAOZRAAAAAgAA7DIAAOwyAAAAAQAAAAAAAAB+AKAA0gESAAQAAP+gA+ADYAAAAAkAMQBZAAABIx4BMjY0JiIGBSMuASc1NCYiBh0BDgEHIyIGFBY7AR4BFxUUFjI2PQE+ATczMjY0JgE1NCYiBh0BLgEnMzI2NCYrAT4BNxUUFjI2PQEeARcjIgYUFjsBDgECAFABLUQtLUQtAg8iD9OcEhwSnNMPIg4SEg4iD9OcEhwSnNMPIg4SEv5SEhwSga8OPg4SEg4+Dq+BEhwSga8OPg4SEg4+Dq8BgCItLUQtLQKc0w8iDhISDiIP05wSHBKc0w8iDhISDiIP05wSHBL+gj4OEhIOPg6vgRIcEoGvDj4OEhIOPg6vgRIcEoGvAAEAAAAAA4ECgQAQAAABPgEeAQcBDgEvASY0NhYfAQM2DCIbAgz+TA0kDfcMGiIN1wJyDQIZIg3+IQ4BDf4NIhoBDd0AAQAAAAADAgKCAB0AAAE3PgEuAgYPAScmIgYUHwEHBhQWMj8BFxYyNjQnAjy4CAYGEBcWCLe3DSIaDLi4DBkjDbe3DSMZDAGAtwgWFxAGBgi4uAwaIg23tw0jGQy4uAwZIw0AAAIAAP/fA6EDHgAVACYAACUnPgE3LgEnDgEHHgEXMjY3FxYyNjQlBiIuAjQ+AjIeAhQOAQOX2CcsAQTCkpLCAwPCkj5uLdkJGRH+ijV0Z08rK09ndGdPLCxPE9MtckGSwgQEwpKSwgMoJdQIEhi3FixOaHNnTywsT2dzaE4AAAAAAAASAN4AAQAAAAAAAAAVAAAAAQAAAAAAAQARABUAAQAAAAAAAgAHACYAAQAAAAAAAwARAC0AAQAAAAAABAARAD4AAQAAAAAABQALAE8AAQAAAAAABgARAFoAAQAAAAAACgArAGsAAQAAAAAACwATAJYAAwABBAkAAAAqAKkAAwABBAkAAQAiANMAAwABBAkAAgAOAPUAAwABBAkAAwAiAQMAAwABBAkABAAiASUAAwABBAkABQAWAUcAAwABBAkABgAiAV0AAwABBAkACgBWAX8AAwABBAkACwAmAdUKQ3JlYXRlZCBieSBpY29uZm9udAp1bmljaG9vc2Vsb2NhdGlvblJlZ3VsYXJ1bmljaG9vc2Vsb2NhdGlvbnVuaWNob29zZWxvY2F0aW9uVmVyc2lvbiAxLjB1bmljaG9vc2Vsb2NhdGlvbkdlbmVyYXRlZCBieSBzdmcydHRmIGZyb20gRm9udGVsbG8gcHJvamVjdC5odHRwOi8vZm9udGVsbG8uY29tAAoAQwByAGUAYQB0AGUAZAAgAGIAeQAgAGkAYwBvAG4AZgBvAG4AdAAKAHUAbgBpAGMAaABvAG8AcwBlAGwAbwBjAGEAdABpAG8AbgBSAGUAZwB1AGwAYQByAHUAbgBpAGMAaABvAG8AcwBlAGwAbwBjAGEAdABpAG8AbgB1AG4AaQBjAGgAbwBvAHMAZQBsAG8AYwBhAHQAaQBvAG4AVgBlAHIAcwBpAG8AbgAgADEALgAwAHUAbgBpAGMAaABvAG8AcwBlAGwAbwBjAGEAdABpAG8AbgBHAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAHMAdgBnADIAdAB0AGYAIABmAHIAbwBtACAARgBvAG4AdABlAGwAbABvACAAcAByAG8AagBlAGMAdAAuAGgAdAB0AHAAOgAvAC8AZgBvAG4AdABlAGwAbABvAC4AYwBvAG0AAAAAAgAAAAAAAAAKAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFAQIBAwEEAQUBBgAKbXlsb2NhdGlvbgZ4dWFuemUFY2xvc2UGc291c3VvAAAAAA==')"});var d=weex.requireModule("mapSearch"),K=16,x="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAACcCAMAAAC3Fl5oAAAB3VBMVEVMaXH/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/EhL/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/Dw//AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/AAD/GRn/NTX/Dw//Fhb/AAD/AAD/AAD/GRn/GRn/Y2P/AAD/AAD/ExP/Ghr/AAD/AAD/MzP/GRn/AAD/Hh7/AAD/RUX/AAD/AAD/AAD/AAD/AAD/AAD/Dg7/AAD/HR3/Dw//FRX/SUn/AAD/////kJD/DQ3/Zmb/+/v/wMD/mJj/6en/vb3/1NT//Pz/ODj/+fn/3Nz/nJz/j4//9/f/7e3/9vb/7Oz/2Nj/x8f/Ozv/+Pj/3d3/nZ3/2dn//f3/6Oj/2tr/v7//09P/vr7/mZn/l5cdSvP3AAAAe3RSTlMAAhLiZgTb/vztB/JMRhlp6lQW86g8mQ4KFPs3UCH5U8huwlesWtTYGI7RsdVeJGfTW5rxnutLsvXWF8vQNdo6qQbuz7D4hgVIx2xtw8GC1TtZaIw0i84P98tU0/fsj7PKaAgiZZxeVfo8Z52eg1P0nESrENnjXVPUgw/uuSmDAAADsUlEQVR42u3aZ3cTRxgF4GtbYleSLdnGcsENG2ODjbExEHrvhAQCIb1Bem+QdkeuuFMNBBJIfmuOckzZI8/srHYmH3Lm+QNXK632LTvQ03Tu/IWeU/tTGTKT2n+q58L5c00wpXJd47DHEt5w47pKxLbhdLdPKb/7dBYxVLxw1GcI/2h1BcpzKNFHLX2JQ4gumaiitqpEEhEdOMJI9h5AFC3feYzI+7IF2tpSLEOqDXpObPRYFm/jCWho/4Ble7MdoT7fzhhq9yHEz28wltU1UPrJZ0wd66HwicfYvEFIfePTAP8tSLTupBHvtGJFH9bSkNrNWEHzERrT34xSH9Ogr1CijkbVAUH1KRqVqkdQAw07iIAaGlcTqI+/0LjeJJ5J0IIEnkpXMdzs4sTtW9dnZq7fuj2xOMtwVWk88RHDjBYejYvnjD8qjOpfQsUqhvj7oSjxcJIhVj3pyKqpNjYvVjQ/RrXq5YABKi3MCYm5BSrtWO5v11DlmlC4RpU1WRS9SJU7QukOVbpQ9JLu549+Dd0AUOlTbkGEuk85vxLAK5QbuytC3R2j3HoAjZSbFxrmKTcCoJdSk0LLJKV6gSaPMqNTQsvUKGW8JrxKqUWhaZFSeWyh1LTQNE2pHF6mzOy40DQ+S5mLimJcENoKlOnBWsr8KbRNUGYt5LXgd6HtD3lNQIoyN4S2G5RJIUOZm0LbTcqsBqVmhLYZSlkPsP4VWf+Rrd+m1v9o9h8Vv5p42C1R5qL1x7WRglOgVN52yfwNOBu76P+lLPoYidu23KPciIHGa07ZeIW1jvcNtI7q5vexCPGYCmf+m/Y9a3sAwQ5bI9T7ukPgPcn9GToEao+xk1OixJT+GIsvNAbx6eAgPq0xiF+KtkpYKhRXCQ8eFFcJhSWGu3rZ8jJkCM8kz9K4TUnrC6mAgzTsB9tLwQ2W15qfosQ2GrQNpZr7aczbzVjBZsvLcaC1g0bsbIVEnU8DOr6H1KDH2LwtUBi0/JII6Dxm9zUXkH+XMWzfh1Dte1i2Pe3QkC77Zel7aehpO8wyHG6Dtt0NjKxhN6I4uSli/TqJiJJDUQ4NDCURXTrXRy1XcumyD24M+AzhD1RXIIZsl/LoyZmurJHDM7s8lvB2FQ/PmPJ6PseAXP5HGMYAAC7ABbgAF+ACXIALcAEuwAW4ABfgAlyAC3ABLsAFuID/d8Cx4NEt8/byOf0wLnis8zjMq9/Kp7bWw4JOj8u8TlhRl+G/Mp2wpOX48GffvvZ1CyL4B53LAS6zb08EAAAAAElFTkSuQmCC",V={mixins:[w,m],data(){return{positionIcon:x,mapScale:K,userKeyword:"",showLocation:!0,latitude:39.908692,longitude:116.397477,nearList:[],nearSelectedIndex:-1,nearLoading:!1,nearLoadingEnd:!1,noNearData:!1,isUserLocation:!1,statusBarHeight:20,mapHeight:250,markers:[{id:"location",latitude:39.908692,longitude:116.397477,zIndex:"1",iconPath:x,width:26,height:36}],showSearch:!1,searchList:[],searchSelectedIndex:-1,searchLoading:!1,searchEnd:!1,noSearchData:!1,localizationTemplate:{en:{search_tips:"Search for a place",no_found:"No results found",nearby:"Nearby",more:"More"},zh:{search_tips:"\u641C\u7D22\u5730\u70B9",no_found:"\u5BF9\u4E0D\u8D77\uFF0C\u6CA1\u6709\u641C\u7D22\u5230\u76F8\u5173\u6570\u636E",nearby:"\u9644\u8FD1",more:"\u66F4\u591A"}},searchNearFlag:!0,searchMethod:"poiSearchNearBy"}},computed:{disableOK(){return this.nearSelectedIndex<0&&this.searchSelectedIndex<0},searchMethods(){return[{title:this.localize("nearby"),method:"poiSearchNearBy"},{title:this.localize("more"),method:"poiKeywordsSearch"}]}},filters:{distance(A){return A>100?`${A>1e3?(A/1e3).toFixed(1)+"k":A.toFixed(0)}m | `:A>0?"100m\u5185 | ":""}},watch:{searchMethod(){this._searchPageIndex=1,this.searchEnd=!1,this.searchList=[],this._searchKeyword&&this.search()}},onLoad(){this.statusBarHeight=plus.navigator.getStatusbarHeight(),this.mapHeight=plus.screen.resolutionHeight/2;let A=this.data;this.userKeyword=A.keyword||"",this._searchInputTimer=null,this._searchPageIndex=1,this._searchKeyword="",this._nearPageIndex=1,this._hasUserLocation=!1,this._userLatitude=0,this._userLongitude=0},onReady(){this.mapContext=this.$refs.map1,this.data.latitude&&this.data.longitude?(this._hasUserLocation=!0,this.moveToCenter({latitude:this.data.latitude,longitude:this.data.longitude})):this.getUserLocation()},onUnload(){this.clearSearchTimer()},methods:{cancelClick(){this.postMessage({event:"cancel"})},doneClick(){if(this.disableOK)return;let A=this.showSearch&&this.searchSelectedIndex>=0?this.searchList[this.searchSelectedIndex]:this.nearList[this.nearSelectedIndex],t={name:A.name,address:A.address,latitude:A.location.latitude,longitude:A.location.longitude};this.postMessage({event:"selected",detail:t})},getUserLocation(){plus.geolocation.getCurrentPosition(({coordsType:A,coords:t})=>{false?this.wgs84togcjo2(t,s=>{this.getUserLocationSuccess(s)}):this.getUserLocationSuccess(t)},A=>{this._hasUserLocation=!0,h("log","at template/__uniappchooselocation.nvue:292","Gelocation Error: code - "+A.code+"; message - "+A.message)},{geocode:!1,coordsType:"gcj02"})},getUserLocationSuccess(A){this._userLatitude=A.latitude,this._userLongitude=A.longitude,this._hasUserLocation=!0,this.moveToCenter({latitude:A.latitude,longitude:A.longitude})},searchclick(A){this.showSearch=A,A===!1&&plus.key.hideSoftKeybord()},showSearchView(){this.searchList=[],this.showSearch=!0},hideSearchView(){this.showSearch=!1,plus.key.hideSoftKeybord(),this.noSearchData=!1,this.searchSelectedIndex=-1,this._searchKeyword=""},onregionchange(A){var t=A.detail,s=t.type||A.type,r=t.causedBy||A.causedBy;r!=="drag"||s!=="end"||this.mapContext.getCenterLocation(a=>{if(!this.searchNearFlag){this.searchNearFlag=!this.searchNearFlag;return}this.moveToCenter({latitude:a.latitude,longitude:a.longitude})})},onItemClick(A,t){this.searchNearFlag=!1,t.stopPropagation&&t.stopPropagation(),this.nearSelectedIndex!==A&&(this.nearSelectedIndex=A),this.moveToLocation(this.nearList[A]&&this.nearList[A].location)},moveToCenter(A){this.latitude===A.latitude&&this.longitude===A.longitude||(this.latitude=A.latitude,this.longitude=A.longitude,this.updateCenter(A),this.moveToLocation(A),this.isUserLocation=this._userLatitude===A.latitude&&this._userLongitude===A.longitude)},updateCenter(A){this.nearSelectedIndex=-1,this.nearList=[],this._hasUserLocation&&(this._nearPageIndex=1,this.nearLoadingEnd=!1,this.reverseGeocode(A),this.searchNearByPoint(A),this.onItemClick(0,{stopPropagation:()=>{this.searchNearFlag=!0}}),this.$refs.nearListLoadmore.resetLoadmore())},searchNear(){this.nearLoadingEnd||this.searchNearByPoint({latitude:this.latitude,longitude:this.longitude})},searchNearByPoint(A){this.noNearData=!1,this.nearLoading=!0,d.poiSearchNearBy({point:{latitude:A.latitude,longitude:A.longitude},key:this.userKeyword,sortrule:1,index:this._nearPageIndex,radius:1e3},t=>{this.nearLoading=!1,this._nearPageIndex=t.pageIndex+1,this.nearLoadingEnd=t.pageIndex===t.pageNumber,t.poiList&&t.poiList.length?(this.fixPois(t.poiList),this.nearList=this.nearList.concat(t.poiList),this.fixNearList()):this.noNearData=this.nearList.length===0})},moveToLocation(A){!A||this.mapContext.moveToLocation(z(R({},A),{fail:t=>{h("error","at template/__uniappchooselocation.nvue:419","chooseLocation_moveToLocation",t)}}))},reverseGeocode(A){d.reverseGeocode({point:A},t=>{t.type==="success"&&this._nearPageIndex<=2&&(this.nearList.splice(0,0,{code:t.code,location:A,name:"\u5730\u56FE\u4F4D\u7F6E",address:t.address||""}),this.fixNearList())})},fixNearList(){let A=this.nearList;if(A.length>=2&&A[0].name==="\u5730\u56FE\u4F4D\u7F6E"){let t=this.getAddressStart(A[1]),s=A[0].address;s.startsWith(t)&&(A[0].name=s.substring(t.length))}},onsearchinput(A){var t=A.detail.value.replace(/^\s+|\s+$/g,"");this.clearSearchTimer(),this._searchInputTimer=setTimeout(()=>{clearTimeout(this._searchInputTimer),this._searchPageIndex=1,this.searchEnd=!1,this._searchKeyword=t,this.searchList=[],this.search()},300)},clearSearchTimer(){this._searchInputTimer&&clearTimeout(this._searchInputTimer)},search(){this._searchKeyword.length===0||this._searchEnd||this.searchLoading||(this.searchLoading=!0,this.noSearchData=!1,d[this.searchMethod]({point:{latitude:this.latitude,longitude:this.longitude},key:this._searchKeyword,sortrule:1,index:this._searchPageIndex,radius:5e4},A=>{this.searchLoading=!1,this._searchPageIndex=A.pageIndex+1,this.searchEnd=A.pageIndex===A.pageNumber,A.poiList&&A.poiList.length?(this.fixPois(A.poiList),this.searchList=this.searchList.concat(A.poiList)):this.noSearchData=this.searchList.length===0}))},onSearchListTouchStart(){plus.key.hideSoftKeybord()},onSearchItemClick(A,t){t.stopPropagation(),this.searchSelectedIndex!==A&&(this.searchSelectedIndex=A),this.moveToLocation(this.searchList[A]&&this.searchList[A].location)},getAddressStart(A){let t=A.addressOrigin||A.address;return A.province+(A.province===A.city?"":A.city)+(/^\d+$/.test(A.district)||t.startsWith(A.district)?"":A.district)},fixPois(A){for(var t=0;t{if(a.ok){let o=a.data.detail.points[0];t({latitude:o.lat,longitude:o.lng})}})},formatDistance(A){return A>100?`${A>1e3?(A/1e3).toFixed(1)+"k":A.toFixed(0)}m | `:A>0?"100m\u5185 | ":""}}};function Z(A,t,s,r,a,o){return(0,e.openBlock)(),(0,e.createElementBlock)("scroll-view",{scrollY:!0,showScrollbar:!0,enableBackToTop:!0,bubble:"true",style:{flexDirection:"column"}},[(0,e.createElementVNode)("view",{class:"page flex-c"},[(0,e.createElementVNode)("view",{class:"flex-r map-view"},[(0,e.createElementVNode)("map",{class:"map flex-fill",ref:"map1",scale:a.mapScale,showLocation:a.showLocation,longitude:a.longitude,latitude:a.latitude,onRegionchange:t[0]||(t[0]=(...i)=>o.onregionchange&&o.onregionchange(...i)),style:(0,e.normalizeStyle)("height:"+a.mapHeight+"px")},[(0,e.createElementVNode)("div",{class:"map_center_marker_container"},[(0,e.createElementVNode)("u-image",{class:"map_center_marker",src:a.positionIcon},null,8,["src"])])],44,["scale","showLocation","longitude","latitude"]),(0,e.createElementVNode)("view",{class:"map-location flex-c a-i-c j-c-c",onClick:t[1]||(t[1]=i=>o.getUserLocation())},[(0,e.createElementVNode)("u-text",{class:(0,e.normalizeClass)(["unichooselocation-icons map-location-text",{"map-location-text-active":a.isUserLocation}])},"\uEC32",2)]),(0,e.createElementVNode)("view",{class:"nav-cover"},[(0,e.createElementVNode)("view",{class:"statusbar",style:(0,e.normalizeStyle)("height:"+a.statusBarHeight+"px")},null,4),(0,e.createElementVNode)("view",{class:"title-view flex-r"},[(0,e.createElementVNode)("view",{class:"btn-cancel",onClick:t[2]||(t[2]=(...i)=>o.cancelClick&&o.cancelClick(...i))},[(0,e.createElementVNode)("u-text",{class:"unichooselocation-icons btn-cancel-text"},"\uE61C")]),(0,e.createElementVNode)("view",{class:"flex-fill"}),(0,e.createElementVNode)("view",{class:(0,e.normalizeClass)(["btn-done flex-r a-i-c j-c-c",{"btn-done-disabled":o.disableOK}]),onClick:t[3]||(t[3]=(...i)=>o.doneClick&&o.doneClick(...i))},[(0,e.createElementVNode)("u-text",{class:(0,e.normalizeClass)(["text-done",{"text-done-disabled":o.disableOK}])},(0,e.toDisplayString)(A.localize("done")),3)],2)])])]),(0,e.createElementVNode)("view",{class:(0,e.normalizeClass)(["flex-c result-area",{"searching-area":a.showSearch}])},[(0,e.createElementVNode)("view",{class:"search-bar"},[(0,e.createElementVNode)("view",{class:"search-area flex-r a-i-c",onClick:t[4]||(t[4]=(...i)=>o.showSearchView&&o.showSearchView(...i))},[(0,e.createElementVNode)("u-text",{class:"search-icon unichooselocation-icons"},"\uE60A"),(0,e.createElementVNode)("u-text",{class:"search-text"},(0,e.toDisplayString)(A.localize("search_tips")),1)])]),a.noNearData?(0,e.createCommentVNode)("v-if",!0):((0,e.openBlock)(),(0,e.createElementBlock)("list",{key:0,ref:"nearListLoadmore",class:"flex-fill list-view",loadmoreoffset:"5",scrollY:!0,onLoadmore:t[5]||(t[5]=i=>o.searchNear())},[((0,e.openBlock)(!0),(0,e.createElementBlock)(e.Fragment,null,(0,e.renderList)(a.nearList,(i,n)=>((0,e.openBlock)(),(0,e.createElementBlock)("cell",{key:i.uid},[(0,e.createElementVNode)("view",{class:"list-item",onClick:l=>o.onItemClick(n,l)},[(0,e.createElementVNode)("view",{class:"flex-r"},[(0,e.createElementVNode)("view",{class:"list-text-area flex-fill flex-c"},[(0,e.createElementVNode)("u-text",{class:"list-name"},(0,e.toDisplayString)(i.name),1),(0,e.createElementVNode)("u-text",{class:"list-address"},(0,e.toDisplayString)(o.formatDistance(i.distance))+(0,e.toDisplayString)(i.address),1)]),n===a.nearSelectedIndex?((0,e.openBlock)(),(0,e.createElementBlock)("view",{key:0,class:"list-icon-area flex-r a-i-c j-c-c"},[(0,e.createElementVNode)("u-text",{class:"unichooselocation-icons list-selected-icon"},"\uE651")])):(0,e.createCommentVNode)("v-if",!0)]),(0,e.createElementVNode)("view",{class:"list-line"})],8,["onClick"])]))),128)),a.nearLoading?((0,e.openBlock)(),(0,e.createElementBlock)("cell",{key:0},[(0,e.createElementVNode)("view",{class:"loading-view flex-c a-i-c j-c-c"},[(0,e.createElementVNode)("loading-indicator",{class:"loading-icon",animating:!0,arrow:"false"})])])):(0,e.createCommentVNode)("v-if",!0)],544)),a.noNearData?((0,e.openBlock)(),(0,e.createElementBlock)("view",{key:1,class:"flex-fill flex-r a-i-c j-c-c"},[(0,e.createElementVNode)("u-text",{class:"no-data"},(0,e.toDisplayString)(A.localize("no_found")),1)])):(0,e.createCommentVNode)("v-if",!0),a.showSearch?((0,e.openBlock)(),(0,e.createElementBlock)("view",{key:2,class:"search-view flex-c"},[(0,e.createElementVNode)("view",{class:"search-bar flex-r a-i-c"},[(0,e.createElementVNode)("view",{class:"search-area flex-fill flex-r"},[(0,e.createElementVNode)("u-input",{focus:!0,onInput:t[6]||(t[6]=(...i)=>o.onsearchinput&&o.onsearchinput(...i)),class:"search-input flex-fill",placeholder:A.localize("search_tips")},null,40,["placeholder"])]),(0,e.createElementVNode)("u-text",{class:"search-cancel",onClick:t[7]||(t[7]=(...i)=>o.hideSearchView&&o.hideSearchView(...i))},(0,e.toDisplayString)(A.localize("cancel")),1)]),(0,e.createElementVNode)("view",{class:"search-tab"},[((0,e.openBlock)(!0),(0,e.createElementBlock)(e.Fragment,null,(0,e.renderList)(o.searchMethods,(i,n)=>((0,e.openBlock)(),(0,e.createElementBlock)("u-text",{onClick:l=>a.searchMethod=a.searchLoading?a.searchMethod:i.method,key:n,class:(0,e.normalizeClass)([{"search-tab-item-active":i.method===a.searchMethod},"search-tab-item"])},(0,e.toDisplayString)(i.title),11,["onClick"]))),128))]),a.noSearchData?(0,e.createCommentVNode)("v-if",!0):((0,e.openBlock)(),(0,e.createElementBlock)("list",{key:0,class:"flex-fill list-view",enableBackToTop:!0,scrollY:!0,onLoadmore:t[8]||(t[8]=i=>o.search()),onTouchstart:t[9]||(t[9]=(...i)=>o.onSearchListTouchStart&&o.onSearchListTouchStart(...i))},[((0,e.openBlock)(!0),(0,e.createElementBlock)(e.Fragment,null,(0,e.renderList)(a.searchList,(i,n)=>((0,e.openBlock)(),(0,e.createElementBlock)("cell",{key:i.uid},[(0,e.createElementVNode)("view",{class:"list-item",onClick:l=>o.onSearchItemClick(n,l)},[(0,e.createElementVNode)("view",{class:"flex-r"},[(0,e.createElementVNode)("view",{class:"list-text-area flex-fill flex-c"},[(0,e.createElementVNode)("u-text",{class:"list-name"},(0,e.toDisplayString)(i.name),1),(0,e.createElementVNode)("u-text",{class:"list-address"},(0,e.toDisplayString)(o.formatDistance(i.distance))+(0,e.toDisplayString)(i.address),1)]),n===a.searchSelectedIndex?((0,e.openBlock)(),(0,e.createElementBlock)("view",{key:0,class:"list-icon-area flex-r a-i-c j-c-c"},[(0,e.createElementVNode)("u-text",{class:"unichooselocation-icons list-selected-icon"},"\uE651")])):(0,e.createCommentVNode)("v-if",!0)]),(0,e.createElementVNode)("view",{class:"list-line"})],8,["onClick"])]))),128)),a.searchLoading?((0,e.openBlock)(),(0,e.createElementBlock)("cell",{key:0},[(0,e.createElementVNode)("view",{class:"loading-view flex-c a-i-c j-c-c"},[(0,e.createElementVNode)("loading-indicator",{class:"loading-icon",animating:!0})])])):(0,e.createCommentVNode)("v-if",!0)],32)),a.noSearchData?((0,e.openBlock)(),(0,e.createElementBlock)("view",{key:1,class:"flex-fill flex-r j-c-c"},[(0,e.createElementVNode)("u-text",{class:"no-data no-data-search"},(0,e.toDisplayString)(A.localize("no_found")),1)])):(0,e.createCommentVNode)("v-if",!0)])):(0,e.createCommentVNode)("v-if",!0)],2)])])}var c=b(V,[["render",Z],["styles",[H]]]);var g=plus.webview.currentWebview();if(g){let A=parseInt(g.id),t="template/__uniappchooselocation",s={};try{s=JSON.parse(g.__query__)}catch(a){}c.mpType="page";let r=Vue.createPageApp(c,{$store:getApp({allowDefault:!0}).$store,__pageId:A,__pagePath:t,__pageQuery:s});r.provide("__globalStyles",Vue.useCssStyles([...__uniConfig.styles,...c.styles||[]])),r.mount("#root")}})(); diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/__uniapperror.png b/app/src/main/assets/apps/__UNI__FB2D473/www/__uniapperror.png new file mode 100644 index 0000000..4743b25 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/__uniapperror.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/__uniappopenlocation.js b/app/src/main/assets/apps/__UNI__FB2D473/www/__uniappopenlocation.js new file mode 100644 index 0000000..cd98190 --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/__uniappopenlocation.js @@ -0,0 +1,32 @@ +"use weex:vue"; + +if (typeof Promise !== 'undefined' && !Promise.prototype.finally) { + Promise.prototype.finally = function(callback) { + const promise = this.constructor + return this.then( + value => promise.resolve(callback()).then(() => value), + reason => promise.resolve(callback()).then(() => { + throw reason + }) + ) + } +}; + +if (typeof uni !== 'undefined' && uni && uni.requireGlobal) { + const global = uni.requireGlobal() + ArrayBuffer = global.ArrayBuffer + Int8Array = global.Int8Array + Uint8Array = global.Uint8Array + Uint8ClampedArray = global.Uint8ClampedArray + Int16Array = global.Int16Array + Uint16Array = global.Uint16Array + Int32Array = global.Int32Array + Uint32Array = global.Uint32Array + Float32Array = global.Float32Array + Float64Array = global.Float64Array + BigInt64Array = global.BigInt64Array + BigUint64Array = global.BigUint64Array +}; + + +(()=>{var B=Object.create;var m=Object.defineProperty;var b=Object.getOwnPropertyDescriptor;var w=Object.getOwnPropertyNames;var P=Object.getPrototypeOf,Q=Object.prototype.hasOwnProperty;var I=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var E=(e,t,a,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let o of w(t))!Q.call(e,o)&&o!==a&&m(e,o,{get:()=>t[o],enumerable:!(n=b(t,o))||n.enumerable});return e};var O=(e,t,a)=>(a=e!=null?B(P(e)):{},E(t||!e||!e.__esModule?m(a,"default",{value:e,enumerable:!0}):a,e));var f=I((L,C)=>{C.exports=Vue});var d={data(){return{locale:"en",fallbackLocale:"en",localization:{en:{done:"OK",cancel:"Cancel"},zh:{done:"\u5B8C\u6210",cancel:"\u53D6\u6D88"},"zh-hans":{},"zh-hant":{},messages:{}},localizationTemplate:{}}},onLoad(){this.initLocale()},created(){this.initLocale()},methods:{initLocale(){if(this.__initLocale)return;this.__initLocale=!0;let e=(plus.webview.currentWebview().extras||{}).data||{};if(e.messages&&(this.localization.messages=e.messages),e.locale){this.locale=e.locale.toLowerCase();return}let t={chs:"hans",cn:"hans",sg:"hans",cht:"hant",tw:"hant",hk:"hant",mo:"hant"},a=plus.os.language.toLowerCase().split("/")[0].replace("_","-").split("-"),n=a[1];n&&(a[1]=t[n]||n),a.length=a.length>2?2:a.length,this.locale=a.join("-")},localize(e){let t=this.locale,a=t.split("-")[0],n=this.fallbackLocale,o=s=>Object.assign({},this.localization[s],(this.localizationTemplate||{})[s]);return o("messages")[e]||o(t)[e]||o(a)[e]||o(n)[e]||e}}},h={onLoad(){this.initMessage()},methods:{initMessage(){let{from:e,callback:t,runtime:a,data:n={},useGlobalEvent:o}=plus.webview.currentWebview().extras||{};this.__from=e,this.__runtime=a,this.__page=plus.webview.currentWebview().id,this.__useGlobalEvent=o,this.data=JSON.parse(JSON.stringify(n)),plus.key.addEventListener("backbutton",()=>{typeof this.onClose=="function"?this.onClose():plus.webview.currentWebview().close("auto")});let s=this,r=function(l){let A=l.data&&l.data.__message;!A||s.__onMessageCallback&&s.__onMessageCallback(A.data)};if(this.__useGlobalEvent)weex.requireModule("globalEvent").addEventListener("plusMessage",r);else{let l=new BroadcastChannel(this.__page);l.onmessage=r}},postMessage(e={},t=!1){let a=JSON.parse(JSON.stringify({__message:{__page:this.__page,data:e,keep:t}})),n=this.__from;if(this.__runtime==="v8")this.__useGlobalEvent?plus.webview.postMessageToUniNView(a,n):new BroadcastChannel(n).postMessage(a);else{let o=plus.webview.getWebviewById(n);o&&o.evalJS(`__plusMessage&&__plusMessage(${JSON.stringify({data:a})})`)}},onMessage(e){this.__onMessageCallback=e}}};var i=O(f());var v=(e,t)=>{let a=e.__vccOpts||e;for(let[n,o]of t)a[n]=o;return a};var x={page:{"":{flex:1}},"flex-r":{"":{flexDirection:"row",flexWrap:"nowrap"}},"flex-c":{"":{flexDirection:"column",flexWrap:"nowrap"}},"flex-fill":{"":{flex:1}},"a-i-c":{"":{alignItems:"center"}},"j-c-c":{"":{justifyContent:"center"}},target:{"":{paddingTop:10,paddingBottom:10}},"text-area":{"":{paddingLeft:10,paddingRight:10,flex:1}},name:{"":{fontSize:16,lines:1,textOverflow:"ellipsis"}},address:{"":{fontSize:14,color:"#808080",lines:1,textOverflow:"ellipsis",marginTop:2}},"goto-area":{"":{width:50,height:50,paddingTop:8,paddingRight:8,paddingBottom:8,paddingLeft:8,backgroundColor:"#007aff",borderRadius:50,marginRight:10}},"goto-icon":{"":{width:34,height:34}},"goto-text":{"":{fontSize:14,color:"#FFFFFF"}}},z={mixins:[h,d],data(){return{bottom:"0px",longitude:"",latitude:"",markers:[],name:"",address:"",localizationTemplate:{en:{"map.title.amap":"AutoNavi Maps","map.title.baidu":"Baidu Maps","map.title.tencent":"Tencent Maps","map.title.apple":"Apple Maps","map.title.google":"Google Maps","location.title":"My Location","select.cancel":"Cancel"},zh:{"map.title.amap":"\u9AD8\u5FB7\u5730\u56FE","map.title.baidu":"\u767E\u5EA6\u5730\u56FE","map.title.tencent":"\u817E\u8BAF\u5730\u56FE","map.title.apple":"\u82F9\u679C\u5730\u56FE","map.title.google":"\u8C37\u6B4C\u5730\u56FE","location.title":"\u6211\u7684\u4F4D\u7F6E","select.cancel":"\u53D6\u6D88"}},android:weex.config.env.platform.toLowerCase()==="android"}},onLoad(){let e=this.data;if(this.latitude=e.latitude,this.longitude=e.longitude,this.name=e.name||"",this.address=e.address||"",!this.android){let t=plus.webview.currentWebview().getSafeAreaInsets();this.bottom=t.bottom+"px"}},onReady(){this.mapContext=this.$refs.map1,this.markers=[{id:"location",latitude:this.latitude,longitude:this.longitude,title:this.name,zIndex:"1",iconPath:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAABICAMAAACORiZjAAAByFBMVEUAAAD/PyL/PyL/PyL/PyL/PyL/PyL/PyL/PyL/PiL/PyL/PyL/PyP/PyL/PyL/PyL/PyL/PiL/PyL8PiP/PyL4OyP/PyL3OyX9Pyb0RUP0RkPzOiXsPj3YLi7TKSnQJiX0RkTgMCj0QjvkNC3vPDPwOy/9PyXsNSTyRUTgNDPdMjHrPTzuQD7iNTTxQ0HTJyTZKyf1RULlNjDZKyTfLSLeLSX0Qzz3Qzv8PSTMJCTmOjnPJSXLIiLzRkXWLCvgNDPZLyzVKijRJSTtPzvcMS7jNjPZLCnyREHpOzjiNDDtPzvzQz/VKSXkNTDsPDXyQjz2RT7pMyTxOinjMST5QjTmOjnPJSLdLyr0RD//YF7/////R0b/Tk3/XVv/WFb/VVP/S0v/Pz//W1n/UVD/REP/Xlz/Ojr/QUH/Skn/U1L/ODf7VlX5UU/oOzrqNzf/+/v5UlHvQUD2TEv0SUj3Tk3/2dn8W1r6TEv7R0b7REPvPTzzPDvwNjXkMjLnMDDjLS3dKir/xcX/vr7/qqn/pqX/mZn/fn7/ZWT/8PD/4eH/3t3/zs7/ra3/kpL/iIj/e3r5PDz4NjbxMTHsMTDlLCz/9vb/6ej/ubjhOGVRAAAAWXRSTlMABQ4TFgoIHhApI0RAGhgzJi89Ozg2LVEg4s5c/v366tmZiYl2X0pE/vn08eTe1sWvqqiOgXVlUE399/b08u3n4tzZ1dTKyMTDvLmzqqKal35taFxH6sC3oms+ongAAAOtSURBVEjHjZV3W9pQGMXJzQACQRARxVF3HdVW26od7q111NqhdbRSbQVElnvvbV1tv25Jgpr3kpCcP+/7/J5z8p57QScr4l46jSJohEhKEGlANKGBYBA1NFDpyklPz3FV5tWwHKnGEbShprIuFPAujEW14A2E6nqqWYshEcYYqnNC3mEgbyh9wMgZGCUbZHZFFobjtODLKWQpRMgyhrxiiQtwK/6SqpczY/QdvqlhJflcZpZk4hiryzecQIH0IitFY0xaBWDkqCEr9CLIDsDIJqywswbpNlB/ZEpVkZ4kPZKEqwmOTakrXGCk6IdwFYExDfI+SX4ISBeExjQp0m/jUMyIeuLVBo2Xma0kIRpVhyc1Kpxn42hxdd2BuOnv3Z2d3YO4Y29LCitcQiItcxxH5kcEncRhmc5UiofowuJxqPO5kZjm9rFROC9JWAXqC8HBgciI1AWcRbqj+fgX0emDg+MRif5OglmgJdlIEvzCJ8D5xQjQORhOlJlTKR4qmwD6B6FtOJ012yyMjrHMwuNTCM1jUG2SHDQPoWMMciZxdBR6PQOOtyF0ikEmEfrom5FqH0J7YOh+LUAE1bbolmrqj5SZOwTDxXJTdBFRqCrsBtoHRnAW7hRXThYE3VA7koVjo2CfUK4O2WdHodx7c7FsZ25sNDtotxp4SF++OIrpcHf+6Ojk7BA/X2wwOfRIeLj5wVGNClYJF4K/sY4SrVBJhj323hHXG/ymScEu091PH0HaS5e0MEslGeLuBCt9fqYWKLNXNIpZGcuXfqlqqaHWLhrFrLpWvqpqpU1ixFs9Ll1WY5ZLo19ECUb3X+VXg/y5wEj4qtYVlXCtRdIvErtyZi0nDJc1aLZxCPtrZ3P9PxLIX2Vy8P8zQAxla1xVZlYba6NbYAAi7KIwSxnKKjDHtoAHfOb/qSD/Z1OKEA4XbXHUr8ozq/XOZKOFxgkx4Mv177Jaz4fhQFnWdr8c4283pVhBRSDg4+zLeOYyu9CcCsIBK5T2fF0mXK7JkYaAEaAoY9Mazqw1FdnBRcWFuA/ZGDOd/R7eH7my3m1MA208k60I3ibHozUps/bICe+PQllbUmjrBaxIqaynG5JwT5UrgmW9ubpjrt5kJMOKlMvavIM2o08cVqRcVvONyNw0Y088YVmvPIJeqVUEy9rkmU31imBZ1x7PNV6RelkeD16Relmfbm81VQTLevs2A74iDWXpXzznwwEj9YCszcbCcOqiSY4jYTh1Jx1B04o+/wH6/wOSPFj1xgAAAABJRU5ErkJggg==",width:26,height:36}],this.updateMarker()},methods:{goto(){var e=weex.config.env.platform==="iOS";this.openSysMap(this.latitude,this.longitude,this.name,e)},updateMarker(){this.mapContext.moveToLocation(),this.mapContext.translateMarker({markerId:"location",destination:{latitude:this.latitude,longitude:this.longitude},duration:0},e=>{})},openSysMap(e,t,a,n){let o=weex.requireModule("mapSearch");var s=[{title:this.localize("map.title.tencent"),getUrl:function(){var A;return A="https://apis.map.qq.com/uri/v1/routeplan?type=drive&to="+encodeURIComponent(a)+"&tocoord="+encodeURIComponent(e+","+t)+"&referer=APP",A}},{title:this.localize("map.title.google"),getUrl:function(){var A;return A="https://www.google.com/maps/?daddr="+encodeURIComponent(a)+"&sll="+encodeURIComponent(e+","+t),A}}],r=[{title:this.localize("map.title.amap"),pname:"com.autonavi.minimap",action:n?"iosamap://":"amapuri://",getUrl:function(){var A;return n?A="iosamap://path":A="amapuri://route/plan/",A+="?sourceApplication=APP&dname="+encodeURIComponent(a)+"&dlat="+e+"&dlon="+t+"&dev=0",A}},{title:this.localize("map.title.baidu"),pname:"com.baidu.BaiduMap",action:"baidumap://",getUrl:function(){var A="baidumap://map/direction?destination="+encodeURIComponent("latlng:"+e+","+t+"|name:"+a)+"&mode=driving&src=APP&coord_type=gcj02";return A}},{title:this.localize("map.title.tencent"),pname:"com.tencent.map",action:"qqmap://",getUrl:()=>{var A;return A="qqmap://map/routeplan?type=drive"+(n?"&from="+encodeURIComponent(this.localize("location.title")):"")+"&to="+encodeURIComponent(a)+"&tocoord="+encodeURIComponent(e+","+t)+"&referer=APP",A}},{title:this.localize("map.title.google"),pname:"com.google.android.apps.maps",action:"comgooglemapsurl://",getUrl:function(){var A;return n?A="comgooglemapsurl://maps.google.com/":A="https://www.google.com/maps/",A+="?daddr="+encodeURIComponent(a)+"&sll="+encodeURIComponent(e+","+t),A}}],l=[];r.forEach(function(A){var g=plus.runtime.isApplicationExist({pname:A.pname,action:A.action});g&&l.push(A)}),n&&l.unshift({title:this.localize("map.title.apple"),navigateTo:function(){o.openSystemMapNavigation({longitude:t,latitude:e,name:a})}}),l.length===0&&(l=l.concat(s)),plus.nativeUI.actionSheet({cancel:this.localize("select.cancel"),buttons:l},function(A){var g=A.index,c;g>0&&(c=l[g-1],c.navigateTo?c.navigateTo():plus.runtime.openURL(c.getUrl(),function(){},c.pname))})}}};function R(e,t,a,n,o,s){return(0,i.openBlock)(),(0,i.createElementBlock)("scroll-view",{scrollY:!0,showScrollbar:!0,enableBackToTop:!0,bubble:"true",style:{flexDirection:"column"}},[(0,i.createElementVNode)("view",{class:"page flex-c",style:(0,i.normalizeStyle)({paddingBottom:o.bottom})},[(0,i.createElementVNode)("map",{class:"flex-fill map",ref:"map1",longitude:o.longitude,latitude:o.latitude,markers:o.markers},null,8,["longitude","latitude","markers"]),(0,i.createElementVNode)("view",{class:"flex-r a-i-c target"},[(0,i.createElementVNode)("view",{class:"text-area"},[(0,i.createElementVNode)("u-text",{class:"name"},(0,i.toDisplayString)(o.name),1),(0,i.createElementVNode)("u-text",{class:"address"},(0,i.toDisplayString)(o.address),1)]),(0,i.createElementVNode)("view",{class:"goto-area",onClick:t[0]||(t[0]=(...r)=>s.goto&&s.goto(...r))},[(0,i.createElementVNode)("u-image",{class:"goto-icon",src:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAMgAAADIEAYAAAD9yHLdAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAAZiS0dEAAAAAAAA+UO7fwAAAAlwSFlzAAAASAAAAEgARslrPgAADzVJREFUeNrt3WmMFMUfxvGqRREjEhXxIAooUQTFGPGIeLAcshoxRhM1Eu+YjZGIJh4vTIzHC1GJiiCeiUckEkWDVzxQxHgRvNB4LYiigshyxFXYg4Bb/xfPv1YbFpjtnZmq7v5+3vxSs8vOr4vpfqZ6pmeMAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAMKwoRtAtjnnnHN77KHR2LGqhx327y8YZ9zSpcYaa+z8+dZaa21LS+i+AQCBKDgmTVJdv96VZN06/+9C9w8AqBId+K1Vfeih0gJjZ/zfsayEASBvksExbVp5gmNrjz5KkABATlQnOAgSAMiNMMFBkABAZsURHAQJAGRGnMFBkABAtLIRHAQJAEQjm8FBkABAMPkIDoIEAKomn8FBkABAxRQjOAgSACibYgYHQQIAqREcnSFIAGC7/AFSleDoHEECAB38AVGV4CgNQQKgwPwBUJXgSIcgAVAg/oCnSnCUB0ECIMf8AU6V4KgMggRAjvgDmirBUR0ECYAM8wcw1ViCY/PmfN3Pzvh5J0gAZIA/YCUPYKE1NqpOmlSd+6uvV/3999BbLqxIAETMH6BUYwuOI49Ura2tzv36+xkyRJUgAYBt+AOSanzBkeyzegGSvF+CBAA6+AOQarzBkey3+gGSvH+CBECB+QOOavzBkew7XIAk+yBIABSIP8CoZic4kv2HD5BkPwQJgBzzBxTV7AVHcjviCZBkXwQJgBzxBxDV7AZHcnviC5BkfwQJgAzzBwzV7AdHcrviDZBknwQJgAzxBwjV/ARHcvviD5BkvwQJgIj5A4Jq/oIjuZ3ZCZBk3wQJgIj4A4BqfoMjub3ZC5Bk/wQJgID8Dq+a/+BIbnd2AyS5HQQJgCryO7hqcYIjuf3ZD5Dk9hAkACrI79CqxQuO5DzkJ0CS20WQACgjvwOrFjc4kvORvwBJbh9BAqAb/A6rSnAk5yW/AZLcToIEQBf4HVSV4Oh8fvIfIMntJUgA7IDfIVUJjh3PU3ECJLndBAmA//A7oCrBUdp8FS9AkttPkACF5nc4VYKja/NW3ABJzgNBAhSK38FUCY5080eAJOeDIAFyze9QqgRH9+aRAOl8XggSIFf8DqRKcJRnPgmQHc8PQQJkmt9hVAmO8s4rAVLaPBEkQKb4HUSV4KjM/BIgXZsvggSImt8hVAmOys4zAZJu3ggSICp+B1AlOKoz3wRI9+aPIAGC8g94VYKjuvNOgJRnHgkSoKr8A1yV4Agz/wRIeeeTIAGqQg/su+8OvYvJH3+oDh0ael6qO/8ESGXmdejQ5OMqtClTQs8LUBau3bW79rPPDr1LSfGCo+P/wTlHgFR6fiMKknbX7tonTAg9L8iGmtANbJc11tjbbw/bxOrVqmPGWGuttT/8EHpakC/Jx9WYMar+cRfKbbeFvX9kRXQBoqdB/ftrdOyxYbogOFBd0QSJNdbYESO0Hx5wQOh5QdyiCxAZMCDM/RIcCCuOIPEvpg8aFHo+ELf4AsQZZ1xra3XvlOBAXIIHiTPOuObm0POAuMUXIMYYYxoaVDdsqOz9rFmjOm4cwYEYJR+X/k0Gq1ZV9l43blRdujT09iNu0QWIrbE1tmbTJo1mz67MvfhncrW12kG/+y70dgM7osfpkiUajRunWqkVyaxZyf0QyBj/Ip7qypXleY9icd+Om5Z/e2113kNavLfxpuUfx8nHdXetXKm38e6/f+jtQzZEtwLx9IzLP8Oqq1NdvrzLf8gZZ1xDg+ppp3GqCnnQ8Tj+/+Nat/oVShc444z7+WcN6uq08mhsDL19QFnpmVHv3nqmdPPNGn/2merGjbp9wwbVTz5Rve461d13D91/VrECyQb/OFe9/nrtFwsXduwXif1k0SKNb7pJ4z32CN0/gBwiQABsT7SnsAAAcSNAAACpECAAgFQIEABAKgQIACAVAgQAkAoBAgBIhQABAKRCgAAAUiFAAACpECAAgFQIEABAKgQIACAVAgQAkAoBAgBIhQABAKRCgAAAUiFAAACpECAAgFQIEABAKgQIACAVAgQAkAoBAgBIhQABAKRCgAAAUiFAAACpECAAgFQIEABAKgQIACAVAgQAkMouoRsAgFBcu2t37b17a9S3r7HGGtu3r3HGGbfvvsnxf35ujDFmn31Ue/VK/tU+ffT7PXro963VeK+9On7FGmtsW5tub2jQjc8/b2tsja35/PPQ81IqAgRAZjnnnHN7760D8eDBunXQIB2gBw7U2NdDDun4eeL2Pffc5g9bY43dwXhnSv331lhjJ0zQ4MYbtT3PPadxfb211lrb3Bx6nreHAAEQDa0IevbUgXXYMAXDUUdpPHy4xsOHa3zUUfpXBx/c5QN81CZOVD3wQM1HXZ1WJps3h+5sawQIgKrRM+zBgxUEI0fqwD9ypH7q67Bhqrvs0u2VQKaNHq3tnTxZ4/vuC93R1ggQAN2mYKipUTCMGKFbR43SAfDkkzU+6STV/fcvVhB01/XXa37vv1+ntJwL3ZFHgAAomU6p9OunABg/Xreeeabq+PG6vV+/0H3my0EHJV/jWbYsdEceAQJgG3rGe8wxGp13nuoZZ6j6FUYNlwFUSyKYCRAAEVBQHHmkRhdcoHrhhapDhoTuD/+1Zk3oDrZGgAAF0PHitTHm33f5+MDw72ZCnFasUP3559CdbI0AAXJEQdGjh86Zjx6tW+vrVf2pqB49QveJrnjggdhePPcIECDDFBiHHqrAuOoq3XrFFTpnfsABoftDSs444957T4MZM0K3sz0ECJAhCozaWh1gbr5Zt9bVKTB4UTvb/Apj1iz9f159tVYeW7aE7mx7CBAgQh3XVRhjjDn3XFUfGCecwHUUgTnjjGtu1v9Dc7PGGzdq/Oefnf++D4imJv1ea6vG33+vOmeOAuOLL0JvXqkIECACur5it900uvRS1RtvVD388ND9ZVtbm+qvv3ZUZ5xxv/2mA/mKFRqvWqXx2rX6vbVrdfu6dcnbm5r00SLxvSZRbQQIEEDHi93GGGMuu0z19ttVDz44dH9xa2xU/fpr1R9+UF2ypKM644xbulQH+pUrQ3ecVwQIUEUKjnPO0eiuu1T9Zz8Vnb/OYeFC1U8/VV28WPWrr3SK548/QncKIUCACtKpqVNP1SmQe+7Rrf4zoQrEGWfcTz9pHubP1/ijj/TDhQu1UojnCmuUhgABykgrjP79Nbr/flV/ZXfeNTWpzpungHjnHR8YCojly0N3iPIiQIBu0ArDf+z4pEm69c47Vfv0Cd1fZSxbpoB47TVt9+uva/zhh7F+bwUqgwABUtBKw3+o4COPqB5/fOi+yst/hMbcuQqIOXMUEP7UE4qOAAFKoMDYfXeN7r1X9ZprVLN+Ad9ff6nOnq36zDOqixbF+hEaiAMBAuxAcqXx7LOqQ4eG7ivt1qi+/75WFE8+qVNQL72koPAXtgGlIUCA/0heAX7ttap+xdGzZ+j+usZfQDdnjgJj6lSdgvrmm9CdIR8IEMD4F8MHDtRo1izVU04J3VfXrFqloJg2TSuLJ57QysK/OwooLwIEhaYVx6hRGr3wgup++4XuqzT+bbEPPqj6+ONaYXAqCtVBgKBQFBjW6pn6DTfo1rvvVo34ezKcccb5LxS67TatMGbP1grjn39Ct4diIkBQCAqOXr00euwxHYD9hxbGyn943333qU6bphXGpk2hOwOMIUCQc3ptw3844euvqx59dOi+OudPPU2dqnrPPVphtLSE7gzoDAGCXNKK44gjNHr7bdUBA0L31TkfbJMnKzD4yA9kAwGCXNGK47jjNHrjDdV+/UL3lbR8uV7TuPpqnZKaNy90R0AaGb+CFhCtOMaM0Wsb/rukYwkO/5Wk06crOI4+muBAHrACQaYpOM47TyP/URyxXPC3dKkC45JLFBj++y2AfGAFgkzSqarTT9fouedUYwmOZ59VcIwYQXAgz1iBIFO04qit1eiVV1T9d4mH8uefCozLLlNgvPZa2H6A6iBAkAlacZx4okavvqrqPx03REPGGbd4sV5zOf98BcdPP4WeJ6CaOIWFqCk4hg/XgfrNN3XrnnuG7eqpp9TPyJF62y3BgWIiQBAlnarq21ejuXNV9947VDeqd9yhwLjySlX/abdAMXEKC1HRimPXXXWK6MUX9Ux/8ODqN2Kccc3Nuv+LL1ZgvPxy6PkBYkKAIC7WWGP9p8v6F8urralJfUyYoOD4+OPQ0wLEiABBROrrVS+6KMz9r1mjWlen4Pjqq9AzAsSMAEFEQgVHY6Nqba2Co6Eh9EwAWcCL6Cgw/019Z55JcABdR4CggHxwjB2r4Fi8OHRHQBYRICiQzZv17qrzz1dwfPll6I6ALCNAUCD19bpi/N13Q3cC5AEBgnxzxhk3ZYpWHE8/HbodIE8IEOTYggW6nuPWW0N3AuQRAYIcWr1adeJErTz++Sd0R0AeESDIkfZ21YsuUnD4IAFQCQQIcmTGDAXH+++H7gQoAgIEOfDjj6q33BK6E6BICBDkwOTJWnm0tITuBCgSAgQZ9uKLCo633grdCVBEBAgyqLVV13fccEPoToAiI0CQLc4442bO1BXlv/0Wuh2gyAgQZIP/hkBjjDFTp4ZuBwABgkx5+GGtPPwXPwEIiQBBBmzZojp9euhOAPyLAEHcnHHGzZ2rlcfKlaHbAfAvAgRxs8YaO3Nm6DYAbIsAQcRWrFD94IPQnQDYFgGCiM2erQsFnQvdCYBtESCIkzPOuDlzQrcBYPsIEMTFGWfcunV67YPvLAdiRoAgLtZYY+fN06kr//0eAGJEgCBC8+eH7gDAzhEgiNCiRaE7ALBzBAgi0tam10CWLAndCYCdI0AQB2eccd9+qyvO/UeXAIgZAYI4WGON9V9NCyALCBBExF95DiALCBDEwRlnHAECZAkBgjhYY41dvz50GwBKR4AgIi0toTsAUDoCBHFwxhnX2hq6DQClI0BQgk2bKn4X1lhj//479JYCKB0BghL8+mtl/77/uPZffgm9pQCAMnPOOec+/9yVW7trd+2ffRZ6+wAAFaID/dlnlz1AnHPOnXVW6O0DAFSYDvhTppRn5XHXXaG3BwBQZUqBK65QbWwsLTVWr1a9/PLQ/QPoPhu6AWSbAqFXL43GjFEdMiT5Ww0NqgsW6Iui2tpC9w0AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAyK7/ATO6t9N2I5PTAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDIyLTAzLTAxVDExOjQ1OjU1KzA4OjAw5vcxUwAAACV0RVh0ZGF0ZTptb2RpZnkAMjAyMi0wMy0wMVQxMTo0NTo1NSswODowMJeqie8AAABSdEVYdHN2ZzpiYXNlLXVyaQBmaWxlOi8vL2hvbWUvYWRtaW4vaWNvbi1mb250L3RtcC9pY29uX2lnaGV6d2JubWhiL25hdmlnYXRpb25fbGluZS5zdmc29Ka/AAAAAElFTkSuQmCC"})])])],4)])}var p=v(z,[["render",R],["styles",[x]]]);var u=plus.webview.currentWebview();if(u){let e=parseInt(u.id),t="template/__uniappopenlocation",a={};try{a=JSON.parse(u.__query__)}catch(o){}p.mpType="page";let n=Vue.createPageApp(p,{$store:getApp({allowDefault:!0}).$store,__pageId:e,__pagePath:t,__pageQuery:a});n.provide("__globalStyles",Vue.useCssStyles([...__uniConfig.styles,...p.styles||[]])),n.mount("#root")}})(); diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/__uniapppicker.js b/app/src/main/assets/apps/__UNI__FB2D473/www/__uniapppicker.js new file mode 100644 index 0000000..a654783 --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/__uniapppicker.js @@ -0,0 +1,33 @@ +"use weex:vue"; + +if (typeof Promise !== 'undefined' && !Promise.prototype.finally) { + Promise.prototype.finally = function(callback) { + const promise = this.constructor + return this.then( + value => promise.resolve(callback()).then(() => value), + reason => promise.resolve(callback()).then(() => { + throw reason + }) + ) + } +}; + +if (typeof uni !== 'undefined' && uni && uni.requireGlobal) { + const global = uni.requireGlobal() + ArrayBuffer = global.ArrayBuffer + Int8Array = global.Int8Array + Uint8Array = global.Uint8Array + Uint8ClampedArray = global.Uint8ClampedArray + Int16Array = global.Int16Array + Uint16Array = global.Uint16Array + Int32Array = global.Int32Array + Uint32Array = global.Uint32Array + Float32Array = global.Float32Array + Float64Array = global.Float64Array + BigInt64Array = global.BigInt64Array + BigUint64Array = global.BigUint64Array +}; + + +(()=>{var D=Object.create;var b=Object.defineProperty;var C=Object.getOwnPropertyDescriptor;var x=Object.getOwnPropertyNames;var M=Object.getPrototypeOf,I=Object.prototype.hasOwnProperty;var V=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var L=(e,t,a,i)=>{if(t&&typeof t=="object"||typeof t=="function")for(let r of x(t))!I.call(e,r)&&r!==a&&b(e,r,{get:()=>t[r],enumerable:!(i=C(t,r))||i.enumerable});return e};var N=(e,t,a)=>(a=e!=null?D(M(e)):{},L(t||!e||!e.__esModule?b(a,"default",{value:e,enumerable:!0}):a,e));var A=V((U,v)=>{v.exports=Vue});var _={data(){return{locale:"en",fallbackLocale:"en",localization:{en:{done:"OK",cancel:"Cancel"},zh:{done:"\u5B8C\u6210",cancel:"\u53D6\u6D88"},"zh-hans":{},"zh-hant":{},messages:{}},localizationTemplate:{}}},onLoad(){this.initLocale()},created(){this.initLocale()},methods:{initLocale(){if(this.__initLocale)return;this.__initLocale=!0;let e=(plus.webview.currentWebview().extras||{}).data||{};if(e.messages&&(this.localization.messages=e.messages),e.locale){this.locale=e.locale.toLowerCase();return}let t={chs:"hans",cn:"hans",sg:"hans",cht:"hant",tw:"hant",hk:"hant",mo:"hant"},a=plus.os.language.toLowerCase().split("/")[0].replace("_","-").split("-"),i=a[1];i&&(a[1]=t[i]||i),a.length=a.length>2?2:a.length,this.locale=a.join("-")},localize(e){let t=this.locale,a=t.split("-")[0],i=this.fallbackLocale,r=n=>Object.assign({},this.localization[n],(this.localizationTemplate||{})[n]);return r("messages")[e]||r(t)[e]||r(a)[e]||r(i)[e]||e}}},k={onLoad(){this.initMessage()},methods:{initMessage(){let{from:e,callback:t,runtime:a,data:i={},useGlobalEvent:r}=plus.webview.currentWebview().extras||{};this.__from=e,this.__runtime=a,this.__page=plus.webview.currentWebview().id,this.__useGlobalEvent=r,this.data=JSON.parse(JSON.stringify(i)),plus.key.addEventListener("backbutton",()=>{typeof this.onClose=="function"?this.onClose():plus.webview.currentWebview().close("auto")});let n=this,c=function(o){let u=o.data&&o.data.__message;!u||n.__onMessageCallback&&n.__onMessageCallback(u.data)};if(this.__useGlobalEvent)weex.requireModule("globalEvent").addEventListener("plusMessage",c);else{let o=new BroadcastChannel(this.__page);o.onmessage=c}},postMessage(e={},t=!1){let a=JSON.parse(JSON.stringify({__message:{__page:this.__page,data:e,keep:t}})),i=this.__from;if(this.__runtime==="v8")this.__useGlobalEvent?plus.webview.postMessageToUniNView(a,i):new BroadcastChannel(i).postMessage(a);else{let r=plus.webview.getWebviewById(i);r&&r.evalJS(`__plusMessage&&__plusMessage(${JSON.stringify({data:a})})`)}},onMessage(e){this.__onMessageCallback=e}}};var s=N(A());var m=(e,t)=>{let a=e.__vccOpts||e;for(let[i,r]of t)a[i]=r;return a};var d=e=>e>9?e:"0"+e;function w({date:e=new Date,mode:t="date"}){return t==="time"?d(e.getHours())+":"+d(e.getMinutes()):e.getFullYear()+"-"+d(e.getMonth()+1)+"-"+d(e.getDate())}var O={data(){return{darkmode:!1,theme:"light"}},onLoad(){this.initDarkmode()},created(){this.initDarkmode()},computed:{isDark(){return this.theme==="dark"}},methods:{initDarkmode(){if(this.__init)return;this.__init=!0;let e=(plus.webview.currentWebview().extras||{}).data||{};this.darkmode=e.darkmode||!1,this.darkmode&&(this.theme=e.theme||"light")}}},z={data(){return{safeAreaInsets:{left:0,right:0,top:0,bottom:0}}},onLoad(){this.initSafeAreaInsets()},created(){this.initSafeAreaInsets()},methods:{initSafeAreaInsets(){if(this.__initSafeAreaInsets)return;this.__initSafeAreaInsets=!0;let e=plus.webview.currentWebview();e.addEventListener("resize",()=>{setTimeout(()=>{this.updateSafeAreaInsets(e)},20)}),this.updateSafeAreaInsets(e)},updateSafeAreaInsets(e){let t=e.getSafeAreaInsets(),a=this.safeAreaInsets;Object.keys(a).forEach(i=>{a[i]=t[i]})}}},Y={content:{"":{position:"absolute",top:0,left:0,bottom:0,right:0}},"uni-mask":{"":{position:"absolute",top:0,left:0,bottom:0,right:0,backgroundColor:"rgba(0,0,0,0.4)",opacity:0,transitionProperty:"opacity",transitionDuration:200,transitionTimingFunction:"linear"}},"uni-mask-visible":{"":{opacity:1}},"uni-picker":{"":{position:"absolute",left:0,bottom:0,right:0,backgroundColor:"#ffffff",color:"#000000",flexDirection:"column",transform:"translateY(295px)"}},"uni-picker-header":{"":{height:45,borderBottomWidth:.5,borderBottomColor:"#C8C9C9",backgroundColor:"#FFFFFF",fontSize:20}},"uni-picker-action":{"":{position:"absolute",textAlign:"center",top:0,height:45,paddingTop:0,paddingRight:14,paddingBottom:0,paddingLeft:14,fontSize:17,lineHeight:45}},"uni-picker-action-cancel":{"":{left:0,color:"#888888"}},"uni-picker-action-confirm":{"":{right:0,color:"#007aff"}},"uni-picker-content":{"":{flex:1}},"uni-picker-dark":{"":{backgroundColor:"#232323"}},"uni-picker-header-dark":{"":{backgroundColor:"#232323",borderBottomColor:"rgba(255,255,255,0.05)"}},"uni-picker-action-cancel-dark":{"":{color:"rgba(255,255,255,0.8)"}},"@TRANSITION":{"uni-mask":{property:"opacity",duration:200,timingFunction:"linear"}}};function S(){if(this.mode===l.TIME)return"00:00";if(this.mode===l.DATE){let e=new Date().getFullYear()-61;switch(this.fields){case h.YEAR:return e;case h.MONTH:return e+"-01";default:return e+"-01-01"}}return""}function E(){if(this.mode===l.TIME)return"23:59";if(this.mode===l.DATE){let e=new Date().getFullYear()+61;switch(this.fields){case h.YEAR:return e;case h.MONTH:return e+"-12";default:return e+"-12-31"}}return""}function F(e){let t=new Date().getFullYear(),a=t-61,i=t+61;if(e.start){let r=new Date(e.start).getFullYear();!isNaN(r)&&ri&&(i=r)}return{start:a,end:i}}var T=weex.requireModule("animation"),l={SELECTOR:"selector",MULTISELECTOR:"multiSelector",TIME:"time",DATE:"date",REGION:"region"},h={YEAR:"year",MONTH:"month",DAY:"day"},g=!1,R={name:"Picker",mixins:[_,z,O],props:{pageId:{type:Number,default:0},range:{type:Array,default(){return[]}},rangeKey:{type:String,default:""},value:{type:[Number,String,Array],default:0},mode:{type:String,default:l.SELECTOR},fields:{type:String,default:h.DAY},start:{type:String,default:S},end:{type:String,default:E},disabled:{type:[Boolean,String],default:!1},visible:{type:Boolean,default:!1}},data(){return{valueSync:null,timeArray:[],dateArray:[],valueArray:[],oldValueArray:[],fontSize:16,height:261,android:weex.config.env.platform.toLowerCase()==="android"}},computed:{rangeArray(){var e=this.range;switch(this.mode){case l.SELECTOR:return[e];case l.MULTISELECTOR:return e;case l.TIME:return this.timeArray;case l.DATE:{let t=this.dateArray;switch(this.fields){case h.YEAR:return[t[0]];case h.MONTH:return[t[0],t[1]];default:return[t[0],t[1],t[2]]}}}return[]},startArray(){return this._getDateValueArray(this.start,S.bind(this)())},endArray(){return this._getDateValueArray(this.end,E.bind(this)())},textMaxLength(){return Math.floor(Math.min(weex.config.env.deviceWidth,weex.config.env.deviceHeight)/(this.fontSize*weex.config.env.scale+1)/this.rangeArray.length)},maskStyle(){return{opacity:this.visible?1:0,"background-color":this.android?"rgba(0, 0, 0, 0.6)":"rgba(0, 0, 0, 0.4)"}},pickerViewIndicatorStyle(){return`height: 34px;border-color:${this.isDark?"rgba(255, 255, 255, 0.05)":"#C8C9C9"};border-top-width:0.5px;border-bottom-width:0.5px;`},pickerViewColumnTextStyle(){return{fontSize:this.fontSize+"px","line-height":"34px","text-align":"center",color:this.isDark?"rgba(255, 255, 255, 0.8)":"#000"}},pickerViewMaskTopStyle(){return this.isDark?"background-image: linear-gradient(to bottom, rgba(35, 35, 35, 0.95), rgba(35, 35, 35, 0.6));":""},pickerViewMaskBottomStyle(){return this.isDark?"background-image: linear-gradient(to top,rgba(35, 35, 35, 0.95), rgba(35, 35, 35, 0.6));":""}},watch:{value(){this._setValueSync()},mode(){this._setValueSync()},range(){this._setValueSync()},valueSync(){this._setValueArray(),g=!0},valueArray(e){if(this.mode===l.TIME||this.mode===l.DATE){let t=this.mode===l.TIME?this._getTimeValue:this._getDateValue,a=this.valueArray,i=this.startArray,r=this.endArray;if(this.mode===l.DATE){let n=this.dateArray,c=n[2].length,o=Number(n[2][a[2]])||1,u=new Date(`${n[0][a[0]]}/${n[1][a[1]]}/${o}`).getDate();ut(r)&&this._cloneArray(a,r)}e.forEach((t,a)=>{t!==this.oldValueArray[a]&&(this.oldValueArray[a]=t,this.mode===l.MULTISELECTOR&&this.$emit("columnchange",{column:a,value:t}))})},visible(e){e?setTimeout(()=>{T.transition(this.$refs.picker,{styles:{transform:"translateY(0)"},duration:200})},20):T.transition(this.$refs.picker,{styles:{transform:`translateY(${283+this.safeAreaInsets.bottom}px)`},duration:200})}},created(){this._createTime(),this._createDate(),this._setValueSync()},methods:{getTexts(e,t){let a=this.textMaxLength;return e.map(i=>{let r=String(typeof i=="object"?i[this.rangeKey]||"":this._l10nItem(i,t));if(a>0&&r.length>a){let n=0,c=0;for(let o=0;o127||u===94?n+=1:n+=.65,n<=a-1&&(c=o),n>=a)return o===r.length-1?r:r.substr(0,c+1)+"\u2026"}}return r||" "}).join(` +`)},_createTime(){var e=[],t=[];e.splice(0,e.length);for(let a=0;a<24;a++)e.push((a<10?"0":"")+a);t.splice(0,t.length);for(let a=0;a<60;a++)t.push((a<10?"0":"")+a);this.timeArray.push(e,t)},_createDate(){var e=[],t=F(this);for(let r=t.start,n=t.end;r<=n;r++)e.push(String(r));var a=[];for(let r=1;r<=12;r++)a.push((r<10?"0":"")+r);var i=[];for(let r=1;r<=31;r++)i.push((r<10?"0":"")+r);this.dateArray.push(e,a,i)},_getTimeValue(e){return e[0]*60+e[1]},_getDateValue(e){return e[0]*31*12+(e[1]||0)*31+(e[2]||0)},_cloneArray(e,t){for(let a=0;ac?0:n)}break;case l.TIME:case l.DATE:this.valueSync=String(e);break;default:{let a=Number(e);this.valueSync=a<0?0:a;break}}this.$nextTick(()=>{!g&&this._setValueArray()})},_setValueArray(){g=!0;var e=this.valueSync,t;switch(this.mode){case l.MULTISELECTOR:t=[...e];break;case l.TIME:t=this._getDateValueArray(e,w({mode:l.TIME}));break;case l.DATE:t=this._getDateValueArray(e,w({mode:l.DATE}));break;default:t=[e];break}this.oldValueArray=[...t],this.valueArray=[...t]},_getValue(){var e=this.valueArray;switch(this.mode){case l.SELECTOR:return e[0];case l.MULTISELECTOR:return e.map(t=>t);case l.TIME:return this.valueArray.map((t,a)=>this.timeArray[a][t]).join(":");case l.DATE:return this.valueArray.map((t,a)=>this.dateArray[a][t]).join("-")}},_getDateValueArray(e,t){let a=this.mode===l.DATE?"-":":",i=this.mode===l.DATE?this.dateArray:this.timeArray,r=3;switch(this.fields){case h.YEAR:r=1;break;case h.MONTH:r=2;break}let n=String(e).split(a),c=[];for(let o=0;o=0&&(c=t?this._getDateValueArray(t):c.map(()=>0)),c},_change(){this.$emit("change",{value:this._getValue()})},_cancel(){this.$emit("cancel")},_pickerViewChange(e){this.valueArray=this._l10nColumn(e.detail.value,!0)},_l10nColumn(e,t){if(this.mode===l.DATE){let a=this.locale;if(!a.startsWith("zh"))switch(this.fields){case h.YEAR:return e;case h.MONTH:return[e[1],e[0]];default:switch(a){case"es":case"fr":return[e[2],e[1],e[0]];default:return t?[e[2],e[0],e[1]]:[e[1],e[2],e[0]]}}}return e},_l10nItem(e,t){if(this.mode===l.DATE){let a=this.locale;if(a.startsWith("zh"))return e+["\u5E74","\u6708","\u65E5"][t];if(this.fields!==h.YEAR&&t===(this.fields!==h.MONTH&&(a==="es"||a==="fr")?1:0)){let i;switch(a){case"es":i=["enero","febrero","marzo","abril","mayo","junio","\u200B\u200Bjulio","agosto","septiembre","octubre","noviembre","diciembre"];break;case"fr":i=["janvier","f\xE9vrier","mars","avril","mai","juin","juillet","ao\xFBt","septembre","octobre","novembre","d\xE9cembre"];break;default:i=["January","February","March","April","May","June","July","August","September","October","November","December"];break}return i[Number(e)-1]}}return e}}};function B(e,t,a,i,r,n){let c=(0,s.resolveComponent)("picker-view-column"),o=(0,s.resolveComponent)("picker-view");return(0,s.openBlock)(),(0,s.createElementBlock)("div",{class:(0,s.normalizeClass)(["content",{dark:e.isDark}])},[(0,s.createElementVNode)("div",{ref:"mask",style:(0,s.normalizeStyle)(n.maskStyle),class:"uni-mask",onClick:t[0]||(t[0]=(...u)=>n._cancel&&n._cancel(...u))},null,4),(0,s.createElementVNode)("div",{style:(0,s.normalizeStyle)(`padding-bottom:${e.safeAreaInsets.bottom}px;height:${r.height+e.safeAreaInsets.bottom}px;`),ref:"picker",class:(0,s.normalizeClass)(["uni-picker",{"uni-picker-dark":e.isDark}])},[(0,s.createElementVNode)("div",{class:(0,s.normalizeClass)(["uni-picker-header",{"uni-picker-header-dark":e.isDark}])},[(0,s.createElementVNode)("u-text",{style:(0,s.normalizeStyle)(`left:${e.safeAreaInsets.left}px`),class:(0,s.normalizeClass)(["uni-picker-action uni-picker-action-cancel",{"uni-picker-action-cancel-dark":e.isDark}]),onClick:t[1]||(t[1]=(...u)=>n._cancel&&n._cancel(...u))},(0,s.toDisplayString)(e.localize("cancel")),7),(0,s.createElementVNode)("u-text",{style:(0,s.normalizeStyle)(`right:${e.safeAreaInsets.right}px`),class:"uni-picker-action uni-picker-action-confirm",onClick:t[2]||(t[2]=(...u)=>n._change&&n._change(...u))},(0,s.toDisplayString)(e.localize("done")),5)],2),a.visible?((0,s.openBlock)(),(0,s.createBlock)(o,{key:0,style:(0,s.normalizeStyle)(`margin-left:${e.safeAreaInsets.left}px`),height:"216","indicator-style":n.pickerViewIndicatorStyle,"mask-top-style":n.pickerViewMaskTopStyle,"mask-bottom-style":n.pickerViewMaskBottomStyle,value:n._l10nColumn(r.valueArray),class:"uni-picker-content",onChange:n._pickerViewChange},{default:(0,s.withCtx)(()=>[((0,s.openBlock)(!0),(0,s.createElementBlock)(s.Fragment,null,(0,s.renderList)(n._l10nColumn(n.rangeArray),(u,y)=>((0,s.openBlock)(),(0,s.createBlock)(c,{length:u.length,key:y},{default:(0,s.withCtx)(()=>[(0,s.createCommentVNode)(" iOS\u6E32\u67D3\u901F\u5EA6\u6709\u95EE\u9898\u4F7F\u7528\u5355\u4E2Atext\u4F18\u5316 "),(0,s.createElementVNode)("u-text",{class:"uni-picker-item",style:(0,s.normalizeStyle)(n.pickerViewColumnTextStyle)},(0,s.toDisplayString)(n.getTexts(u,y)),5),(0,s.createCommentVNode)(` {{ typeof item==='object'?item[rangeKey]||'':_l10nItem(item) }} `)]),_:2},1032,["length"]))),128))]),_:1},8,["style","indicator-style","mask-top-style","mask-bottom-style","value","onChange"])):(0,s.createCommentVNode)("v-if",!0)],6)],2)}var j=m(R,[["render",B],["styles",[Y]]]),W={page:{"":{flex:1}}},H={mixins:[k],components:{picker:j},data(){return{range:[],rangeKey:"",value:0,mode:"selector",fields:"day",start:"",end:"",disabled:!1,visible:!1}},onLoad(){this.data===null?this.postMessage({event:"created"},!0):this.showPicker(this.data),this.onMessage(e=>{this.showPicker(e)})},onReady(){this.$nextTick(()=>{this.visible=!0})},methods:{showPicker(e={}){let t=e.column;for(let a in e)a!=="column"&&(typeof t=="number"?this.$set(this.$data[a],t,e[a]):this.$data[a]=e[a])},close(e,{value:t=-1}={}){this.visible=!1,setTimeout(()=>{this.postMessage({event:e,value:t})},210)},onClose(){this.close("cancel")},columnchange({column:e,value:t}){this.$set(this.value,e,t),this.postMessage({event:"columnchange",column:e,value:t},!0)}}};function J(e,t,a,i,r,n){let c=(0,s.resolveComponent)("picker");return(0,s.openBlock)(),(0,s.createElementBlock)("scroll-view",{scrollY:!0,showScrollbar:!0,enableBackToTop:!0,bubble:"true",style:{flexDirection:"column"}},[(0,s.createElementVNode)("view",{class:"page"},[(0,s.createVNode)(c,{range:r.range,rangeKey:r.rangeKey,value:r.value,mode:r.mode,fields:r.fields,start:r.start,end:r.end,disabled:r.disabled,visible:r.visible,onChange:t[0]||(t[0]=o=>n.close("change",o)),onCancel:t[1]||(t[1]=o=>n.close("cancel",o)),onColumnchange:n.columnchange},null,8,["range","rangeKey","value","mode","fields","start","end","disabled","visible","onColumnchange"])])])}var f=m(H,[["render",J],["styles",[W]]]);var p=plus.webview.currentWebview();if(p){let e=parseInt(p.id),t="template/__uniapppicker",a={};try{a=JSON.parse(p.__query__)}catch(r){}f.mpType="page";let i=Vue.createPageApp(f,{$store:getApp({allowDefault:!0}).$store,__pageId:e,__pagePath:t,__pageQuery:a});i.provide("__globalStyles",Vue.useCssStyles([...__uniConfig.styles,...f.styles||[]])),i.mount("#root")}})(); diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/__uniappquill.js b/app/src/main/assets/apps/__UNI__FB2D473/www/__uniappquill.js new file mode 100644 index 0000000..d9f46b8 --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/__uniappquill.js @@ -0,0 +1,8 @@ +/*! + * Quill Editor v1.3.7 + * https://quilljs.com/ + * Copyright (c) 2014, Jason Chen + * Copyright (c) 2013, salesforce.com + */ +!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.Quill=e():t.Quill=e()}("undefined"!=typeof self?self:this,function(){return function(t){function e(r){if(n[r])return n[r].exports;var o=n[r]={i:r,l:!1,exports:{}};return t[r].call(o.exports,o,o.exports,e),o.l=!0,o.exports}var n={};return e.m=t,e.c=n,e.d=function(t,n,r){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:r})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=45)}([function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(17),o=n(18),i=n(19),l=n(48),a=n(49),s=n(50),u=n(51),c=n(52),f=n(11),h=n(29),p=n(30),d=n(28),y=n(1),v={Scope:y.Scope,create:y.create,find:y.find,query:y.query,register:y.register,Container:r.default,Format:o.default,Leaf:i.default,Embed:u.default,Scroll:l.default,Block:s.default,Inline:a.default,Text:c.default,Attributor:{Attribute:f.default,Class:h.default,Style:p.default,Store:d.default}};e.default=v},function(t,e,n){"use strict";function r(t,e){var n=i(t);if(null==n)throw new s("Unable to create "+t+" blot");var r=n;return new r(t instanceof Node||t.nodeType===Node.TEXT_NODE?t:r.create(e),e)}function o(t,n){return void 0===n&&(n=!1),null==t?null:null!=t[e.DATA_KEY]?t[e.DATA_KEY].blot:n?o(t.parentNode,n):null}function i(t,e){void 0===e&&(e=p.ANY);var n;if("string"==typeof t)n=h[t]||u[t];else if(t instanceof Text||t.nodeType===Node.TEXT_NODE)n=h.text;else if("number"==typeof t)t&p.LEVEL&p.BLOCK?n=h.block:t&p.LEVEL&p.INLINE&&(n=h.inline);else if(t instanceof HTMLElement){var r=(t.getAttribute("class")||"").split(/\s+/);for(var o in r)if(n=c[r[o]])break;n=n||f[t.tagName]}return null==n?null:e&p.LEVEL&n.scope&&e&p.TYPE&n.scope?n:null}function l(){for(var t=[],e=0;e1)return t.map(function(t){return l(t)});var n=t[0];if("string"!=typeof n.blotName&&"string"!=typeof n.attrName)throw new s("Invalid definition");if("abstract"===n.blotName)throw new s("Cannot register abstract class");if(h[n.blotName||n.attrName]=n,"string"==typeof n.keyName)u[n.keyName]=n;else if(null!=n.className&&(c[n.className]=n),null!=n.tagName){Array.isArray(n.tagName)?n.tagName=n.tagName.map(function(t){return t.toUpperCase()}):n.tagName=n.tagName.toUpperCase();var r=Array.isArray(n.tagName)?n.tagName:[n.tagName];r.forEach(function(t){null!=f[t]&&null!=n.className||(f[t]=n)})}return n}var a=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var s=function(t){function e(e){var n=this;return e="[Parchment] "+e,n=t.call(this,e)||this,n.message=e,n.name=n.constructor.name,n}return a(e,t),e}(Error);e.ParchmentError=s;var u={},c={},f={},h={};e.DATA_KEY="__blot";var p;!function(t){t[t.TYPE=3]="TYPE",t[t.LEVEL=12]="LEVEL",t[t.ATTRIBUTE=13]="ATTRIBUTE",t[t.BLOT=14]="BLOT",t[t.INLINE=7]="INLINE",t[t.BLOCK=11]="BLOCK",t[t.BLOCK_BLOT=10]="BLOCK_BLOT",t[t.INLINE_BLOT=6]="INLINE_BLOT",t[t.BLOCK_ATTRIBUTE=9]="BLOCK_ATTRIBUTE",t[t.INLINE_ATTRIBUTE=5]="INLINE_ATTRIBUTE",t[t.ANY=15]="ANY"}(p=e.Scope||(e.Scope={})),e.create=r,e.find=o,e.query=i,e.register=l},function(t,e){"use strict";var n=Object.prototype.hasOwnProperty,r=Object.prototype.toString,o=Object.defineProperty,i=Object.getOwnPropertyDescriptor,l=function(t){return"function"==typeof Array.isArray?Array.isArray(t):"[object Array]"===r.call(t)},a=function(t){if(!t||"[object Object]"!==r.call(t))return!1;var e=n.call(t,"constructor"),o=t.constructor&&t.constructor.prototype&&n.call(t.constructor.prototype,"isPrototypeOf");if(t.constructor&&!e&&!o)return!1;var i;for(i in t);return void 0===i||n.call(t,i)},s=function(t,e){o&&"__proto__"===e.name?o(t,e.name,{enumerable:!0,configurable:!0,value:e.newValue,writable:!0}):t[e.name]=e.newValue},u=function(t,e){if("__proto__"===e){if(!n.call(t,e))return;if(i)return i(t,e).value}return t[e]};t.exports=function t(){var e,n,r,o,i,c,f=arguments[0],h=1,p=arguments.length,d=!1;for("boolean"==typeof f&&(d=f,f=arguments[1]||{},h=2),(null==f||"object"!=typeof f&&"function"!=typeof f)&&(f={});h1&&void 0!==arguments[1]?arguments[1]:{};return null==t?e:("function"==typeof t.formats&&(e=(0,f.default)(e,t.formats())),null==t.parent||"scroll"==t.parent.blotName||t.parent.statics.scope!==t.statics.scope?e:a(t.parent,e))}Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.BlockEmbed=e.bubbleFormats=void 0;var s=function(){function t(t,e){for(var n=0;n0&&(t1&&void 0!==arguments[1]&&arguments[1];if(n&&(0===t||t>=this.length()-1)){var r=this.clone();return 0===t?(this.parent.insertBefore(r,this),this):(this.parent.insertBefore(r,this.next),r)}var o=u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"split",this).call(this,t,n);return this.cache={},o}}]),e}(y.default.Block);x.blotName="block",x.tagName="P",x.defaultChild="break",x.allowedChildren=[m.default,y.default.Embed,O.default],e.bubbleFormats=a,e.BlockEmbed=w,e.default=x},function(t,e,n){var r=n(54),o=n(12),i=n(2),l=n(20),a=String.fromCharCode(0),s=function(t){Array.isArray(t)?this.ops=t:null!=t&&Array.isArray(t.ops)?this.ops=t.ops:this.ops=[]};s.prototype.insert=function(t,e){var n={};return 0===t.length?this:(n.insert=t,null!=e&&"object"==typeof e&&Object.keys(e).length>0&&(n.attributes=e),this.push(n))},s.prototype.delete=function(t){return t<=0?this:this.push({delete:t})},s.prototype.retain=function(t,e){if(t<=0)return this;var n={retain:t};return null!=e&&"object"==typeof e&&Object.keys(e).length>0&&(n.attributes=e),this.push(n)},s.prototype.push=function(t){var e=this.ops.length,n=this.ops[e-1];if(t=i(!0,{},t),"object"==typeof n){if("number"==typeof t.delete&&"number"==typeof n.delete)return this.ops[e-1]={delete:n.delete+t.delete},this;if("number"==typeof n.delete&&null!=t.insert&&(e-=1,"object"!=typeof(n=this.ops[e-1])))return this.ops.unshift(t),this;if(o(t.attributes,n.attributes)){if("string"==typeof t.insert&&"string"==typeof n.insert)return this.ops[e-1]={insert:n.insert+t.insert},"object"==typeof t.attributes&&(this.ops[e-1].attributes=t.attributes),this;if("number"==typeof t.retain&&"number"==typeof n.retain)return this.ops[e-1]={retain:n.retain+t.retain},"object"==typeof t.attributes&&(this.ops[e-1].attributes=t.attributes),this}}return e===this.ops.length?this.ops.push(t):this.ops.splice(e,0,t),this},s.prototype.chop=function(){var t=this.ops[this.ops.length-1];return t&&t.retain&&!t.attributes&&this.ops.pop(),this},s.prototype.filter=function(t){return this.ops.filter(t)},s.prototype.forEach=function(t){this.ops.forEach(t)},s.prototype.map=function(t){return this.ops.map(t)},s.prototype.partition=function(t){var e=[],n=[];return this.forEach(function(r){(t(r)?e:n).push(r)}),[e,n]},s.prototype.reduce=function(t,e){return this.ops.reduce(t,e)},s.prototype.changeLength=function(){return this.reduce(function(t,e){return e.insert?t+l.length(e):e.delete?t-e.delete:t},0)},s.prototype.length=function(){return this.reduce(function(t,e){return t+l.length(e)},0)},s.prototype.slice=function(t,e){t=t||0,"number"!=typeof e&&(e=1/0);for(var n=[],r=l.iterator(this.ops),o=0;o0&&n.next(i.retain-a)}for(var u=new s(r);e.hasNext()||n.hasNext();)if("insert"===n.peekType())u.push(n.next());else if("delete"===e.peekType())u.push(e.next());else{var c=Math.min(e.peekLength(),n.peekLength()),f=e.next(c),h=n.next(c);if("number"==typeof h.retain){var p={};"number"==typeof f.retain?p.retain=c:p.insert=f.insert;var d=l.attributes.compose(f.attributes,h.attributes,"number"==typeof f.retain);if(d&&(p.attributes=d),u.push(p),!n.hasNext()&&o(u.ops[u.ops.length-1],p)){var y=new s(e.rest());return u.concat(y).chop()}}else"number"==typeof h.delete&&"number"==typeof f.retain&&u.push(h)}return u.chop()},s.prototype.concat=function(t){var e=new s(this.ops.slice());return t.ops.length>0&&(e.push(t.ops[0]),e.ops=e.ops.concat(t.ops.slice(1))),e},s.prototype.diff=function(t,e){if(this.ops===t.ops)return new s;var n=[this,t].map(function(e){return e.map(function(n){if(null!=n.insert)return"string"==typeof n.insert?n.insert:a;var r=e===t?"on":"with";throw new Error("diff() called "+r+" non-document")}).join("")}),i=new s,u=r(n[0],n[1],e),c=l.iterator(this.ops),f=l.iterator(t.ops);return u.forEach(function(t){for(var e=t[1].length;e>0;){var n=0;switch(t[0]){case r.INSERT:n=Math.min(f.peekLength(),e),i.push(f.next(n));break;case r.DELETE:n=Math.min(e,c.peekLength()),c.next(n),i.delete(n);break;case r.EQUAL:n=Math.min(c.peekLength(),f.peekLength(),e);var a=c.next(n),s=f.next(n);o(a.insert,s.insert)?i.retain(n,l.attributes.diff(a.attributes,s.attributes)):i.push(s).delete(n)}e-=n}}),i.chop()},s.prototype.eachLine=function(t,e){e=e||"\n";for(var n=l.iterator(this.ops),r=new s,o=0;n.hasNext();){if("insert"!==n.peekType())return;var i=n.peek(),a=l.length(i)-n.peekLength(),u="string"==typeof i.insert?i.insert.indexOf(e,a)-a:-1;if(u<0)r.push(n.next());else if(u>0)r.push(n.next(u));else{if(!1===t(r,n.next(1).attributes||{},o))return;o+=1,r=new s}}r.length()>0&&t(r,{},o)},s.prototype.transform=function(t,e){if(e=!!e,"number"==typeof t)return this.transformPosition(t,e);for(var n=l.iterator(this.ops),r=l.iterator(t.ops),o=new s;n.hasNext()||r.hasNext();)if("insert"!==n.peekType()||!e&&"insert"===r.peekType())if("insert"===r.peekType())o.push(r.next());else{var i=Math.min(n.peekLength(),r.peekLength()),a=n.next(i),u=r.next(i);if(a.delete)continue;u.delete?o.push(u):o.retain(i,l.attributes.transform(a.attributes,u.attributes,e))}else o.retain(l.length(n.next()));return o.chop()},s.prototype.transformPosition=function(t,e){e=!!e;for(var n=l.iterator(this.ops),r=0;n.hasNext()&&r<=t;){var o=n.peekLength(),i=n.peekType();n.next(),"delete"!==i?("insert"===i&&(r0){var n=this.parent.isolate(this.offset(),this.length());this.moveChildren(n),n.wrap(this)}}}],[{key:"compare",value:function(t,n){var r=e.order.indexOf(t),o=e.order.indexOf(n);return r>=0||o>=0?r-o:t===n?0:t0){var a,s=[g.default.events.TEXT_CHANGE,l,i,e];if((a=this.emitter).emit.apply(a,[g.default.events.EDITOR_CHANGE].concat(s)),e!==g.default.sources.SILENT){var c;(c=this.emitter).emit.apply(c,s)}}return l}function s(t,e,n,r,o){var i={};return"number"==typeof t.index&&"number"==typeof t.length?"number"!=typeof e?(o=r,r=n,n=e,e=t.length,t=t.index):(e=t.length,t=t.index):"number"!=typeof e&&(o=r,r=n,n=e,e=0),"object"===(void 0===n?"undefined":c(n))?(i=n,o=r):"string"==typeof n&&(null!=r?i[n]=r:o=n),o=o||g.default.sources.API,[t,e,i,o]}function u(t,e,n,r){if(null==t)return null;var o=void 0,i=void 0;if(e instanceof d.default){var l=[t.index,t.index+t.length].map(function(t){return e.transformPosition(t,r!==g.default.sources.USER)}),a=f(l,2);o=a[0],i=a[1]}else{var s=[t.index,t.index+t.length].map(function(t){return t=0?t+n:Math.max(e,t+n)}),u=f(s,2);o=u[0],i=u[1]}return new x.Range(o,i-o)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.overload=e.expandConfig=void 0;var c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},f=function(){function t(t,e){var n=[],r=!0,o=!1,i=void 0;try{for(var l,a=t[Symbol.iterator]();!(r=(l=a.next()).done)&&(n.push(l.value),!e||n.length!==e);r=!0);}catch(t){o=!0,i=t}finally{try{!r&&a.return&&a.return()}finally{if(o)throw i}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),h=function(){function t(t,e){for(var n=0;n1&&void 0!==arguments[1]?arguments[1]:{};if(i(this,t),this.options=l(e,r),this.container=this.options.container,null==this.container)return P.error("Invalid Quill container",e);this.options.debug&&t.debug(this.options.debug);var o=this.container.innerHTML.trim();this.container.classList.add("ql-container"),this.container.innerHTML="",this.container.__quill=this,this.root=this.addContainer("ql-editor"),this.root.classList.add("ql-blank"),this.root.setAttribute("data-gramm",!1),this.scrollingContainer=this.options.scrollingContainer||this.root,this.emitter=new g.default,this.scroll=w.default.create(this.root,{emitter:this.emitter,whitelist:this.options.formats}),this.editor=new v.default(this.scroll),this.selection=new k.default(this.scroll,this.emitter),this.theme=new this.options.theme(this,this.options),this.keyboard=this.theme.addModule("keyboard"),this.clipboard=this.theme.addModule("clipboard"),this.history=this.theme.addModule("history"),this.theme.init(),this.emitter.on(g.default.events.EDITOR_CHANGE,function(t){t===g.default.events.TEXT_CHANGE&&n.root.classList.toggle("ql-blank",n.editor.isBlank())}),this.emitter.on(g.default.events.SCROLL_UPDATE,function(t,e){var r=n.selection.lastRange,o=r&&0===r.length?r.index:void 0;a.call(n,function(){return n.editor.update(null,e,o)},t)});var s=this.clipboard.convert("
"+o+"


");this.setContents(s),this.history.clear(),this.options.placeholder&&this.root.setAttribute("data-placeholder",this.options.placeholder),this.options.readOnly&&this.disable()}return h(t,null,[{key:"debug",value:function(t){!0===t&&(t="log"),A.default.level(t)}},{key:"find",value:function(t){return t.__quill||w.default.find(t)}},{key:"import",value:function(t){return null==this.imports[t]&&P.error("Cannot import "+t+". Are you sure it was registered?"),this.imports[t]}},{key:"register",value:function(t,e){var n=this,r=arguments.length>2&&void 0!==arguments[2]&&arguments[2];if("string"!=typeof t){var o=t.attrName||t.blotName;"string"==typeof o?this.register("formats/"+o,t,e):Object.keys(t).forEach(function(r){n.register(r,t[r],e)})}else null==this.imports[t]||r||P.warn("Overwriting "+t+" with",e),this.imports[t]=e,(t.startsWith("blots/")||t.startsWith("formats/"))&&"abstract"!==e.blotName?w.default.register(e):t.startsWith("modules")&&"function"==typeof e.register&&e.register()}}]),h(t,[{key:"addContainer",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;if("string"==typeof t){var n=t;t=document.createElement("div"),t.classList.add(n)}return this.container.insertBefore(t,e),t}},{key:"blur",value:function(){this.selection.setRange(null)}},{key:"deleteText",value:function(t,e,n){var r=this,o=s(t,e,n),i=f(o,4);return t=i[0],e=i[1],n=i[3],a.call(this,function(){return r.editor.deleteText(t,e)},n,t,-1*e)}},{key:"disable",value:function(){this.enable(!1)}},{key:"enable",value:function(){var t=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];this.scroll.enable(t),this.container.classList.toggle("ql-disabled",!t)}},{key:"focus",value:function(){var t=this.scrollingContainer.scrollTop;this.selection.focus(),this.scrollingContainer.scrollTop=t,this.scrollIntoView()}},{key:"format",value:function(t,e){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:g.default.sources.API;return a.call(this,function(){var r=n.getSelection(!0),i=new d.default;if(null==r)return i;if(w.default.query(t,w.default.Scope.BLOCK))i=n.editor.formatLine(r.index,r.length,o({},t,e));else{if(0===r.length)return n.selection.format(t,e),i;i=n.editor.formatText(r.index,r.length,o({},t,e))}return n.setSelection(r,g.default.sources.SILENT),i},r)}},{key:"formatLine",value:function(t,e,n,r,o){var i=this,l=void 0,u=s(t,e,n,r,o),c=f(u,4);return t=c[0],e=c[1],l=c[2],o=c[3],a.call(this,function(){return i.editor.formatLine(t,e,l)},o,t,0)}},{key:"formatText",value:function(t,e,n,r,o){var i=this,l=void 0,u=s(t,e,n,r,o),c=f(u,4);return t=c[0],e=c[1],l=c[2],o=c[3],a.call(this,function(){return i.editor.formatText(t,e,l)},o,t,0)}},{key:"getBounds",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=void 0;n="number"==typeof t?this.selection.getBounds(t,e):this.selection.getBounds(t.index,t.length);var r=this.container.getBoundingClientRect();return{bottom:n.bottom-r.top,height:n.height,left:n.left-r.left,right:n.right-r.left,top:n.top-r.top,width:n.width}}},{key:"getContents",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.getLength()-t,n=s(t,e),r=f(n,2);return t=r[0],e=r[1],this.editor.getContents(t,e)}},{key:"getFormat",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.getSelection(!0),e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0;return"number"==typeof t?this.editor.getFormat(t,e):this.editor.getFormat(t.index,t.length)}},{key:"getIndex",value:function(t){return t.offset(this.scroll)}},{key:"getLength",value:function(){return this.scroll.length()}},{key:"getLeaf",value:function(t){return this.scroll.leaf(t)}},{key:"getLine",value:function(t){return this.scroll.line(t)}},{key:"getLines",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Number.MAX_VALUE;return"number"!=typeof t?this.scroll.lines(t.index,t.length):this.scroll.lines(t,e)}},{key:"getModule",value:function(t){return this.theme.modules[t]}},{key:"getSelection",value:function(){return arguments.length>0&&void 0!==arguments[0]&&arguments[0]&&this.focus(),this.update(),this.selection.getRange()[0]}},{key:"getText",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:this.getLength()-t,n=s(t,e),r=f(n,2);return t=r[0],e=r[1],this.editor.getText(t,e)}},{key:"hasFocus",value:function(){return this.selection.hasFocus()}},{key:"insertEmbed",value:function(e,n,r){var o=this,i=arguments.length>3&&void 0!==arguments[3]?arguments[3]:t.sources.API;return a.call(this,function(){return o.editor.insertEmbed(e,n,r)},i,e)}},{key:"insertText",value:function(t,e,n,r,o){var i=this,l=void 0,u=s(t,0,n,r,o),c=f(u,4);return t=c[0],l=c[2],o=c[3],a.call(this,function(){return i.editor.insertText(t,e,l)},o,t,e.length)}},{key:"isEnabled",value:function(){return!this.container.classList.contains("ql-disabled")}},{key:"off",value:function(){return this.emitter.off.apply(this.emitter,arguments)}},{key:"on",value:function(){return this.emitter.on.apply(this.emitter,arguments)}},{key:"once",value:function(){return this.emitter.once.apply(this.emitter,arguments)}},{key:"pasteHTML",value:function(t,e,n){this.clipboard.dangerouslyPasteHTML(t,e,n)}},{key:"removeFormat",value:function(t,e,n){var r=this,o=s(t,e,n),i=f(o,4);return t=i[0],e=i[1],n=i[3],a.call(this,function(){return r.editor.removeFormat(t,e)},n,t)}},{key:"scrollIntoView",value:function(){this.selection.scrollIntoView(this.scrollingContainer)}},{key:"setContents",value:function(t){var e=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:g.default.sources.API;return a.call(this,function(){t=new d.default(t);var n=e.getLength(),r=e.editor.deleteText(0,n),o=e.editor.applyDelta(t),i=o.ops[o.ops.length-1];return null!=i&&"string"==typeof i.insert&&"\n"===i.insert[i.insert.length-1]&&(e.editor.deleteText(e.getLength()-1,1),o.delete(1)),r.compose(o)},n)}},{key:"setSelection",value:function(e,n,r){if(null==e)this.selection.setRange(null,n||t.sources.API);else{var o=s(e,n,r),i=f(o,4);e=i[0],n=i[1],r=i[3],this.selection.setRange(new x.Range(e,n),r),r!==g.default.sources.SILENT&&this.selection.scrollIntoView(this.scrollingContainer)}}},{key:"setText",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:g.default.sources.API,n=(new d.default).insert(t);return this.setContents(n,e)}},{key:"update",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:g.default.sources.USER,e=this.scroll.update(t);return this.selection.update(t),e}},{key:"updateContents",value:function(t){var e=this,n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:g.default.sources.API;return a.call(this,function(){return t=new d.default(t),e.editor.applyDelta(t,n)},n,!0)}}]),t}();S.DEFAULTS={bounds:null,formats:null,modules:{},placeholder:"",readOnly:!1,scrollingContainer:null,strict:!0,theme:"default"},S.events=g.default.events,S.sources=g.default.sources,S.version="1.3.7",S.imports={delta:d.default,parchment:w.default,"core/module":_.default,"core/theme":T.default},e.expandConfig=l,e.overload=s,e.default=S},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}Object.defineProperty(e,"__esModule",{value:!0});var o=function t(e){var n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};r(this,t),this.quill=e,this.options=n};o.DEFAULTS={},e.default=o},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function i(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var l=n(0),a=function(t){return t&&t.__esModule?t:{default:t}}(l),s=function(t){function e(){return r(this,e),o(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return i(e,t),e}(a.default.Text);e.default=s},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function l(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var a=function(){function t(t,e){for(var n=0;n1?e-1:0),r=1;r1?n-1:0),o=1;o-1:this.whitelist.indexOf(e)>-1))},t.prototype.remove=function(t){t.removeAttribute(this.keyName)},t.prototype.value=function(t){var e=t.getAttribute(this.keyName);return this.canAdd(t,e)&&e?e:""},t}();e.default=o},function(t,e,n){function r(t){return null===t||void 0===t}function o(t){return!(!t||"object"!=typeof t||"number"!=typeof t.length)&&("function"==typeof t.copy&&"function"==typeof t.slice&&!(t.length>0&&"number"!=typeof t[0]))}function i(t,e,n){var i,c;if(r(t)||r(e))return!1;if(t.prototype!==e.prototype)return!1;if(s(t))return!!s(e)&&(t=l.call(t),e=l.call(e),u(t,e,n));if(o(t)){if(!o(e))return!1;if(t.length!==e.length)return!1;for(i=0;i=0;i--)if(f[i]!=h[i])return!1;for(i=f.length-1;i>=0;i--)if(c=f[i],!u(t[c],e[c],n))return!1;return typeof t==typeof e}var l=Array.prototype.slice,a=n(55),s=n(56),u=t.exports=function(t,e,n){return n||(n={}),t===e||(t instanceof Date&&e instanceof Date?t.getTime()===e.getTime():!t||!e||"object"!=typeof t&&"object"!=typeof e?n.strict?t===e:t==e:i(t,e,n))}},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function l(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.Code=void 0;var a=function(){function t(t,e){var n=[],r=!0,o=!1,i=void 0;try{for(var l,a=t[Symbol.iterator]();!(r=(l=a.next()).done)&&(n.push(l.value),!e||n.length!==e);r=!0);}catch(t){o=!0,i=t}finally{try{!r&&a.return&&a.return()}finally{if(o)throw i}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function(){function t(t,e){for(var n=0;n=t+n)){var l=this.newlineIndex(t,!0)+1,a=i-l+1,s=this.isolate(l,a),u=s.next;s.format(r,o),u instanceof e&&u.formatAt(0,t-l+n-a,r,o)}}}},{key:"insertAt",value:function(t,e,n){if(null==n){var r=this.descendant(m.default,t),o=a(r,2),i=o[0],l=o[1];i.insertAt(l,e)}}},{key:"length",value:function(){var t=this.domNode.textContent.length;return this.domNode.textContent.endsWith("\n")?t:t+1}},{key:"newlineIndex",value:function(t){if(arguments.length>1&&void 0!==arguments[1]&&arguments[1])return this.domNode.textContent.slice(0,t).lastIndexOf("\n");var e=this.domNode.textContent.slice(t).indexOf("\n");return e>-1?t+e:-1}},{key:"optimize",value:function(t){this.domNode.textContent.endsWith("\n")||this.appendChild(p.default.create("text","\n")),u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"optimize",this).call(this,t);var n=this.next;null!=n&&n.prev===this&&n.statics.blotName===this.statics.blotName&&this.statics.formats(this.domNode)===n.statics.formats(n.domNode)&&(n.optimize(t),n.moveChildren(this),n.remove())}},{key:"replace",value:function(t){u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"replace",this).call(this,t),[].slice.call(this.domNode.querySelectorAll("*")).forEach(function(t){var e=p.default.find(t);null==e?t.parentNode.removeChild(t):e instanceof p.default.Embed?e.remove():e.unwrap()})}}],[{key:"create",value:function(t){var n=u(e.__proto__||Object.getPrototypeOf(e),"create",this).call(this,t);return n.setAttribute("spellcheck",!1),n}},{key:"formats",value:function(){return!0}}]),e}(y.default);O.blotName="code-block",O.tagName="PRE",O.TAB=" ",e.Code=_,e.default=O},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function i(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var l=function(){function t(t,e){for(var n=0;n-1}Object.defineProperty(e,"__esModule",{value:!0}),e.sanitize=e.default=void 0;var a=function(){function t(t,e){for(var n=0;n1&&void 0!==arguments[1]&&arguments[1],n=this.container.querySelector(".ql-selected");if(t!==n&&(null!=n&&n.classList.remove("ql-selected"),null!=t&&(t.classList.add("ql-selected"),this.select.selectedIndex=[].indexOf.call(t.parentNode.children,t),t.hasAttribute("data-value")?this.label.setAttribute("data-value",t.getAttribute("data-value")):this.label.removeAttribute("data-value"),t.hasAttribute("data-label")?this.label.setAttribute("data-label",t.getAttribute("data-label")):this.label.removeAttribute("data-label"),e))){if("function"==typeof Event)this.select.dispatchEvent(new Event("change"));else if("object"===("undefined"==typeof Event?"undefined":l(Event))){var r=document.createEvent("Event");r.initEvent("change",!0,!0),this.select.dispatchEvent(r)}this.close()}}},{key:"update",value:function(){var t=void 0;if(this.select.selectedIndex>-1){var e=this.container.querySelector(".ql-picker-options").children[this.select.selectedIndex];t=this.select.options[this.select.selectedIndex],this.selectItem(e)}else this.selectItem(null);var n=null!=t&&t!==this.select.querySelector("option[selected]");this.label.classList.toggle("ql-active",n)}}]),t}();e.default=p},function(t,e,n){"use strict";function r(t){var e=a.find(t);if(null==e)try{e=a.create(t)}catch(n){e=a.create(a.Scope.INLINE),[].slice.call(t.childNodes).forEach(function(t){e.domNode.appendChild(t)}),t.parentNode&&t.parentNode.replaceChild(e.domNode,t),e.attach()}return e}var o=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var i=n(47),l=n(27),a=n(1),s=function(t){function e(e){var n=t.call(this,e)||this;return n.build(),n}return o(e,t),e.prototype.appendChild=function(t){this.insertBefore(t)},e.prototype.attach=function(){t.prototype.attach.call(this),this.children.forEach(function(t){t.attach()})},e.prototype.build=function(){var t=this;this.children=new i.default,[].slice.call(this.domNode.childNodes).reverse().forEach(function(e){try{var n=r(e);t.insertBefore(n,t.children.head||void 0)}catch(t){if(t instanceof a.ParchmentError)return;throw t}})},e.prototype.deleteAt=function(t,e){if(0===t&&e===this.length())return this.remove();this.children.forEachAt(t,e,function(t,e,n){t.deleteAt(e,n)})},e.prototype.descendant=function(t,n){var r=this.children.find(n),o=r[0],i=r[1];return null==t.blotName&&t(o)||null!=t.blotName&&o instanceof t?[o,i]:o instanceof e?o.descendant(t,i):[null,-1]},e.prototype.descendants=function(t,n,r){void 0===n&&(n=0),void 0===r&&(r=Number.MAX_VALUE);var o=[],i=r;return this.children.forEachAt(n,r,function(n,r,l){(null==t.blotName&&t(n)||null!=t.blotName&&n instanceof t)&&o.push(n),n instanceof e&&(o=o.concat(n.descendants(t,r,i))),i-=l}),o},e.prototype.detach=function(){this.children.forEach(function(t){t.detach()}),t.prototype.detach.call(this)},e.prototype.formatAt=function(t,e,n,r){this.children.forEachAt(t,e,function(t,e,o){t.formatAt(e,o,n,r)})},e.prototype.insertAt=function(t,e,n){var r=this.children.find(t),o=r[0],i=r[1];if(o)o.insertAt(i,e,n);else{var l=null==n?a.create("text",e):a.create(e,n);this.appendChild(l)}},e.prototype.insertBefore=function(t,e){if(null!=this.statics.allowedChildren&&!this.statics.allowedChildren.some(function(e){return t instanceof e}))throw new a.ParchmentError("Cannot insert "+t.statics.blotName+" into "+this.statics.blotName);t.insertInto(this,e)},e.prototype.length=function(){return this.children.reduce(function(t,e){return t+e.length()},0)},e.prototype.moveChildren=function(t,e){this.children.forEach(function(n){t.insertBefore(n,e)})},e.prototype.optimize=function(e){if(t.prototype.optimize.call(this,e),0===this.children.length)if(null!=this.statics.defaultChild){var n=a.create(this.statics.defaultChild);this.appendChild(n),n.optimize(e)}else this.remove()},e.prototype.path=function(t,n){void 0===n&&(n=!1);var r=this.children.find(t,n),o=r[0],i=r[1],l=[[this,t]];return o instanceof e?l.concat(o.path(i,n)):(null!=o&&l.push([o,i]),l)},e.prototype.removeChild=function(t){this.children.remove(t)},e.prototype.replace=function(n){n instanceof e&&n.moveChildren(this),t.prototype.replace.call(this,n)},e.prototype.split=function(t,e){if(void 0===e&&(e=!1),!e){if(0===t)return this;if(t===this.length())return this.next}var n=this.clone();return this.parent.insertBefore(n,this.next),this.children.forEachAt(t,this.length(),function(t,r,o){t=t.split(r,e),n.appendChild(t)}),n},e.prototype.unwrap=function(){this.moveChildren(this.parent,this.next),this.remove()},e.prototype.update=function(t,e){var n=this,o=[],i=[];t.forEach(function(t){t.target===n.domNode&&"childList"===t.type&&(o.push.apply(o,t.addedNodes),i.push.apply(i,t.removedNodes))}),i.forEach(function(t){if(!(null!=t.parentNode&&"IFRAME"!==t.tagName&&document.body.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_CONTAINED_BY)){var e=a.find(t);null!=e&&(null!=e.domNode.parentNode&&e.domNode.parentNode!==n.domNode||e.detach())}}),o.filter(function(t){return t.parentNode==n.domNode}).sort(function(t,e){return t===e?0:t.compareDocumentPosition(e)&Node.DOCUMENT_POSITION_FOLLOWING?1:-1}).forEach(function(t){var e=null;null!=t.nextSibling&&(e=a.find(t.nextSibling));var o=r(t);o.next==e&&null!=o.next||(null!=o.parent&&o.parent.removeChild(n),n.insertBefore(o,e||void 0))})},e}(l.default);e.default=s},function(t,e,n){"use strict";var r=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var o=n(11),i=n(28),l=n(17),a=n(1),s=function(t){function e(e){var n=t.call(this,e)||this;return n.attributes=new i.default(n.domNode),n}return r(e,t),e.formats=function(t){return"string"==typeof this.tagName||(Array.isArray(this.tagName)?t.tagName.toLowerCase():void 0)},e.prototype.format=function(t,e){var n=a.query(t);n instanceof o.default?this.attributes.attribute(n,e):e&&(null==n||t===this.statics.blotName&&this.formats()[t]===e||this.replaceWith(t,e))},e.prototype.formats=function(){var t=this.attributes.values(),e=this.statics.formats(this.domNode);return null!=e&&(t[this.statics.blotName]=e),t},e.prototype.replaceWith=function(e,n){var r=t.prototype.replaceWith.call(this,e,n);return this.attributes.copy(r),r},e.prototype.update=function(e,n){var r=this;t.prototype.update.call(this,e,n),e.some(function(t){return t.target===r.domNode&&"attributes"===t.type})&&this.attributes.build()},e.prototype.wrap=function(n,r){var o=t.prototype.wrap.call(this,n,r);return o instanceof e&&o.statics.scope===this.statics.scope&&this.attributes.move(o),o},e}(l.default);e.default=s},function(t,e,n){"use strict";var r=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var o=n(27),i=n(1),l=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e.value=function(t){return!0},e.prototype.index=function(t,e){return this.domNode===t||this.domNode.compareDocumentPosition(t)&Node.DOCUMENT_POSITION_CONTAINED_BY?Math.min(e,1):-1},e.prototype.position=function(t,e){var n=[].indexOf.call(this.parent.domNode.childNodes,this.domNode);return t>0&&(n+=1),[this.parent.domNode,n]},e.prototype.value=function(){var t;return t={},t[this.statics.blotName]=this.statics.value(this.domNode)||!0,t},e.scope=i.Scope.INLINE_BLOT,e}(o.default);e.default=l},function(t,e,n){function r(t){this.ops=t,this.index=0,this.offset=0}var o=n(12),i=n(2),l={attributes:{compose:function(t,e,n){"object"!=typeof t&&(t={}),"object"!=typeof e&&(e={});var r=i(!0,{},e);n||(r=Object.keys(r).reduce(function(t,e){return null!=r[e]&&(t[e]=r[e]),t},{}));for(var o in t)void 0!==t[o]&&void 0===e[o]&&(r[o]=t[o]);return Object.keys(r).length>0?r:void 0},diff:function(t,e){"object"!=typeof t&&(t={}),"object"!=typeof e&&(e={});var n=Object.keys(t).concat(Object.keys(e)).reduce(function(n,r){return o(t[r],e[r])||(n[r]=void 0===e[r]?null:e[r]),n},{});return Object.keys(n).length>0?n:void 0},transform:function(t,e,n){if("object"!=typeof t)return e;if("object"==typeof e){if(!n)return e;var r=Object.keys(e).reduce(function(n,r){return void 0===t[r]&&(n[r]=e[r]),n},{});return Object.keys(r).length>0?r:void 0}}},iterator:function(t){return new r(t)},length:function(t){return"number"==typeof t.delete?t.delete:"number"==typeof t.retain?t.retain:"string"==typeof t.insert?t.insert.length:1}};r.prototype.hasNext=function(){return this.peekLength()<1/0},r.prototype.next=function(t){t||(t=1/0);var e=this.ops[this.index];if(e){var n=this.offset,r=l.length(e);if(t>=r-n?(t=r-n,this.index+=1,this.offset=0):this.offset+=t,"number"==typeof e.delete)return{delete:t};var o={};return e.attributes&&(o.attributes=e.attributes),"number"==typeof e.retain?o.retain=t:"string"==typeof e.insert?o.insert=e.insert.substr(n,t):o.insert=e.insert,o}return{retain:1/0}},r.prototype.peek=function(){return this.ops[this.index]},r.prototype.peekLength=function(){return this.ops[this.index]?l.length(this.ops[this.index])-this.offset:1/0},r.prototype.peekType=function(){return this.ops[this.index]?"number"==typeof this.ops[this.index].delete?"delete":"number"==typeof this.ops[this.index].retain?"retain":"insert":"retain"},r.prototype.rest=function(){if(this.hasNext()){if(0===this.offset)return this.ops.slice(this.index);var t=this.offset,e=this.index,n=this.next(),r=this.ops.slice(this.index);return this.offset=t,this.index=e,[n].concat(r)}return[]},t.exports=l},function(t,e){var n=function(){"use strict";function t(t,e){return null!=e&&t instanceof e}function e(n,r,o,i,c){function f(n,o){if(null===n)return null;if(0===o)return n;var y,v;if("object"!=typeof n)return n;if(t(n,a))y=new a;else if(t(n,s))y=new s;else if(t(n,u))y=new u(function(t,e){n.then(function(e){t(f(e,o-1))},function(t){e(f(t,o-1))})});else if(e.__isArray(n))y=[];else if(e.__isRegExp(n))y=new RegExp(n.source,l(n)),n.lastIndex&&(y.lastIndex=n.lastIndex);else if(e.__isDate(n))y=new Date(n.getTime());else{if(d&&Buffer.isBuffer(n))return y=Buffer.allocUnsafe?Buffer.allocUnsafe(n.length):new Buffer(n.length),n.copy(y),y;t(n,Error)?y=Object.create(n):void 0===i?(v=Object.getPrototypeOf(n),y=Object.create(v)):(y=Object.create(i),v=i)}if(r){var b=h.indexOf(n);if(-1!=b)return p[b];h.push(n),p.push(y)}t(n,a)&&n.forEach(function(t,e){var n=f(e,o-1),r=f(t,o-1);y.set(n,r)}),t(n,s)&&n.forEach(function(t){var e=f(t,o-1);y.add(e)});for(var g in n){var m;v&&(m=Object.getOwnPropertyDescriptor(v,g)),m&&null==m.set||(y[g]=f(n[g],o-1))}if(Object.getOwnPropertySymbols)for(var _=Object.getOwnPropertySymbols(n),g=0;g<_.length;g++){var O=_[g],w=Object.getOwnPropertyDescriptor(n,O);(!w||w.enumerable||c)&&(y[O]=f(n[O],o-1),w.enumerable||Object.defineProperty(y,O,{enumerable:!1}))}if(c)for(var x=Object.getOwnPropertyNames(n),g=0;g1&&void 0!==arguments[1]?arguments[1]:0;i(this,t),this.index=e,this.length=n},O=function(){function t(e,n){var r=this;i(this,t),this.emitter=n,this.scroll=e,this.composing=!1,this.mouseDown=!1,this.root=this.scroll.domNode,this.cursor=c.default.create("cursor",this),this.lastRange=this.savedRange=new _(0,0),this.handleComposition(),this.handleDragging(),this.emitter.listenDOM("selectionchange",document,function(){r.mouseDown||setTimeout(r.update.bind(r,v.default.sources.USER),1)}),this.emitter.on(v.default.events.EDITOR_CHANGE,function(t,e){t===v.default.events.TEXT_CHANGE&&e.length()>0&&r.update(v.default.sources.SILENT)}),this.emitter.on(v.default.events.SCROLL_BEFORE_UPDATE,function(){if(r.hasFocus()){var t=r.getNativeRange();null!=t&&t.start.node!==r.cursor.textNode&&r.emitter.once(v.default.events.SCROLL_UPDATE,function(){try{r.setNativeRange(t.start.node,t.start.offset,t.end.node,t.end.offset)}catch(t){}})}}),this.emitter.on(v.default.events.SCROLL_OPTIMIZE,function(t,e){if(e.range){var n=e.range,o=n.startNode,i=n.startOffset,l=n.endNode,a=n.endOffset;r.setNativeRange(o,i,l,a)}}),this.update(v.default.sources.SILENT)}return s(t,[{key:"handleComposition",value:function(){var t=this;this.root.addEventListener("compositionstart",function(){t.composing=!0}),this.root.addEventListener("compositionend",function(){if(t.composing=!1,t.cursor.parent){var e=t.cursor.restore();if(!e)return;setTimeout(function(){t.setNativeRange(e.startNode,e.startOffset,e.endNode,e.endOffset)},1)}})}},{key:"handleDragging",value:function(){var t=this;this.emitter.listenDOM("mousedown",document.body,function(){t.mouseDown=!0}),this.emitter.listenDOM("mouseup",document.body,function(){t.mouseDown=!1,t.update(v.default.sources.USER)})}},{key:"focus",value:function(){this.hasFocus()||(this.root.focus(),this.setRange(this.savedRange))}},{key:"format",value:function(t,e){if(null==this.scroll.whitelist||this.scroll.whitelist[t]){this.scroll.update();var n=this.getNativeRange();if(null!=n&&n.native.collapsed&&!c.default.query(t,c.default.Scope.BLOCK)){if(n.start.node!==this.cursor.textNode){var r=c.default.find(n.start.node,!1);if(null==r)return;if(r instanceof c.default.Leaf){var o=r.split(n.start.offset);r.parent.insertBefore(this.cursor,o)}else r.insertBefore(this.cursor,n.start.node);this.cursor.attach()}this.cursor.format(t,e),this.scroll.optimize(),this.setNativeRange(this.cursor.textNode,this.cursor.textNode.data.length),this.update()}}}},{key:"getBounds",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=this.scroll.length();t=Math.min(t,n-1),e=Math.min(t+e,n-1)-t;var r=void 0,o=this.scroll.leaf(t),i=a(o,2),l=i[0],s=i[1];if(null==l)return null;var u=l.position(s,!0),c=a(u,2);r=c[0],s=c[1];var f=document.createRange();if(e>0){f.setStart(r,s);var h=this.scroll.leaf(t+e),p=a(h,2);if(l=p[0],s=p[1],null==l)return null;var d=l.position(s,!0),y=a(d,2);return r=y[0],s=y[1],f.setEnd(r,s),f.getBoundingClientRect()}var v="left",b=void 0;return r instanceof Text?(s0&&(v="right")),{bottom:b.top+b.height,height:b.height,left:b[v],right:b[v],top:b.top,width:0}}},{key:"getNativeRange",value:function(){var t=document.getSelection();if(null==t||t.rangeCount<=0)return null;var e=t.getRangeAt(0);if(null==e)return null;var n=this.normalizeNative(e);return m.info("getNativeRange",n),n}},{key:"getRange",value:function(){var t=this.getNativeRange();return null==t?[null,null]:[this.normalizedToRange(t),t]}},{key:"hasFocus",value:function(){return document.activeElement===this.root}},{key:"normalizedToRange",value:function(t){var e=this,n=[[t.start.node,t.start.offset]];t.native.collapsed||n.push([t.end.node,t.end.offset]);var r=n.map(function(t){var n=a(t,2),r=n[0],o=n[1],i=c.default.find(r,!0),l=i.offset(e.scroll);return 0===o?l:i instanceof c.default.Container?l+i.length():l+i.index(r,o)}),i=Math.min(Math.max.apply(Math,o(r)),this.scroll.length()-1),l=Math.min.apply(Math,[i].concat(o(r)));return new _(l,i-l)}},{key:"normalizeNative",value:function(t){if(!l(this.root,t.startContainer)||!t.collapsed&&!l(this.root,t.endContainer))return null;var e={start:{node:t.startContainer,offset:t.startOffset},end:{node:t.endContainer,offset:t.endOffset},native:t};return[e.start,e.end].forEach(function(t){for(var e=t.node,n=t.offset;!(e instanceof Text)&&e.childNodes.length>0;)if(e.childNodes.length>n)e=e.childNodes[n],n=0;else{if(e.childNodes.length!==n)break;e=e.lastChild,n=e instanceof Text?e.data.length:e.childNodes.length+1}t.node=e,t.offset=n}),e}},{key:"rangeToNative",value:function(t){var e=this,n=t.collapsed?[t.index]:[t.index,t.index+t.length],r=[],o=this.scroll.length();return n.forEach(function(t,n){t=Math.min(o-1,t);var i=void 0,l=e.scroll.leaf(t),s=a(l,2),u=s[0],c=s[1],f=u.position(c,0!==n),h=a(f,2);i=h[0],c=h[1],r.push(i,c)}),r.length<2&&(r=r.concat(r)),r}},{key:"scrollIntoView",value:function(t){var e=this.lastRange;if(null!=e){var n=this.getBounds(e.index,e.length);if(null!=n){var r=this.scroll.length()-1,o=this.scroll.line(Math.min(e.index,r)),i=a(o,1),l=i[0],s=l;if(e.length>0){var u=this.scroll.line(Math.min(e.index+e.length,r));s=a(u,1)[0]}if(null!=l&&null!=s){var c=t.getBoundingClientRect();n.topc.bottom&&(t.scrollTop+=n.bottom-c.bottom)}}}}},{key:"setNativeRange",value:function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:t,r=arguments.length>3&&void 0!==arguments[3]?arguments[3]:e,o=arguments.length>4&&void 0!==arguments[4]&&arguments[4];if(m.info("setNativeRange",t,e,n,r),null==t||null!=this.root.parentNode&&null!=t.parentNode&&null!=n.parentNode){var i=document.getSelection();if(null!=i)if(null!=t){this.hasFocus()||this.root.focus();var l=(this.getNativeRange()||{}).native;if(null==l||o||t!==l.startContainer||e!==l.startOffset||n!==l.endContainer||r!==l.endOffset){"BR"==t.tagName&&(e=[].indexOf.call(t.parentNode.childNodes,t),t=t.parentNode),"BR"==n.tagName&&(r=[].indexOf.call(n.parentNode.childNodes,n),n=n.parentNode);var a=document.createRange();a.setStart(t,e),a.setEnd(n,r),i.removeAllRanges(),i.addRange(a)}}else i.removeAllRanges(),this.root.blur(),document.body.focus()}}},{key:"setRange",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]&&arguments[1],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:v.default.sources.API;if("string"==typeof e&&(n=e,e=!1),m.info("setRange",t),null!=t){var r=this.rangeToNative(t);this.setNativeRange.apply(this,o(r).concat([e]))}else this.setNativeRange(null);this.update(n)}},{key:"update",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:v.default.sources.USER,e=this.lastRange,n=this.getRange(),r=a(n,2),o=r[0],i=r[1];if(this.lastRange=o,null!=this.lastRange&&(this.savedRange=this.lastRange),!(0,d.default)(e,this.lastRange)){var l;!this.composing&&null!=i&&i.native.collapsed&&i.start.node!==this.cursor.textNode&&this.cursor.restore();var s=[v.default.events.SELECTION_CHANGE,(0,h.default)(this.lastRange),(0,h.default)(e),t];if((l=this.emitter).emit.apply(l,[v.default.events.EDITOR_CHANGE].concat(s)),t!==v.default.sources.SILENT){var u;(u=this.emitter).emit.apply(u,s)}}}}]),t}();e.Range=_,e.default=O},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function l(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var a=n(0),s=r(a),u=n(3),c=r(u),f=function(t){function e(){return o(this,e),i(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return l(e,t),e}(s.default.Container);f.allowedChildren=[c.default,u.BlockEmbed,f],e.default=f},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function i(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0}),e.ColorStyle=e.ColorClass=e.ColorAttributor=void 0;var l=function(){function t(t,e){for(var n=0;n1){var u=o.formats(),c=this.quill.getFormat(t.index-1,1);i=A.default.attributes.diff(u,c)||{}}}var f=/[\uD800-\uDBFF][\uDC00-\uDFFF]$/.test(e.prefix)?2:1;this.quill.deleteText(t.index-f,f,S.default.sources.USER),Object.keys(i).length>0&&this.quill.formatLine(t.index-f,f,i,S.default.sources.USER),this.quill.focus()}}function c(t,e){var n=/^[\uD800-\uDBFF][\uDC00-\uDFFF]/.test(e.suffix)?2:1;if(!(t.index>=this.quill.getLength()-n)){var r={},o=0,i=this.quill.getLine(t.index),l=b(i,1),a=l[0];if(e.offset>=a.length()-1){var s=this.quill.getLine(t.index+1),u=b(s,1),c=u[0];if(c){var f=a.formats(),h=this.quill.getFormat(t.index,1);r=A.default.attributes.diff(f,h)||{},o=c.length()}}this.quill.deleteText(t.index,n,S.default.sources.USER),Object.keys(r).length>0&&this.quill.formatLine(t.index+o-1,n,r,S.default.sources.USER)}}function f(t){var e=this.quill.getLines(t),n={};if(e.length>1){var r=e[0].formats(),o=e[e.length-1].formats();n=A.default.attributes.diff(o,r)||{}}this.quill.deleteText(t,S.default.sources.USER),Object.keys(n).length>0&&this.quill.formatLine(t.index,1,n,S.default.sources.USER),this.quill.setSelection(t.index,S.default.sources.SILENT),this.quill.focus()}function h(t,e){var n=this;t.length>0&&this.quill.scroll.deleteAt(t.index,t.length);var r=Object.keys(e.format).reduce(function(t,n){return T.default.query(n,T.default.Scope.BLOCK)&&!Array.isArray(e.format[n])&&(t[n]=e.format[n]),t},{});this.quill.insertText(t.index,"\n",r,S.default.sources.USER),this.quill.setSelection(t.index+1,S.default.sources.SILENT),this.quill.focus(),Object.keys(e.format).forEach(function(t){null==r[t]&&(Array.isArray(e.format[t])||"link"!==t&&n.quill.format(t,e.format[t],S.default.sources.USER))})}function p(t){return{key:D.keys.TAB,shiftKey:!t,format:{"code-block":!0},handler:function(e){var n=T.default.query("code-block"),r=e.index,o=e.length,i=this.quill.scroll.descendant(n,r),l=b(i,2),a=l[0],s=l[1];if(null!=a){var u=this.quill.getIndex(a),c=a.newlineIndex(s,!0)+1,f=a.newlineIndex(u+s+o),h=a.domNode.textContent.slice(c,f).split("\n");s=0,h.forEach(function(e,i){t?(a.insertAt(c+s,n.TAB),s+=n.TAB.length,0===i?r+=n.TAB.length:o+=n.TAB.length):e.startsWith(n.TAB)&&(a.deleteAt(c+s,n.TAB.length),s-=n.TAB.length,0===i?r-=n.TAB.length:o-=n.TAB.length),s+=e.length+1}),this.quill.update(S.default.sources.USER),this.quill.setSelection(r,o,S.default.sources.SILENT)}}}}function d(t){return{key:t[0].toUpperCase(),shortKey:!0,handler:function(e,n){this.quill.format(t,!n.format[t],S.default.sources.USER)}}}function y(t){if("string"==typeof t||"number"==typeof t)return y({key:t});if("object"===(void 0===t?"undefined":v(t))&&(t=(0,_.default)(t,!1)),"string"==typeof t.key)if(null!=D.keys[t.key.toUpperCase()])t.key=D.keys[t.key.toUpperCase()];else{if(1!==t.key.length)return null;t.key=t.key.toUpperCase().charCodeAt(0)}return t.shortKey&&(t[B]=t.shortKey,delete t.shortKey),t}Object.defineProperty(e,"__esModule",{value:!0}),e.SHORTKEY=e.default=void 0;var v="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},b=function(){function t(t,e){var n=[],r=!0,o=!1,i=void 0;try{for(var l,a=t[Symbol.iterator]();!(r=(l=a.next()).done)&&(n.push(l.value),!e||n.length!==e);r=!0);}catch(t){o=!0,i=t}finally{try{!r&&a.return&&a.return()}finally{if(o)throw i}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),g=function(){function t(t,e){for(var n=0;n1&&void 0!==arguments[1]?arguments[1]:{},n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{},r=y(t);if(null==r||null==r.key)return I.warn("Attempted to add invalid keyboard binding",r);"function"==typeof e&&(e={handler:e}),"function"==typeof n&&(n={handler:n}),r=(0,k.default)(r,e,n),this.bindings[r.key]=this.bindings[r.key]||[],this.bindings[r.key].push(r)}},{key:"listen",value:function(){var t=this;this.quill.root.addEventListener("keydown",function(n){if(!n.defaultPrevented){var r=n.which||n.keyCode,o=(t.bindings[r]||[]).filter(function(t){return e.match(n,t)});if(0!==o.length){var i=t.quill.getSelection();if(null!=i&&t.quill.hasFocus()){var l=t.quill.getLine(i.index),a=b(l,2),s=a[0],u=a[1],c=t.quill.getLeaf(i.index),f=b(c,2),h=f[0],p=f[1],d=0===i.length?[h,p]:t.quill.getLeaf(i.index+i.length),y=b(d,2),g=y[0],m=y[1],_=h instanceof T.default.Text?h.value().slice(0,p):"",O=g instanceof T.default.Text?g.value().slice(m):"",x={collapsed:0===i.length,empty:0===i.length&&s.length()<=1,format:t.quill.getFormat(i),offset:u,prefix:_,suffix:O};o.some(function(e){if(null!=e.collapsed&&e.collapsed!==x.collapsed)return!1;if(null!=e.empty&&e.empty!==x.empty)return!1;if(null!=e.offset&&e.offset!==x.offset)return!1;if(Array.isArray(e.format)){if(e.format.every(function(t){return null==x.format[t]}))return!1}else if("object"===v(e.format)&&!Object.keys(e.format).every(function(t){return!0===e.format[t]?null!=x.format[t]:!1===e.format[t]?null==x.format[t]:(0,w.default)(e.format[t],x.format[t])}))return!1;return!(null!=e.prefix&&!e.prefix.test(x.prefix))&&(!(null!=e.suffix&&!e.suffix.test(x.suffix))&&!0!==e.handler.call(t,i,x))})&&n.preventDefault()}}}})}}]),e}(R.default);D.keys={BACKSPACE:8,TAB:9,ENTER:13,ESCAPE:27,LEFT:37,UP:38,RIGHT:39,DOWN:40,DELETE:46},D.DEFAULTS={bindings:{bold:d("bold"),italic:d("italic"),underline:d("underline"),indent:{key:D.keys.TAB,format:["blockquote","indent","list"],handler:function(t,e){if(e.collapsed&&0!==e.offset)return!0;this.quill.format("indent","+1",S.default.sources.USER)}},outdent:{key:D.keys.TAB,shiftKey:!0,format:["blockquote","indent","list"],handler:function(t,e){if(e.collapsed&&0!==e.offset)return!0;this.quill.format("indent","-1",S.default.sources.USER)}},"outdent backspace":{key:D.keys.BACKSPACE,collapsed:!0,shiftKey:null,metaKey:null,ctrlKey:null,altKey:null,format:["indent","list"],offset:0,handler:function(t,e){null!=e.format.indent?this.quill.format("indent","-1",S.default.sources.USER):null!=e.format.list&&this.quill.format("list",!1,S.default.sources.USER)}},"indent code-block":p(!0),"outdent code-block":p(!1),"remove tab":{key:D.keys.TAB,shiftKey:!0,collapsed:!0,prefix:/\t$/,handler:function(t){this.quill.deleteText(t.index-1,1,S.default.sources.USER)}},tab:{key:D.keys.TAB,handler:function(t){this.quill.history.cutoff();var e=(new N.default).retain(t.index).delete(t.length).insert("\t");this.quill.updateContents(e,S.default.sources.USER),this.quill.history.cutoff(),this.quill.setSelection(t.index+1,S.default.sources.SILENT)}},"list empty enter":{key:D.keys.ENTER,collapsed:!0,format:["list"],empty:!0,handler:function(t,e){this.quill.format("list",!1,S.default.sources.USER),e.format.indent&&this.quill.format("indent",!1,S.default.sources.USER)}},"checklist enter":{key:D.keys.ENTER,collapsed:!0,format:{list:"checked"},handler:function(t){var e=this.quill.getLine(t.index),n=b(e,2),r=n[0],o=n[1],i=(0,k.default)({},r.formats(),{list:"checked"}),l=(new N.default).retain(t.index).insert("\n",i).retain(r.length()-o-1).retain(1,{list:"unchecked"});this.quill.updateContents(l,S.default.sources.USER),this.quill.setSelection(t.index+1,S.default.sources.SILENT),this.quill.scrollIntoView()}},"header enter":{key:D.keys.ENTER,collapsed:!0,format:["header"],suffix:/^$/,handler:function(t,e){var n=this.quill.getLine(t.index),r=b(n,2),o=r[0],i=r[1],l=(new N.default).retain(t.index).insert("\n",e.format).retain(o.length()-i-1).retain(1,{header:null});this.quill.updateContents(l,S.default.sources.USER),this.quill.setSelection(t.index+1,S.default.sources.SILENT),this.quill.scrollIntoView()}},"list autofill":{key:" ",collapsed:!0,format:{list:!1},prefix:/^\s*?(\d+\.|-|\*|\[ ?\]|\[x\])$/,handler:function(t,e){var n=e.prefix.length,r=this.quill.getLine(t.index),o=b(r,2),i=o[0],l=o[1];if(l>n)return!0;var a=void 0;switch(e.prefix.trim()){case"[]":case"[ ]":a="unchecked";break;case"[x]":a="checked";break;case"-":case"*":a="bullet";break;default:a="ordered"}this.quill.insertText(t.index," ",S.default.sources.USER),this.quill.history.cutoff();var s=(new N.default).retain(t.index-l).delete(n+1).retain(i.length()-2-l).retain(1,{list:a});this.quill.updateContents(s,S.default.sources.USER),this.quill.history.cutoff(),this.quill.setSelection(t.index-n,S.default.sources.SILENT)}},"code exit":{key:D.keys.ENTER,collapsed:!0,format:["code-block"],prefix:/\n\n$/,suffix:/^\s+$/,handler:function(t){var e=this.quill.getLine(t.index),n=b(e,2),r=n[0],o=n[1],i=(new N.default).retain(t.index+r.length()-o-2).retain(1,{"code-block":null}).delete(1);this.quill.updateContents(i,S.default.sources.USER)}},"embed left":s(D.keys.LEFT,!1),"embed left shift":s(D.keys.LEFT,!0),"embed right":s(D.keys.RIGHT,!1),"embed right shift":s(D.keys.RIGHT,!0)}},e.default=D,e.SHORTKEY=B},function(t,e,n){"use strict";t.exports={align:{"":n(75),center:n(76),right:n(77),justify:n(78)},background:n(79),blockquote:n(80),bold:n(81),clean:n(82),code:n(40),"code-block":n(40),color:n(83),direction:{"":n(84),rtl:n(85)},float:{center:n(86),full:n(87),left:n(88),right:n(89)},formula:n(90),header:{1:n(91),2:n(92)},italic:n(93),image:n(94),indent:{"+1":n(95),"-1":n(96)},link:n(97),list:{ordered:n(98),bullet:n(99),check:n(100)},script:{sub:n(101),super:n(102)},strike:n(103),underline:n(104),video:n(105)}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(1),o=function(){function t(t){this.domNode=t,this.domNode[r.DATA_KEY]={blot:this}}return Object.defineProperty(t.prototype,"statics",{get:function(){return this.constructor},enumerable:!0,configurable:!0}),t.create=function(t){if(null==this.tagName)throw new r.ParchmentError("Blot definition missing tagName");var e;return Array.isArray(this.tagName)?("string"==typeof t&&(t=t.toUpperCase(),parseInt(t).toString()===t&&(t=parseInt(t))),e="number"==typeof t?document.createElement(this.tagName[t-1]):this.tagName.indexOf(t)>-1?document.createElement(t):document.createElement(this.tagName[0])):e=document.createElement(this.tagName),this.className&&e.classList.add(this.className),e},t.prototype.attach=function(){null!=this.parent&&(this.scroll=this.parent.scroll)},t.prototype.clone=function(){var t=this.domNode.cloneNode(!1);return r.create(t)},t.prototype.detach=function(){null!=this.parent&&this.parent.removeChild(this),delete this.domNode[r.DATA_KEY]},t.prototype.deleteAt=function(t,e){this.isolate(t,e).remove()},t.prototype.formatAt=function(t,e,n,o){var i=this.isolate(t,e);if(null!=r.query(n,r.Scope.BLOT)&&o)i.wrap(n,o);else if(null!=r.query(n,r.Scope.ATTRIBUTE)){var l=r.create(this.statics.scope);i.wrap(l),l.format(n,o)}},t.prototype.insertAt=function(t,e,n){var o=null==n?r.create("text",e):r.create(e,n),i=this.split(t);this.parent.insertBefore(o,i)},t.prototype.insertInto=function(t,e){void 0===e&&(e=null),null!=this.parent&&this.parent.children.remove(this);var n=null;t.children.insertBefore(this,e),null!=e&&(n=e.domNode),this.domNode.parentNode==t.domNode&&this.domNode.nextSibling==n||t.domNode.insertBefore(this.domNode,n),this.parent=t,this.attach()},t.prototype.isolate=function(t,e){var n=this.split(t);return n.split(e),n},t.prototype.length=function(){return 1},t.prototype.offset=function(t){return void 0===t&&(t=this.parent),null==this.parent||this==t?0:this.parent.children.offset(this)+this.parent.offset(t)},t.prototype.optimize=function(t){null!=this.domNode[r.DATA_KEY]&&delete this.domNode[r.DATA_KEY].mutations},t.prototype.remove=function(){null!=this.domNode.parentNode&&this.domNode.parentNode.removeChild(this.domNode),this.detach()},t.prototype.replace=function(t){null!=t.parent&&(t.parent.insertBefore(this,t.next),t.remove())},t.prototype.replaceWith=function(t,e){var n="string"==typeof t?r.create(t,e):t;return n.replace(this),n},t.prototype.split=function(t,e){return 0===t?this:this.next},t.prototype.update=function(t,e){},t.prototype.wrap=function(t,e){var n="string"==typeof t?r.create(t,e):t;return null!=this.parent&&this.parent.insertBefore(n,this.next),n.appendChild(this),n},t.blotName="abstract",t}();e.default=o},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=n(11),o=n(29),i=n(30),l=n(1),a=function(){function t(t){this.attributes={},this.domNode=t,this.build()}return t.prototype.attribute=function(t,e){e?t.add(this.domNode,e)&&(null!=t.value(this.domNode)?this.attributes[t.attrName]=t:delete this.attributes[t.attrName]):(t.remove(this.domNode),delete this.attributes[t.attrName])},t.prototype.build=function(){var t=this;this.attributes={};var e=r.default.keys(this.domNode),n=o.default.keys(this.domNode),a=i.default.keys(this.domNode);e.concat(n).concat(a).forEach(function(e){var n=l.query(e,l.Scope.ATTRIBUTE);n instanceof r.default&&(t.attributes[n.attrName]=n)})},t.prototype.copy=function(t){var e=this;Object.keys(this.attributes).forEach(function(n){var r=e.attributes[n].value(e.domNode);t.format(n,r)})},t.prototype.move=function(t){var e=this;this.copy(t),Object.keys(this.attributes).forEach(function(t){e.attributes[t].remove(e.domNode)}),this.attributes={}},t.prototype.values=function(){var t=this;return Object.keys(this.attributes).reduce(function(e,n){return e[n]=t.attributes[n].value(t.domNode),e},{})},t}();e.default=a},function(t,e,n){"use strict";function r(t,e){return(t.getAttribute("class")||"").split(/\s+/).filter(function(t){return 0===t.indexOf(e+"-")})}var o=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var i=n(11),l=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return o(e,t),e.keys=function(t){return(t.getAttribute("class")||"").split(/\s+/).map(function(t){return t.split("-").slice(0,-1).join("-")})},e.prototype.add=function(t,e){return!!this.canAdd(t,e)&&(this.remove(t),t.classList.add(this.keyName+"-"+e),!0)},e.prototype.remove=function(t){r(t,this.keyName).forEach(function(e){t.classList.remove(e)}),0===t.classList.length&&t.removeAttribute("class")},e.prototype.value=function(t){var e=r(t,this.keyName)[0]||"",n=e.slice(this.keyName.length+1);return this.canAdd(t,n)?n:""},e}(i.default);e.default=l},function(t,e,n){"use strict";function r(t){var e=t.split("-"),n=e.slice(1).map(function(t){return t[0].toUpperCase()+t.slice(1)}).join("");return e[0]+n}var o=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var i=n(11),l=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return o(e,t),e.keys=function(t){return(t.getAttribute("style")||"").split(";").map(function(t){return t.split(":")[0].trim()})},e.prototype.add=function(t,e){return!!this.canAdd(t,e)&&(t.style[r(this.keyName)]=e,!0)},e.prototype.remove=function(t){t.style[r(this.keyName)]="",t.getAttribute("style")||t.removeAttribute("style")},e.prototype.value=function(t){var e=t.style[r(this.keyName)];return this.canAdd(t,e)?e:""},e}(i.default);e.default=l},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function l(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var a=function(){function t(t,e){var n=[],r=!0,o=!1,i=void 0;try{for(var l,a=t[Symbol.iterator]();!(r=(l=a.next()).done)&&(n.push(l.value),!e||n.length!==e);r=!0);}catch(t){o=!0,i=t}finally{try{!r&&a.return&&a.return()}finally{if(o)throw i}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function t(e,n,r){null===e&&(e=Function.prototype);var o=Object.getOwnPropertyDescriptor(e,n);if(void 0===o){var i=Object.getPrototypeOf(e);return null===i?void 0:t(i,n,r)}if("value"in o)return o.value;var l=o.get;if(void 0!==l)return l.call(r)},u=function(){function t(t,e){for(var n=0;n '},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function i(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var l=function(){function t(t,e){for(var n=0;nr.right&&(i=r.right-o.right,this.root.style.left=e+i+"px"),o.leftr.bottom){var l=o.bottom-o.top,a=t.bottom-t.top+l;this.root.style.top=n-a+"px",this.root.classList.add("ql-flip")}return i}},{key:"show",value:function(){this.root.classList.remove("ql-editing"),this.root.classList.remove("ql-hidden")}}]),t}();e.default=i},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function l(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}function a(t){var e=t.match(/^(?:(https?):\/\/)?(?:(?:www|m)\.)?youtube\.com\/watch.*v=([a-zA-Z0-9_-]+)/)||t.match(/^(?:(https?):\/\/)?(?:(?:www|m)\.)?youtu\.be\/([a-zA-Z0-9_-]+)/);return e?(e[1]||"https")+"://www.youtube.com/embed/"+e[2]+"?showinfo=0":(e=t.match(/^(?:(https?):\/\/)?(?:www\.)?vimeo\.com\/(\d+)/))?(e[1]||"https")+"://player.vimeo.com/video/"+e[2]+"/":t}function s(t,e){var n=arguments.length>2&&void 0!==arguments[2]&&arguments[2];e.forEach(function(e){var r=document.createElement("option");e===n?r.setAttribute("selected","selected"):r.setAttribute("value",e),t.appendChild(r)})}Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.BaseTooltip=void 0;var u=function(){function t(t,e){for(var n=0;n0&&void 0!==arguments[0]?arguments[0]:"link",e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;this.root.classList.remove("ql-hidden"),this.root.classList.add("ql-editing"),null!=e?this.textbox.value=e:t!==this.root.getAttribute("data-mode")&&(this.textbox.value=""),this.position(this.quill.getBounds(this.quill.selection.savedRange)),this.textbox.select(),this.textbox.setAttribute("placeholder",this.textbox.getAttribute("data-"+t)||""),this.root.setAttribute("data-mode",t)}},{key:"restoreFocus",value:function(){var t=this.quill.scrollingContainer.scrollTop;this.quill.focus(),this.quill.scrollingContainer.scrollTop=t}},{key:"save",value:function(){var t=this.textbox.value;switch(this.root.getAttribute("data-mode")){case"link":var e=this.quill.root.scrollTop;this.linkRange?(this.quill.formatText(this.linkRange,"link",t,v.default.sources.USER),delete this.linkRange):(this.restoreFocus(),this.quill.format("link",t,v.default.sources.USER)),this.quill.root.scrollTop=e;break;case"video":t=a(t);case"formula":if(!t)break;var n=this.quill.getSelection(!0);if(null!=n){var r=n.index+n.length;this.quill.insertEmbed(r,this.root.getAttribute("data-mode"),t,v.default.sources.USER),"formula"===this.root.getAttribute("data-mode")&&this.quill.insertText(r+1," ",v.default.sources.USER),this.quill.setSelection(r+2,v.default.sources.USER)}}this.textbox.value="",this.hide()}}]),e}(A.default);e.BaseTooltip=M,e.default=L},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0});var o=n(46),i=r(o),l=n(34),a=n(36),s=n(62),u=n(63),c=r(u),f=n(64),h=r(f),p=n(65),d=r(p),y=n(35),v=n(24),b=n(37),g=n(38),m=n(39),_=r(m),O=n(66),w=r(O),x=n(15),k=r(x),E=n(67),N=r(E),j=n(68),A=r(j),q=n(69),T=r(q),P=n(70),S=r(P),C=n(71),L=r(C),M=n(13),R=r(M),I=n(72),B=r(I),D=n(73),U=r(D),F=n(74),H=r(F),K=n(26),z=r(K),V=n(16),Z=r(V),W=n(41),G=r(W),Y=n(42),X=r(Y),$=n(43),Q=r($),J=n(107),tt=r(J),et=n(108),nt=r(et);i.default.register({"attributors/attribute/direction":a.DirectionAttribute,"attributors/class/align":l.AlignClass,"attributors/class/background":y.BackgroundClass,"attributors/class/color":v.ColorClass,"attributors/class/direction":a.DirectionClass,"attributors/class/font":b.FontClass,"attributors/class/size":g.SizeClass,"attributors/style/align":l.AlignStyle,"attributors/style/background":y.BackgroundStyle,"attributors/style/color":v.ColorStyle,"attributors/style/direction":a.DirectionStyle,"attributors/style/font":b.FontStyle,"attributors/style/size":g.SizeStyle},!0),i.default.register({"formats/align":l.AlignClass,"formats/direction":a.DirectionClass,"formats/indent":s.IndentClass,"formats/background":y.BackgroundStyle,"formats/color":v.ColorStyle,"formats/font":b.FontClass,"formats/size":g.SizeClass,"formats/blockquote":c.default,"formats/code-block":R.default,"formats/header":h.default,"formats/list":d.default,"formats/bold":_.default,"formats/code":M.Code,"formats/italic":w.default,"formats/link":k.default,"formats/script":N.default,"formats/strike":A.default,"formats/underline":T.default,"formats/image":S.default,"formats/video":L.default,"formats/list/item":p.ListItem,"modules/formula":B.default,"modules/syntax":U.default,"modules/toolbar":H.default,"themes/bubble":tt.default,"themes/snow":nt.default,"ui/icons":z.default,"ui/picker":Z.default,"ui/icon-picker":X.default,"ui/color-picker":G.default,"ui/tooltip":Q.default},!0),e.default=i.default},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}Object.defineProperty(e,"__esModule",{value:!0});var o=n(0),i=r(o),l=n(6),a=r(l),s=n(3),u=r(s),c=n(14),f=r(c),h=n(23),p=r(h),d=n(31),y=r(d),v=n(33),b=r(v),g=n(5),m=r(g),_=n(59),O=r(_),w=n(8),x=r(w),k=n(60),E=r(k),N=n(61),j=r(N),A=n(25),q=r(A);a.default.register({"blots/block":u.default,"blots/block/embed":s.BlockEmbed,"blots/break":f.default,"blots/container":p.default,"blots/cursor":y.default,"blots/embed":b.default,"blots/inline":m.default,"blots/scroll":O.default,"blots/text":x.default,"modules/clipboard":E.default,"modules/history":j.default,"modules/keyboard":q.default}),i.default.register(u.default,f.default,y.default,m.default,O.default,x.default),e.default=a.default},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0});var r=function(){function t(){this.head=this.tail=null,this.length=0}return t.prototype.append=function(){for(var t=[],e=0;e1&&this.append.apply(this,t.slice(1))},t.prototype.contains=function(t){for(var e,n=this.iterator();e=n();)if(e===t)return!0;return!1},t.prototype.insertBefore=function(t,e){t&&(t.next=e,null!=e?(t.prev=e.prev,null!=e.prev&&(e.prev.next=t),e.prev=t,e===this.head&&(this.head=t)):null!=this.tail?(this.tail.next=t,t.prev=this.tail,this.tail=t):(t.prev=null,this.head=this.tail=t),this.length+=1)},t.prototype.offset=function(t){for(var e=0,n=this.head;null!=n;){if(n===t)return e;e+=n.length(),n=n.next}return-1},t.prototype.remove=function(t){this.contains(t)&&(null!=t.prev&&(t.prev.next=t.next),null!=t.next&&(t.next.prev=t.prev),t===this.head&&(this.head=t.next),t===this.tail&&(this.tail=t.prev),this.length-=1)},t.prototype.iterator=function(t){return void 0===t&&(t=this.head),function(){var e=t;return null!=t&&(t=t.next),e}},t.prototype.find=function(t,e){void 0===e&&(e=!1);for(var n,r=this.iterator();n=r();){var o=n.length();if(ta?n(r,t-a,Math.min(e,a+u-t)):n(r,0,Math.min(u,t+e-a)),a+=u}},t.prototype.map=function(t){return this.reduce(function(e,n){return e.push(t(n)),e},[])},t.prototype.reduce=function(t,e){for(var n,r=this.iterator();n=r();)e=t(e,n);return e},t}();e.default=r},function(t,e,n){"use strict";var r=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var o=n(17),i=n(1),l={attributes:!0,characterData:!0,characterDataOldValue:!0,childList:!0,subtree:!0},a=function(t){function e(e){var n=t.call(this,e)||this;return n.scroll=n,n.observer=new MutationObserver(function(t){n.update(t)}),n.observer.observe(n.domNode,l),n.attach(),n}return r(e,t),e.prototype.detach=function(){t.prototype.detach.call(this),this.observer.disconnect()},e.prototype.deleteAt=function(e,n){this.update(),0===e&&n===this.length()?this.children.forEach(function(t){t.remove()}):t.prototype.deleteAt.call(this,e,n)},e.prototype.formatAt=function(e,n,r,o){this.update(),t.prototype.formatAt.call(this,e,n,r,o)},e.prototype.insertAt=function(e,n,r){this.update(),t.prototype.insertAt.call(this,e,n,r)},e.prototype.optimize=function(e,n){var r=this;void 0===e&&(e=[]),void 0===n&&(n={}),t.prototype.optimize.call(this,n);for(var l=[].slice.call(this.observer.takeRecords());l.length>0;)e.push(l.pop());for(var a=function(t,e){void 0===e&&(e=!0),null!=t&&t!==r&&null!=t.domNode.parentNode&&(null==t.domNode[i.DATA_KEY].mutations&&(t.domNode[i.DATA_KEY].mutations=[]),e&&a(t.parent))},s=function(t){null!=t.domNode[i.DATA_KEY]&&null!=t.domNode[i.DATA_KEY].mutations&&(t instanceof o.default&&t.children.forEach(s),t.optimize(n))},u=e,c=0;u.length>0;c+=1){if(c>=100)throw new Error("[Parchment] Maximum optimize iterations reached");for(u.forEach(function(t){var e=i.find(t.target,!0);null!=e&&(e.domNode===t.target&&("childList"===t.type?(a(i.find(t.previousSibling,!1)),[].forEach.call(t.addedNodes,function(t){var e=i.find(t,!1);a(e,!1),e instanceof o.default&&e.children.forEach(function(t){a(t,!1)})})):"attributes"===t.type&&a(e.prev)),a(e))}),this.children.forEach(s),u=[].slice.call(this.observer.takeRecords()),l=u.slice();l.length>0;)e.push(l.pop())}},e.prototype.update=function(e,n){var r=this;void 0===n&&(n={}),e=e||this.observer.takeRecords(),e.map(function(t){var e=i.find(t.target,!0);return null==e?null:null==e.domNode[i.DATA_KEY].mutations?(e.domNode[i.DATA_KEY].mutations=[t],e):(e.domNode[i.DATA_KEY].mutations.push(t),null)}).forEach(function(t){null!=t&&t!==r&&null!=t.domNode[i.DATA_KEY]&&t.update(t.domNode[i.DATA_KEY].mutations||[],n)}),null!=this.domNode[i.DATA_KEY].mutations&&t.prototype.update.call(this,this.domNode[i.DATA_KEY].mutations,n),this.optimize(e,n)},e.blotName="scroll",e.defaultChild="block",e.scope=i.Scope.BLOCK_BLOT,e.tagName="DIV",e}(o.default);e.default=a},function(t,e,n){"use strict";function r(t,e){if(Object.keys(t).length!==Object.keys(e).length)return!1;for(var n in t)if(t[n]!==e[n])return!1;return!0}var o=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var i=n(18),l=n(1),a=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return o(e,t),e.formats=function(n){if(n.tagName!==e.tagName)return t.formats.call(this,n)},e.prototype.format=function(n,r){var o=this;n!==this.statics.blotName||r?t.prototype.format.call(this,n,r):(this.children.forEach(function(t){t instanceof i.default||(t=t.wrap(e.blotName,!0)),o.attributes.copy(t)}),this.unwrap())},e.prototype.formatAt=function(e,n,r,o){if(null!=this.formats()[r]||l.query(r,l.Scope.ATTRIBUTE)){this.isolate(e,n).format(r,o)}else t.prototype.formatAt.call(this,e,n,r,o)},e.prototype.optimize=function(n){t.prototype.optimize.call(this,n);var o=this.formats();if(0===Object.keys(o).length)return this.unwrap();var i=this.next;i instanceof e&&i.prev===this&&r(o,i.formats())&&(i.moveChildren(this),i.remove())},e.blotName="inline",e.scope=l.Scope.INLINE_BLOT,e.tagName="SPAN",e}(i.default);e.default=a},function(t,e,n){"use strict";var r=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var o=n(18),i=n(1),l=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e.formats=function(n){var r=i.query(e.blotName).tagName;if(n.tagName!==r)return t.formats.call(this,n)},e.prototype.format=function(n,r){null!=i.query(n,i.Scope.BLOCK)&&(n!==this.statics.blotName||r?t.prototype.format.call(this,n,r):this.replaceWith(e.blotName))},e.prototype.formatAt=function(e,n,r,o){null!=i.query(r,i.Scope.BLOCK)?this.format(r,o):t.prototype.formatAt.call(this,e,n,r,o)},e.prototype.insertAt=function(e,n,r){if(null==r||null!=i.query(n,i.Scope.INLINE))t.prototype.insertAt.call(this,e,n,r);else{var o=this.split(e),l=i.create(n,r);o.parent.insertBefore(l,o)}},e.prototype.update=function(e,n){navigator.userAgent.match(/Trident/)?this.build():t.prototype.update.call(this,e,n)},e.blotName="block",e.scope=i.Scope.BLOCK_BLOT,e.tagName="P",e}(o.default);e.default=l},function(t,e,n){"use strict";var r=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var o=n(19),i=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return r(e,t),e.formats=function(t){},e.prototype.format=function(e,n){t.prototype.formatAt.call(this,0,this.length(),e,n)},e.prototype.formatAt=function(e,n,r,o){0===e&&n===this.length()?this.format(r,o):t.prototype.formatAt.call(this,e,n,r,o)},e.prototype.formats=function(){return this.statics.formats(this.domNode)},e}(o.default);e.default=i},function(t,e,n){"use strict";var r=this&&this.__extends||function(){var t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])};return function(e,n){function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}}();Object.defineProperty(e,"__esModule",{value:!0});var o=n(19),i=n(1),l=function(t){function e(e){var n=t.call(this,e)||this;return n.text=n.statics.value(n.domNode),n}return r(e,t),e.create=function(t){return document.createTextNode(t)},e.value=function(t){var e=t.data;return e.normalize&&(e=e.normalize()),e},e.prototype.deleteAt=function(t,e){this.domNode.data=this.text=this.text.slice(0,t)+this.text.slice(t+e)},e.prototype.index=function(t,e){return this.domNode===t?e:-1},e.prototype.insertAt=function(e,n,r){null==r?(this.text=this.text.slice(0,e)+n+this.text.slice(e),this.domNode.data=this.text):t.prototype.insertAt.call(this,e,n,r)},e.prototype.length=function(){return this.text.length},e.prototype.optimize=function(n){t.prototype.optimize.call(this,n),this.text=this.statics.value(this.domNode),0===this.text.length?this.remove():this.next instanceof e&&this.next.prev===this&&(this.insertAt(this.length(),this.next.value()),this.next.remove())},e.prototype.position=function(t,e){return void 0===e&&(e=!1),[this.domNode,t]},e.prototype.split=function(t,e){if(void 0===e&&(e=!1),!e){if(0===t)return this;if(t===this.length())return this.next}var n=i.create(this.domNode.splitText(t));return this.parent.insertBefore(n,this.next),this.text=this.statics.value(this.domNode),n},e.prototype.update=function(t,e){var n=this;t.some(function(t){return"characterData"===t.type&&t.target===n.domNode})&&(this.text=this.statics.value(this.domNode))},e.prototype.value=function(){return this.text},e.blotName="text",e.scope=i.Scope.INLINE_BLOT,e}(o.default);e.default=l},function(t,e,n){"use strict";var r=document.createElement("div");if(r.classList.toggle("test-class",!1),r.classList.contains("test-class")){var o=DOMTokenList.prototype.toggle;DOMTokenList.prototype.toggle=function(t,e){return arguments.length>1&&!this.contains(t)==!e?e:o.call(this,t)}}String.prototype.startsWith||(String.prototype.startsWith=function(t,e){return e=e||0,this.substr(e,t.length)===t}),String.prototype.endsWith||(String.prototype.endsWith=function(t,e){var n=this.toString();("number"!=typeof e||!isFinite(e)||Math.floor(e)!==e||e>n.length)&&(e=n.length),e-=t.length;var r=n.indexOf(t,e);return-1!==r&&r===e}),Array.prototype.find||Object.defineProperty(Array.prototype,"find",{value:function(t){if(null===this)throw new TypeError("Array.prototype.find called on null or undefined");if("function"!=typeof t)throw new TypeError("predicate must be a function");for(var e,n=Object(this),r=n.length>>>0,o=arguments[1],i=0;ie.length?t:e,l=t.length>e.length?e:t,a=i.indexOf(l);if(-1!=a)return r=[[y,i.substring(0,a)],[v,l],[y,i.substring(a+l.length)]],t.length>e.length&&(r[0][0]=r[2][0]=d),r;if(1==l.length)return[[d,t],[y,e]];var u=s(t,e);if(u){var c=u[0],f=u[1],h=u[2],p=u[3],b=u[4],g=n(c,h),m=n(f,p);return g.concat([[v,b]],m)}return o(t,e)}function o(t,e){for(var n=t.length,r=e.length,o=Math.ceil((n+r)/2),l=o,a=2*o,s=new Array(a),u=new Array(a),c=0;cn)v+=2;else if(x>r)p+=2;else if(h){var k=l+f-_;if(k>=0&&k=E)return i(t,e,O,x)}}}for(var N=-m+b;N<=m-g;N+=2){var E,k=l+N;E=N==-m||N!=m&&u[k-1]n)g+=2;else if(j>r)b+=2;else if(!h){var w=l+f-N;if(w>=0&&w=E)return i(t,e,O,x)}}}}return[[d,t],[y,e]]}function i(t,e,r,o){var i=t.substring(0,r),l=e.substring(0,o),a=t.substring(r),s=e.substring(o),u=n(i,l),c=n(a,s);return u.concat(c)}function l(t,e){if(!t||!e||t.charAt(0)!=e.charAt(0))return 0;for(var n=0,r=Math.min(t.length,e.length),o=r,i=0;n=t.length?[r,o,i,s,f]:null}var r=t.length>e.length?t:e,o=t.length>e.length?e:t;if(r.length<4||2*o.lengthu[4].length?s:u:s;var c,f,h,p;return t.length>e.length?(c=i[0],f=i[1],h=i[2],p=i[3]):(h=i[0],p=i[1],c=i[2],f=i[3]),[c,f,h,p,i[4]]}function u(t){t.push([v,""]);for(var e,n=0,r=0,o=0,i="",s="";n1?(0!==r&&0!==o&&(e=l(s,i),0!==e&&(n-r-o>0&&t[n-r-o-1][0]==v?t[n-r-o-1][1]+=s.substring(0,e):(t.splice(0,0,[v,s.substring(0,e)]),n++),s=s.substring(e),i=i.substring(e)),0!==(e=a(s,i))&&(t[n][1]=s.substring(s.length-e)+t[n][1],s=s.substring(0,s.length-e),i=i.substring(0,i.length-e))),0===r?t.splice(n-o,r+o,[y,s]):0===o?t.splice(n-r,r+o,[d,i]):t.splice(n-r-o,r+o,[d,i],[y,s]),n=n-r-o+(r?1:0)+(o?1:0)+1):0!==n&&t[n-1][0]==v?(t[n-1][1]+=t[n][1],t.splice(n,1)):n++,o=0,r=0,i="",s=""}""===t[t.length-1][1]&&t.pop();var c=!1;for(n=1;n0&&r.splice(o+2,0,[l[0],a]),p(r,o,3)}return t}function h(t){for(var e=!1,n=function(t){return t.charCodeAt(0)>=56320&&t.charCodeAt(0)<=57343},r=2;r=55296&&t.charCodeAt(t.length-1)<=56319}(t[r-2][1])&&t[r-1][0]===d&&n(t[r-1][1])&&t[r][0]===y&&n(t[r][1])&&(e=!0,t[r-1][1]=t[r-2][1].slice(-1)+t[r-1][1],t[r][1]=t[r-2][1].slice(-1)+t[r][1],t[r-2][1]=t[r-2][1].slice(0,-1));if(!e)return t;for(var o=[],r=0;r0&&o.push(t[r]);return o}function p(t,e,n){for(var r=e+n-1;r>=0&&r>=e-1;r--)if(r+1=r&&!a.endsWith("\n")&&(n=!0),e.scroll.insertAt(t,a);var c=e.scroll.line(t),f=u(c,2),h=f[0],p=f[1],y=(0,T.default)({},(0,O.bubbleFormats)(h));if(h instanceof w.default){var b=h.descendant(v.default.Leaf,p),g=u(b,1),m=g[0];y=(0,T.default)(y,(0,O.bubbleFormats)(m))}l=d.default.attributes.diff(y,l)||{}}else if("object"===s(o.insert)){var _=Object.keys(o.insert)[0];if(null==_)return t;e.scroll.insertAt(t,_,o.insert[_])}r+=i}return Object.keys(l).forEach(function(n){e.scroll.formatAt(t,i,n,l[n])}),t+i},0),t.reduce(function(t,n){return"number"==typeof n.delete?(e.scroll.deleteAt(t,n.delete),t):t+(n.retain||n.insert.length||1)},0),this.scroll.batchEnd(),this.update(t)}},{key:"deleteText",value:function(t,e){return this.scroll.deleteAt(t,e),this.update((new h.default).retain(t).delete(e))}},{key:"formatLine",value:function(t,e){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return this.scroll.update(),Object.keys(r).forEach(function(o){if(null==n.scroll.whitelist||n.scroll.whitelist[o]){var i=n.scroll.lines(t,Math.max(e,1)),l=e;i.forEach(function(e){var i=e.length();if(e instanceof g.default){var a=t-e.offset(n.scroll),s=e.newlineIndex(a+l)-a+1;e.formatAt(a,s,o,r[o])}else e.format(o,r[o]);l-=i})}}),this.scroll.optimize(),this.update((new h.default).retain(t).retain(e,(0,N.default)(r)))}},{key:"formatText",value:function(t,e){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return Object.keys(r).forEach(function(o){n.scroll.formatAt(t,e,o,r[o])}),this.update((new h.default).retain(t).retain(e,(0,N.default)(r)))}},{key:"getContents",value:function(t,e){return this.delta.slice(t,t+e)}},{key:"getDelta",value:function(){return this.scroll.lines().reduce(function(t,e){return t.concat(e.delta())},new h.default)}},{key:"getFormat",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:0,n=[],r=[];0===e?this.scroll.path(t).forEach(function(t){var e=u(t,1),o=e[0];o instanceof w.default?n.push(o):o instanceof v.default.Leaf&&r.push(o)}):(n=this.scroll.lines(t,e),r=this.scroll.descendants(v.default.Leaf,t,e));var o=[n,r].map(function(t){if(0===t.length)return{};for(var e=(0,O.bubbleFormats)(t.shift());Object.keys(e).length>0;){var n=t.shift();if(null==n)return e;e=l((0,O.bubbleFormats)(n),e)}return e});return T.default.apply(T.default,o)}},{key:"getText",value:function(t,e){return this.getContents(t,e).filter(function(t){return"string"==typeof t.insert}).map(function(t){return t.insert}).join("")}},{key:"insertEmbed",value:function(t,e,n){return this.scroll.insertAt(t,e,n),this.update((new h.default).retain(t).insert(o({},e,n)))}},{key:"insertText",value:function(t,e){var n=this,r=arguments.length>2&&void 0!==arguments[2]?arguments[2]:{};return e=e.replace(/\r\n/g,"\n").replace(/\r/g,"\n"),this.scroll.insertAt(t,e),Object.keys(r).forEach(function(o){n.scroll.formatAt(t,e.length,o,r[o])}),this.update((new h.default).retain(t).insert(e,(0,N.default)(r)))}},{key:"isBlank",value:function(){if(0==this.scroll.children.length)return!0;if(this.scroll.children.length>1)return!1;var t=this.scroll.children.head;return t.statics.blotName===w.default.blotName&&(!(t.children.length>1)&&t.children.head instanceof k.default)}},{key:"removeFormat",value:function(t,e){var n=this.getText(t,e),r=this.scroll.line(t+e),o=u(r,2),i=o[0],l=o[1],a=0,s=new h.default;null!=i&&(a=i instanceof g.default?i.newlineIndex(l)-l+1:i.length()-l,s=i.delta().slice(l,l+a-1).insert("\n"));var c=this.getContents(t,e+a),f=c.diff((new h.default).insert(n).concat(s)),p=(new h.default).retain(t).concat(f);return this.applyDelta(p)}},{key:"update",value:function(t){var e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:[],n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:void 0,r=this.delta;if(1===e.length&&"characterData"===e[0].type&&e[0].target.data.match(P)&&v.default.find(e[0].target)){var o=v.default.find(e[0].target),i=(0,O.bubbleFormats)(o),l=o.offset(this.scroll),a=e[0].oldValue.replace(_.default.CONTENTS,""),s=(new h.default).insert(a),u=(new h.default).insert(o.value());t=(new h.default).retain(l).concat(s.diff(u,n)).reduce(function(t,e){return e.insert?t.insert(e.insert,i):t.push(e)},new h.default),this.delta=r.compose(t)}else this.delta=this.getDelta(),t&&(0,A.default)(r.compose(t),this.delta)||(t=r.diff(this.delta,n));return t}}]),t}();e.default=S},function(t,e){"use strict";function n(){}function r(t,e,n){this.fn=t,this.context=e,this.once=n||!1}function o(){this._events=new n,this._eventsCount=0}var i=Object.prototype.hasOwnProperty,l="~";Object.create&&(n.prototype=Object.create(null),(new n).__proto__||(l=!1)),o.prototype.eventNames=function(){var t,e,n=[];if(0===this._eventsCount)return n;for(e in t=this._events)i.call(t,e)&&n.push(l?e.slice(1):e);return Object.getOwnPropertySymbols?n.concat(Object.getOwnPropertySymbols(t)):n},o.prototype.listeners=function(t,e){var n=l?l+t:t,r=this._events[n];if(e)return!!r;if(!r)return[];if(r.fn)return[r.fn];for(var o=0,i=r.length,a=new Array(i);o0){if(i instanceof y.BlockEmbed||f instanceof y.BlockEmbed)return void this.optimize();if(i instanceof _.default){var h=i.newlineIndex(i.length(),!0);if(h>-1&&(i=i.split(h+1))===f)return void this.optimize()}else if(f instanceof _.default){var p=f.newlineIndex(0);p>-1&&f.split(p+1)}var d=f.children.head instanceof g.default?null:f.children.head;i.moveChildren(f,d),i.remove()}this.optimize()}},{key:"enable",value:function(){var t=!(arguments.length>0&&void 0!==arguments[0])||arguments[0];this.domNode.setAttribute("contenteditable",t)}},{key:"formatAt",value:function(t,n,r,o){(null==this.whitelist||this.whitelist[r])&&(c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"formatAt",this).call(this,t,n,r,o),this.optimize())}},{key:"insertAt",value:function(t,n,r){if(null==r||null==this.whitelist||this.whitelist[n]){if(t>=this.length())if(null==r||null==h.default.query(n,h.default.Scope.BLOCK)){var o=h.default.create(this.statics.defaultChild);this.appendChild(o),null==r&&n.endsWith("\n")&&(n=n.slice(0,-1)),o.insertAt(0,n,r)}else{var i=h.default.create(n,r);this.appendChild(i)}else c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"insertAt",this).call(this,t,n,r);this.optimize()}}},{key:"insertBefore",value:function(t,n){if(t.statics.scope===h.default.Scope.INLINE_BLOT){var r=h.default.create(this.statics.defaultChild);r.appendChild(t),t=r}c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"insertBefore",this).call(this,t,n)}},{key:"leaf",value:function(t){return this.path(t).pop()||[null,-1]}},{key:"line",value:function(t){return t===this.length()?this.line(t-1):this.descendant(a,t)}},{key:"lines",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:0,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:Number.MAX_VALUE;return function t(e,n,r){var o=[],i=r;return e.children.forEachAt(n,r,function(e,n,r){a(e)?o.push(e):e instanceof h.default.Container&&(o=o.concat(t(e,n,i))),i-=r}),o}(this,t,e)}},{key:"optimize",value:function(){var t=arguments.length>0&&void 0!==arguments[0]?arguments[0]:[],n=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};!0!==this.batch&&(c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"optimize",this).call(this,t,n),t.length>0&&this.emitter.emit(d.default.events.SCROLL_OPTIMIZE,t,n))}},{key:"path",value:function(t){return c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"path",this).call(this,t).slice(1)}},{key:"update",value:function(t){if(!0!==this.batch){var n=d.default.sources.USER;"string"==typeof t&&(n=t),Array.isArray(t)||(t=this.observer.takeRecords()),t.length>0&&this.emitter.emit(d.default.events.SCROLL_BEFORE_UPDATE,n,t),c(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"update",this).call(this,t.concat([])),t.length>0&&this.emitter.emit(d.default.events.SCROLL_UPDATE,n,t)}}}]),e}(h.default.Scroll);x.blotName="scroll",x.className="ql-editor",x.tagName="DIV",x.defaultChild="block",x.allowedChildren=[v.default,y.BlockEmbed,w.default],e.default=x},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function l(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}function s(t,e,n){return"object"===(void 0===e?"undefined":x(e))?Object.keys(e).reduce(function(t,n){return s(t,n,e[n])},t):t.reduce(function(t,r){return r.attributes&&r.attributes[e]?t.push(r):t.insert(r.insert,(0,j.default)({},o({},e,n),r.attributes))},new q.default)}function u(t){if(t.nodeType!==Node.ELEMENT_NODE)return{};return t["__ql-computed-style"]||(t["__ql-computed-style"]=window.getComputedStyle(t))}function c(t,e){for(var n="",r=t.ops.length-1;r>=0&&n.length-1}function h(t,e,n){return t.nodeType===t.TEXT_NODE?n.reduce(function(e,n){return n(t,e)},new q.default):t.nodeType===t.ELEMENT_NODE?[].reduce.call(t.childNodes||[],function(r,o){var i=h(o,e,n);return o.nodeType===t.ELEMENT_NODE&&(i=e.reduce(function(t,e){return e(o,t)},i),i=(o[W]||[]).reduce(function(t,e){return e(o,t)},i)),r.concat(i)},new q.default):new q.default}function p(t,e,n){return s(n,t,!0)}function d(t,e){var n=P.default.Attributor.Attribute.keys(t),r=P.default.Attributor.Class.keys(t),o=P.default.Attributor.Style.keys(t),i={};return n.concat(r).concat(o).forEach(function(e){var n=P.default.query(e,P.default.Scope.ATTRIBUTE);null!=n&&(i[n.attrName]=n.value(t),i[n.attrName])||(n=Y[e],null==n||n.attrName!==e&&n.keyName!==e||(i[n.attrName]=n.value(t)||void 0),null==(n=X[e])||n.attrName!==e&&n.keyName!==e||(n=X[e],i[n.attrName]=n.value(t)||void 0))}),Object.keys(i).length>0&&(e=s(e,i)),e}function y(t,e){var n=P.default.query(t);if(null==n)return e;if(n.prototype instanceof P.default.Embed){var r={},o=n.value(t);null!=o&&(r[n.blotName]=o,e=(new q.default).insert(r,n.formats(t)))}else"function"==typeof n.formats&&(e=s(e,n.blotName,n.formats(t)));return e}function v(t,e){return c(e,"\n")||e.insert("\n"),e}function b(){return new q.default}function g(t,e){var n=P.default.query(t);if(null==n||"list-item"!==n.blotName||!c(e,"\n"))return e;for(var r=-1,o=t.parentNode;!o.classList.contains("ql-clipboard");)"list"===(P.default.query(o)||{}).blotName&&(r+=1),o=o.parentNode;return r<=0?e:e.compose((new q.default).retain(e.length()-1).retain(1,{indent:r}))}function m(t,e){return c(e,"\n")||(f(t)||e.length()>0&&t.nextSibling&&f(t.nextSibling))&&e.insert("\n"),e}function _(t,e){if(f(t)&&null!=t.nextElementSibling&&!c(e,"\n\n")){var n=t.offsetHeight+parseFloat(u(t).marginTop)+parseFloat(u(t).marginBottom);t.nextElementSibling.offsetTop>t.offsetTop+1.5*n&&e.insert("\n")}return e}function O(t,e){var n={},r=t.style||{};return r.fontStyle&&"italic"===u(t).fontStyle&&(n.italic=!0),r.fontWeight&&(u(t).fontWeight.startsWith("bold")||parseInt(u(t).fontWeight)>=700)&&(n.bold=!0),Object.keys(n).length>0&&(e=s(e,n)),parseFloat(r.textIndent||0)>0&&(e=(new q.default).insert("\t").concat(e)),e}function w(t,e){var n=t.data;if("O:P"===t.parentNode.tagName)return e.insert(n.trim());if(0===n.trim().length&&t.parentNode.classList.contains("ql-clipboard"))return e;if(!u(t.parentNode).whiteSpace.startsWith("pre")){var r=function(t,e){return e=e.replace(/[^\u00a0]/g,""),e.length<1&&t?" ":e};n=n.replace(/\r\n/g," ").replace(/\n/g," "),n=n.replace(/\s\s+/g,r.bind(r,!0)),(null==t.previousSibling&&f(t.parentNode)||null!=t.previousSibling&&f(t.previousSibling))&&(n=n.replace(/^\s+/,r.bind(r,!1))),(null==t.nextSibling&&f(t.parentNode)||null!=t.nextSibling&&f(t.nextSibling))&&(n=n.replace(/\s+$/,r.bind(r,!1)))}return e.insert(n)}Object.defineProperty(e,"__esModule",{value:!0}),e.matchText=e.matchSpacing=e.matchNewline=e.matchBlot=e.matchAttributor=e.default=void 0;var x="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},k=function(){function t(t,e){var n=[],r=!0,o=!1,i=void 0;try{for(var l,a=t[Symbol.iterator]();!(r=(l=a.next()).done)&&(n.push(l.value),!e||n.length!==e);r=!0);}catch(t){o=!0,i=t}finally{try{!r&&a.return&&a.return()}finally{if(o)throw i}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),E=function(){function t(t,e){for(var n=0;n\r?\n +\<"),this.convert();var e=this.quill.getFormat(this.quill.selection.savedRange.index);if(e[F.default.blotName]){var n=this.container.innerText;return this.container.innerHTML="",(new q.default).insert(n,o({},F.default.blotName,e[F.default.blotName]))}var r=this.prepareMatching(),i=k(r,2),l=i[0],a=i[1],s=h(this.container,l,a);return c(s,"\n")&&null==s.ops[s.ops.length-1].attributes&&(s=s.compose((new q.default).retain(s.length()-1).delete(1))),Z.log("convert",this.container.innerHTML,s),this.container.innerHTML="",s}},{key:"dangerouslyPasteHTML",value:function(t,e){var n=arguments.length>2&&void 0!==arguments[2]?arguments[2]:C.default.sources.API;if("string"==typeof t)this.quill.setContents(this.convert(t),e),this.quill.setSelection(0,C.default.sources.SILENT);else{var r=this.convert(e);this.quill.updateContents((new q.default).retain(t).concat(r),n),this.quill.setSelection(t+r.length(),C.default.sources.SILENT)}}},{key:"onPaste",value:function(t){var e=this;if(!t.defaultPrevented&&this.quill.isEnabled()){var n=this.quill.getSelection(),r=(new q.default).retain(n.index),o=this.quill.scrollingContainer.scrollTop;this.container.focus(),this.quill.selection.update(C.default.sources.SILENT),setTimeout(function(){r=r.concat(e.convert()).delete(n.length),e.quill.updateContents(r,C.default.sources.USER),e.quill.setSelection(r.length()-n.length,C.default.sources.SILENT),e.quill.scrollingContainer.scrollTop=o,e.quill.focus()},1)}}},{key:"prepareMatching",value:function(){var t=this,e=[],n=[];return this.matchers.forEach(function(r){var o=k(r,2),i=o[0],l=o[1];switch(i){case Node.TEXT_NODE:n.push(l);break;case Node.ELEMENT_NODE:e.push(l);break;default:[].forEach.call(t.container.querySelectorAll(i),function(t){t[W]=t[W]||[],t[W].push(l)})}}),[e,n]}}]),e}(I.default);$.DEFAULTS={matchers:[],matchVisual:!0},e.default=$,e.matchAttributor=d,e.matchBlot=y,e.matchNewline=m,e.matchSpacing=_,e.matchText=w},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function l(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}function a(t){var e=t.ops[t.ops.length-1];return null!=e&&(null!=e.insert?"string"==typeof e.insert&&e.insert.endsWith("\n"):null!=e.attributes&&Object.keys(e.attributes).some(function(t){return null!=f.default.query(t,f.default.Scope.BLOCK)}))}function s(t){var e=t.reduce(function(t,e){return t+=e.delete||0},0),n=t.length()-e;return a(t)&&(n-=1),n}Object.defineProperty(e,"__esModule",{value:!0}),e.getLastChangeIndex=e.default=void 0;var u=function(){function t(t,e){for(var n=0;nr&&this.stack.undo.length>0){var o=this.stack.undo.pop();n=n.compose(o.undo),t=o.redo.compose(t)}else this.lastRecorded=r;this.stack.undo.push({redo:t,undo:n}),this.stack.undo.length>this.options.maxStack&&this.stack.undo.shift()}}},{key:"redo",value:function(){this.change("redo","undo")}},{key:"transform",value:function(t){this.stack.undo.forEach(function(e){e.undo=t.transform(e.undo,!0),e.redo=t.transform(e.redo,!0)}),this.stack.redo.forEach(function(e){e.undo=t.transform(e.undo,!0),e.redo=t.transform(e.redo,!0)})}},{key:"undo",value:function(){this.change("undo","redo")}}]),e}(y.default);v.DEFAULTS={delay:1e3,maxStack:100,userOnly:!1},e.default=v,e.getLastChangeIndex=s},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function i(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0}),e.IndentClass=void 0;var l=function(){function t(t,e){for(var n=0;n0&&this.children.tail.format(t,e)}},{key:"formats",value:function(){return o({},this.statics.blotName,this.statics.formats(this.domNode))}},{key:"insertBefore",value:function(t,n){if(t instanceof v)u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"insertBefore",this).call(this,t,n);else{var r=null==n?this.length():n.offset(this),o=this.split(r);o.parent.insertBefore(t,o)}}},{key:"optimize",value:function(t){u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"optimize",this).call(this,t);var n=this.next;null!=n&&n.prev===this&&n.statics.blotName===this.statics.blotName&&n.domNode.tagName===this.domNode.tagName&&n.domNode.getAttribute("data-checked")===this.domNode.getAttribute("data-checked")&&(n.moveChildren(this),n.remove())}},{key:"replace",value:function(t){if(t.statics.blotName!==this.statics.blotName){var n=f.default.create(this.statics.defaultChild);t.moveChildren(n),this.appendChild(n)}u(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"replace",this).call(this,t)}}]),e}(y.default);b.blotName="list",b.scope=f.default.Scope.BLOCK_BLOT,b.tagName=["OL","UL"],b.defaultChild="list-item",b.allowedChildren=[v],e.ListItem=v,e.default=b},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function i(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var l=n(39),a=function(t){return t&&t.__esModule?t:{default:t}}(l),s=function(t){function e(){return r(this,e),o(this,(e.__proto__||Object.getPrototypeOf(e)).apply(this,arguments))}return i(e,t),e}(a.default);s.blotName="italic",s.tagName=["EM","I"],e.default=s},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function i(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var l=function(){function t(t,e){for(var n=0;n-1?n?this.domNode.setAttribute(t,n):this.domNode.removeAttribute(t):a(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"format",this).call(this,t,n)}}],[{key:"create",value:function(t){var n=a(e.__proto__||Object.getPrototypeOf(e),"create",this).call(this,t);return"string"==typeof t&&n.setAttribute("src",this.sanitize(t)),n}},{key:"formats",value:function(t){return f.reduce(function(e,n){return t.hasAttribute(n)&&(e[n]=t.getAttribute(n)),e},{})}},{key:"match",value:function(t){return/\.(jpe?g|gif|png)$/.test(t)||/^data:image\/.+;base64/.test(t)}},{key:"sanitize",value:function(t){return(0,c.sanitize)(t,["http","https","data"])?t:"//:0"}},{key:"value",value:function(t){return t.getAttribute("src")}}]),e}(u.default.Embed);h.blotName="image",h.tagName="IMG",e.default=h},function(t,e,n){"use strict";function r(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function o(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function i(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var l=function(){function t(t,e){for(var n=0;n-1?n?this.domNode.setAttribute(t,n):this.domNode.removeAttribute(t):a(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"format",this).call(this,t,n)}}],[{key:"create",value:function(t){var n=a(e.__proto__||Object.getPrototypeOf(e),"create",this).call(this,t);return n.setAttribute("frameborder","0"),n.setAttribute("allowfullscreen",!0),n.setAttribute("src",this.sanitize(t)),n}},{key:"formats",value:function(t){return f.reduce(function(e,n){return t.hasAttribute(n)&&(e[n]=t.getAttribute(n)),e},{})}},{key:"sanitize",value:function(t){return c.default.sanitize(t)}},{key:"value",value:function(t){return t.getAttribute("src")}}]),e}(s.BlockEmbed);h.blotName="video",h.className="ql-video",h.tagName="IFRAME",e.default=h},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function l(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.FormulaBlot=void 0;var a=function(){function t(t,e){for(var n=0;n0||null==this.cachedText)&&(this.domNode.innerHTML=t(e),this.domNode.normalize(),this.attach()),this.cachedText=e)}}]),e}(v.default);b.className="ql-syntax";var g=new c.default.Attributor.Class("token","hljs",{scope:c.default.Scope.INLINE}),m=function(t){function e(t,n){o(this,e);var r=i(this,(e.__proto__||Object.getPrototypeOf(e)).call(this,t,n));if("function"!=typeof r.options.highlight)throw new Error("Syntax module requires highlight.js. Please include the library on the page before Quill.");var l=null;return r.quill.on(h.default.events.SCROLL_OPTIMIZE,function(){clearTimeout(l),l=setTimeout(function(){r.highlight(),l=null},r.options.interval)}),r.highlight(),r}return l(e,t),a(e,null,[{key:"register",value:function(){h.default.register(g,!0),h.default.register(b,!0)}}]),a(e,[{key:"highlight",value:function(){var t=this;if(!this.quill.selection.composing){this.quill.update(h.default.sources.USER);var e=this.quill.getSelection();this.quill.scroll.descendants(b).forEach(function(e){e.highlight(t.options.highlight)}),this.quill.update(h.default.sources.SILENT),null!=e&&this.quill.setSelection(e,h.default.sources.SILENT)}}}]),e}(d.default);m.DEFAULTS={highlight:function(){return null==window.hljs?null:function(t){return window.hljs.highlightAuto(t).value}}(),interval:1e3},e.CodeBlock=b,e.CodeToken=g,e.default=m},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function i(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function l(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function a(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}function s(t,e,n){var r=document.createElement("button");r.setAttribute("type","button"),r.classList.add("ql-"+e),null!=n&&(r.value=n),t.appendChild(r)}function u(t,e){Array.isArray(e[0])||(e=[e]),e.forEach(function(e){var n=document.createElement("span");n.classList.add("ql-formats"),e.forEach(function(t){if("string"==typeof t)s(n,t);else{var e=Object.keys(t)[0],r=t[e];Array.isArray(r)?c(n,e,r):s(n,e,r)}}),t.appendChild(n)})}function c(t,e,n){var r=document.createElement("select");r.classList.add("ql-"+e),n.forEach(function(t){var e=document.createElement("option");!1!==t?e.setAttribute("value",t):e.setAttribute("selected","selected"),r.appendChild(e)}),t.appendChild(r)}Object.defineProperty(e,"__esModule",{value:!0}),e.addControls=e.default=void 0;var f=function(){function t(t,e){var n=[],r=!0,o=!1,i=void 0;try{for(var l,a=t[Symbol.iterator]();!(r=(l=a.next()).done)&&(n.push(l.value),!e||n.length!==e);r=!0);}catch(t){o=!0,i=t}finally{try{!r&&a.return&&a.return()}finally{if(o)throw i}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),h=function(){function t(t,e){for(var n=0;n '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e){t.exports=' '},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function l(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0}),e.default=e.BubbleTooltip=void 0;var a=function t(e,n,r){null===e&&(e=Function.prototype);var o=Object.getOwnPropertyDescriptor(e,n);if(void 0===o){var i=Object.getPrototypeOf(e);return null===i?void 0:t(i,n,r)}if("value"in o)return o.value;var l=o.get;if(void 0!==l)return l.call(r)},s=function(){function t(t,e){for(var n=0;n0&&o===h.default.sources.USER){r.show(),r.root.style.left="0px",r.root.style.width="",r.root.style.width=r.root.offsetWidth+"px";var i=r.quill.getLines(e.index,e.length);if(1===i.length)r.position(r.quill.getBounds(e));else{var l=i[i.length-1],a=r.quill.getIndex(l),s=Math.min(l.length()-1,e.index+e.length-a),u=r.quill.getBounds(new y.Range(a,s));r.position(u)}}else document.activeElement!==r.textbox&&r.quill.hasFocus()&&r.hide()}),r}return l(e,t),s(e,[{key:"listen",value:function(){var t=this;a(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"listen",this).call(this),this.root.querySelector(".ql-close").addEventListener("click",function(){t.root.classList.remove("ql-editing")}),this.quill.on(h.default.events.SCROLL_OPTIMIZE,function(){setTimeout(function(){if(!t.root.classList.contains("ql-hidden")){var e=t.quill.getSelection();null!=e&&t.position(t.quill.getBounds(e))}},1)})}},{key:"cancel",value:function(){this.show()}},{key:"position",value:function(t){var n=a(e.prototype.__proto__||Object.getPrototypeOf(e.prototype),"position",this).call(this,t),r=this.root.querySelector(".ql-tooltip-arrow");if(r.style.marginLeft="",0===n)return n;r.style.marginLeft=-1*n-r.offsetWidth/2+"px"}}]),e}(p.BaseTooltip);_.TEMPLATE=['','
','','',"
"].join(""),e.BubbleTooltip=_,e.default=m},function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{default:t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function l(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}Object.defineProperty(e,"__esModule",{value:!0});var a=function(){function t(t,e){var n=[],r=!0,o=!1,i=void 0;try{for(var l,a=t[Symbol.iterator]();!(r=(l=a.next()).done)&&(n.push(l.value),!e||n.length!==e);r=!0);}catch(t){o=!0,i=t}finally{try{!r&&a.return&&a.return()}finally{if(o)throw i}}return n}return function(e,n){if(Array.isArray(e))return e;if(Symbol.iterator in Object(e))return t(e,n);throw new TypeError("Invalid attempt to destructure non-iterable instance")}}(),s=function t(e,n,r){null===e&&(e=Function.prototype);var o=Object.getOwnPropertyDescriptor(e,n);if(void 0===o){var i=Object.getPrototypeOf(e);return null===i?void 0:t(i,n,r)}if("value"in o)return o.value;var l=o.get;if(void 0!==l)return l.call(r)},u=function(){function t(t,e){for(var n=0;n','','',''].join(""),e.default=w}]).default}); +//# sourceMappingURL=quill.min.js.map \ No newline at end of file diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/__uniappquillimageresize.js b/app/src/main/assets/apps/__UNI__FB2D473/www/__uniappquillimageresize.js new file mode 100644 index 0000000..725289b --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/__uniappquillimageresize.js @@ -0,0 +1 @@ +!function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.ImageResize=e():t.ImageResize=e()}(this,function(){return function(t){function e(o){if(n[o])return n[o].exports;var r=n[o]={i:o,l:!1,exports:{}};return t[o].call(r.exports,r,r.exports,e),r.l=!0,r.exports}var n={};return e.m=t,e.c=n,e.i=function(t){return t},e.d=function(t,n,o){e.o(t,n)||Object.defineProperty(t,n,{configurable:!1,enumerable:!0,get:o})},e.n=function(t){var n=t&&t.__esModule?function(){return t.default}:function(){return t};return e.d(n,"a",n),n},e.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},e.p="",e(e.s=39)}([function(t,e){function n(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}t.exports=n},function(t,e,n){var o=n(22),r="object"==typeof self&&self&&self.Object===Object&&self,i=o||r||Function("return this")();t.exports=i},function(t,e){function n(t){return null!=t&&"object"==typeof t}t.exports=n},function(t,e,n){function o(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e-1&&t%1==0&&t-1&&t%1==0&&t<=o}var o=9007199254740991;t.exports=n},function(t,e,n){var o=n(50),r=n(55),i=n(87),u=i&&i.isTypedArray,c=u?r(u):o;t.exports=c},function(t,e,n){function o(t){return u(t)?r(t,!0):i(t)}var r=n(44),i=n(51),u=n(12);t.exports=o},function(t,e,n){"use strict";e.a={modules:["DisplaySize","Toolbar","Resize"]}},function(t,e,n){"use strict";function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function r(t,e){if(!t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return!e||"object"!=typeof e&&"function"!=typeof e?t:e}function i(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}n.d(e,"a",function(){return c});var u=n(9),c=function(t){function e(){var t,n,i,u;o(this,e);for(var c=arguments.length,a=Array(c),s=0;s1&&void 0!==arguments[1]?arguments[1]:{};o(this,t),this.initializeModules=function(){n.removeModules(),n.modules=n.moduleClasses.map(function(t){return new(f[t]||t)(n)}),n.modules.forEach(function(t){t.onCreate()}),n.onUpdate()},this.onUpdate=function(){n.repositionElements(),n.modules.forEach(function(t){t.onUpdate()})},this.removeModules=function(){n.modules.forEach(function(t){t.onDestroy()}),n.modules=[]},this.handleClick=function(t){if(t.target&&t.target.tagName&&"IMG"===t.target.tagName.toUpperCase()){if(n.img===t.target)return;n.img&&n.hide(),n.show(t.target)}else n.img&&n.hide()},this.show=function(t){n.img=t,n.showOverlay(),n.initializeModules()},this.showOverlay=function(){n.overlay&&n.hideOverlay(),n.quill.setSelection(null),n.setUserSelect("none"),document.addEventListener("keyup",n.checkImage,!0),n.quill.root.addEventListener("input",n.checkImage,!0),n.overlay=document.createElement("div"),n.overlay.classList.add("ql-image-overlay"),n.quill.root.parentNode.appendChild(n.overlay),n.repositionElements()},this.hideOverlay=function(){n.overlay&&(n.quill.root.parentNode.removeChild(n.overlay),n.overlay=void 0,document.removeEventListener("keyup",n.checkImage),n.quill.root.removeEventListener("input",n.checkImage),n.setUserSelect(""))},this.repositionElements=function(){if(n.overlay&&n.img){var t=n.quill.root.parentNode,e=n.img.getBoundingClientRect(),o=t.getBoundingClientRect();Object.assign(n.overlay.style,{left:e.left-o.left-1+t.scrollLeft+"px",top:e.top-o.top+t.scrollTop+"px",width:e.width+"px",height:e.height+"px"})}},this.hide=function(){n.hideOverlay(),n.removeModules(),n.img=void 0},this.setUserSelect=function(t){["userSelect","mozUserSelect","webkitUserSelect","msUserSelect"].forEach(function(e){n.quill.root.style[e]=t,document.documentElement.style[e]=t})},this.checkImage=function(t){n.img&&(46!=t.keyCode&&8!=t.keyCode||window.Quill.find(n.img).deleteAt(0),n.hide())},this.quill=e;var c=!1;r.modules&&(c=r.modules.slice()),this.options=i()({},r,u.a),!1!==c&&(this.options.modules=c),document.execCommand("enableObjectResizing",!1,"false"),this.quill.root.addEventListener("click",this.handleClick,!1),this.quill.root.parentNode.style.position=this.quill.root.parentNode.style.position||"relative",this.moduleClasses=this.options.modules,this.modules=[]};e.default=p,window.Quill&&window.Quill.register("modules/imageResize",p)},function(t,e,n){function o(t){var e=-1,n=null==t?0:t.length;for(this.clear();++e1?n[r-1]:void 0,c=r>2?n[2]:void 0;for(u=t.length>3&&"function"==typeof u?(r--,u):void 0,c&&i(n[0],n[1],c)&&(u=r<3?void 0:u,r=1),e=Object(e);++o-1}var r=n(4);t.exports=o},function(t,e,n){function o(t,e){var n=this.__data__,o=r(n,t);return o<0?(++this.size,n.push([t,e])):n[o][1]=e,this}var r=n(4);t.exports=o},function(t,e,n){function o(){this.size=0,this.__data__={hash:new r,map:new(u||i),string:new r}}var r=n(40),i=n(3),u=n(15);t.exports=o},function(t,e,n){function o(t){var e=r(this,t).delete(t);return this.size-=e?1:0,e}var r=n(6);t.exports=o},function(t,e,n){function o(t){return r(this,t).get(t)}var r=n(6);t.exports=o},function(t,e,n){function o(t){return r(this,t).has(t)}var r=n(6);t.exports=o},function(t,e,n){function o(t,e){var n=r(this,t),o=n.size;return n.set(t,e),this.size+=n.size==o?0:1,this}var r=n(6);t.exports=o},function(t,e){function n(t){var e=[];if(null!=t)for(var n in Object(t))e.push(n);return e}t.exports=n},function(t,e,n){(function(t){var o=n(22),r="object"==typeof e&&e&&!e.nodeType&&e,i=r&&"object"==typeof t&&t&&!t.nodeType&&t,u=i&&i.exports===r,c=u&&o.process,a=function(){try{var t=i&&i.require&&i.require("util").types;return t||c&&c.binding&&c.binding("util")}catch(t){}}();t.exports=a}).call(e,n(14)(t))},function(t,e){function n(t){return r.call(t)}var o=Object.prototype,r=o.toString;t.exports=n},function(t,e){function n(t,e){return function(n){return t(e(n))}}t.exports=n},function(t,e,n){function o(t,e,n){return e=i(void 0===e?t.length-1:e,0),function(){for(var o=arguments,u=-1,c=i(o.length-e,0),a=Array(c);++u0){if(++e>=o)return arguments[0]}else e=0;return t.apply(void 0,arguments)}}var o=800,r=16,i=Date.now;t.exports=n},function(t,e,n){function o(){this.__data__=new r,this.size=0}var r=n(3);t.exports=o},function(t,e){function n(t){var e=this.__data__,n=e.delete(t);return this.size=e.size,n}t.exports=n},function(t,e){function n(t){return this.__data__.get(t)}t.exports=n},function(t,e){function n(t){return this.__data__.has(t)}t.exports=n},function(t,e,n){function o(t,e){var n=this.__data__;if(n instanceof r){var o=n.__data__;if(!i||o.length promise.resolve(callback()).then(() => value), + reason => promise.resolve(callback()).then(() => { + throw reason + }) + ) + } +}; + +if (typeof uni !== 'undefined' && uni && uni.requireGlobal) { + const global = uni.requireGlobal() + ArrayBuffer = global.ArrayBuffer + Int8Array = global.Int8Array + Uint8Array = global.Uint8Array + Uint8ClampedArray = global.Uint8ClampedArray + Int16Array = global.Int16Array + Uint16Array = global.Uint16Array + Int32Array = global.Int32Array + Uint32Array = global.Uint32Array + Float32Array = global.Float32Array + Float64Array = global.Float64Array + BigInt64Array = global.BigInt64Array + BigUint64Array = global.BigUint64Array +}; + + +(()=>{var E=Object.create;var g=Object.defineProperty;var _=Object.getOwnPropertyDescriptor;var D=Object.getOwnPropertyNames;var w=Object.getPrototypeOf,v=Object.prototype.hasOwnProperty;var y=(e,a)=>()=>(a||e((a={exports:{}}).exports,a),a.exports);var S=(e,a,s,o)=>{if(a&&typeof a=="object"||typeof a=="function")for(let l of D(a))!v.call(e,l)&&l!==s&&g(e,l,{get:()=>a[l],enumerable:!(o=_(a,l))||o.enumerable});return e};var B=(e,a,s)=>(s=e!=null?E(w(e)):{},S(a||!e||!e.__esModule?g(s,"default",{value:e,enumerable:!0}):s,e));var b=y((N,m)=>{m.exports=Vue});var d={data(){return{locale:"en",fallbackLocale:"en",localization:{en:{done:"OK",cancel:"Cancel"},zh:{done:"\u5B8C\u6210",cancel:"\u53D6\u6D88"},"zh-hans":{},"zh-hant":{},messages:{}},localizationTemplate:{}}},onLoad(){this.initLocale()},created(){this.initLocale()},methods:{initLocale(){if(this.__initLocale)return;this.__initLocale=!0;let e=(plus.webview.currentWebview().extras||{}).data||{};if(e.messages&&(this.localization.messages=e.messages),e.locale){this.locale=e.locale.toLowerCase();return}let a={chs:"hans",cn:"hans",sg:"hans",cht:"hant",tw:"hant",hk:"hant",mo:"hant"},s=plus.os.language.toLowerCase().split("/")[0].replace("_","-").split("-"),o=s[1];o&&(s[1]=a[o]||o),s.length=s.length>2?2:s.length,this.locale=s.join("-")},localize(e){let a=this.locale,s=a.split("-")[0],o=this.fallbackLocale,l=n=>Object.assign({},this.localization[n],(this.localizationTemplate||{})[n]);return l("messages")[e]||l(a)[e]||l(s)[e]||l(o)[e]||e}}},p={onLoad(){this.initMessage()},methods:{initMessage(){let{from:e,callback:a,runtime:s,data:o={},useGlobalEvent:l}=plus.webview.currentWebview().extras||{};this.__from=e,this.__runtime=s,this.__page=plus.webview.currentWebview().id,this.__useGlobalEvent=l,this.data=JSON.parse(JSON.stringify(o)),plus.key.addEventListener("backbutton",()=>{typeof this.onClose=="function"?this.onClose():plus.webview.currentWebview().close("auto")});let n=this,r=function(c){let f=c.data&&c.data.__message;!f||n.__onMessageCallback&&n.__onMessageCallback(f.data)};if(this.__useGlobalEvent)weex.requireModule("globalEvent").addEventListener("plusMessage",r);else{let c=new BroadcastChannel(this.__page);c.onmessage=r}},postMessage(e={},a=!1){let s=JSON.parse(JSON.stringify({__message:{__page:this.__page,data:e,keep:a}})),o=this.__from;if(this.__runtime==="v8")this.__useGlobalEvent?plus.webview.postMessageToUniNView(s,o):new BroadcastChannel(o).postMessage(s);else{let l=plus.webview.getWebviewById(o);l&&l.evalJS(`__plusMessage&&__plusMessage(${JSON.stringify({data:s})})`)}},onMessage(e){this.__onMessageCallback=e}}};var i=B(b());var C=(e,a)=>{let s=e.__vccOpts||e;for(let[o,l]of a)s[o]=l;return s};var k={content:{"":{flex:1,alignItems:"center",justifyContent:"center",backgroundColor:"#000000"}},barcode:{"":{position:"absolute",left:0,top:0,right:0,bottom:0,zIndex:1}},"set-flash":{"":{alignItems:"center",justifyContent:"center",transform:"translateY(80px)",zIndex:2}},"image-flash":{"":{width:26,height:26,marginBottom:2}},"image-flash-text":{"":{fontSize:10,color:"#FFFFFF"}}},t=plus.barcode,A={qrCode:[t.QR,t.AZTEC,t.MAXICODE],barCode:[t.EAN13,t.EAN8,t.UPCA,t.UPCE,t.CODABAR,t.CODE128,t.CODE39,t.CODE93,t.ITF,t.RSS14,t.RSSEXPANDED],datamatrix:[t.DATAMATRIX],pdf417:[t.PDF417]},O={[t.QR]:"QR_CODE",[t.EAN13]:"EAN_13",[t.EAN8]:"EAN_8",[t.DATAMATRIX]:"DATA_MATRIX",[t.UPCA]:"UPC_A",[t.UPCE]:"UPC_E",[t.CODABAR]:"CODABAR",[t.CODE39]:"CODE_39",[t.CODE93]:"CODE_93",[t.CODE128]:"CODE_128",[t.ITF]:"CODE_25",[t.PDF417]:"PDF_417",[t.AZTEC]:"AZTEC",[t.RSS14]:"RSS_14",[t.RSSEXPANDED]:"RSSEXPANDED"},M={mixins:[p,d],data:{filters:[0,2,1],backgroud:"#000000",frameColor:"#118ce9",scanbarColor:"#118ce9",enabledFlash:!1,flashImage0:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAABjklEQVRoQ+1ZbVHEQAx9TwE4ABTcOQAknANQAKcAUAAOAAXgAHAACsDCKQiTmbYDzJZtNt2bFrJ/m6+Xl2yyU2LmhzOPH/8PgIjcADirxNyapNoffMwMiMgzgMPBHmyCLySPLCoBwJKtAbJbYaBmD1yRvBwAtBMxl5DF+DZkiwCIyBLAzsgBbki+Wm2WAlCaL6zOMvKnJO+sNksB7ALQbO1ZHfbIv5FUVs2nCIB6EZETALdmj2mFY5I6X8ynGEADQllYmL1+VzBfnV/VvQB0aj45ARyQ/Ci14QLQsOBZLe5JaikWnzEA7AN4L4hgA2Dpyb76dANwsOCq/TZhASAYKGie0a7R1lDPI0ebtF0NUi+4yfdAtxr3PEMnD6BbD0QkNfACQO05EAwMuaBqDrIVycdmTpwDuP4R0OR7QFftVRP0g+49cwOQq4DJMxAAchmofY3m/EcJBQOZbTRKKJeBKKEoIePvpFRJ1VzmciUccyCa+C81cerBkuuB7sGTE/zt+yhN7AnAqxsAvBn06n8CkyPwMZKwm+UAAAAASUVORK5CYII=",flashImage1:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAMFBMVEUAAAA3kvI3lfY2k/VAl+43k/U3k/Q4k/M3kvI3k/M4k/Q4lPU2lPU2k/Vdq843k/WWSpNKAAAAD3RSTlMAwD+QINCAcPBgUDDgoBAE044kAAAAdklEQVQ4y2OgOrD/DwffUSTkERIfyZXAtOMbca7iVoKDDSgSbAijJqBI8J2HiX9FM2s+TOITmgQrTEIATYIJJuEA5mJ68S+Gg/0hEi0YEoxQK2gs0WyPQyKBGYeEAhPtJRaw45AIccXpwVEJekuwQyQWMFAfAACeDBJY9aXa3QAAAABJRU5ErkJggg==",autoDecodeCharSet:!1,autoZoom:!0,localizationTemplate:{en:{fail:"Recognition failure","flash.on":"Tap to turn light on","flash.off":"Tap to turn light off"},zh:{fail:"\u8BC6\u522B\u5931\u8D25","flash.on":"\u8F7B\u89E6\u7167\u4EAE","flash.off":"\u8F7B\u89E6\u5173\u95ED"}}},onLoad(){let e=this.data,a=e.scanType;this.autoDecodeCharSet=e.autoDecodeCharSet,this.autoZoom=e.autoZoom;let s=[];Array.isArray(a)&&a.length&&a.forEach(o=>{let l=A[o];l&&(s=s.concat(l))}),s.length||(s=s.concat(A.qrCode).concat(A.barCode).concat(A.datamatrix).concat(A.pdf417)),this.filters=s,this.onMessage(o=>{this.gallery()})},onUnload(){this.cancel()},onReady(){setTimeout(()=>{this.cancel(),this.start()},50)},methods:{start(){this.$refs.barcode.start({sound:this.data.sound})},scan(e){t.scan(e,(a,s,o,l)=>{this.scanSuccess(a,s,o,l)},()=>{plus.nativeUI.toast(this.localize("fail"))},this.filters,this.autoDecodeCharSet)},cancel(){this.$refs.barcode.cancel()},gallery(){plus.gallery.pick(e=>{this.scan(e)},e=>{e.code!==(weex.config.env.platform.toLowerCase()==="android"?12:-2)&&plus.nativeUI.toast(this.localize("fail"))},{multiple:!1,system:!1,filename:"_doc/uniapp_temp/gallery/",permissionAlert:!0})},onmarked(e){var a=e.detail;this.scanSuccess(a.code,a.message,a.file,a.charSet)},scanSuccess(e,a,s,o){this.postMessage({event:"marked",detail:{scanType:O[e],result:a,charSet:o||"utf8",path:s||""}})},onerror(e){this.postMessage({event:"fail",message:JSON.stringify(e)})},setFlash(){this.enabledFlash=!this.enabledFlash,this.$refs.barcode.setFlash(this.enabledFlash)}}};function I(e,a,s,o,l,n){return(0,i.openBlock)(),(0,i.createElementBlock)("scroll-view",{scrollY:!0,showScrollbar:!0,enableBackToTop:!0,bubble:"true",style:{flexDirection:"column"}},[(0,i.createElementVNode)("view",{class:"content"},[(0,i.createElementVNode)("barcode",{class:"barcode",ref:"barcode",autostart:"false",backgroud:e.backgroud,frameColor:e.frameColor,scanbarColor:e.scanbarColor,filters:e.filters,autoDecodeCharset:e.autoDecodeCharSet,autoZoom:e.autoZoom,onMarked:a[0]||(a[0]=(...r)=>n.onmarked&&n.onmarked(...r)),onError:a[1]||(a[1]=(...r)=>n.onerror&&n.onerror(...r))},null,40,["backgroud","frameColor","scanbarColor","filters","autoDecodeCharset","autoZoom"]),(0,i.createElementVNode)("view",{class:"set-flash",onClick:a[2]||(a[2]=(...r)=>n.setFlash&&n.setFlash(...r))},[(0,i.createElementVNode)("u-image",{class:"image-flash",src:e.enabledFlash?e.flashImage1:e.flashImage0,resize:"stretch"},null,8,["src"]),(0,i.createElementVNode)("u-text",{class:"image-flash-text"},(0,i.toDisplayString)(e.enabledFlash?e.localize("flash.off"):e.localize("flash.on")),1)])])])}var h=C(M,[["render",I],["styles",[k]]]);var u=plus.webview.currentWebview();if(u){let e=parseInt(u.id),a="template/__uniappscan",s={};try{s=JSON.parse(u.__query__)}catch(l){}h.mpType="page";let o=Vue.createPageApp(h,{$store:getApp({allowDefault:!0}).$store,__pageId:e,__pagePath:a,__pageQuery:s});o.provide("__globalStyles",Vue.useCssStyles([...__uniConfig.styles,...h.styles||[]])),o.mount("#root")}})(); diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/__uniappsuccess.png b/app/src/main/assets/apps/__UNI__FB2D473/www/__uniappsuccess.png new file mode 100644 index 0000000..c1f5bd7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/__uniappsuccess.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/__uniappview.html b/app/src/main/assets/apps/__UNI__FB2D473/www/__uniappview.html new file mode 100644 index 0000000..7751e72 --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/__uniappview.html @@ -0,0 +1,24 @@ + + + + + View + + + + + + +
+ + + + + + diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/app-config-service.js b/app/src/main/assets/apps/__UNI__FB2D473/www/app-config-service.js new file mode 100644 index 0000000..cc75e5c --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/app-config-service.js @@ -0,0 +1,11 @@ + + ;(function(){ + let u=void 0,isReady=false,onReadyCallbacks=[],isServiceReady=false,onServiceReadyCallbacks=[]; + const __uniConfig = {"pages":[],"globalStyle":{"backgroundColor":"#F8F8F8","bounce":"none","navigationBar":{"backgroundColor":"#F8F8F8","titleText":"uni-app x","type":"default","titleColor":"#000000"},"isNVue":false},"nvue":{"compiler":"uni-app","styleCompiler":"uni-app","flex-direction":"column"},"renderer":"auto","appname":"护理单元","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":true},"compilerVersion":"4.76","entryPagePath":"pages/login/login","entryPageQuery":"","realEntryPagePath":"","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000},"locales":{},"darkmode":false,"themeConfig":{}}; + const __uniRoutes = [{"path":"pages/login/login","meta":{"isQuit":true,"isEntry":true,"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/denglu","meta":{"navigationBar":{"type":"default"},"isNVue":false}},{"path":"pages/index/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Nursing/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/index","meta":{"subNVues":[{"id":"monitorSub","path":"pages/camera","style":{"position":"absolute","left":"250px","top":"120px","width":"630px","height":"510px","background":"transparent"}}],"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/settings","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/input","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/saoma","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/watch/settings/leida","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/NursingNew/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Warehousing/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/Initialization/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/assess/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/timeMatrix/index","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/timeMatrix/indexnew","meta":{"navigationBar":{"style":"custom","type":"default"},"isNVue":false}},{"path":"pages/camera","meta":{"isSubNVue":true,"isNVue":true,"navigationBar":{}}}].map(uniRoute=>(uniRoute.meta.route=uniRoute.path,__uniConfig.pages.push(uniRoute.path),uniRoute.path='/'+uniRoute.path,uniRoute)); + __uniConfig.styles=[{"u-relative":{"":{"position":"relative"}},"u-rela":{"":{"position":"relative"}},"u-absolute":{"":{"position":"absolute"}},"u-abso":{"":{"position":"absolute"}},"u-font-xs":{"":{"fontSize":"22rpx"}},"u-font-sm":{"":{"fontSize":"26rpx"}},"u-font-md":{"":{"fontSize":"28rpx"}},"u-font-lg":{"":{"fontSize":"30rpx"}},"u-font-xl":{"":{"fontSize":"34rpx"}},"u-flex":{"":{"flexDirection":"row","alignItems":"center"}},"u-flex-wrap":{"":{"flexWrap":"wrap"}},"u-flex-nowrap":{"":{"flexWrap":"nowrap"}},"u-col-center":{"":{"alignItems":"center"}},"u-col-top":{"":{"alignItems":"flex-start"}},"u-col-bottom":{"":{"alignItems":"flex-end"}},"u-row-center":{"":{"justifyContent":"center"}},"u-row-left":{"":{"justifyContent":"flex-start"}},"u-row-right":{"":{"justifyContent":"flex-end"}},"u-row-between":{"":{"justifyContent":"space-between"}},"u-row-around":{"":{"justifyContent":"space-around"}},"u-text-left":{"":{"textAlign":"left"}},"u-text-center":{"":{"textAlign":"center"}},"u-text-right":{"":{"textAlign":"right"}},"u-flex-col":{"":{"flexDirection":"column"}},"u-flex-0":{"":{"flex":0}},"u-flex-1":{"":{"flex":1}},"u-flex-2":{"":{"flex":2}},"u-flex-3":{"":{"flex":3}},"u-flex-4":{"":{"flex":4}},"u-flex-5":{"":{"flex":5}},"u-flex-6":{"":{"flex":6}},"u-flex-7":{"":{"flex":7}},"u-flex-8":{"":{"flex":8}},"u-flex-9":{"":{"flex":9}},"u-flex-10":{"":{"flex":10}},"u-flex-11":{"":{"flex":11}},"u-flex-12":{"":{"flex":12}},"u-font-9":{"":{"fontSize":9}},"u-font-10":{"":{"fontSize":10}},"u-font-11":{"":{"fontSize":11}},"u-font-12":{"":{"fontSize":12}},"u-font-13":{"":{"fontSize":13}},"u-font-14":{"":{"fontSize":14}},"u-font-15":{"":{"fontSize":15}},"u-font-16":{"":{"fontSize":16}},"u-font-17":{"":{"fontSize":17}},"u-font-18":{"":{"fontSize":18}},"u-font-19":{"":{"fontSize":19}},"u-font-20":{"":{"fontSize":"20rpx"}},"u-font-21":{"":{"fontSize":"21rpx"}},"u-font-22":{"":{"fontSize":"22rpx"}},"u-font-23":{"":{"fontSize":"23rpx"}},"u-font-24":{"":{"fontSize":"24rpx"}},"u-font-25":{"":{"fontSize":"25rpx"}},"u-font-26":{"":{"fontSize":"26rpx"}},"u-font-27":{"":{"fontSize":"27rpx"}},"u-font-28":{"":{"fontSize":"28rpx"}},"u-font-29":{"":{"fontSize":"29rpx"}},"u-font-30":{"":{"fontSize":"30rpx"}},"u-font-31":{"":{"fontSize":"31rpx"}},"u-font-32":{"":{"fontSize":"32rpx"}},"u-font-33":{"":{"fontSize":"33rpx"}},"u-font-34":{"":{"fontSize":"34rpx"}},"u-font-35":{"":{"fontSize":"35rpx"}},"u-font-36":{"":{"fontSize":"36rpx"}},"u-font-37":{"":{"fontSize":"37rpx"}},"u-font-38":{"":{"fontSize":"38rpx"}},"u-font-39":{"":{"fontSize":"39rpx"}},"u-font-40":{"":{"fontSize":"40rpx"}},"u-margin-0":{"":{"!marginTop":"0rpx","!marginRight":"0rpx","!marginBottom":"0rpx","!marginLeft":"0rpx"}},"u-m-0":{"":{"!marginTop":"0rpx","!marginRight":"0rpx","!marginBottom":"0rpx","!marginLeft":"0rpx"}},"u-padding-0":{"":{"!paddingTop":"0rpx","!paddingRight":"0rpx","!paddingBottom":"0rpx","!paddingLeft":"0rpx"}},"u-p-0":{"":{"!paddingTop":"0rpx","!paddingRight":"0rpx","!paddingBottom":"0rpx","!paddingLeft":"0rpx"}},"u-m-l-0":{"":{"!marginLeft":"0rpx"}},"u-p-l-0":{"":{"!paddingLeft":"0rpx"}},"u-margin-left-0":{"":{"!marginLeft":"0rpx"}},"u-padding-left-0":{"":{"!paddingLeft":"0rpx"}},"u-m-t-0":{"":{"!marginTop":"0rpx"}},"u-p-t-0":{"":{"!paddingTop":"0rpx"}},"u-margin-top-0":{"":{"!marginTop":"0rpx"}},"u-padding-top-0":{"":{"!paddingTop":"0rpx"}},"u-m-r-0":{"":{"!marginRight":"0rpx"}},"u-p-r-0":{"":{"!paddingRight":"0rpx"}},"u-margin-right-0":{"":{"!marginRight":"0rpx"}},"u-padding-right-0":{"":{"!paddingRight":"0rpx"}},"u-m-b-0":{"":{"!marginBottom":"0rpx"}},"u-p-b-0":{"":{"!paddingBottom":"0rpx"}},"u-margin-bottom-0":{"":{"!marginBottom":"0rpx"}},"u-padding-bottom-0":{"":{"!paddingBottom":"0rpx"}},"u-margin-2":{"":{"!marginTop":"2rpx","!marginRight":"2rpx","!marginBottom":"2rpx","!marginLeft":"2rpx"}},"u-m-2":{"":{"!marginTop":"2rpx","!marginRight":"2rpx","!marginBottom":"2rpx","!marginLeft":"2rpx"}},"u-padding-2":{"":{"!paddingTop":"2rpx","!paddingRight":"2rpx","!paddingBottom":"2rpx","!paddingLeft":"2rpx"}},"u-p-2":{"":{"!paddingTop":"2rpx","!paddingRight":"2rpx","!paddingBottom":"2rpx","!paddingLeft":"2rpx"}},"u-m-l-2":{"":{"!marginLeft":"2rpx"}},"u-p-l-2":{"":{"!paddingLeft":"2rpx"}},"u-margin-left-2":{"":{"!marginLeft":"2rpx"}},"u-padding-left-2":{"":{"!paddingLeft":"2rpx"}},"u-m-t-2":{"":{"!marginTop":"2rpx"}},"u-p-t-2":{"":{"!paddingTop":"2rpx"}},"u-margin-top-2":{"":{"!marginTop":"2rpx"}},"u-padding-top-2":{"":{"!paddingTop":"2rpx"}},"u-m-r-2":{"":{"!marginRight":"2rpx"}},"u-p-r-2":{"":{"!paddingRight":"2rpx"}},"u-margin-right-2":{"":{"!marginRight":"2rpx"}},"u-padding-right-2":{"":{"!paddingRight":"2rpx"}},"u-m-b-2":{"":{"!marginBottom":"2rpx"}},"u-p-b-2":{"":{"!paddingBottom":"2rpx"}},"u-margin-bottom-2":{"":{"!marginBottom":"2rpx"}},"u-padding-bottom-2":{"":{"!paddingBottom":"2rpx"}},"u-margin-4":{"":{"!marginTop":"4rpx","!marginRight":"4rpx","!marginBottom":"4rpx","!marginLeft":"4rpx"}},"u-m-4":{"":{"!marginTop":"4rpx","!marginRight":"4rpx","!marginBottom":"4rpx","!marginLeft":"4rpx"}},"u-padding-4":{"":{"!paddingTop":"4rpx","!paddingRight":"4rpx","!paddingBottom":"4rpx","!paddingLeft":"4rpx"}},"u-p-4":{"":{"!paddingTop":"4rpx","!paddingRight":"4rpx","!paddingBottom":"4rpx","!paddingLeft":"4rpx"}},"u-m-l-4":{"":{"!marginLeft":"4rpx"}},"u-p-l-4":{"":{"!paddingLeft":"4rpx"}},"u-margin-left-4":{"":{"!marginLeft":"4rpx"}},"u-padding-left-4":{"":{"!paddingLeft":"4rpx"}},"u-m-t-4":{"":{"!marginTop":"4rpx"}},"u-p-t-4":{"":{"!paddingTop":"4rpx"}},"u-margin-top-4":{"":{"!marginTop":"4rpx"}},"u-padding-top-4":{"":{"!paddingTop":"4rpx"}},"u-m-r-4":{"":{"!marginRight":"4rpx"}},"u-p-r-4":{"":{"!paddingRight":"4rpx"}},"u-margin-right-4":{"":{"!marginRight":"4rpx"}},"u-padding-right-4":{"":{"!paddingRight":"4rpx"}},"u-m-b-4":{"":{"!marginBottom":"4rpx"}},"u-p-b-4":{"":{"!paddingBottom":"4rpx"}},"u-margin-bottom-4":{"":{"!marginBottom":"4rpx"}},"u-padding-bottom-4":{"":{"!paddingBottom":"4rpx"}},"u-margin-5":{"":{"!marginTop":"5rpx","!marginRight":"5rpx","!marginBottom":"5rpx","!marginLeft":"5rpx"}},"u-m-5":{"":{"!marginTop":"5rpx","!marginRight":"5rpx","!marginBottom":"5rpx","!marginLeft":"5rpx"}},"u-padding-5":{"":{"!paddingTop":"5rpx","!paddingRight":"5rpx","!paddingBottom":"5rpx","!paddingLeft":"5rpx"}},"u-p-5":{"":{"!paddingTop":"5rpx","!paddingRight":"5rpx","!paddingBottom":"5rpx","!paddingLeft":"5rpx"}},"u-m-l-5":{"":{"!marginLeft":"5rpx"}},"u-p-l-5":{"":{"!paddingLeft":"5rpx"}},"u-margin-left-5":{"":{"!marginLeft":"5rpx"}},"u-padding-left-5":{"":{"!paddingLeft":"5rpx"}},"u-m-t-5":{"":{"!marginTop":"5rpx"}},"u-p-t-5":{"":{"!paddingTop":"5rpx"}},"u-margin-top-5":{"":{"!marginTop":"5rpx"}},"u-padding-top-5":{"":{"!paddingTop":"5rpx"}},"u-m-r-5":{"":{"!marginRight":"5rpx"}},"u-p-r-5":{"":{"!paddingRight":"5rpx"}},"u-margin-right-5":{"":{"!marginRight":"5rpx"}},"u-padding-right-5":{"":{"!paddingRight":"5rpx"}},"u-m-b-5":{"":{"!marginBottom":"5rpx"}},"u-p-b-5":{"":{"!paddingBottom":"5rpx"}},"u-margin-bottom-5":{"":{"!marginBottom":"5rpx"}},"u-padding-bottom-5":{"":{"!paddingBottom":"5rpx"}},"u-margin-6":{"":{"!marginTop":"6rpx","!marginRight":"6rpx","!marginBottom":"6rpx","!marginLeft":"6rpx"}},"u-m-6":{"":{"!marginTop":"6rpx","!marginRight":"6rpx","!marginBottom":"6rpx","!marginLeft":"6rpx"}},"u-padding-6":{"":{"!paddingTop":"6rpx","!paddingRight":"6rpx","!paddingBottom":"6rpx","!paddingLeft":"6rpx"}},"u-p-6":{"":{"!paddingTop":"6rpx","!paddingRight":"6rpx","!paddingBottom":"6rpx","!paddingLeft":"6rpx"}},"u-m-l-6":{"":{"!marginLeft":"6rpx"}},"u-p-l-6":{"":{"!paddingLeft":"6rpx"}},"u-margin-left-6":{"":{"!marginLeft":"6rpx"}},"u-padding-left-6":{"":{"!paddingLeft":"6rpx"}},"u-m-t-6":{"":{"!marginTop":"6rpx"}},"u-p-t-6":{"":{"!paddingTop":"6rpx"}},"u-margin-top-6":{"":{"!marginTop":"6rpx"}},"u-padding-top-6":{"":{"!paddingTop":"6rpx"}},"u-m-r-6":{"":{"!marginRight":"6rpx"}},"u-p-r-6":{"":{"!paddingRight":"6rpx"}},"u-margin-right-6":{"":{"!marginRight":"6rpx"}},"u-padding-right-6":{"":{"!paddingRight":"6rpx"}},"u-m-b-6":{"":{"!marginBottom":"6rpx"}},"u-p-b-6":{"":{"!paddingBottom":"6rpx"}},"u-margin-bottom-6":{"":{"!marginBottom":"6rpx"}},"u-padding-bottom-6":{"":{"!paddingBottom":"6rpx"}},"u-margin-8":{"":{"!marginTop":"8rpx","!marginRight":"8rpx","!marginBottom":"8rpx","!marginLeft":"8rpx"}},"u-m-8":{"":{"!marginTop":"8rpx","!marginRight":"8rpx","!marginBottom":"8rpx","!marginLeft":"8rpx"}},"u-padding-8":{"":{"!paddingTop":"8rpx","!paddingRight":"8rpx","!paddingBottom":"8rpx","!paddingLeft":"8rpx"}},"u-p-8":{"":{"!paddingTop":"8rpx","!paddingRight":"8rpx","!paddingBottom":"8rpx","!paddingLeft":"8rpx"}},"u-m-l-8":{"":{"!marginLeft":"8rpx"}},"u-p-l-8":{"":{"!paddingLeft":"8rpx"}},"u-margin-left-8":{"":{"!marginLeft":"8rpx"}},"u-padding-left-8":{"":{"!paddingLeft":"8rpx"}},"u-m-t-8":{"":{"!marginTop":"8rpx"}},"u-p-t-8":{"":{"!paddingTop":"8rpx"}},"u-margin-top-8":{"":{"!marginTop":"8rpx"}},"u-padding-top-8":{"":{"!paddingTop":"8rpx"}},"u-m-r-8":{"":{"!marginRight":"8rpx"}},"u-p-r-8":{"":{"!paddingRight":"8rpx"}},"u-margin-right-8":{"":{"!marginRight":"8rpx"}},"u-padding-right-8":{"":{"!paddingRight":"8rpx"}},"u-m-b-8":{"":{"!marginBottom":"8rpx"}},"u-p-b-8":{"":{"!paddingBottom":"8rpx"}},"u-margin-bottom-8":{"":{"!marginBottom":"8rpx"}},"u-padding-bottom-8":{"":{"!paddingBottom":"8rpx"}},"u-margin-10":{"":{"!marginTop":"10rpx","!marginRight":"10rpx","!marginBottom":"10rpx","!marginLeft":"10rpx"}},"u-m-10":{"":{"!marginTop":"10rpx","!marginRight":"10rpx","!marginBottom":"10rpx","!marginLeft":"10rpx"}},"u-padding-10":{"":{"!paddingTop":"10rpx","!paddingRight":"10rpx","!paddingBottom":"10rpx","!paddingLeft":"10rpx"}},"u-p-10":{"":{"!paddingTop":"10rpx","!paddingRight":"10rpx","!paddingBottom":"10rpx","!paddingLeft":"10rpx"}},"u-m-l-10":{"":{"!marginLeft":"10rpx"}},"u-p-l-10":{"":{"!paddingLeft":"10rpx"}},"u-margin-left-10":{"":{"!marginLeft":"10rpx"}},"u-padding-left-10":{"":{"!paddingLeft":"10rpx"}},"u-m-t-10":{"":{"!marginTop":"10rpx"}},"u-p-t-10":{"":{"!paddingTop":"10rpx"}},"u-margin-top-10":{"":{"!marginTop":"10rpx"}},"u-padding-top-10":{"":{"!paddingTop":"10rpx"}},"u-m-r-10":{"":{"!marginRight":"10rpx"}},"u-p-r-10":{"":{"!paddingRight":"10rpx"}},"u-margin-right-10":{"":{"!marginRight":"10rpx"}},"u-padding-right-10":{"":{"!paddingRight":"10rpx"}},"u-m-b-10":{"":{"!marginBottom":"10rpx"}},"u-p-b-10":{"":{"!paddingBottom":"10rpx"}},"u-margin-bottom-10":{"":{"!marginBottom":"10rpx"}},"u-padding-bottom-10":{"":{"!paddingBottom":"10rpx"}},"u-margin-12":{"":{"!marginTop":"12rpx","!marginRight":"12rpx","!marginBottom":"12rpx","!marginLeft":"12rpx"}},"u-m-12":{"":{"!marginTop":"12rpx","!marginRight":"12rpx","!marginBottom":"12rpx","!marginLeft":"12rpx"}},"u-padding-12":{"":{"!paddingTop":"12rpx","!paddingRight":"12rpx","!paddingBottom":"12rpx","!paddingLeft":"12rpx"}},"u-p-12":{"":{"!paddingTop":"12rpx","!paddingRight":"12rpx","!paddingBottom":"12rpx","!paddingLeft":"12rpx"}},"u-m-l-12":{"":{"!marginLeft":"12rpx"}},"u-p-l-12":{"":{"!paddingLeft":"12rpx"}},"u-margin-left-12":{"":{"!marginLeft":"12rpx"}},"u-padding-left-12":{"":{"!paddingLeft":"12rpx"}},"u-m-t-12":{"":{"!marginTop":"12rpx"}},"u-p-t-12":{"":{"!paddingTop":"12rpx"}},"u-margin-top-12":{"":{"!marginTop":"12rpx"}},"u-padding-top-12":{"":{"!paddingTop":"12rpx"}},"u-m-r-12":{"":{"!marginRight":"12rpx"}},"u-p-r-12":{"":{"!paddingRight":"12rpx"}},"u-margin-right-12":{"":{"!marginRight":"12rpx"}},"u-padding-right-12":{"":{"!paddingRight":"12rpx"}},"u-m-b-12":{"":{"!marginBottom":"12rpx"}},"u-p-b-12":{"":{"!paddingBottom":"12rpx"}},"u-margin-bottom-12":{"":{"!marginBottom":"12rpx"}},"u-padding-bottom-12":{"":{"!paddingBottom":"12rpx"}},"u-margin-14":{"":{"!marginTop":"14rpx","!marginRight":"14rpx","!marginBottom":"14rpx","!marginLeft":"14rpx"}},"u-m-14":{"":{"!marginTop":"14rpx","!marginRight":"14rpx","!marginBottom":"14rpx","!marginLeft":"14rpx"}},"u-padding-14":{"":{"!paddingTop":"14rpx","!paddingRight":"14rpx","!paddingBottom":"14rpx","!paddingLeft":"14rpx"}},"u-p-14":{"":{"!paddingTop":"14rpx","!paddingRight":"14rpx","!paddingBottom":"14rpx","!paddingLeft":"14rpx"}},"u-m-l-14":{"":{"!marginLeft":"14rpx"}},"u-p-l-14":{"":{"!paddingLeft":"14rpx"}},"u-margin-left-14":{"":{"!marginLeft":"14rpx"}},"u-padding-left-14":{"":{"!paddingLeft":"14rpx"}},"u-m-t-14":{"":{"!marginTop":"14rpx"}},"u-p-t-14":{"":{"!paddingTop":"14rpx"}},"u-margin-top-14":{"":{"!marginTop":"14rpx"}},"u-padding-top-14":{"":{"!paddingTop":"14rpx"}},"u-m-r-14":{"":{"!marginRight":"14rpx"}},"u-p-r-14":{"":{"!paddingRight":"14rpx"}},"u-margin-right-14":{"":{"!marginRight":"14rpx"}},"u-padding-right-14":{"":{"!paddingRight":"14rpx"}},"u-m-b-14":{"":{"!marginBottom":"14rpx"}},"u-p-b-14":{"":{"!paddingBottom":"14rpx"}},"u-margin-bottom-14":{"":{"!marginBottom":"14rpx"}},"u-padding-bottom-14":{"":{"!paddingBottom":"14rpx"}},"u-margin-15":{"":{"!marginTop":"15rpx","!marginRight":"15rpx","!marginBottom":"15rpx","!marginLeft":"15rpx"}},"u-m-15":{"":{"!marginTop":"15rpx","!marginRight":"15rpx","!marginBottom":"15rpx","!marginLeft":"15rpx"}},"u-padding-15":{"":{"!paddingTop":"15rpx","!paddingRight":"15rpx","!paddingBottom":"15rpx","!paddingLeft":"15rpx"}},"u-p-15":{"":{"!paddingTop":"15rpx","!paddingRight":"15rpx","!paddingBottom":"15rpx","!paddingLeft":"15rpx"}},"u-m-l-15":{"":{"!marginLeft":"15rpx"}},"u-p-l-15":{"":{"!paddingLeft":"15rpx"}},"u-margin-left-15":{"":{"!marginLeft":"15rpx"}},"u-padding-left-15":{"":{"!paddingLeft":"15rpx"}},"u-m-t-15":{"":{"!marginTop":"15rpx"}},"u-p-t-15":{"":{"!paddingTop":"15rpx"}},"u-margin-top-15":{"":{"!marginTop":"15rpx"}},"u-padding-top-15":{"":{"!paddingTop":"15rpx"}},"u-m-r-15":{"":{"!marginRight":"15rpx"}},"u-p-r-15":{"":{"!paddingRight":"15rpx"}},"u-margin-right-15":{"":{"!marginRight":"15rpx"}},"u-padding-right-15":{"":{"!paddingRight":"15rpx"}},"u-m-b-15":{"":{"!marginBottom":"15rpx"}},"u-p-b-15":{"":{"!paddingBottom":"15rpx"}},"u-margin-bottom-15":{"":{"!marginBottom":"15rpx"}},"u-padding-bottom-15":{"":{"!paddingBottom":"15rpx"}},"u-margin-16":{"":{"!marginTop":"16rpx","!marginRight":"16rpx","!marginBottom":"16rpx","!marginLeft":"16rpx"}},"u-m-16":{"":{"!marginTop":"16rpx","!marginRight":"16rpx","!marginBottom":"16rpx","!marginLeft":"16rpx"}},"u-padding-16":{"":{"!paddingTop":"16rpx","!paddingRight":"16rpx","!paddingBottom":"16rpx","!paddingLeft":"16rpx"}},"u-p-16":{"":{"!paddingTop":"16rpx","!paddingRight":"16rpx","!paddingBottom":"16rpx","!paddingLeft":"16rpx"}},"u-m-l-16":{"":{"!marginLeft":"16rpx"}},"u-p-l-16":{"":{"!paddingLeft":"16rpx"}},"u-margin-left-16":{"":{"!marginLeft":"16rpx"}},"u-padding-left-16":{"":{"!paddingLeft":"16rpx"}},"u-m-t-16":{"":{"!marginTop":"16rpx"}},"u-p-t-16":{"":{"!paddingTop":"16rpx"}},"u-margin-top-16":{"":{"!marginTop":"16rpx"}},"u-padding-top-16":{"":{"!paddingTop":"16rpx"}},"u-m-r-16":{"":{"!marginRight":"16rpx"}},"u-p-r-16":{"":{"!paddingRight":"16rpx"}},"u-margin-right-16":{"":{"!marginRight":"16rpx"}},"u-padding-right-16":{"":{"!paddingRight":"16rpx"}},"u-m-b-16":{"":{"!marginBottom":"16rpx"}},"u-p-b-16":{"":{"!paddingBottom":"16rpx"}},"u-margin-bottom-16":{"":{"!marginBottom":"16rpx"}},"u-padding-bottom-16":{"":{"!paddingBottom":"16rpx"}},"u-margin-18":{"":{"!marginTop":"18rpx","!marginRight":"18rpx","!marginBottom":"18rpx","!marginLeft":"18rpx"}},"u-m-18":{"":{"!marginTop":"18rpx","!marginRight":"18rpx","!marginBottom":"18rpx","!marginLeft":"18rpx"}},"u-padding-18":{"":{"!paddingTop":"18rpx","!paddingRight":"18rpx","!paddingBottom":"18rpx","!paddingLeft":"18rpx"}},"u-p-18":{"":{"!paddingTop":"18rpx","!paddingRight":"18rpx","!paddingBottom":"18rpx","!paddingLeft":"18rpx"}},"u-m-l-18":{"":{"!marginLeft":"18rpx"}},"u-p-l-18":{"":{"!paddingLeft":"18rpx"}},"u-margin-left-18":{"":{"!marginLeft":"18rpx"}},"u-padding-left-18":{"":{"!paddingLeft":"18rpx"}},"u-m-t-18":{"":{"!marginTop":"18rpx"}},"u-p-t-18":{"":{"!paddingTop":"18rpx"}},"u-margin-top-18":{"":{"!marginTop":"18rpx"}},"u-padding-top-18":{"":{"!paddingTop":"18rpx"}},"u-m-r-18":{"":{"!marginRight":"18rpx"}},"u-p-r-18":{"":{"!paddingRight":"18rpx"}},"u-margin-right-18":{"":{"!marginRight":"18rpx"}},"u-padding-right-18":{"":{"!paddingRight":"18rpx"}},"u-m-b-18":{"":{"!marginBottom":"18rpx"}},"u-p-b-18":{"":{"!paddingBottom":"18rpx"}},"u-margin-bottom-18":{"":{"!marginBottom":"18rpx"}},"u-padding-bottom-18":{"":{"!paddingBottom":"18rpx"}},"u-margin-20":{"":{"!marginTop":"20rpx","!marginRight":"20rpx","!marginBottom":"20rpx","!marginLeft":"20rpx"}},"u-m-20":{"":{"!marginTop":"20rpx","!marginRight":"20rpx","!marginBottom":"20rpx","!marginLeft":"20rpx"}},"u-padding-20":{"":{"!paddingTop":"20rpx","!paddingRight":"20rpx","!paddingBottom":"20rpx","!paddingLeft":"20rpx"}},"u-p-20":{"":{"!paddingTop":"20rpx","!paddingRight":"20rpx","!paddingBottom":"20rpx","!paddingLeft":"20rpx"}},"u-m-l-20":{"":{"!marginLeft":"20rpx"}},"u-p-l-20":{"":{"!paddingLeft":"20rpx"}},"u-margin-left-20":{"":{"!marginLeft":"20rpx"}},"u-padding-left-20":{"":{"!paddingLeft":"20rpx"}},"u-m-t-20":{"":{"!marginTop":"20rpx"}},"u-p-t-20":{"":{"!paddingTop":"20rpx"}},"u-margin-top-20":{"":{"!marginTop":"20rpx"}},"u-padding-top-20":{"":{"!paddingTop":"20rpx"}},"u-m-r-20":{"":{"!marginRight":"20rpx"}},"u-p-r-20":{"":{"!paddingRight":"20rpx"}},"u-margin-right-20":{"":{"!marginRight":"20rpx"}},"u-padding-right-20":{"":{"!paddingRight":"20rpx"}},"u-m-b-20":{"":{"!marginBottom":"20rpx"}},"u-p-b-20":{"":{"!paddingBottom":"20rpx"}},"u-margin-bottom-20":{"":{"!marginBottom":"20rpx"}},"u-padding-bottom-20":{"":{"!paddingBottom":"20rpx"}},"u-margin-22":{"":{"!marginTop":"22rpx","!marginRight":"22rpx","!marginBottom":"22rpx","!marginLeft":"22rpx"}},"u-m-22":{"":{"!marginTop":"22rpx","!marginRight":"22rpx","!marginBottom":"22rpx","!marginLeft":"22rpx"}},"u-padding-22":{"":{"!paddingTop":"22rpx","!paddingRight":"22rpx","!paddingBottom":"22rpx","!paddingLeft":"22rpx"}},"u-p-22":{"":{"!paddingTop":"22rpx","!paddingRight":"22rpx","!paddingBottom":"22rpx","!paddingLeft":"22rpx"}},"u-m-l-22":{"":{"!marginLeft":"22rpx"}},"u-p-l-22":{"":{"!paddingLeft":"22rpx"}},"u-margin-left-22":{"":{"!marginLeft":"22rpx"}},"u-padding-left-22":{"":{"!paddingLeft":"22rpx"}},"u-m-t-22":{"":{"!marginTop":"22rpx"}},"u-p-t-22":{"":{"!paddingTop":"22rpx"}},"u-margin-top-22":{"":{"!marginTop":"22rpx"}},"u-padding-top-22":{"":{"!paddingTop":"22rpx"}},"u-m-r-22":{"":{"!marginRight":"22rpx"}},"u-p-r-22":{"":{"!paddingRight":"22rpx"}},"u-margin-right-22":{"":{"!marginRight":"22rpx"}},"u-padding-right-22":{"":{"!paddingRight":"22rpx"}},"u-m-b-22":{"":{"!marginBottom":"22rpx"}},"u-p-b-22":{"":{"!paddingBottom":"22rpx"}},"u-margin-bottom-22":{"":{"!marginBottom":"22rpx"}},"u-padding-bottom-22":{"":{"!paddingBottom":"22rpx"}},"u-margin-24":{"":{"!marginTop":"24rpx","!marginRight":"24rpx","!marginBottom":"24rpx","!marginLeft":"24rpx"}},"u-m-24":{"":{"!marginTop":"24rpx","!marginRight":"24rpx","!marginBottom":"24rpx","!marginLeft":"24rpx"}},"u-padding-24":{"":{"!paddingTop":"24rpx","!paddingRight":"24rpx","!paddingBottom":"24rpx","!paddingLeft":"24rpx"}},"u-p-24":{"":{"!paddingTop":"24rpx","!paddingRight":"24rpx","!paddingBottom":"24rpx","!paddingLeft":"24rpx"}},"u-m-l-24":{"":{"!marginLeft":"24rpx"}},"u-p-l-24":{"":{"!paddingLeft":"24rpx"}},"u-margin-left-24":{"":{"!marginLeft":"24rpx"}},"u-padding-left-24":{"":{"!paddingLeft":"24rpx"}},"u-m-t-24":{"":{"!marginTop":"24rpx"}},"u-p-t-24":{"":{"!paddingTop":"24rpx"}},"u-margin-top-24":{"":{"!marginTop":"24rpx"}},"u-padding-top-24":{"":{"!paddingTop":"24rpx"}},"u-m-r-24":{"":{"!marginRight":"24rpx"}},"u-p-r-24":{"":{"!paddingRight":"24rpx"}},"u-margin-right-24":{"":{"!marginRight":"24rpx"}},"u-padding-right-24":{"":{"!paddingRight":"24rpx"}},"u-m-b-24":{"":{"!marginBottom":"24rpx"}},"u-p-b-24":{"":{"!paddingBottom":"24rpx"}},"u-margin-bottom-24":{"":{"!marginBottom":"24rpx"}},"u-padding-bottom-24":{"":{"!paddingBottom":"24rpx"}},"u-margin-25":{"":{"!marginTop":"25rpx","!marginRight":"25rpx","!marginBottom":"25rpx","!marginLeft":"25rpx"}},"u-m-25":{"":{"!marginTop":"25rpx","!marginRight":"25rpx","!marginBottom":"25rpx","!marginLeft":"25rpx"}},"u-padding-25":{"":{"!paddingTop":"25rpx","!paddingRight":"25rpx","!paddingBottom":"25rpx","!paddingLeft":"25rpx"}},"u-p-25":{"":{"!paddingTop":"25rpx","!paddingRight":"25rpx","!paddingBottom":"25rpx","!paddingLeft":"25rpx"}},"u-m-l-25":{"":{"!marginLeft":"25rpx"}},"u-p-l-25":{"":{"!paddingLeft":"25rpx"}},"u-margin-left-25":{"":{"!marginLeft":"25rpx"}},"u-padding-left-25":{"":{"!paddingLeft":"25rpx"}},"u-m-t-25":{"":{"!marginTop":"25rpx"}},"u-p-t-25":{"":{"!paddingTop":"25rpx"}},"u-margin-top-25":{"":{"!marginTop":"25rpx"}},"u-padding-top-25":{"":{"!paddingTop":"25rpx"}},"u-m-r-25":{"":{"!marginRight":"25rpx"}},"u-p-r-25":{"":{"!paddingRight":"25rpx"}},"u-margin-right-25":{"":{"!marginRight":"25rpx"}},"u-padding-right-25":{"":{"!paddingRight":"25rpx"}},"u-m-b-25":{"":{"!marginBottom":"25rpx"}},"u-p-b-25":{"":{"!paddingBottom":"25rpx"}},"u-margin-bottom-25":{"":{"!marginBottom":"25rpx"}},"u-padding-bottom-25":{"":{"!paddingBottom":"25rpx"}},"u-margin-26":{"":{"!marginTop":"26rpx","!marginRight":"26rpx","!marginBottom":"26rpx","!marginLeft":"26rpx"}},"u-m-26":{"":{"!marginTop":"26rpx","!marginRight":"26rpx","!marginBottom":"26rpx","!marginLeft":"26rpx"}},"u-padding-26":{"":{"!paddingTop":"26rpx","!paddingRight":"26rpx","!paddingBottom":"26rpx","!paddingLeft":"26rpx"}},"u-p-26":{"":{"!paddingTop":"26rpx","!paddingRight":"26rpx","!paddingBottom":"26rpx","!paddingLeft":"26rpx"}},"u-m-l-26":{"":{"!marginLeft":"26rpx"}},"u-p-l-26":{"":{"!paddingLeft":"26rpx"}},"u-margin-left-26":{"":{"!marginLeft":"26rpx"}},"u-padding-left-26":{"":{"!paddingLeft":"26rpx"}},"u-m-t-26":{"":{"!marginTop":"26rpx"}},"u-p-t-26":{"":{"!paddingTop":"26rpx"}},"u-margin-top-26":{"":{"!marginTop":"26rpx"}},"u-padding-top-26":{"":{"!paddingTop":"26rpx"}},"u-m-r-26":{"":{"!marginRight":"26rpx"}},"u-p-r-26":{"":{"!paddingRight":"26rpx"}},"u-margin-right-26":{"":{"!marginRight":"26rpx"}},"u-padding-right-26":{"":{"!paddingRight":"26rpx"}},"u-m-b-26":{"":{"!marginBottom":"26rpx"}},"u-p-b-26":{"":{"!paddingBottom":"26rpx"}},"u-margin-bottom-26":{"":{"!marginBottom":"26rpx"}},"u-padding-bottom-26":{"":{"!paddingBottom":"26rpx"}},"u-margin-28":{"":{"!marginTop":"28rpx","!marginRight":"28rpx","!marginBottom":"28rpx","!marginLeft":"28rpx"}},"u-m-28":{"":{"!marginTop":"28rpx","!marginRight":"28rpx","!marginBottom":"28rpx","!marginLeft":"28rpx"}},"u-padding-28":{"":{"!paddingTop":"28rpx","!paddingRight":"28rpx","!paddingBottom":"28rpx","!paddingLeft":"28rpx"}},"u-p-28":{"":{"!paddingTop":"28rpx","!paddingRight":"28rpx","!paddingBottom":"28rpx","!paddingLeft":"28rpx"}},"u-m-l-28":{"":{"!marginLeft":"28rpx"}},"u-p-l-28":{"":{"!paddingLeft":"28rpx"}},"u-margin-left-28":{"":{"!marginLeft":"28rpx"}},"u-padding-left-28":{"":{"!paddingLeft":"28rpx"}},"u-m-t-28":{"":{"!marginTop":"28rpx"}},"u-p-t-28":{"":{"!paddingTop":"28rpx"}},"u-margin-top-28":{"":{"!marginTop":"28rpx"}},"u-padding-top-28":{"":{"!paddingTop":"28rpx"}},"u-m-r-28":{"":{"!marginRight":"28rpx"}},"u-p-r-28":{"":{"!paddingRight":"28rpx"}},"u-margin-right-28":{"":{"!marginRight":"28rpx"}},"u-padding-right-28":{"":{"!paddingRight":"28rpx"}},"u-m-b-28":{"":{"!marginBottom":"28rpx"}},"u-p-b-28":{"":{"!paddingBottom":"28rpx"}},"u-margin-bottom-28":{"":{"!marginBottom":"28rpx"}},"u-padding-bottom-28":{"":{"!paddingBottom":"28rpx"}},"u-margin-30":{"":{"!marginTop":"30rpx","!marginRight":"30rpx","!marginBottom":"30rpx","!marginLeft":"30rpx"}},"u-m-30":{"":{"!marginTop":"30rpx","!marginRight":"30rpx","!marginBottom":"30rpx","!marginLeft":"30rpx"}},"u-padding-30":{"":{"!paddingTop":"30rpx","!paddingRight":"30rpx","!paddingBottom":"30rpx","!paddingLeft":"30rpx"}},"u-p-30":{"":{"!paddingTop":"30rpx","!paddingRight":"30rpx","!paddingBottom":"30rpx","!paddingLeft":"30rpx"}},"u-m-l-30":{"":{"!marginLeft":"30rpx"}},"u-p-l-30":{"":{"!paddingLeft":"30rpx"}},"u-margin-left-30":{"":{"!marginLeft":"30rpx"}},"u-padding-left-30":{"":{"!paddingLeft":"30rpx"}},"u-m-t-30":{"":{"!marginTop":"30rpx"}},"u-p-t-30":{"":{"!paddingTop":"30rpx"}},"u-margin-top-30":{"":{"!marginTop":"30rpx"}},"u-padding-top-30":{"":{"!paddingTop":"30rpx"}},"u-m-r-30":{"":{"!marginRight":"30rpx"}},"u-p-r-30":{"":{"!paddingRight":"30rpx"}},"u-margin-right-30":{"":{"!marginRight":"30rpx"}},"u-padding-right-30":{"":{"!paddingRight":"30rpx"}},"u-m-b-30":{"":{"!marginBottom":"30rpx"}},"u-p-b-30":{"":{"!paddingBottom":"30rpx"}},"u-margin-bottom-30":{"":{"!marginBottom":"30rpx"}},"u-padding-bottom-30":{"":{"!paddingBottom":"30rpx"}},"u-margin-32":{"":{"!marginTop":"32rpx","!marginRight":"32rpx","!marginBottom":"32rpx","!marginLeft":"32rpx"}},"u-m-32":{"":{"!marginTop":"32rpx","!marginRight":"32rpx","!marginBottom":"32rpx","!marginLeft":"32rpx"}},"u-padding-32":{"":{"!paddingTop":"32rpx","!paddingRight":"32rpx","!paddingBottom":"32rpx","!paddingLeft":"32rpx"}},"u-p-32":{"":{"!paddingTop":"32rpx","!paddingRight":"32rpx","!paddingBottom":"32rpx","!paddingLeft":"32rpx"}},"u-m-l-32":{"":{"!marginLeft":"32rpx"}},"u-p-l-32":{"":{"!paddingLeft":"32rpx"}},"u-margin-left-32":{"":{"!marginLeft":"32rpx"}},"u-padding-left-32":{"":{"!paddingLeft":"32rpx"}},"u-m-t-32":{"":{"!marginTop":"32rpx"}},"u-p-t-32":{"":{"!paddingTop":"32rpx"}},"u-margin-top-32":{"":{"!marginTop":"32rpx"}},"u-padding-top-32":{"":{"!paddingTop":"32rpx"}},"u-m-r-32":{"":{"!marginRight":"32rpx"}},"u-p-r-32":{"":{"!paddingRight":"32rpx"}},"u-margin-right-32":{"":{"!marginRight":"32rpx"}},"u-padding-right-32":{"":{"!paddingRight":"32rpx"}},"u-m-b-32":{"":{"!marginBottom":"32rpx"}},"u-p-b-32":{"":{"!paddingBottom":"32rpx"}},"u-margin-bottom-32":{"":{"!marginBottom":"32rpx"}},"u-padding-bottom-32":{"":{"!paddingBottom":"32rpx"}},"u-margin-34":{"":{"!marginTop":"34rpx","!marginRight":"34rpx","!marginBottom":"34rpx","!marginLeft":"34rpx"}},"u-m-34":{"":{"!marginTop":"34rpx","!marginRight":"34rpx","!marginBottom":"34rpx","!marginLeft":"34rpx"}},"u-padding-34":{"":{"!paddingTop":"34rpx","!paddingRight":"34rpx","!paddingBottom":"34rpx","!paddingLeft":"34rpx"}},"u-p-34":{"":{"!paddingTop":"34rpx","!paddingRight":"34rpx","!paddingBottom":"34rpx","!paddingLeft":"34rpx"}},"u-m-l-34":{"":{"!marginLeft":"34rpx"}},"u-p-l-34":{"":{"!paddingLeft":"34rpx"}},"u-margin-left-34":{"":{"!marginLeft":"34rpx"}},"u-padding-left-34":{"":{"!paddingLeft":"34rpx"}},"u-m-t-34":{"":{"!marginTop":"34rpx"}},"u-p-t-34":{"":{"!paddingTop":"34rpx"}},"u-margin-top-34":{"":{"!marginTop":"34rpx"}},"u-padding-top-34":{"":{"!paddingTop":"34rpx"}},"u-m-r-34":{"":{"!marginRight":"34rpx"}},"u-p-r-34":{"":{"!paddingRight":"34rpx"}},"u-margin-right-34":{"":{"!marginRight":"34rpx"}},"u-padding-right-34":{"":{"!paddingRight":"34rpx"}},"u-m-b-34":{"":{"!marginBottom":"34rpx"}},"u-p-b-34":{"":{"!paddingBottom":"34rpx"}},"u-margin-bottom-34":{"":{"!marginBottom":"34rpx"}},"u-padding-bottom-34":{"":{"!paddingBottom":"34rpx"}},"u-margin-35":{"":{"!marginTop":"35rpx","!marginRight":"35rpx","!marginBottom":"35rpx","!marginLeft":"35rpx"}},"u-m-35":{"":{"!marginTop":"35rpx","!marginRight":"35rpx","!marginBottom":"35rpx","!marginLeft":"35rpx"}},"u-padding-35":{"":{"!paddingTop":"35rpx","!paddingRight":"35rpx","!paddingBottom":"35rpx","!paddingLeft":"35rpx"}},"u-p-35":{"":{"!paddingTop":"35rpx","!paddingRight":"35rpx","!paddingBottom":"35rpx","!paddingLeft":"35rpx"}},"u-m-l-35":{"":{"!marginLeft":"35rpx"}},"u-p-l-35":{"":{"!paddingLeft":"35rpx"}},"u-margin-left-35":{"":{"!marginLeft":"35rpx"}},"u-padding-left-35":{"":{"!paddingLeft":"35rpx"}},"u-m-t-35":{"":{"!marginTop":"35rpx"}},"u-p-t-35":{"":{"!paddingTop":"35rpx"}},"u-margin-top-35":{"":{"!marginTop":"35rpx"}},"u-padding-top-35":{"":{"!paddingTop":"35rpx"}},"u-m-r-35":{"":{"!marginRight":"35rpx"}},"u-p-r-35":{"":{"!paddingRight":"35rpx"}},"u-margin-right-35":{"":{"!marginRight":"35rpx"}},"u-padding-right-35":{"":{"!paddingRight":"35rpx"}},"u-m-b-35":{"":{"!marginBottom":"35rpx"}},"u-p-b-35":{"":{"!paddingBottom":"35rpx"}},"u-margin-bottom-35":{"":{"!marginBottom":"35rpx"}},"u-padding-bottom-35":{"":{"!paddingBottom":"35rpx"}},"u-margin-36":{"":{"!marginTop":"36rpx","!marginRight":"36rpx","!marginBottom":"36rpx","!marginLeft":"36rpx"}},"u-m-36":{"":{"!marginTop":"36rpx","!marginRight":"36rpx","!marginBottom":"36rpx","!marginLeft":"36rpx"}},"u-padding-36":{"":{"!paddingTop":"36rpx","!paddingRight":"36rpx","!paddingBottom":"36rpx","!paddingLeft":"36rpx"}},"u-p-36":{"":{"!paddingTop":"36rpx","!paddingRight":"36rpx","!paddingBottom":"36rpx","!paddingLeft":"36rpx"}},"u-m-l-36":{"":{"!marginLeft":"36rpx"}},"u-p-l-36":{"":{"!paddingLeft":"36rpx"}},"u-margin-left-36":{"":{"!marginLeft":"36rpx"}},"u-padding-left-36":{"":{"!paddingLeft":"36rpx"}},"u-m-t-36":{"":{"!marginTop":"36rpx"}},"u-p-t-36":{"":{"!paddingTop":"36rpx"}},"u-margin-top-36":{"":{"!marginTop":"36rpx"}},"u-padding-top-36":{"":{"!paddingTop":"36rpx"}},"u-m-r-36":{"":{"!marginRight":"36rpx"}},"u-p-r-36":{"":{"!paddingRight":"36rpx"}},"u-margin-right-36":{"":{"!marginRight":"36rpx"}},"u-padding-right-36":{"":{"!paddingRight":"36rpx"}},"u-m-b-36":{"":{"!marginBottom":"36rpx"}},"u-p-b-36":{"":{"!paddingBottom":"36rpx"}},"u-margin-bottom-36":{"":{"!marginBottom":"36rpx"}},"u-padding-bottom-36":{"":{"!paddingBottom":"36rpx"}},"u-margin-38":{"":{"!marginTop":"38rpx","!marginRight":"38rpx","!marginBottom":"38rpx","!marginLeft":"38rpx"}},"u-m-38":{"":{"!marginTop":"38rpx","!marginRight":"38rpx","!marginBottom":"38rpx","!marginLeft":"38rpx"}},"u-padding-38":{"":{"!paddingTop":"38rpx","!paddingRight":"38rpx","!paddingBottom":"38rpx","!paddingLeft":"38rpx"}},"u-p-38":{"":{"!paddingTop":"38rpx","!paddingRight":"38rpx","!paddingBottom":"38rpx","!paddingLeft":"38rpx"}},"u-m-l-38":{"":{"!marginLeft":"38rpx"}},"u-p-l-38":{"":{"!paddingLeft":"38rpx"}},"u-margin-left-38":{"":{"!marginLeft":"38rpx"}},"u-padding-left-38":{"":{"!paddingLeft":"38rpx"}},"u-m-t-38":{"":{"!marginTop":"38rpx"}},"u-p-t-38":{"":{"!paddingTop":"38rpx"}},"u-margin-top-38":{"":{"!marginTop":"38rpx"}},"u-padding-top-38":{"":{"!paddingTop":"38rpx"}},"u-m-r-38":{"":{"!marginRight":"38rpx"}},"u-p-r-38":{"":{"!paddingRight":"38rpx"}},"u-margin-right-38":{"":{"!marginRight":"38rpx"}},"u-padding-right-38":{"":{"!paddingRight":"38rpx"}},"u-m-b-38":{"":{"!marginBottom":"38rpx"}},"u-p-b-38":{"":{"!paddingBottom":"38rpx"}},"u-margin-bottom-38":{"":{"!marginBottom":"38rpx"}},"u-padding-bottom-38":{"":{"!paddingBottom":"38rpx"}},"u-margin-40":{"":{"!marginTop":"40rpx","!marginRight":"40rpx","!marginBottom":"40rpx","!marginLeft":"40rpx"}},"u-m-40":{"":{"!marginTop":"40rpx","!marginRight":"40rpx","!marginBottom":"40rpx","!marginLeft":"40rpx"}},"u-padding-40":{"":{"!paddingTop":"40rpx","!paddingRight":"40rpx","!paddingBottom":"40rpx","!paddingLeft":"40rpx"}},"u-p-40":{"":{"!paddingTop":"40rpx","!paddingRight":"40rpx","!paddingBottom":"40rpx","!paddingLeft":"40rpx"}},"u-m-l-40":{"":{"!marginLeft":"40rpx"}},"u-p-l-40":{"":{"!paddingLeft":"40rpx"}},"u-margin-left-40":{"":{"!marginLeft":"40rpx"}},"u-padding-left-40":{"":{"!paddingLeft":"40rpx"}},"u-m-t-40":{"":{"!marginTop":"40rpx"}},"u-p-t-40":{"":{"!paddingTop":"40rpx"}},"u-margin-top-40":{"":{"!marginTop":"40rpx"}},"u-padding-top-40":{"":{"!paddingTop":"40rpx"}},"u-m-r-40":{"":{"!marginRight":"40rpx"}},"u-p-r-40":{"":{"!paddingRight":"40rpx"}},"u-margin-right-40":{"":{"!marginRight":"40rpx"}},"u-padding-right-40":{"":{"!paddingRight":"40rpx"}},"u-m-b-40":{"":{"!marginBottom":"40rpx"}},"u-p-b-40":{"":{"!paddingBottom":"40rpx"}},"u-margin-bottom-40":{"":{"!marginBottom":"40rpx"}},"u-padding-bottom-40":{"":{"!paddingBottom":"40rpx"}},"u-margin-42":{"":{"!marginTop":"42rpx","!marginRight":"42rpx","!marginBottom":"42rpx","!marginLeft":"42rpx"}},"u-m-42":{"":{"!marginTop":"42rpx","!marginRight":"42rpx","!marginBottom":"42rpx","!marginLeft":"42rpx"}},"u-padding-42":{"":{"!paddingTop":"42rpx","!paddingRight":"42rpx","!paddingBottom":"42rpx","!paddingLeft":"42rpx"}},"u-p-42":{"":{"!paddingTop":"42rpx","!paddingRight":"42rpx","!paddingBottom":"42rpx","!paddingLeft":"42rpx"}},"u-m-l-42":{"":{"!marginLeft":"42rpx"}},"u-p-l-42":{"":{"!paddingLeft":"42rpx"}},"u-margin-left-42":{"":{"!marginLeft":"42rpx"}},"u-padding-left-42":{"":{"!paddingLeft":"42rpx"}},"u-m-t-42":{"":{"!marginTop":"42rpx"}},"u-p-t-42":{"":{"!paddingTop":"42rpx"}},"u-margin-top-42":{"":{"!marginTop":"42rpx"}},"u-padding-top-42":{"":{"!paddingTop":"42rpx"}},"u-m-r-42":{"":{"!marginRight":"42rpx"}},"u-p-r-42":{"":{"!paddingRight":"42rpx"}},"u-margin-right-42":{"":{"!marginRight":"42rpx"}},"u-padding-right-42":{"":{"!paddingRight":"42rpx"}},"u-m-b-42":{"":{"!marginBottom":"42rpx"}},"u-p-b-42":{"":{"!paddingBottom":"42rpx"}},"u-margin-bottom-42":{"":{"!marginBottom":"42rpx"}},"u-padding-bottom-42":{"":{"!paddingBottom":"42rpx"}},"u-margin-44":{"":{"!marginTop":"44rpx","!marginRight":"44rpx","!marginBottom":"44rpx","!marginLeft":"44rpx"}},"u-m-44":{"":{"!marginTop":"44rpx","!marginRight":"44rpx","!marginBottom":"44rpx","!marginLeft":"44rpx"}},"u-padding-44":{"":{"!paddingTop":"44rpx","!paddingRight":"44rpx","!paddingBottom":"44rpx","!paddingLeft":"44rpx"}},"u-p-44":{"":{"!paddingTop":"44rpx","!paddingRight":"44rpx","!paddingBottom":"44rpx","!paddingLeft":"44rpx"}},"u-m-l-44":{"":{"!marginLeft":"44rpx"}},"u-p-l-44":{"":{"!paddingLeft":"44rpx"}},"u-margin-left-44":{"":{"!marginLeft":"44rpx"}},"u-padding-left-44":{"":{"!paddingLeft":"44rpx"}},"u-m-t-44":{"":{"!marginTop":"44rpx"}},"u-p-t-44":{"":{"!paddingTop":"44rpx"}},"u-margin-top-44":{"":{"!marginTop":"44rpx"}},"u-padding-top-44":{"":{"!paddingTop":"44rpx"}},"u-m-r-44":{"":{"!marginRight":"44rpx"}},"u-p-r-44":{"":{"!paddingRight":"44rpx"}},"u-margin-right-44":{"":{"!marginRight":"44rpx"}},"u-padding-right-44":{"":{"!paddingRight":"44rpx"}},"u-m-b-44":{"":{"!marginBottom":"44rpx"}},"u-p-b-44":{"":{"!paddingBottom":"44rpx"}},"u-margin-bottom-44":{"":{"!marginBottom":"44rpx"}},"u-padding-bottom-44":{"":{"!paddingBottom":"44rpx"}},"u-margin-45":{"":{"!marginTop":"45rpx","!marginRight":"45rpx","!marginBottom":"45rpx","!marginLeft":"45rpx"}},"u-m-45":{"":{"!marginTop":"45rpx","!marginRight":"45rpx","!marginBottom":"45rpx","!marginLeft":"45rpx"}},"u-padding-45":{"":{"!paddingTop":"45rpx","!paddingRight":"45rpx","!paddingBottom":"45rpx","!paddingLeft":"45rpx"}},"u-p-45":{"":{"!paddingTop":"45rpx","!paddingRight":"45rpx","!paddingBottom":"45rpx","!paddingLeft":"45rpx"}},"u-m-l-45":{"":{"!marginLeft":"45rpx"}},"u-p-l-45":{"":{"!paddingLeft":"45rpx"}},"u-margin-left-45":{"":{"!marginLeft":"45rpx"}},"u-padding-left-45":{"":{"!paddingLeft":"45rpx"}},"u-m-t-45":{"":{"!marginTop":"45rpx"}},"u-p-t-45":{"":{"!paddingTop":"45rpx"}},"u-margin-top-45":{"":{"!marginTop":"45rpx"}},"u-padding-top-45":{"":{"!paddingTop":"45rpx"}},"u-m-r-45":{"":{"!marginRight":"45rpx"}},"u-p-r-45":{"":{"!paddingRight":"45rpx"}},"u-margin-right-45":{"":{"!marginRight":"45rpx"}},"u-padding-right-45":{"":{"!paddingRight":"45rpx"}},"u-m-b-45":{"":{"!marginBottom":"45rpx"}},"u-p-b-45":{"":{"!paddingBottom":"45rpx"}},"u-margin-bottom-45":{"":{"!marginBottom":"45rpx"}},"u-padding-bottom-45":{"":{"!paddingBottom":"45rpx"}},"u-margin-46":{"":{"!marginTop":"46rpx","!marginRight":"46rpx","!marginBottom":"46rpx","!marginLeft":"46rpx"}},"u-m-46":{"":{"!marginTop":"46rpx","!marginRight":"46rpx","!marginBottom":"46rpx","!marginLeft":"46rpx"}},"u-padding-46":{"":{"!paddingTop":"46rpx","!paddingRight":"46rpx","!paddingBottom":"46rpx","!paddingLeft":"46rpx"}},"u-p-46":{"":{"!paddingTop":"46rpx","!paddingRight":"46rpx","!paddingBottom":"46rpx","!paddingLeft":"46rpx"}},"u-m-l-46":{"":{"!marginLeft":"46rpx"}},"u-p-l-46":{"":{"!paddingLeft":"46rpx"}},"u-margin-left-46":{"":{"!marginLeft":"46rpx"}},"u-padding-left-46":{"":{"!paddingLeft":"46rpx"}},"u-m-t-46":{"":{"!marginTop":"46rpx"}},"u-p-t-46":{"":{"!paddingTop":"46rpx"}},"u-margin-top-46":{"":{"!marginTop":"46rpx"}},"u-padding-top-46":{"":{"!paddingTop":"46rpx"}},"u-m-r-46":{"":{"!marginRight":"46rpx"}},"u-p-r-46":{"":{"!paddingRight":"46rpx"}},"u-margin-right-46":{"":{"!marginRight":"46rpx"}},"u-padding-right-46":{"":{"!paddingRight":"46rpx"}},"u-m-b-46":{"":{"!marginBottom":"46rpx"}},"u-p-b-46":{"":{"!paddingBottom":"46rpx"}},"u-margin-bottom-46":{"":{"!marginBottom":"46rpx"}},"u-padding-bottom-46":{"":{"!paddingBottom":"46rpx"}},"u-margin-48":{"":{"!marginTop":"48rpx","!marginRight":"48rpx","!marginBottom":"48rpx","!marginLeft":"48rpx"}},"u-m-48":{"":{"!marginTop":"48rpx","!marginRight":"48rpx","!marginBottom":"48rpx","!marginLeft":"48rpx"}},"u-padding-48":{"":{"!paddingTop":"48rpx","!paddingRight":"48rpx","!paddingBottom":"48rpx","!paddingLeft":"48rpx"}},"u-p-48":{"":{"!paddingTop":"48rpx","!paddingRight":"48rpx","!paddingBottom":"48rpx","!paddingLeft":"48rpx"}},"u-m-l-48":{"":{"!marginLeft":"48rpx"}},"u-p-l-48":{"":{"!paddingLeft":"48rpx"}},"u-margin-left-48":{"":{"!marginLeft":"48rpx"}},"u-padding-left-48":{"":{"!paddingLeft":"48rpx"}},"u-m-t-48":{"":{"!marginTop":"48rpx"}},"u-p-t-48":{"":{"!paddingTop":"48rpx"}},"u-margin-top-48":{"":{"!marginTop":"48rpx"}},"u-padding-top-48":{"":{"!paddingTop":"48rpx"}},"u-m-r-48":{"":{"!marginRight":"48rpx"}},"u-p-r-48":{"":{"!paddingRight":"48rpx"}},"u-margin-right-48":{"":{"!marginRight":"48rpx"}},"u-padding-right-48":{"":{"!paddingRight":"48rpx"}},"u-m-b-48":{"":{"!marginBottom":"48rpx"}},"u-p-b-48":{"":{"!paddingBottom":"48rpx"}},"u-margin-bottom-48":{"":{"!marginBottom":"48rpx"}},"u-padding-bottom-48":{"":{"!paddingBottom":"48rpx"}},"u-margin-50":{"":{"!marginTop":"50rpx","!marginRight":"50rpx","!marginBottom":"50rpx","!marginLeft":"50rpx"}},"u-m-50":{"":{"!marginTop":"50rpx","!marginRight":"50rpx","!marginBottom":"50rpx","!marginLeft":"50rpx"}},"u-padding-50":{"":{"!paddingTop":"50rpx","!paddingRight":"50rpx","!paddingBottom":"50rpx","!paddingLeft":"50rpx"}},"u-p-50":{"":{"!paddingTop":"50rpx","!paddingRight":"50rpx","!paddingBottom":"50rpx","!paddingLeft":"50rpx"}},"u-m-l-50":{"":{"!marginLeft":"50rpx"}},"u-p-l-50":{"":{"!paddingLeft":"50rpx"}},"u-margin-left-50":{"":{"!marginLeft":"50rpx"}},"u-padding-left-50":{"":{"!paddingLeft":"50rpx"}},"u-m-t-50":{"":{"!marginTop":"50rpx"}},"u-p-t-50":{"":{"!paddingTop":"50rpx"}},"u-margin-top-50":{"":{"!marginTop":"50rpx"}},"u-padding-top-50":{"":{"!paddingTop":"50rpx"}},"u-m-r-50":{"":{"!marginRight":"50rpx"}},"u-p-r-50":{"":{"!paddingRight":"50rpx"}},"u-margin-right-50":{"":{"!marginRight":"50rpx"}},"u-padding-right-50":{"":{"!paddingRight":"50rpx"}},"u-m-b-50":{"":{"!marginBottom":"50rpx"}},"u-p-b-50":{"":{"!paddingBottom":"50rpx"}},"u-margin-bottom-50":{"":{"!marginBottom":"50rpx"}},"u-padding-bottom-50":{"":{"!paddingBottom":"50rpx"}},"u-margin-52":{"":{"!marginTop":"52rpx","!marginRight":"52rpx","!marginBottom":"52rpx","!marginLeft":"52rpx"}},"u-m-52":{"":{"!marginTop":"52rpx","!marginRight":"52rpx","!marginBottom":"52rpx","!marginLeft":"52rpx"}},"u-padding-52":{"":{"!paddingTop":"52rpx","!paddingRight":"52rpx","!paddingBottom":"52rpx","!paddingLeft":"52rpx"}},"u-p-52":{"":{"!paddingTop":"52rpx","!paddingRight":"52rpx","!paddingBottom":"52rpx","!paddingLeft":"52rpx"}},"u-m-l-52":{"":{"!marginLeft":"52rpx"}},"u-p-l-52":{"":{"!paddingLeft":"52rpx"}},"u-margin-left-52":{"":{"!marginLeft":"52rpx"}},"u-padding-left-52":{"":{"!paddingLeft":"52rpx"}},"u-m-t-52":{"":{"!marginTop":"52rpx"}},"u-p-t-52":{"":{"!paddingTop":"52rpx"}},"u-margin-top-52":{"":{"!marginTop":"52rpx"}},"u-padding-top-52":{"":{"!paddingTop":"52rpx"}},"u-m-r-52":{"":{"!marginRight":"52rpx"}},"u-p-r-52":{"":{"!paddingRight":"52rpx"}},"u-margin-right-52":{"":{"!marginRight":"52rpx"}},"u-padding-right-52":{"":{"!paddingRight":"52rpx"}},"u-m-b-52":{"":{"!marginBottom":"52rpx"}},"u-p-b-52":{"":{"!paddingBottom":"52rpx"}},"u-margin-bottom-52":{"":{"!marginBottom":"52rpx"}},"u-padding-bottom-52":{"":{"!paddingBottom":"52rpx"}},"u-margin-54":{"":{"!marginTop":"54rpx","!marginRight":"54rpx","!marginBottom":"54rpx","!marginLeft":"54rpx"}},"u-m-54":{"":{"!marginTop":"54rpx","!marginRight":"54rpx","!marginBottom":"54rpx","!marginLeft":"54rpx"}},"u-padding-54":{"":{"!paddingTop":"54rpx","!paddingRight":"54rpx","!paddingBottom":"54rpx","!paddingLeft":"54rpx"}},"u-p-54":{"":{"!paddingTop":"54rpx","!paddingRight":"54rpx","!paddingBottom":"54rpx","!paddingLeft":"54rpx"}},"u-m-l-54":{"":{"!marginLeft":"54rpx"}},"u-p-l-54":{"":{"!paddingLeft":"54rpx"}},"u-margin-left-54":{"":{"!marginLeft":"54rpx"}},"u-padding-left-54":{"":{"!paddingLeft":"54rpx"}},"u-m-t-54":{"":{"!marginTop":"54rpx"}},"u-p-t-54":{"":{"!paddingTop":"54rpx"}},"u-margin-top-54":{"":{"!marginTop":"54rpx"}},"u-padding-top-54":{"":{"!paddingTop":"54rpx"}},"u-m-r-54":{"":{"!marginRight":"54rpx"}},"u-p-r-54":{"":{"!paddingRight":"54rpx"}},"u-margin-right-54":{"":{"!marginRight":"54rpx"}},"u-padding-right-54":{"":{"!paddingRight":"54rpx"}},"u-m-b-54":{"":{"!marginBottom":"54rpx"}},"u-p-b-54":{"":{"!paddingBottom":"54rpx"}},"u-margin-bottom-54":{"":{"!marginBottom":"54rpx"}},"u-padding-bottom-54":{"":{"!paddingBottom":"54rpx"}},"u-margin-55":{"":{"!marginTop":"55rpx","!marginRight":"55rpx","!marginBottom":"55rpx","!marginLeft":"55rpx"}},"u-m-55":{"":{"!marginTop":"55rpx","!marginRight":"55rpx","!marginBottom":"55rpx","!marginLeft":"55rpx"}},"u-padding-55":{"":{"!paddingTop":"55rpx","!paddingRight":"55rpx","!paddingBottom":"55rpx","!paddingLeft":"55rpx"}},"u-p-55":{"":{"!paddingTop":"55rpx","!paddingRight":"55rpx","!paddingBottom":"55rpx","!paddingLeft":"55rpx"}},"u-m-l-55":{"":{"!marginLeft":"55rpx"}},"u-p-l-55":{"":{"!paddingLeft":"55rpx"}},"u-margin-left-55":{"":{"!marginLeft":"55rpx"}},"u-padding-left-55":{"":{"!paddingLeft":"55rpx"}},"u-m-t-55":{"":{"!marginTop":"55rpx"}},"u-p-t-55":{"":{"!paddingTop":"55rpx"}},"u-margin-top-55":{"":{"!marginTop":"55rpx"}},"u-padding-top-55":{"":{"!paddingTop":"55rpx"}},"u-m-r-55":{"":{"!marginRight":"55rpx"}},"u-p-r-55":{"":{"!paddingRight":"55rpx"}},"u-margin-right-55":{"":{"!marginRight":"55rpx"}},"u-padding-right-55":{"":{"!paddingRight":"55rpx"}},"u-m-b-55":{"":{"!marginBottom":"55rpx"}},"u-p-b-55":{"":{"!paddingBottom":"55rpx"}},"u-margin-bottom-55":{"":{"!marginBottom":"55rpx"}},"u-padding-bottom-55":{"":{"!paddingBottom":"55rpx"}},"u-margin-56":{"":{"!marginTop":"56rpx","!marginRight":"56rpx","!marginBottom":"56rpx","!marginLeft":"56rpx"}},"u-m-56":{"":{"!marginTop":"56rpx","!marginRight":"56rpx","!marginBottom":"56rpx","!marginLeft":"56rpx"}},"u-padding-56":{"":{"!paddingTop":"56rpx","!paddingRight":"56rpx","!paddingBottom":"56rpx","!paddingLeft":"56rpx"}},"u-p-56":{"":{"!paddingTop":"56rpx","!paddingRight":"56rpx","!paddingBottom":"56rpx","!paddingLeft":"56rpx"}},"u-m-l-56":{"":{"!marginLeft":"56rpx"}},"u-p-l-56":{"":{"!paddingLeft":"56rpx"}},"u-margin-left-56":{"":{"!marginLeft":"56rpx"}},"u-padding-left-56":{"":{"!paddingLeft":"56rpx"}},"u-m-t-56":{"":{"!marginTop":"56rpx"}},"u-p-t-56":{"":{"!paddingTop":"56rpx"}},"u-margin-top-56":{"":{"!marginTop":"56rpx"}},"u-padding-top-56":{"":{"!paddingTop":"56rpx"}},"u-m-r-56":{"":{"!marginRight":"56rpx"}},"u-p-r-56":{"":{"!paddingRight":"56rpx"}},"u-margin-right-56":{"":{"!marginRight":"56rpx"}},"u-padding-right-56":{"":{"!paddingRight":"56rpx"}},"u-m-b-56":{"":{"!marginBottom":"56rpx"}},"u-p-b-56":{"":{"!paddingBottom":"56rpx"}},"u-margin-bottom-56":{"":{"!marginBottom":"56rpx"}},"u-padding-bottom-56":{"":{"!paddingBottom":"56rpx"}},"u-margin-58":{"":{"!marginTop":"58rpx","!marginRight":"58rpx","!marginBottom":"58rpx","!marginLeft":"58rpx"}},"u-m-58":{"":{"!marginTop":"58rpx","!marginRight":"58rpx","!marginBottom":"58rpx","!marginLeft":"58rpx"}},"u-padding-58":{"":{"!paddingTop":"58rpx","!paddingRight":"58rpx","!paddingBottom":"58rpx","!paddingLeft":"58rpx"}},"u-p-58":{"":{"!paddingTop":"58rpx","!paddingRight":"58rpx","!paddingBottom":"58rpx","!paddingLeft":"58rpx"}},"u-m-l-58":{"":{"!marginLeft":"58rpx"}},"u-p-l-58":{"":{"!paddingLeft":"58rpx"}},"u-margin-left-58":{"":{"!marginLeft":"58rpx"}},"u-padding-left-58":{"":{"!paddingLeft":"58rpx"}},"u-m-t-58":{"":{"!marginTop":"58rpx"}},"u-p-t-58":{"":{"!paddingTop":"58rpx"}},"u-margin-top-58":{"":{"!marginTop":"58rpx"}},"u-padding-top-58":{"":{"!paddingTop":"58rpx"}},"u-m-r-58":{"":{"!marginRight":"58rpx"}},"u-p-r-58":{"":{"!paddingRight":"58rpx"}},"u-margin-right-58":{"":{"!marginRight":"58rpx"}},"u-padding-right-58":{"":{"!paddingRight":"58rpx"}},"u-m-b-58":{"":{"!marginBottom":"58rpx"}},"u-p-b-58":{"":{"!paddingBottom":"58rpx"}},"u-margin-bottom-58":{"":{"!marginBottom":"58rpx"}},"u-padding-bottom-58":{"":{"!paddingBottom":"58rpx"}},"u-margin-60":{"":{"!marginTop":"60rpx","!marginRight":"60rpx","!marginBottom":"60rpx","!marginLeft":"60rpx"}},"u-m-60":{"":{"!marginTop":"60rpx","!marginRight":"60rpx","!marginBottom":"60rpx","!marginLeft":"60rpx"}},"u-padding-60":{"":{"!paddingTop":"60rpx","!paddingRight":"60rpx","!paddingBottom":"60rpx","!paddingLeft":"60rpx"}},"u-p-60":{"":{"!paddingTop":"60rpx","!paddingRight":"60rpx","!paddingBottom":"60rpx","!paddingLeft":"60rpx"}},"u-m-l-60":{"":{"!marginLeft":"60rpx"}},"u-p-l-60":{"":{"!paddingLeft":"60rpx"}},"u-margin-left-60":{"":{"!marginLeft":"60rpx"}},"u-padding-left-60":{"":{"!paddingLeft":"60rpx"}},"u-m-t-60":{"":{"!marginTop":"60rpx"}},"u-p-t-60":{"":{"!paddingTop":"60rpx"}},"u-margin-top-60":{"":{"!marginTop":"60rpx"}},"u-padding-top-60":{"":{"!paddingTop":"60rpx"}},"u-m-r-60":{"":{"!marginRight":"60rpx"}},"u-p-r-60":{"":{"!paddingRight":"60rpx"}},"u-margin-right-60":{"":{"!marginRight":"60rpx"}},"u-padding-right-60":{"":{"!paddingRight":"60rpx"}},"u-m-b-60":{"":{"!marginBottom":"60rpx"}},"u-p-b-60":{"":{"!paddingBottom":"60rpx"}},"u-margin-bottom-60":{"":{"!marginBottom":"60rpx"}},"u-padding-bottom-60":{"":{"!paddingBottom":"60rpx"}},"u-margin-62":{"":{"!marginTop":"62rpx","!marginRight":"62rpx","!marginBottom":"62rpx","!marginLeft":"62rpx"}},"u-m-62":{"":{"!marginTop":"62rpx","!marginRight":"62rpx","!marginBottom":"62rpx","!marginLeft":"62rpx"}},"u-padding-62":{"":{"!paddingTop":"62rpx","!paddingRight":"62rpx","!paddingBottom":"62rpx","!paddingLeft":"62rpx"}},"u-p-62":{"":{"!paddingTop":"62rpx","!paddingRight":"62rpx","!paddingBottom":"62rpx","!paddingLeft":"62rpx"}},"u-m-l-62":{"":{"!marginLeft":"62rpx"}},"u-p-l-62":{"":{"!paddingLeft":"62rpx"}},"u-margin-left-62":{"":{"!marginLeft":"62rpx"}},"u-padding-left-62":{"":{"!paddingLeft":"62rpx"}},"u-m-t-62":{"":{"!marginTop":"62rpx"}},"u-p-t-62":{"":{"!paddingTop":"62rpx"}},"u-margin-top-62":{"":{"!marginTop":"62rpx"}},"u-padding-top-62":{"":{"!paddingTop":"62rpx"}},"u-m-r-62":{"":{"!marginRight":"62rpx"}},"u-p-r-62":{"":{"!paddingRight":"62rpx"}},"u-margin-right-62":{"":{"!marginRight":"62rpx"}},"u-padding-right-62":{"":{"!paddingRight":"62rpx"}},"u-m-b-62":{"":{"!marginBottom":"62rpx"}},"u-p-b-62":{"":{"!paddingBottom":"62rpx"}},"u-margin-bottom-62":{"":{"!marginBottom":"62rpx"}},"u-padding-bottom-62":{"":{"!paddingBottom":"62rpx"}},"u-margin-64":{"":{"!marginTop":"64rpx","!marginRight":"64rpx","!marginBottom":"64rpx","!marginLeft":"64rpx"}},"u-m-64":{"":{"!marginTop":"64rpx","!marginRight":"64rpx","!marginBottom":"64rpx","!marginLeft":"64rpx"}},"u-padding-64":{"":{"!paddingTop":"64rpx","!paddingRight":"64rpx","!paddingBottom":"64rpx","!paddingLeft":"64rpx"}},"u-p-64":{"":{"!paddingTop":"64rpx","!paddingRight":"64rpx","!paddingBottom":"64rpx","!paddingLeft":"64rpx"}},"u-m-l-64":{"":{"!marginLeft":"64rpx"}},"u-p-l-64":{"":{"!paddingLeft":"64rpx"}},"u-margin-left-64":{"":{"!marginLeft":"64rpx"}},"u-padding-left-64":{"":{"!paddingLeft":"64rpx"}},"u-m-t-64":{"":{"!marginTop":"64rpx"}},"u-p-t-64":{"":{"!paddingTop":"64rpx"}},"u-margin-top-64":{"":{"!marginTop":"64rpx"}},"u-padding-top-64":{"":{"!paddingTop":"64rpx"}},"u-m-r-64":{"":{"!marginRight":"64rpx"}},"u-p-r-64":{"":{"!paddingRight":"64rpx"}},"u-margin-right-64":{"":{"!marginRight":"64rpx"}},"u-padding-right-64":{"":{"!paddingRight":"64rpx"}},"u-m-b-64":{"":{"!marginBottom":"64rpx"}},"u-p-b-64":{"":{"!paddingBottom":"64rpx"}},"u-margin-bottom-64":{"":{"!marginBottom":"64rpx"}},"u-padding-bottom-64":{"":{"!paddingBottom":"64rpx"}},"u-margin-65":{"":{"!marginTop":"65rpx","!marginRight":"65rpx","!marginBottom":"65rpx","!marginLeft":"65rpx"}},"u-m-65":{"":{"!marginTop":"65rpx","!marginRight":"65rpx","!marginBottom":"65rpx","!marginLeft":"65rpx"}},"u-padding-65":{"":{"!paddingTop":"65rpx","!paddingRight":"65rpx","!paddingBottom":"65rpx","!paddingLeft":"65rpx"}},"u-p-65":{"":{"!paddingTop":"65rpx","!paddingRight":"65rpx","!paddingBottom":"65rpx","!paddingLeft":"65rpx"}},"u-m-l-65":{"":{"!marginLeft":"65rpx"}},"u-p-l-65":{"":{"!paddingLeft":"65rpx"}},"u-margin-left-65":{"":{"!marginLeft":"65rpx"}},"u-padding-left-65":{"":{"!paddingLeft":"65rpx"}},"u-m-t-65":{"":{"!marginTop":"65rpx"}},"u-p-t-65":{"":{"!paddingTop":"65rpx"}},"u-margin-top-65":{"":{"!marginTop":"65rpx"}},"u-padding-top-65":{"":{"!paddingTop":"65rpx"}},"u-m-r-65":{"":{"!marginRight":"65rpx"}},"u-p-r-65":{"":{"!paddingRight":"65rpx"}},"u-margin-right-65":{"":{"!marginRight":"65rpx"}},"u-padding-right-65":{"":{"!paddingRight":"65rpx"}},"u-m-b-65":{"":{"!marginBottom":"65rpx"}},"u-p-b-65":{"":{"!paddingBottom":"65rpx"}},"u-margin-bottom-65":{"":{"!marginBottom":"65rpx"}},"u-padding-bottom-65":{"":{"!paddingBottom":"65rpx"}},"u-margin-66":{"":{"!marginTop":"66rpx","!marginRight":"66rpx","!marginBottom":"66rpx","!marginLeft":"66rpx"}},"u-m-66":{"":{"!marginTop":"66rpx","!marginRight":"66rpx","!marginBottom":"66rpx","!marginLeft":"66rpx"}},"u-padding-66":{"":{"!paddingTop":"66rpx","!paddingRight":"66rpx","!paddingBottom":"66rpx","!paddingLeft":"66rpx"}},"u-p-66":{"":{"!paddingTop":"66rpx","!paddingRight":"66rpx","!paddingBottom":"66rpx","!paddingLeft":"66rpx"}},"u-m-l-66":{"":{"!marginLeft":"66rpx"}},"u-p-l-66":{"":{"!paddingLeft":"66rpx"}},"u-margin-left-66":{"":{"!marginLeft":"66rpx"}},"u-padding-left-66":{"":{"!paddingLeft":"66rpx"}},"u-m-t-66":{"":{"!marginTop":"66rpx"}},"u-p-t-66":{"":{"!paddingTop":"66rpx"}},"u-margin-top-66":{"":{"!marginTop":"66rpx"}},"u-padding-top-66":{"":{"!paddingTop":"66rpx"}},"u-m-r-66":{"":{"!marginRight":"66rpx"}},"u-p-r-66":{"":{"!paddingRight":"66rpx"}},"u-margin-right-66":{"":{"!marginRight":"66rpx"}},"u-padding-right-66":{"":{"!paddingRight":"66rpx"}},"u-m-b-66":{"":{"!marginBottom":"66rpx"}},"u-p-b-66":{"":{"!paddingBottom":"66rpx"}},"u-margin-bottom-66":{"":{"!marginBottom":"66rpx"}},"u-padding-bottom-66":{"":{"!paddingBottom":"66rpx"}},"u-margin-68":{"":{"!marginTop":"68rpx","!marginRight":"68rpx","!marginBottom":"68rpx","!marginLeft":"68rpx"}},"u-m-68":{"":{"!marginTop":"68rpx","!marginRight":"68rpx","!marginBottom":"68rpx","!marginLeft":"68rpx"}},"u-padding-68":{"":{"!paddingTop":"68rpx","!paddingRight":"68rpx","!paddingBottom":"68rpx","!paddingLeft":"68rpx"}},"u-p-68":{"":{"!paddingTop":"68rpx","!paddingRight":"68rpx","!paddingBottom":"68rpx","!paddingLeft":"68rpx"}},"u-m-l-68":{"":{"!marginLeft":"68rpx"}},"u-p-l-68":{"":{"!paddingLeft":"68rpx"}},"u-margin-left-68":{"":{"!marginLeft":"68rpx"}},"u-padding-left-68":{"":{"!paddingLeft":"68rpx"}},"u-m-t-68":{"":{"!marginTop":"68rpx"}},"u-p-t-68":{"":{"!paddingTop":"68rpx"}},"u-margin-top-68":{"":{"!marginTop":"68rpx"}},"u-padding-top-68":{"":{"!paddingTop":"68rpx"}},"u-m-r-68":{"":{"!marginRight":"68rpx"}},"u-p-r-68":{"":{"!paddingRight":"68rpx"}},"u-margin-right-68":{"":{"!marginRight":"68rpx"}},"u-padding-right-68":{"":{"!paddingRight":"68rpx"}},"u-m-b-68":{"":{"!marginBottom":"68rpx"}},"u-p-b-68":{"":{"!paddingBottom":"68rpx"}},"u-margin-bottom-68":{"":{"!marginBottom":"68rpx"}},"u-padding-bottom-68":{"":{"!paddingBottom":"68rpx"}},"u-margin-70":{"":{"!marginTop":"70rpx","!marginRight":"70rpx","!marginBottom":"70rpx","!marginLeft":"70rpx"}},"u-m-70":{"":{"!marginTop":"70rpx","!marginRight":"70rpx","!marginBottom":"70rpx","!marginLeft":"70rpx"}},"u-padding-70":{"":{"!paddingTop":"70rpx","!paddingRight":"70rpx","!paddingBottom":"70rpx","!paddingLeft":"70rpx"}},"u-p-70":{"":{"!paddingTop":"70rpx","!paddingRight":"70rpx","!paddingBottom":"70rpx","!paddingLeft":"70rpx"}},"u-m-l-70":{"":{"!marginLeft":"70rpx"}},"u-p-l-70":{"":{"!paddingLeft":"70rpx"}},"u-margin-left-70":{"":{"!marginLeft":"70rpx"}},"u-padding-left-70":{"":{"!paddingLeft":"70rpx"}},"u-m-t-70":{"":{"!marginTop":"70rpx"}},"u-p-t-70":{"":{"!paddingTop":"70rpx"}},"u-margin-top-70":{"":{"!marginTop":"70rpx"}},"u-padding-top-70":{"":{"!paddingTop":"70rpx"}},"u-m-r-70":{"":{"!marginRight":"70rpx"}},"u-p-r-70":{"":{"!paddingRight":"70rpx"}},"u-margin-right-70":{"":{"!marginRight":"70rpx"}},"u-padding-right-70":{"":{"!paddingRight":"70rpx"}},"u-m-b-70":{"":{"!marginBottom":"70rpx"}},"u-p-b-70":{"":{"!paddingBottom":"70rpx"}},"u-margin-bottom-70":{"":{"!marginBottom":"70rpx"}},"u-padding-bottom-70":{"":{"!paddingBottom":"70rpx"}},"u-margin-72":{"":{"!marginTop":"72rpx","!marginRight":"72rpx","!marginBottom":"72rpx","!marginLeft":"72rpx"}},"u-m-72":{"":{"!marginTop":"72rpx","!marginRight":"72rpx","!marginBottom":"72rpx","!marginLeft":"72rpx"}},"u-padding-72":{"":{"!paddingTop":"72rpx","!paddingRight":"72rpx","!paddingBottom":"72rpx","!paddingLeft":"72rpx"}},"u-p-72":{"":{"!paddingTop":"72rpx","!paddingRight":"72rpx","!paddingBottom":"72rpx","!paddingLeft":"72rpx"}},"u-m-l-72":{"":{"!marginLeft":"72rpx"}},"u-p-l-72":{"":{"!paddingLeft":"72rpx"}},"u-margin-left-72":{"":{"!marginLeft":"72rpx"}},"u-padding-left-72":{"":{"!paddingLeft":"72rpx"}},"u-m-t-72":{"":{"!marginTop":"72rpx"}},"u-p-t-72":{"":{"!paddingTop":"72rpx"}},"u-margin-top-72":{"":{"!marginTop":"72rpx"}},"u-padding-top-72":{"":{"!paddingTop":"72rpx"}},"u-m-r-72":{"":{"!marginRight":"72rpx"}},"u-p-r-72":{"":{"!paddingRight":"72rpx"}},"u-margin-right-72":{"":{"!marginRight":"72rpx"}},"u-padding-right-72":{"":{"!paddingRight":"72rpx"}},"u-m-b-72":{"":{"!marginBottom":"72rpx"}},"u-p-b-72":{"":{"!paddingBottom":"72rpx"}},"u-margin-bottom-72":{"":{"!marginBottom":"72rpx"}},"u-padding-bottom-72":{"":{"!paddingBottom":"72rpx"}},"u-margin-74":{"":{"!marginTop":"74rpx","!marginRight":"74rpx","!marginBottom":"74rpx","!marginLeft":"74rpx"}},"u-m-74":{"":{"!marginTop":"74rpx","!marginRight":"74rpx","!marginBottom":"74rpx","!marginLeft":"74rpx"}},"u-padding-74":{"":{"!paddingTop":"74rpx","!paddingRight":"74rpx","!paddingBottom":"74rpx","!paddingLeft":"74rpx"}},"u-p-74":{"":{"!paddingTop":"74rpx","!paddingRight":"74rpx","!paddingBottom":"74rpx","!paddingLeft":"74rpx"}},"u-m-l-74":{"":{"!marginLeft":"74rpx"}},"u-p-l-74":{"":{"!paddingLeft":"74rpx"}},"u-margin-left-74":{"":{"!marginLeft":"74rpx"}},"u-padding-left-74":{"":{"!paddingLeft":"74rpx"}},"u-m-t-74":{"":{"!marginTop":"74rpx"}},"u-p-t-74":{"":{"!paddingTop":"74rpx"}},"u-margin-top-74":{"":{"!marginTop":"74rpx"}},"u-padding-top-74":{"":{"!paddingTop":"74rpx"}},"u-m-r-74":{"":{"!marginRight":"74rpx"}},"u-p-r-74":{"":{"!paddingRight":"74rpx"}},"u-margin-right-74":{"":{"!marginRight":"74rpx"}},"u-padding-right-74":{"":{"!paddingRight":"74rpx"}},"u-m-b-74":{"":{"!marginBottom":"74rpx"}},"u-p-b-74":{"":{"!paddingBottom":"74rpx"}},"u-margin-bottom-74":{"":{"!marginBottom":"74rpx"}},"u-padding-bottom-74":{"":{"!paddingBottom":"74rpx"}},"u-margin-75":{"":{"!marginTop":"75rpx","!marginRight":"75rpx","!marginBottom":"75rpx","!marginLeft":"75rpx"}},"u-m-75":{"":{"!marginTop":"75rpx","!marginRight":"75rpx","!marginBottom":"75rpx","!marginLeft":"75rpx"}},"u-padding-75":{"":{"!paddingTop":"75rpx","!paddingRight":"75rpx","!paddingBottom":"75rpx","!paddingLeft":"75rpx"}},"u-p-75":{"":{"!paddingTop":"75rpx","!paddingRight":"75rpx","!paddingBottom":"75rpx","!paddingLeft":"75rpx"}},"u-m-l-75":{"":{"!marginLeft":"75rpx"}},"u-p-l-75":{"":{"!paddingLeft":"75rpx"}},"u-margin-left-75":{"":{"!marginLeft":"75rpx"}},"u-padding-left-75":{"":{"!paddingLeft":"75rpx"}},"u-m-t-75":{"":{"!marginTop":"75rpx"}},"u-p-t-75":{"":{"!paddingTop":"75rpx"}},"u-margin-top-75":{"":{"!marginTop":"75rpx"}},"u-padding-top-75":{"":{"!paddingTop":"75rpx"}},"u-m-r-75":{"":{"!marginRight":"75rpx"}},"u-p-r-75":{"":{"!paddingRight":"75rpx"}},"u-margin-right-75":{"":{"!marginRight":"75rpx"}},"u-padding-right-75":{"":{"!paddingRight":"75rpx"}},"u-m-b-75":{"":{"!marginBottom":"75rpx"}},"u-p-b-75":{"":{"!paddingBottom":"75rpx"}},"u-margin-bottom-75":{"":{"!marginBottom":"75rpx"}},"u-padding-bottom-75":{"":{"!paddingBottom":"75rpx"}},"u-margin-76":{"":{"!marginTop":"76rpx","!marginRight":"76rpx","!marginBottom":"76rpx","!marginLeft":"76rpx"}},"u-m-76":{"":{"!marginTop":"76rpx","!marginRight":"76rpx","!marginBottom":"76rpx","!marginLeft":"76rpx"}},"u-padding-76":{"":{"!paddingTop":"76rpx","!paddingRight":"76rpx","!paddingBottom":"76rpx","!paddingLeft":"76rpx"}},"u-p-76":{"":{"!paddingTop":"76rpx","!paddingRight":"76rpx","!paddingBottom":"76rpx","!paddingLeft":"76rpx"}},"u-m-l-76":{"":{"!marginLeft":"76rpx"}},"u-p-l-76":{"":{"!paddingLeft":"76rpx"}},"u-margin-left-76":{"":{"!marginLeft":"76rpx"}},"u-padding-left-76":{"":{"!paddingLeft":"76rpx"}},"u-m-t-76":{"":{"!marginTop":"76rpx"}},"u-p-t-76":{"":{"!paddingTop":"76rpx"}},"u-margin-top-76":{"":{"!marginTop":"76rpx"}},"u-padding-top-76":{"":{"!paddingTop":"76rpx"}},"u-m-r-76":{"":{"!marginRight":"76rpx"}},"u-p-r-76":{"":{"!paddingRight":"76rpx"}},"u-margin-right-76":{"":{"!marginRight":"76rpx"}},"u-padding-right-76":{"":{"!paddingRight":"76rpx"}},"u-m-b-76":{"":{"!marginBottom":"76rpx"}},"u-p-b-76":{"":{"!paddingBottom":"76rpx"}},"u-margin-bottom-76":{"":{"!marginBottom":"76rpx"}},"u-padding-bottom-76":{"":{"!paddingBottom":"76rpx"}},"u-margin-78":{"":{"!marginTop":"78rpx","!marginRight":"78rpx","!marginBottom":"78rpx","!marginLeft":"78rpx"}},"u-m-78":{"":{"!marginTop":"78rpx","!marginRight":"78rpx","!marginBottom":"78rpx","!marginLeft":"78rpx"}},"u-padding-78":{"":{"!paddingTop":"78rpx","!paddingRight":"78rpx","!paddingBottom":"78rpx","!paddingLeft":"78rpx"}},"u-p-78":{"":{"!paddingTop":"78rpx","!paddingRight":"78rpx","!paddingBottom":"78rpx","!paddingLeft":"78rpx"}},"u-m-l-78":{"":{"!marginLeft":"78rpx"}},"u-p-l-78":{"":{"!paddingLeft":"78rpx"}},"u-margin-left-78":{"":{"!marginLeft":"78rpx"}},"u-padding-left-78":{"":{"!paddingLeft":"78rpx"}},"u-m-t-78":{"":{"!marginTop":"78rpx"}},"u-p-t-78":{"":{"!paddingTop":"78rpx"}},"u-margin-top-78":{"":{"!marginTop":"78rpx"}},"u-padding-top-78":{"":{"!paddingTop":"78rpx"}},"u-m-r-78":{"":{"!marginRight":"78rpx"}},"u-p-r-78":{"":{"!paddingRight":"78rpx"}},"u-margin-right-78":{"":{"!marginRight":"78rpx"}},"u-padding-right-78":{"":{"!paddingRight":"78rpx"}},"u-m-b-78":{"":{"!marginBottom":"78rpx"}},"u-p-b-78":{"":{"!paddingBottom":"78rpx"}},"u-margin-bottom-78":{"":{"!marginBottom":"78rpx"}},"u-padding-bottom-78":{"":{"!paddingBottom":"78rpx"}},"u-margin-80":{"":{"!marginTop":"80rpx","!marginRight":"80rpx","!marginBottom":"80rpx","!marginLeft":"80rpx"}},"u-m-80":{"":{"!marginTop":"80rpx","!marginRight":"80rpx","!marginBottom":"80rpx","!marginLeft":"80rpx"}},"u-padding-80":{"":{"!paddingTop":"80rpx","!paddingRight":"80rpx","!paddingBottom":"80rpx","!paddingLeft":"80rpx"}},"u-p-80":{"":{"!paddingTop":"80rpx","!paddingRight":"80rpx","!paddingBottom":"80rpx","!paddingLeft":"80rpx"}},"u-m-l-80":{"":{"!marginLeft":"80rpx"}},"u-p-l-80":{"":{"!paddingLeft":"80rpx"}},"u-margin-left-80":{"":{"!marginLeft":"80rpx"}},"u-padding-left-80":{"":{"!paddingLeft":"80rpx"}},"u-m-t-80":{"":{"!marginTop":"80rpx"}},"u-p-t-80":{"":{"!paddingTop":"80rpx"}},"u-margin-top-80":{"":{"!marginTop":"80rpx"}},"u-padding-top-80":{"":{"!paddingTop":"80rpx"}},"u-m-r-80":{"":{"!marginRight":"80rpx"}},"u-p-r-80":{"":{"!paddingRight":"80rpx"}},"u-margin-right-80":{"":{"!marginRight":"80rpx"}},"u-padding-right-80":{"":{"!paddingRight":"80rpx"}},"u-m-b-80":{"":{"!marginBottom":"80rpx"}},"u-p-b-80":{"":{"!paddingBottom":"80rpx"}},"u-margin-bottom-80":{"":{"!marginBottom":"80rpx"}},"u-padding-bottom-80":{"":{"!paddingBottom":"80rpx"}},"u-reset-nvue":{"":{"flexDirection":"row","alignItems":"center"}},"u-type-primary-light":{"":{"color":"#ecf5ff"}},"u-type-warning-light":{"":{"color":"#fdf6ec"}},"u-type-success-light":{"":{"color":"#dbf1e1"}},"u-type-error-light":{"":{"color":"#fef0f0"}},"u-type-info-light":{"":{"color":"#f4f4f5"}},"u-type-primary-light-bg":{"":{"backgroundColor":"#ecf5ff"}},"u-type-warning-light-bg":{"":{"backgroundColor":"#fdf6ec"}},"u-type-success-light-bg":{"":{"backgroundColor":"#dbf1e1"}},"u-type-error-light-bg":{"":{"backgroundColor":"#fef0f0"}},"u-type-info-light-bg":{"":{"backgroundColor":"#f4f4f5"}},"u-type-primary-dark":{"":{"color":"#2b85e4"}},"u-type-warning-dark":{"":{"color":"#f29100"}},"u-type-success-dark":{"":{"color":"#18b566"}},"u-type-error-dark":{"":{"color":"#dd6161"}},"u-type-info-dark":{"":{"color":"#82848a"}},"u-type-primary-dark-bg":{"":{"backgroundColor":"#2b85e4"}},"u-type-warning-dark-bg":{"":{"backgroundColor":"#f29100"}},"u-type-success-dark-bg":{"":{"backgroundColor":"#18b566"}},"u-type-error-dark-bg":{"":{"backgroundColor":"#dd6161"}},"u-type-info-dark-bg":{"":{"backgroundColor":"#82848a"}},"u-type-primary-disabled":{"":{"color":"#a0cfff"}},"u-type-warning-disabled":{"":{"color":"#fcbd71"}},"u-type-success-disabled":{"":{"color":"#71d5a1"}},"u-type-error-disabled":{"":{"color":"#fab6b6"}},"u-type-info-disabled":{"":{"color":"#c8c9cc"}},"u-type-primary":{"":{"color":"#2979ff"}},"u-type-warning":{"":{"color":"#ff9900"}},"u-type-success":{"":{"color":"#19be6b"}},"u-type-error":{"":{"color":"#fa3534"}},"u-type-info":{"":{"color":"#909399"}},"u-type-primary-bg":{"":{"backgroundColor":"#2979ff"}},"u-type-warning-bg":{"":{"backgroundColor":"#ff9900"}},"u-type-success-bg":{"":{"backgroundColor":"#19be6b"}},"u-type-error-bg":{"":{"backgroundColor":"#fa3534"}},"u-type-info-bg":{"":{"backgroundColor":"#909399"}},"u-main-color":{"":{"color":"#303133"}},"u-content-color":{"":{"color":"#606266"}},"u-tips-color":{"":{"color":"#909399"}},"u-light-color":{"":{"color":"#c0c4cc"}},"nvue":{"":{"fontSize":"24rpx"}}}];//styles + __uniConfig.onReady=function(callback){if(__uniConfig.ready){callback()}else{onReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"ready",{get:function(){return isReady},set:function(val){isReady=val;if(!isReady){return}const callbacks=onReadyCallbacks.slice(0);onReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}}); + __uniConfig.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}}); + service.register("uni-app-config",{create(a,b,c){if(!__uniConfig.viewport){var d=b.weex.config.env.scale,e=b.weex.config.env.deviceWidth,f=Math.ceil(e/d);Object.assign(__uniConfig,{viewport:f,defaultFontSize:16})}return{instance:{__uniConfig:__uniConfig,__uniRoutes:__uniRoutes,global:u,window:u,document:u,frames:u,self:u,location:u,navigator:u,localStorage:u,history:u,Caches:u,screen:u,alert:u,confirm:u,prompt:u,fetch:u,XMLHttpRequest:u,WebSocket:u,webkit:u,print:u}}}}); + })(); + \ No newline at end of file diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/app-config.js b/app/src/main/assets/apps/__UNI__FB2D473/www/app-config.js new file mode 100644 index 0000000..c5168cc --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/app-config.js @@ -0,0 +1 @@ +(function(){})(); \ No newline at end of file diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/app-service.js b/app/src/main/assets/apps/__UNI__FB2D473/www/app-service.js new file mode 100644 index 0000000..997c7fb --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/app-service.js @@ -0,0 +1 @@ +if("undefined"==typeof Promise||Promise.prototype.finally||(Promise.prototype.finally=function(e){const t=this.constructor;return this.then((l=>t.resolve(e()).then((()=>l))),(l=>t.resolve(e()).then((()=>{throw l}))))}),"undefined"!=typeof uni&&uni&&uni.requireGlobal){const e=uni.requireGlobal();ArrayBuffer=e.ArrayBuffer,Int8Array=e.Int8Array,Uint8Array=e.Uint8Array,Uint8ClampedArray=e.Uint8ClampedArray,Int16Array=e.Int16Array,Uint16Array=e.Uint16Array,Int32Array=e.Int32Array,Uint32Array=e.Uint32Array,Float32Array=e.Float32Array,Float64Array=e.Float64Array,BigInt64Array=e.BigInt64Array,BigUint64Array=e.BigUint64Array}uni.restoreGlobal&&uni.restoreGlobal(Vue,weex,plus,setTimeout,clearTimeout,setInterval,clearInterval),function(e){"use strict";function t(e){return weex.requireModule(e)}function l(e,t,...l){uni.__log__?uni.__log__(e,t,...l):console[e].apply(console,[...l,t])}function a(e,t){return"string"==typeof e?t:e}const i=(t,l=0)=>(l,a=e.getCurrentInstance())=>{!e.isInSSRComponentSetup&&e.injectHook(t,l,a)},r=i("onShow",3),n=i("onHide",3),o=i("onLoad",2),c="/static/left.png",s=(e,t)=>{const l=e.__vccOpts||e;for(const[a,i]of t)l[a]=i;return l};const d=s({name:"ZyUpgrade",props:{theme:{type:String,default:"green"},updateurl:{type:String,default:""},h5preview:{type:Boolean,default:!1},oldversion:{type:String,default:""},oldcode:{type:Number,default:0},appstoreflag:{type:Boolean,default:!1},noticeflag:{type:Boolean,default:!1},autocheckupdate:{type:Boolean,default:!0}},data(){return{update_flag:!1,dshow:!1,update_process:0,downloadTask:[],updated2version:"",version_url:"",update_tips:"",forceupgrade:!1,currentversion:this.oldversion,versionname:"",vesioncode:this.oldcode,wgt_flag:0,wgt_url:"",size:0,header:{Authorization:uni.getStorageSync("token")||"token"}}},mounted(){let e=!1;e=!0,this.h5preview,this.autocheckupdate&&this.check_update()},computed:{version(){let e="";return e=this.currentversion+(""!=this.currentversion&&""!=this.updated2version?"->":"")+this.updated2version,e}},methods:{check_update(){let e=this;plus.runtime.getProperty(plus.runtime.appid,(function(t){e.currentversion=t.version,e.versionname=t.name,e.versioncode=t.versionCode,e.updatebusiness(e)}))},updatebusiness:function(e){uni.request({url:`https://www.focusnu.com/devopsapi/api/pad/versionUpdate?platform=1&version=${e.currentversion}`,method:"GET",dataType:"json",success:t=>{404!==t.statusCode&&(100==t.data.code?t.data.data.update_url?(e.dshow=!0,e.update_tips=t.data.data.update_tips,e.forceupgrade=1==t.data.data.forceupdate,e.version_url=t.data.data.update_url,e.updated2version=t.data.data.version,e.wgt_flag=t.data.data.wgt_flag,e.wgt_url=t.data.data.wgt_url,e.size=t.data.data.size,e.getnewbanben()):e.noticeflag&&e.$emit("showupdateTips",0):uni.showToast({title:"请求升级出错:"+data.msg,icon:"none"}))},fail(){this.loading=!1}})},getnewbanben:function(){this.$emit("chuandinew",this.updated2version)},upgrade_checked:function(){uni.removeStorageSync("token"),this.update_flag=!0,this.updateversion()},upgrade_cancel:function(){this.dshow=!1},upgrade_break:function(){this.downloadTask.abort(),this.update_flag=!1},updateversion:function(){let e=this;if("ios"==uni.getSystemInfoSync().platform&&this.appstoreflag&&1!=e.wgt_flag)e.dshow=!1,plus.runtime.launchApplication({action:e.version_url},(function(e){uni.showToast({title:"打开appstore失败",icon:"none"})}));else{let e=this,t="https://www.focusnu.com/devopsapi/sys/common/static/"+(1==e.wgt_flag?e.wgt_url:e.version_url);this.update_confirm=!0,this.downloadTask=uni.downloadFile({url:t,header:this.header,success:function(e){l("log","at component/zy-upgrade/zy-upgrade.vue:223","!!!",e),200==e.statusCode?plus.runtime.install(e.tempFilePath,{force:!1},(function(){plus.runtime.restart()}),(function(e){l("error","at component/zy-upgrade/zy-upgrade.vue:232","install fail...",JSON.stringify(e)),uni.showToast({title:"升级失败",icon:"none"})})):uni.showToast({title:"下载失败,网络错误",icon:"none"})},fail:function(e){uni.showToast({title:"下载失败:"+e.errMsg,icon:"none"}),this.update_flag=!1},complete:function(){}}),this.downloadTask.onProgressUpdate((function(t){if(e.update_process=t.progress,t.progress==1/0){let l=t.totalBytesWritten/e.size*100;l>100&&(l=100),e.update_process=l}}))}}}},[["render",function(t,l,a,i,r,n){return e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["zy-modal",r.dshow?"show":""])},[e.createElementVNode("view",{style:{position:"absolute",top:"300rpx",left:"1040rpx","z-index":"9999"}},[e.createElementVNode("image",{style:{width:"300rpx",height:"400rpx",position:"absolute",top:"0rpx",left:"0rpx"},src:"/static/index/update/fly.png"})]),e.createElementVNode("view",{class:"zy-dialog",style:{"background-color":"#fff","border-radius":"40rpx"}},[e.createElementVNode("view",{style:{height:"400rpx",width:"100%",position:"relative"}},[e.createElementVNode("image",{style:{width:"1800rpx",height:"1600rpx",position:"absolute",top:"-370rpx",left:"-220rpx"},src:"/static/index/update/bgc.png"})]),e.createElementVNode("view",{class:e.normalizeClass("zy-upgrade-topbg-"+a.theme)},[e.createElementVNode("view",null,[e.createElementVNode("text",{class:"zy-upgrade-title"}," 发现新版本 ")]),e.createElementVNode("text",{class:"flex-wrap",style:{"margin-top":"10rpx"}},e.toDisplayString(n.version),1)],2),e.createElementVNode("view",{class:"padding-xl bg-white text-left"},[r.update_flag?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("scroll-view",{key:0,style:{"max-height":"200rpx","text-align":"center"},"scroll-y":"auto"},[e.createElementVNode("text",null,e.toDisplayString(r.update_tips),1)])),r.update_flag?(e.openBlock(),e.createElementBlock("view",{key:1,class:"zy-progress radius striped active"},[e.createElementVNode("view",{class:e.normalizeClass("bg-"+a.theme),style:e.normalizeStyle("width: "+r.update_process+"%;")},e.toDisplayString(r.update_process),7)])):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"zy-bar bg-white",style:{"justify-content":"center",display:"flex","margin-bottom":"60rpx"}},[r.update_flag?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"action"},[e.createElementVNode("button",{class:e.normalizeClass(["zy-btn","bg-"+a.theme]),onClick:l[0]||(l[0]=(...e)=>n.upgrade_checked&&n.upgrade_checked(...e))},"确认升级",2),r.forceupgrade?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("button",{key:0,class:e.normalizeClass(["zy-btn margin-left","line-"+a.theme]),onClick:l[1]||(l[1]=(...e)=>n.upgrade_cancel&&n.upgrade_cancel(...e))},"取消升级",2))])),r.update_flag&&!r.forceupgrade?(e.openBlock(),e.createElementBlock("view",{key:1,class:"action text-center"},[e.createElementVNode("button",{class:e.normalizeClass(["zy-btn","bg-"+a.theme]),onClick:l[2]||(l[2]=(...e)=>n.upgrade_break&&n.upgrade_break(...e))},"中断升级",2)])):e.createCommentVNode("",!0)])])],2)}],["__scopeId","data-v-cd70e807"]]);const m=s({},[["render",function(t,l){return e.openBlock(),e.createElementBlock("view",{class:"all"},[e.createElementVNode("scroll-view",{"scroll-y":"",class:"all-content"},[e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   特别提示 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   欢迎使用NU护理单元为您提供的NU护理单元平台。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"请您务必审慎并完整阅读以下内容,特别是免除或者限制NU护理单元责任的条款、对用户权利进行限制的条款、规定本协议的适用法律及有权解决争议的司法管辖区的条款。限制、免责条款或者其他涉及您重大权益的条款可能以加粗等形式提示您重点注意。请注意,目前在您的地区可能无法使用NU护理单元平台上的某些服务和功能(特别是涉及身份认证和支付的功能)。给您带来的不便,我们深表歉意,并正在努力尽快(如可能)提供这些服务和功能。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   如您未满18周岁或未满您居住所在地要求可使用NU护理单元平台的年龄,请不要使用NU护理单元平台。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   除非您已充分阅读并接受本协议所有条款,否则您无权使用NU护理单元平台。如您不同意本协议或其中任何条款,您应立即停止使用NU护理单元平台。您点击“同意”,或者您使用NU护理单元平台,或者以其他任何明示或者默示方式表示接受本协议的,均视为您已阅读并同意本协议。本协议即在您与NU护理单元之间产生法律效力,成为对双方均具有约束力的法律文件。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 一、定义及协议范围 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   1.1 定义 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   NU护理单元平台:指吉林省捌零信创有限公司(以下简称“NU护理单元”或“我们”)合法拥有并运营的名称为“NU护理单元” 和/或小程序、客户端应用程序以及我们不时提供的其他形式。“我们的”应相应地进行理解。为免疑义,我们亦保留调整NU护理单元平台名称的所有权利。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   NU护理单元账号或账号:指用户在使用NU护理单元平台时可能需要注册的账号。我们为用户提供NU护理单元平台注册通道,您可通过移动电话号码或我们允许的其他方式注册NU护理单元账号。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   用户:指NU护理单元平台的使用人,在本协议中更多地称为“您”。“您的”应相应地进行理解。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   不良信息:指含有下列内容的信息: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   违反中国宪法确定的基本原则,煽动抗拒或者破坏中国宪法等法律法规实施的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   危害中国国家统一、主权和领土完整,泄露中国国家秘密,危害中国国家安全,损害中国国家尊严、荣誉和利益,宣扬恐怖主义、极端主义的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   诋毁中华民族优秀文化传统,煽动民族仇恨、民族歧视,侵害中华民族风俗习惯,歪曲中华民族历史和民族历史人物,伤害民族感情,破坏民族团结的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   煽动破坏中国国家宗教政策,宣扬宗教狂热,危害宗教和睦,伤害信教公民宗教感情,破坏信教公民和不信教公民团结,宣扬邪教、迷信的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   危害中国社会公德,扰乱中国社会秩序,破坏中国社会稳定,宣扬淫秽、赌博、吸毒,渲染暴力、恐怖,教唆犯罪或者传授犯罪方法的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   侵害未成年人合法权益或者损害未成年人身心健康的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   侮辱、诽谤他人或者散布他人隐私,侵害他人合法权益的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   违反法律法规底线、中国社会主义制度底线、中国国家利益底线、中国公民合法权益底线、中国社会公共秩序底线、道德风尚底线和信息真实性底线的“七条底线”要求的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   法律法规禁止的其他内容。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   1.2 协议范围 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   本协议是您与NU护理单元之间关于您下载、安装、使用NU护理单元平台所订立的协议,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"包括本协议正文、《NU护理单元用户隐私政策》《NU护理单元未成年人个人信息保护规则》《NU护理单元社区公约》《NU护理单元社区规范》及NU护理单元已经发布的或将来可能发布/更新的并采取合理途径通知的各类规则、规范、通知等。"),e.createTextVNode("所有规则均为本协议不可分割的组成部分,且具有同等法律效力。 ")]),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 二、账号管理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   2.1 账号获得 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   NU护理单元平台为您提供注册及登录通道,您可按照页面提示填写信息、阅读并同意本协议,在完成全部注册登录程序后,成为NU护理单元平台用户。您还需要根据法律法规的规定(如有)填写您真实的身份信息,否则您可能无法使用NU护理单元平台服务或在使用NU护理单元平台服务过程中受到限制。您了解并同意,您有义务保持您向我们提供的信息的真实性、有效性、准确性及完整性。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   您注册获得的账号、设置的密码是您登录并以用户身份使用NU护理单元平台的凭证,您应当谨慎使用、妥善保管。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您须对账号进行的所有活动和行为负责。若因您保管不善导致的盗号、密码丢失、账号被非法使用的责任将由您自行承担。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   您不得恶意注册NU护理单元账号,包括但不限于通过频繁注册、批量注册、使用他人身份注册或其他不以正常使用NU护理单元平台为目的的账号注册行为。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   2.2 账号信息设置 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   您在注册或使用NU护理单元平台时提供的信息资料(包括但不限于昵称、头像及简介)须遵守法律法规、社会道德风尚和信息真实性等原则,不得出现不良信息,不得冒用他人姓名、名称、字号、头像或使用其他足以引起混淆的方式设置账号,不得侵害第三方的合法权益。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   2.3 账号使用及权属 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   部分第三方网站或者服务可以用NU护理单元账号作为其登录途径之一。您知晓,除非NU护理单元特别说明外,这些网站或者服务并非NU护理单元运营,您应自行判断此类第三方网站或者服务的安全性和可用性,并自行承担相关风险和责任。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   由于您的账号关联您的个人信息及NU护理单元平台商业信息,您的账号仅限您本人使用。未经NU护理单元同意,授权第三方使用您账号或获取您账号项下信息的行为无效。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"如NU护理单元判断您账号的使用可能违反法律法规或本协议、危及您的账号安全及/或NU护理单元平台信息安全的,NU护理单元可拒绝提供相应服务,采取包括但不限于暂停、封禁、注销、收回您的账号,或终止本协议的措施,由此带来的包括但不限于您账号中的内容以及虚拟物品的清空等损失由您自行承担。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   2.4 账号注销及回收 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   您可以依照NU护理单元平台的流程申请注销您的NU护理单元账号,但您仍应对您在注销账号前和使用NU护理单元平台期间的行为承担相应责任。注销成功后,除非法律法规另有规定,NU护理单元不会为您提供账号记录、内容或虚拟财产恢复等服务,请您谨慎操作。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   您理解并同意,为了充分利用账号资源,如您在注册后未及时进行初次登录使用或连续超过六个月未登录账号并使用,且不存在未到期或未履行完毕的持续性NU护理单元平台服务的,NU护理单元有权收回您的账号。如您的账号被收回,您无法通过您此前持有被收回的账号登录并使用NU护理单元平台,您账号下保存的内容、权限、个性化设置和使用记录等信息也将无法恢复。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   2.5 账号违规处置 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   若您在注册或使用NU护理单元账号时,存在任何违反法律法规或不符合本协议约定的行为,NU护理单元有权不予注册;已经注册的,NU护理单元有权视情况要求用户限期改正,或采取短期封禁、永久封禁、注销账号等措施。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 三、NU护理单元平台服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   3.1 内容浏览 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   您可通过NU护理单元平台浏览订阅各类信息和内容。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您对NU护理单元平台中的内容须自行加以判断,并自行承担因依赖或使用该等内容而引起的风险。在适用法律允许的最大限度内,您应对基于该等内容进行的所有支付或交易,或因前述内容而造成的任何损害或损失由您自行承担。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   3.2 内容发布 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   在遵守本协议的前提下,您可使用NU护理单元平台发表属于您原创或您有权发表的观点看法、文字、信息、图片、音视频等内容。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您在NU护理单元平台发布的任何内容均不代表NU护理单元的观点、立场或政策,您自行对您所发布内容承担全部责任。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   您通过NU护理单元平台发布内容时必须遵守全部法律法规,不得利用NU护理单元平台制作、复制、发布、传播、储存任何违反法律法规、危害中国国家安全、可能对用户财产安全或信息安全造成损失的信息、营销信息、低俗不当信息或其他我们认为不应发布的信息不良信息以及不实信息等内容。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   用户不得利用基于深度学习、虚拟现实、生成式人工智能等新技术新应用制作、上传、复制、传送或传播虚假新闻信息等法律法规禁止的信息内容,或将合成内容谎称为真实或自然内容。您在发布或传播利用基于深度学习、虚拟现实、生成式人工智能等新技术新应用制作的非真实信息时,应当以显著方式予以标识,否则我们有权对相关内容和账号采取包括但不限于增加标识、限制、封禁等措施。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   3.3 商品与服务交易 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},[e.createTextVNode("   您可使用NU护理单元平台进行商品与服务的交易,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"如您是未成年人或限制民事行为能力人,请在监护人同意后进行交易。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   进行交易时请您务必仔细确认所购商品的品名、价格、数量、型号、规格、尺寸或服务的时间、内容,以及该服务的限制性要求等重要事项,并在下单时核实您的联系地址、电话、收货人等信息。如您填写的收货人非您本人,则该收货人的行为和意思表示产生的法律后果均由您承担。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},[e.createTextVNode("   您的交易行为应当基于真实的消费需求,不得存在对商品或服务实施恶意购买、恶意维权等扰乱NU护理单元平台正常交易秩序的行为。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"基于维护NU护理单元平台交易秩序及交易安全的需要,NU护理单元发现上述情形时可主动执行关闭相关交易订单等操作。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   如您的交易相对方存在利用NU护理单元平台系统漏洞、规则漏洞,不正当获取NU护理单元平台补贴等任何利益的行为,基于维护NU护理单元平台交易秩序、交易安全及NU护理单元合法权益的需要,NU护理单元发现上述情形时可主动执行关闭相关交易订单等操作。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   本协议终止后,对于您在本协议存续期间产生的交易订单,NU护理单元可通知交易相对方,并有权自主决定或者根据交易相对方的意愿决定是否关闭未完成的交易订单;如NU护理单元未关闭交易订单,则您应当就该等交易订单继续履行本协议及交易订单的约定,并承担因此产生的法律责任及损失。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   3.4 内容分享与转发 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   您可对NU护理单元平台的信息内容进行分享、转发,但未经NU护理单元书面许可,您不得复制、读取、采用、统计NU护理单元平台的信息内容及相关数据,或者进行任何形式的销售和商业使用,或者向第三方泄露、提供或允许第三方为任何方式的使用。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   3.5 活动参与 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   您可通过NU护理单元平台参与NU护理单元不定期组织的各类线上、线下互动活动,但您"),e.createElementVNode("text",{style:{"font-weight":"600"}},"不得采取任何不正当或作弊的违规手段参与活动,否则NU护理单元有权限制或取消您参与活动的资格,并有权取消、追讨您已获得、领取的奖励,并保留追究您法律责任的权利。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   3.6 服务费用 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   NU护理单元为向您提供的NU护理单元平台服务付出了大量的成本,除NU护理单元平台明示的收费业务外,NU护理单元向您提供的NU护理单元平台服务是免费的。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"如未来NU护理单元向您收取合理费用,NU护理单元会采取合理方式并以合理的期限提前通知您,确保您有充分选择的权利。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   在NU护理单元降低收费服务的收费标准或者将收费服务改为免费服务提供时,NU护理单元保留不对原付费用户提供退费或者费用调整之权利。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 四、权利与许可 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   4.1 平台声明 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"平台知识产权。"),e.createTextVNode("NU护理单元平台所提供的内容,包括但不限于视频、图文、文字表述及其组合、界面设计、版面框架、图标、商标等,均由NU护理单元所有或授权使用,受中华人民共和国著作权法、商标法、专利法、反不正当竞争法及国际条约,以及其他国家或司法管辖区的知识产权法律法规的保护。未经NU护理单元书面允许,用户不得为任何目的擅自使用、复制、再造这些内容、或创造与内容有关的派生产品。我们保留本条款中未明确授予您的所有权利。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"平台使用规范。"),e.createTextVNode("您不得从事下列行为: ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   对NU护理单元平台或NU护理单元平台服务进行反向工程、反向汇编、反向编译,或者以其他方式尝试发现NU护理单元平台的源代码; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   以任何方式(包括但不限于盗链、冗余盗取、非法抓取、模拟下载、深度链接、假冒注册等)直接或间接盗取NU护理单元平台的视频、图文、用户信息等信息内容; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   通过非NU护理单元开发、授权、许可的第三方软件、插件、外挂、系统,登录或使用NU护理单元平台,或对NU护理单元平台的正常运行进行干扰、破坏、修改或施加其他影响; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   利用或针对NU护理单元平台进行任何危害我们或任何第三方计算机网络安全的行为,或暴露我们或任何第三方计算机网络安全弱点的行为,包括但不限于:非法侵入网络、干扰网络正常功能、窃取网络数据等危害网络安全、为上述行为提供程序、工具或其他支持与帮助;干涉、破坏NU护理单元平台系统、软件或网站的正常运行,故意传播恶意程序或病毒和其他破坏干扰正常网络信息服务的行为; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   其他以任何不合法的方式、为任何不合法的目的、或与NU护理单元为此制定的其他规范和标准不一致的方式使用NU护理单元平台或NU护理单元平台服务。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   4.2 用户内容及信息授权 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   您在NU护理单元平台发布、上传的内容(包括但不限于文字、图片、视频、音频等)应有合法来源,相关内容为您所有或您已获得必要的授权。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   除非有相反证明,您理解并同意,为使用户内容得到更好的分享及推广,提高其传播价值及影响力,您授予NU护理单元免费的、不可撤销的、非排他的、全球无地域限制的许可使用,包括:存储、使用、传播、复制、修订、改编、汇编、出版、展示、翻译、表演用户内容或制作派生作品,以已知或日后开发的形式、媒体或技术将内容纳入其它作品,再许可第三方按照前述方式使用的权利,以及以自身名义或委托专业第三方对侵犯您上传发布的享有知识产权的内容进行取证、发起投诉或提起诉讼的权利。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   为免歧义,上述许可包括使用、复制和展示用户内容中的个人形象、肖像、姓名、商标、品牌、标识及其他营销推广素材、物料的权利和许可。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   4.3 侵权投诉 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   我们尊重并保护您及他人的知识产权、名誉权、姓名权、隐私权等合法权益。您保证,在NU护理单元平台上传的文字、图片、视频、音频、链接等不侵犯任何第三方的知识产权、名誉权、姓名权、隐私权等合法权益。否则,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"NU护理单元有权在收到权利方或者相关方通知的情况下移除该涉嫌侵权内容。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   您认为NU护理单元平台上的内容侵犯您的合法权益,应当向我们发送侵权通知,具体通知方式和要求按侵权投诉指引执行。我们将在收到有效通知后进行审核,对可以初步证明构成侵权的内容采取必要措施。对无法认定为侵权的内容,您也将收到相应告知,如果您仍然认为侵权事实存在,新的侵权通知中应当补充证明侵权的证据。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   在适用法律允许的最大限度内,NU护理单元储存在其服务器上的数据是用户使用NU护理单元平台和NU护理单元平台服务的唯一有效证据。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 五、法律责任 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   5.1 违约处理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   如您违反本协议约定,NU护理单元有权作出独立判断,立即暂停或终止向您提供部分或全部NU护理单元平台服务,包括采取禁言、屏蔽信息、删除发布内容、封禁账号、注销账号等措施。您应对与该等措施相关的任何损失和损害(包括但不限于您账号的内容、虚拟财产和权限清空、无法正常使用账号及相关NU护理单元平台服务或任何其他后果)承担全部责任和义务。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   5.2 责任承担 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   您承担法律责任的形式包括但不限于:对受到侵害者充分赔偿损失、赔礼道歉、补救负面影响、返还财产等。如您的行为给NU护理单元造成损失的,您应承担全部赔偿责任,包括行政处罚或损害赔偿款等直接损失以及商誉损失、和解款、律师费、诉讼费等间接损失。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   5.3 反商业贿赂 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   您充分了解,任何向NU护理单元的雇员或顾问等提供实物、现金、现金等价物、劳务、旅游等价值明显超出正常商务洽谈范畴的利益,均视为商业贿赂行为。发生前述情形的,NU护理单元可立即终止与您的所有合作并追究您的法律责任。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   5.4 关联处理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   您因违约导致NU护理单元终止本协议时,出于维护NU护理单元平台秩序的目的,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"NU护理单元可终止与您在其他协议(如有)项下的合作。如您违反任何NU护理单元与您订立的其他协议,NU护理单元亦有权终止本协议。除前述协议终止外,NU护理单元亦可追究您在本协议或其他协议下的违约责任。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   5.5 信息公示 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   我们可将对您上述违约行为的处置信息,以及其他经国家行政或司法机关生效法律文书确认的违法信息,在"),e.createElementVNode("text",{style:{"font-weight":"600"}},"NU护理单元平台"),e.createTextVNode("上予以公示。对涉嫌违反法律法规的行为,我们有义务保存有关记录,向国家有关机关报告并配合调查。 ")]),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 六、责任限制、免责事由和赔偿 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   由于各国家或地区的法律与其他一些法律不同,本协议包括仅适用于您位于欧洲经济区(“EEA”)、英国和瑞士(统称 “EEA+”)内情况的条款(第6.1 条)、仅适用于您位于中国内情况的条款(第 6.2 条)(为免疑义,仅为第6.2条之目的,中国不包含香港特别行政区、澳门特别行政区和中国台湾)和仅适用于您位于其他国家或地区的情况的条款(第 6.3 条)。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   6.1 如您位于 EEA+内 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   本第6.1条仅适用于您位于EEA+内的情况。在我们已尽专业勤勉义务的前提下,我们不对任何损失或损害承担责任,除非其:(1)是由于我们对本协议的违反而造成的;或(2)在签订本协议时可被合理预见,即其显然会发生,或在您与我们签订本协议时已知可能会发生。本协议无意排除或限制我们对死亡或人身伤害、欺诈、欺诈性虚假陈述或任何法律规定不能排除的责任。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   尽管本协议另有规定,如果我们怀疑您违反了本协议,我们将遵循以下步骤。首先,我们可能会进行调查,在调查期间,我们可能会暂停您对NU护理单元平台的访问,并根据涉嫌违规行为的严重程度,在适用法律允许的范围内,根据任何法律义务,合理客观地采取行动。在下列情况下,我们可能决定暂时中止或永久终止您对NU护理单元平台的访问:(1) 我们根据法律法规合理客观地认定您严重或多次违反本协议;(2) 我们有客观理由合理地认为您即将严重违反本协议;(3) 法律要求我们如此行事;或 (4) 我们有客观理由合理地认为在处理严重的技术或安全问题时需要如此行事。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   6.2 如您位于中国 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   本第6.2条仅适用于您位于中国内的情况。仅为第6.2条之目的,中国不包含香港特别行政区、澳门特别行政区和中国台湾。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   除适用法律另有明确规定外,在任何情况下,我们均不对任何间接性、后果性、惩罚性、偶然性、特殊性或刑罚性的损害承担责任,该等损害包括但不限于您因使用NU护理单元平台或NU护理单元平台服务而遭受的利润损失。除适用法律另有明确规定外,我们对您承担的全部责任,无论因何原因或何种行为方式,始终不超过您因使用NU护理单元平台或NU护理单元平台服务期间而支付给我们的费用(如有)。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   6.3 如您位于其他国家或地区 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   本第6.3条仅适用于您位于第6.1条所述EEA+和第6.2条所述中国外的情况。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   无陈述或保证:NU护理单元平台和NU护理单元平台服务按“现状”“可用”提供,且您“风险自担”。在法律允许的最大范围内,我们明确不作对NU护理单元平台和NU护理单元平台服务的任何及所有明示或默示的陈述和保证,包括对适销性的默示保证、针对特定用途的适用性或非侵权性。我们不保证NU护理单元平台和NU护理单元平台服务能够满足您的要求,也不保证NU护理单元平台和NU护理单元平台服务的运行不会中断或没有错误。与NU护理单元平台和NU护理单元平台服务相关的信息、内容和服务可能包含漏洞、错误、问题或其他限制。在法律允许的最大范围内,我们、我们的关联公司、我们或其各自的董事、高级职员、雇员、代理、服务提供商和许可方(统称 “NU护理单元方”)对您使用NU护理单元平台和NU护理单元平台服务不承担任何责任。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   责任限制:在法律允许的最大范围内,NU护理单元方不对任何因本协议、NU护理单元平台或NU护理单元平台服务引起的或与之相关的任何间接的、附带的、结果性的、特殊的、法定的、约定的、惩罚性的或其他类似的损害赔偿,或任何超出实际损害的损害赔偿,包括收入损失、利润损失、数据丢失、业务中断或其他无形损失(无论此类损失如何定性)承担责任,无论是否基于合同、侵权行为或任何其他法律理论,也无论各方是否已被告知此类损失的可能性。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"访问由我们自行决定:"),e.createTextVNode("在法律允许的最大范围内,我们可随时自行决定,不经另行通知,限制、暂停、修改或终止您对NU护理单元平台或NU护理单元平台服务的访问,包括在您未能遵守或我们怀疑您未能遵守或即将未能遵守本协议的任何规定,或实际或涉嫌非法或不当情况下。任何此类终止或暂停将不影响我们根据适用法律可能享有的任何其他权利。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"辩护和赔偿:"),e.createTextVNode("对于因您使用NU护理单元平台和NU护理单元平台服务或您违反本协议而导致或引起的任何第三方主张的任何索赔、要求、指控、调查、诉讼、程序或其他争议,您同意为NU护理单元方辩护。并且您同意赔偿NU护理单元方因任何此类争议而产生的任何损害、责任、估定、损失、成本和其他费用(包括合理的律师费和法律费用),并使其免受损害。我们将及时通知您任何此类争议,并将向您提供合理协助,费用由您承担,以就任何此类争议进行抗辩,但未提供此类通知并不免除您在本协议项下的任何义务,除非您因未被提供此类通知而受到重大损害。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"例外:"),e.createTextVNode("本协议中的任何内容均不排除或限制因我们的严重疏忽或故意不当行为而导致的任何责任,或法律不能排除的任何责任。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   6.4 第三方服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   您在使用NU护理单元平台某一特定服务时,该服务可能会另有单独的协议或规则,您在使用该项服务前请阅读并同意相关的单独协议或规则。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您在NU护理单元平台使用第三方提供的产品或服务时,除遵守本协议及其他相关规则外,还可能需要您仔细阅读、同意并遵守第三方的协议、相关规则。如因第三方产品或服务产生的争议、损失或损害,需由您自行与第三方依据相关协议解决。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   6.5 平台责任承担 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   我们仅按照适用法律法规规定承担平台责任。我们不对任何第三方的诽谤、犯罪或其他非法行为承担责任,也不赔偿因此造成的您的损失。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   6.6 服务变更、中断、终止 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   NU护理单元始终在不断变更和改进NU护理单元平台服务,我们会尽最大努力向您提供服务,确保服务的连贯性和安全性。基于此,我们可能会对NU护理单元平台进行更新,您应将软件更新到最新版本,否则我们不保证您可正常使用NU护理单元平台。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   您理解并同意,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"NU护理单元根据自身商业决策、政府行为、不可抗力等原因可能会选择中止、中断及终止NU护理单元平台的部分或全部服务。"),e.createTextVNode("如有此等情形发生,我们会采取合理的方式并以合理的期限提前通知您,除法律法规另有规定外,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"我们不承担由此对您造成的损失。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   在NU护理单元发生合并、分立、收购、资产转让时,NU护理单元可将本协议下部分或全部NU护理单元平台服务及相应的权利义务转交由第三方运营或履行。具体受让主体以NU护理单元通知为准。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   如发生下列任何一种情形,我们有权不经通知而中断或终止向您提供服务: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   根据法律法规规定您应提交真实信息,而您提供的个人资料不真实、或与注册时信息不一致又未能提供合理证明。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   您违反相关法律法规的规定或违反本协议的约定。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   按照法律法规规定,或司法机关或主管部门的要求。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   出于安全的原因或其他必要的情形。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 七、协议变更与终止 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   7.1 协议变更通知 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"我们有权在必要时,修改本协议内容,并将通过合理的方式(包括但不限于NU护理单元平台公告、系统消息、站内信、手机短信、电子邮件或其他类似方式)及合理的期限提前通知您,该等通知于发送之日视为已送达您。"),e.createTextVNode("您可以通过NU护理单元平台相关页面查阅最新版本的协议内容。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   7.2 变更协议生效 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"本协议变更生效后,如您继续使用NU护理单元平台或NU护理单元平台服务,即视为您已接受修改后的协议。如您不接受修改后的协议,应当停止使用NU护理单元平台或NU护理单元平台服务。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   7.3 协议终止 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   您注销您的NU护理单元账号或NU护理单元通知您终止为您提供NU护理单元平台服务(包括但不限于封禁账号、注销账号或其他类似措施)时,本协议将同时终止,NU护理单元将不再另行通知您终止本协议。 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 八、法律适用与管辖 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   8.1 本协议的订立、生效、履行、解释、修订、终止及纠纷解决,适用中华人民共和国法律法规(仅为本协议之目的,不包括香港特别行政区及澳门特别行政区法律法规,和中国台湾地区有关规定)。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   8.2 若您与NU护理单元之间发生任何纠纷或争议,由NU护理单元与您协商解决。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"协商不成的,您同意将纠纷或争议提交被告所在地人民法院管辖。")]),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}}," 九、其他 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   9.1 本协议所有条款的标题仅为阅读和理解方便,本身并无实际涵义,不能作为本协议涵义解释的依据。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   9.2 本协议条款无论因何种原因部分无效或不可执行,其余条款仍有效,并对双方具有约束力。如果某条款规定我们在特定情况下有特定权利,这并不意味着该权利是我们在该等特定情况下可以行使的唯一权利,也不意味着该条款取消或使涉及相同情况或主旨事项的任何其他条款无效或失效。任何一方未能执行或延迟执行本协议项下的任何权利、救济或条款,不应被视为放弃该权利、救济或条款。任何弃权必须明确以书面形式作出并由弃权方签署。任何权利或救济的单次或部分行使,不应妨碍该权利或补救措施或任何其他权利或补救措施的进一步或其他行使。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   9.3 如您对本协议有任何意见或建议,您可向NU护理单元平台(service@blxinchuang.com)反馈,我们会给予您必要的帮助。 ")])])}],["__scopeId","data-v-8b11c490"]]);const u=s({},[["render",function(t,l){return e.openBlock(),e.createElementBlock("view",{class:"all"},[e.createElementVNode("scroll-view",{"scroll-y":"",class:"all-content"},[e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx"}},"   为了更好地保障您的权益,我们于近日更新了《NU护理单元隐私信息保护政策》。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx"}},"   请您在使用/继续使用NU护理单元产品/或服务前仔细阅读、充分理解全文,并在同意全部内容后使用/继续使用。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 前言 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   1. NU护理单元/或服务指由吉林省捌零信创科技有限公司及其关联公司(以下称为“NU护理单元”或者“我们”)运营,并由吉林省捌零信创科技有限公司开发及维护的产品和服务(以下亦称“我们的产品/或服务”)。我们非常重视您的隐私保护和个人信息保护,鉴于此,我们制定本《NU护理单元隐私信息保护政策》(以下称为“本政策”),与您确认关于您在使用我们的产品/或服务期间,NU护理单元收集、存储、使用、披露和保护您的个人信息的相关事宜。如您对本政策内容有任何疑问、意见或建议,您可通过我们提供的各种联系方式与我们联系。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   2. 在使用我们的各项产品和/或服务前,请您务必仔细阅读并透彻理解本政策,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"特别是以粗体、粗体加下划线标识的条款,您应重点阅读,在确认充分理解并同意后开始使用。如果您/您的监护人不同意本政策的任何内容,您应该立即停止使用。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   3. 本政策为NU护理单元统一适用的一般性隐私政策条款,适用于NU护理单元提供的所有产品和服务。当我们及关联公司就其向您提供的特定产品和/或服务单独设立隐私政策的,则优先适用该产品和/或服务的隐私政策。该产品和/或服务的隐私政策未涵盖的内容,以本政策内容为准;该产品和/或服务的隐私政策与本政策存在冲突的,以该产品和/或服务的隐私政策为准。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   4. "),e.createElementVNode("text",{style:{"font-weight":"600"}},"请您注意,本政策不适用于与我们的平台、产品和/或服务集成的任何第三方应用程序或软件,或者任何其他第三方产品、服务或业务(统称为“第三方服务”)。第三方服务由第三方负责运营,您使用第三方服务应遵守第三方为此制定的隐私政策或其他个人信息处理规则,我们提示您仔细识别实际服务的提供方,并在使用任何第三方服务之前仔细查看相关规则。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   5. 您同意本政策表示您已经了解并同意在相关场景下,为实现功能运行,我们将对您的相关个人信息进行处理。但这并不代表只要您开始使用我们的产品和/或服务,我们即开始处理本政策中涉及的您的全部个人信息。只有当您使用特定功能时,我们才会根据“最小必要”原则,为实现向您提供产品功能及服务的目的,处理您的相关个人信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   6. 您理解并同意,基于不断完善产品和服务的目的,我们将不时推出新增和/或优化功能,可能增加或变更收集、使用个人信息的范围、目的和方式。对此,我们将通过更新本政策、页面提示、新签署文件、弹窗、网站公告或站内信等即时通知方式另行向您明确说明,并为您提供同意与否的选项。该等即时通知是本政策的有效组成部分,与本政策具有同等法律效力。您有权拒绝同意该等即时通知,但您同时知悉并理解,一旦您拒绝我们收集、处理您的个人信息属于实现更新服务或功能所必要的情形时,我们将可能无法为您提供更新后的服务与功能,或者无法达到更新服务的效果,但您原有正常使用的基础功能不受影响。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 关于我们 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   我们的主要运营公司基本情况如下:长春市经济开发区长吉南线以东、吉林大路以南东方广场中意国际大厦B座1431号。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   联系电话:18043530712。如您想更详细的了解我们的公司、平台,您可以通过本政策提供的联系方式与我们联系。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 第一部分 定义 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"1. 个人信息:"),e.createTextVNode("是以电子或者其他方式记录的与已识别或者可识别的自然人有关的各种信息,不包括匿名化处理后的信息。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"2. 敏感个人信息:"),e.createTextVNode("是一旦泄露或者非法使用,容易导致自然人的人格尊严受到侵害或者人身、财产安全受到危害的个人信息,包括"),e.createElementVNode("text",{style:{"font-weight":"600"}},"生物识别、宗教信仰、特定身份、金融账户、行踪轨迹等信息,以及不满十四周岁未成年人的个人信息。敏感信息在本政策中会做加粗加下划线提示。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"3. 个人信息的处理:"),e.createTextVNode("包括个人信息的收集、存储、使用、加工、传输、提供、公开、删除等。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"4.个人信息处理者:"),e.createTextVNode("是指在个人信息处理活动中自主决定处理目的、处理方式的组织、个人。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"5.个人信息主体:"),e.createTextVNode("指个人信息所标识或者关联的自然人。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"6.自动化决策:"),e.createTextVNode("是指通过计算机程序自动分析、评估个人的行为习惯、兴趣爱好或者经济、健康、信用状况等,并进行决策的活动。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"7.去标识化:"),e.createTextVNode("指个人信息经过处理,使其在不借助额外信息的情况下,无法识别特定自然人的过程。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"8.匿名化:"),e.createTextVNode("指个人信息经过处理无法识别特定自然人且不能复原的过程。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"9. NU护理单元:"),e.createTextVNode("是指NU护理单元或其关联公司发布和/或运营的包括但不限于NU护理单元相关的网络平台。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"10. NU护理单元产品和/或服务:"),e.createTextVNode("指我们基于互联网,以包含NU护理单元网站、客户端(含APP\\APK\\小程序)及其他产品形态(如SDK\\API等,以及未来技术发展出现的新的形态)向您提供的包括但不限于内容分发、信息网络传播、互联网音视频业务等各项产品和服务。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"11. 平台规则:"),e.createTextVNode("包括在所有NU护理单元网站、客户端内已经发布及后续发布的全部规则、用户服务协议、解读、公告、其他内容以及各平台在频道、活动页面、帮助中心发布的各类规则、实施细则、产品说明、公告及各形式的平台规范。 ")]),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 第二部分 隐私保护政策 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   本政策将帮助您了解以下内容: "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 一、我们如何收集和使用您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 二、我们如何使用 Cookie 和同类技术 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 三、我们如何共享、转让和披露您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 四、我们如何存储您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 五、我们如何保护您的个人信息安全 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 六、我们如何保护未成年人的个人信息 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 七、您如何行使您的个人信息权利 "),e.createElementVNode("view",{style:{"font-size":"30rpx","margin-bottom":"20rpx","line-height":"50rpx"}}," 八、如何联系我们 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 一、我们如何收集和使用您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   因向您提供的产品和服务种类众多,我们将根据具体产品/服务范围和不同功能,遵循合法、正当和必要原则收集和使用您的个人信息。以下我们向您逐一告知各功能需要的必要个人信息类型及需授权的权限。 "),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (一) 帮助您注册、登录和维护平台账号 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   1. 注册与登录 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   (1) 手机号或账号密码注册/登录:当您注册、登录我们的产品和/或服务时,为了帮您顺利完成注册/登录流程,您需要提供: "),e.createElementVNode("text",{style:{"font-weight":"600"}},"手机号码、短信验证码信息或NU护理单元登录账号及密码信息。"),e.createTextVNode("同时,我们还提供 “一键登录”功能,与我们建立合作关系的运营商或其合作伙伴会将您设备中的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"手机号码"),e.createTextVNode("提供给我们作为您的注册、登录账号并免于动态验证码核验,便于我们为您提供快捷的注册、登录服务。如果您不希望使用“一键登录”功能,可以选择其他方式进行注册、登录。收集手机号码信息是为了满足相关法律法规的网络实名制要求,如您拒绝提供手机号码进行核验,将导致注册/登录失败,但您仍可在游客模式下使用音视频的浏览、搜索、播放功能。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   (2) 扫码登录:当您通过扫码方式进行登录时,我们会请求您授权设备的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"相机、相册/存储权限"),e.createTextVNode(",以实现通过扫描二维码方式完成登录。如您不需要使用扫码登录服务,您也可以选择其他登录方式。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   2. 资料维护和账号找回 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   (1) 为维护您的基本资料,提升您的服务体验,您可以选择填写完善您的个人信息,包括您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"电子邮箱、性别、所在地、头像、昵称、生日、个人简介;"),e.createTextVNode("在相关儿童页面,您也可以选择在宝贝信息界面内填写您宝贝的性别和生日,当您选择上传头像时,我们会请求您授权"),e.createElementVNode("text",{style:{"font-weight":"600"}},"相机、相册/存储权限"),e.createTextVNode(",以实现头像拍摄或选择后完成上传。当您选择一键同步第三方账号昵称和头像时,经您授权,第三方平台将与我们同步您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"第三方账号信息(如头像、昵称,具体以您的授权范围为准)。"),e.createTextVNode("如您选择不提供这些信息,不会影响您使用基础服务功能。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   (2) 若您希望绑定或者解绑您所关联的第三方平台账号,您可以随时在“我的-设置-账号与安全-账号绑定”进行设置,第三方平台账号的绑定或解绑不会影响您使用基础服务功能。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   (3) 如果您的账号遗失,您可以找回账号。如果您遗忘账号密码,您可以通过手机短信验证,或联系客服找回密码或重置密码;您也可以换绑已注册手机号码。但在此过程中,我们可能需要您提供必要的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"身份信息、手机号码、经常登录地点、经常登录设备、经常收听内容、注册时间和城市信息"),e.createTextVNode("等相关信息以验证您的身份;为了核验您的真实身份,必要时还可能通过静态或动态的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"人脸识别"),e.createTextVNode("验证您的真实身份。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   3. 账号权益与资金 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   (1) 账号权益:基于NU护理单元统一账号体系和便于您在我们的产品和/或服务中使用相关权益与资产,我们会收集您在NU护理单元账号下的权益及资产信息,同时,我们会在应用内向您展示您的部分或全部前述信息,具体以页面实际展示为准。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   (2) 资产提现:当您使用我们的提现功能时,需要您提供"),e.createElementVNode("text",{style:{"font-weight":"600"}},"结算主体相关信息(姓名/名称、身份证号/统一社会信用代码)、结算账户相关信息(持卡人/户名、银行卡信息/支付宝账号信息),"),e.createTextVNode("以完成结算主体认证及资金结算账户绑定;若您是境外用户,可能还需要您提供"),e.createElementVNode("text",{style:{"font-weight":"600"}},"境外用户主体身份证明材料(如护照号、手持证照照片等"),e.createTextVNode(")。我们会在应用内向您展示您的部分或全部前述信息,具体以页面实际展示为准。您可以在我们产品的相关页面修改您已绑定的结算账户。如您拒绝提供前述结算账户相关信息,您将无法顺利提现,不影响您使用我们的其他功能与服务。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   4. 若您还未成为平台注册用户,您可以游客身份使用我们提供的基本功能,主要包括音频作品的搜索、浏览和播放。为保障上述功能实现、履行网络系统运营安全义务,我们将收取您的必要"),e.createElementVNode("text",{style:{"font-weight":"600"}},"设备信息(设备型号、设备MAC地址、操作系统版本、唯一移动设备识别码(IMEI、Android ID、IDFA、IDFV、HarmonyOS UUID、SIM卡序列号和IMSI信息))"),e.createTextVNode(",为您分配专属标识符,并基于此标识符记录您游客身份下的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"操作信息"),e.createTextVNode(",即您浏览、播放等记录,并以日志文件的形式进行保存。  ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   5. 根据相关法律法规对互联网账号的管理要求、维护网络安全和良好的网络内容生态,我们会在您的个人主页以及您发布的内容、信息页面展示您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"IP属地"),e.createTextVNode("(境内IP地址展示至省/自治区/直辖市、境外IP地址展示至国家/地区,具体信息以网络运营商数据为准)。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   6."),e.createElementVNode("text",{style:{"font-weight":"600"}}," 为更好地保护未成年人隐私权益,我们特别提醒您慎重发布包含未成年人素材的内容,一经发布,即视为您已获得权利人同意在我们的产品和/或服务展示未成年人的肖像、声音等信息,且允许我们依据平台协议及本政策使用、处理该等与未成年人相关的内容。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   通讯录权限保持默认关闭状态。如您不希望被推荐给您的通讯录好友,您也可以通过设备权限管理关闭此前向NU护理单元开放的通讯录授权。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   7. 您在使用我们的服务时,若您想分享您喜欢的内容至第三方平台或应用,我们需要从您的设备终端读取"),e.createElementVNode("text",{style:{"font-weight":"600"}},"已安装的移动应用列表"),e.createTextVNode(",用以判断您是否安装了第三方应用,以便为您提供正确的分享功能。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   您在使用我们的服务时所共享的内容和信息,可能会涉及他人的个人信息,请您确认已获得他人的合法授权。与此同时,您有义务妥善保护自己的个人信息,仅在必要的情形下向他人提供、展示自己的信息。如您发现自己的个人信息泄露,尤其是您的账户或密码发生泄露,请您立即联系NU护理单元客服。 "),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (二)为您提供充值服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   为向您展示充值服务,帮助您完成交易,以及向您提供客户服务,同时基于维护支付安全、追溯网络交易行为等相关法律法规要求,当您在使用订阅或购买商品/服务时,我们会收集如下信息: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   1. 当您充值时,我们将收集您在完成交易时的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"服务信息"),e.createTextVNode("生成您的账单明细,此外,我们还需记录并保存"),e.createElementVNode("text",{style:{"font-weight":"600"}},"与订单相关的信息"),e.createTextVNode(",包括:"),e.createElementVNode("text",{style:{"font-weight":"600"}},"交易金额、下单时间、订单编号、订单状态、支付方式、支付流水号、支付状态"),e.createTextVNode(",我们收集这些信息是为了帮助您顺利完成交易、保障您的交易安全、查询订单信息,配合网络交易监管的法定义务。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   上述所有信息构成您的订单信息,我们(包括与为您提供上述服务的第三方)将使用您的订单信息进行您的身份核验、确定交易、支付结算、完成配送、为您查询订单以及提供客服咨询与售后服务。我们还会使用您的订单信息来判断您的交易是否存在异常以保障您的交易安全。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   2. 当您通过扫一扫参加活动时,我们会请求您授权您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"相机权限、相册/存储权限"),e.createTextVNode(",用于识别、保存或上传活动及分享二维码。我们可能会通过您所上传的照片/图片来识别您需要参与的活动链接或者音视频服务链接。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   3. 此外,为判断您是否满足活动要求的参与资格或者为了保障活动的正常秩序、防范作弊与欺诈等违法违规情况,我们同时可能需要收集和使用您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"设备信息(如:设备型号、设备MAC地址、操作系统版本、唯一移动设备识别码(IMEI、Android ID、IDFA、IDFV、HarmonyOS UUID、SIM卡序列号和IMSI信息))。")]),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (三)为您提供个性化内容推荐 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   1."),e.createElementVNode("text",{style:{"font-weight":"600"}},"设备信息:"),e.createTextVNode("我们会根据您在软件安装和使用中的具体操作,接收并记录您所使用的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"设备相关信息(包括设备型号、硬件序列号、设备MAC地址、操作系统版本、设备设置、唯一设备识别码(IMEI、Android ID、IDFA、IDFV、GAID、HarmonyOS UUID、SIM卡序列号和IMSI信息)、UUID、必要的移动应用列表信息、软硬件及设备、设备环境信息、传感器信息)、设备所在位置相关信息"),e.createTextVNode("(为了识别判断您所在地区的内容版权,需要收集您授权的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"GPS精准位置"),e.createTextVNode("以及"),e.createElementVNode("text",{style:{"font-weight":"600"}},"WLAN接入点"),e.createTextVNode("(如SSID、BSSID)和"),e.createElementVNode("text",{style:{"font-weight":"600"}},"基站、传感器"),e.createTextVNode("信息)。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   2."),e.createElementVNode("text",{style:{"font-weight":"600"}},"日志信息:"),e.createTextVNode("当您使用我们的网站或客户端提供的产品或服务时,我们会自动收集您的详细使用情况,并作为网络日志保存。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"日志信息"),e.createTextVNode("包括您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"搜索和浏览记录"),e.createTextVNode("、关注、播放记录、"),e.createElementVNode("text",{style:{"font-weight":"600"}},"购买消费记录"),e.createTextVNode("、访问量、播放时长、"),e.createElementVNode("text",{style:{"font-weight":"600"}},"IP地址"),e.createTextVNode("、WIFI网络、运营商信息、电信运营商网络、使用的语言、访问日期和时间。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   我们将会在收集上述信息的基础上提取您的偏好特征,并基于特征标签产出间接人群画像,用于为您展示、推送个性化内容和您可能感兴趣的商业广告。但我们努力保障您的产品使用体验。如您对我们推荐的个性化内容不感兴趣或希望不再接收此类个性化服务,您可通过“我的-设置-我的隐私管理-个性化内容推荐/个性化广告推荐”选择关闭。关闭后首页向您展示和推荐的内容将可能与您的偏好相关度降低。 "),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (四)为您提供残障用户专享服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   为履行企业责任、体现社会关怀,当您享受我们为残障人士定向提供的“专享礼包”服务时,您需要提供您的姓名、"),e.createElementVNode("text",{style:{"font-weight":"600"}},"身份证号"),e.createTextVNode("以及"),e.createElementVNode("text",{style:{"font-weight":"600"}},"残疾人证信息"),e.createTextVNode("以实现身份认证,我们会将您提供的前述信息与中国残疾人联合会的数据库进行比对和信息验证,以验证您的身份。如您拒绝提供上述信息,将使您无法享受残障用户专享服务,但不影响您正常使用NU护理单元的其他功能。 ")]),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (五) 帮助您连接智能设备 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   您如希望将App与您所使用的智能设备相连接,您需要开启"),e.createElementVNode("text",{style:{"font-weight":"600"}},"蓝牙权限"),e.createTextVNode(",以使得我们能够搜索到您的智能设备。此外我们可能会收集您的Wi-Fi信息、"),e.createElementVNode("text",{style:{"font-weight":"600"}},"位置信息"),e.createTextVNode("、智能设备信息。这些信息将用于为您提供智能设备快连、连接、发现附近设备和设备管理的功能。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"如您拒绝提供上述信息,我们将无法帮助您连接智能设备,但不影响您正常使用NU护理单元的其他功能。")]),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (六)为您提供客户服务及处理争议 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   当您向我们发起投诉、申诉或进行咨询时,为了您的账号与系统安全,我们可能需要您先行提供账号信息,并与您之前的个人信息相匹配以验证您的用户身份。同时,为了方便与您联系或帮助您解决问题,我们可能还需要您提供"),e.createElementVNode("text",{style:{"font-weight":"600"}},"姓名、手机号码、电子邮件"),e.createTextVNode("及其他联系方式等个人信息,并通过第三方客服系统保存"),e.createElementVNode("text",{style:{"font-weight":"600"}},"通话录音"),e.createTextVNode(",其中可能包含"),e.createElementVNode("text",{style:{"font-weight":"600"}},"通信/通话记录"),e.createTextVNode(",用于与您联系和帮助您解决问题,或记录相关问题的处理方案及结果。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   为确认交易状态及为您提供商品/服务的售后与争议解决服务,我们会通过您基于交易所选择的支付机构、支付方式等收集与"),e.createElementVNode("text",{style:{"font-weight":"600"}},"交易相关的信息"),e.createTextVNode(",包括iOS端IAP支付交易凭证和收费凭证。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   如您拒绝提供上述信息,我们将无法为您提供完整的客户服务及处理争议,但不影响您正常使用NU护理单元的其他功能。 "),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (七)为您提供安全保障功能 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   为履行维护网络安全义务,提高您使用服务的安全性,确保操作环境安全,预防钓鱼网站、欺诈、网络漏洞、计算机病毒、网络攻击、网络侵入等安全风险,以用于识别设备是否存在篡改设备信息行为,预防、发现和调查潜在的违法违规或违反用户服务协议、政策或规则的行为,如会员账号活动异常、多端登录、流量异常、经常性退款请求或低价转让会员卡等,我们以及在应用程序中嵌入的应用安全SDK将在后台自动收集您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"设备信息(包括设备型号、硬件序列号、设备MAC地址、操作系统版本、设备设置、唯一移动设备识别码(IMEI、Android ID、IDFA、IDFV、MEID、HarmonyOS UUID、OAID、SIM卡序列号和IMSI信息)、UUID、WLAN接入点(如SSID、BSSID)和基站、必要的移动应用列表信息、运行中的进程信息、软硬件及设备、设备环境信息、设备传感器信息 "),e.createTextVNode("(如磁场传感器、光传感器、压力传感器、旋转矢量传感器、方向传感器、重力传感器、加速度传感器、陀螺仪传感器,请您知悉,单纯的传感器数据并非个人信息))、"),e.createElementVNode("text",{style:{"font-weight":"600"}},"日志信息(包括您的搜索和浏览记录、关注、播放记录、访问量、播放时长、IP地址、WIFI扫描列表、WIFI名称、运营商信息、电信运营商网络、使用的语言、访问日期和时间)"),e.createTextVNode(",并可能使用或整合您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"账户信息、交易信息、支付信息"),e.createTextVNode("以及其他取得您授权或依据法律共享的信息,综合判断您账户及交易风险、完成身份验证、检测,防范安全事件,并依法采取必要的记录、审计、分析、处置措施,保护各方合法权益稳定不受侵害。 ")]),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (八)其他附加服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   为向您提供个性化的产品和服务,提升用户体验,我们还会向您提供以下附加服务,并仅在您使用到相关功能时向您获取个人信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"1.驾驶模式:"),e.createTextVNode("当您开启驾驶模式后,我们会在获得您的同意后为您开启语音助手功能,我们会申请访问"),e.createElementVNode("text",{style:{"font-weight":"600"}},"麦克风权限"),e.createTextVNode("并收集您的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"语音信息"),e.createTextVNode(",用于提供对应的语音服务,帮助您在驾驶时通过语音控制播放您喜欢的音频。即便您已同意开启麦克风权限,麦克风仍保持默认关闭状态,仅会在您主动点击客户端内麦克风图标或录制音频时通过麦克风获取语音信息。我们收集的语音信息仅作操作指令识别(或者语音转换文字识别),我们不会主动留存您的语音指令信息,更不会用作其他语音控制播放功能以外的用途。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"2.本地内容及生活服务推荐:"),e.createTextVNode("为向您提供或推荐您所在地附近的资讯和所在地相关音视频内容、本地广播和相关电影周边观影场所推荐、经常访问地周边的点餐和其他本地生活服务推荐信息,我们需要您授权"),e.createElementVNode("text",{style:{"font-weight":"600"}},"位置权限(精准地理位置)"),e.createTextVNode("以为您提供上述服务。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"3. 信息预填:"),e.createTextVNode("在部分需要填写您的信息的场景中(如广告落地页等),为优化您的使用体验、简化操作步骤,取得您的授权同意后,我们会将您在NU护理单元绑定的"),e.createElementVNode("text",{style:{"font-weight":"600"}},"手机号码、姓名(如有)"),e.createTextVNode("等信息在相关页面进行预填。若您认为预填信息不准确的,您可以手动进行修改。请您知悉,预填的信息只有在您确认提交后才会被页面指向的个人信息处理者所获取。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   部分情况下该行为可能会被误判为应用自启动,但该行为属于合理使用并非侵犯用户权益的自启动行为。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   您可在您的设备设置中逐项查看上述权限的状态,并可自行决定这些权限随时的开启或关闭。请您注意,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您开启任一权限即代表您授权我们可以收集和使用相关个人信息来为您提供对应服务,您一旦关闭任一权限即代表您取消了授权,我们将不再基于对应权限继续收集和使用相关个人信息,也无法为您提供该权限所对应的服务。"),e.createTextVNode("但是,您关闭权限的决定不会影响此前基于您的授权所进行的信息收集及使用,亦不影响您使用其他服务。 ")]),e.createElementVNode("view",{style:{"font-size":"31rpx","margin-bottom":"20rpx","font-weight":"600"}}," (九)收集和使用您的个人信息的特别说明 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   1.若你提供的信息中含有其他用户的个人信息,在向我们提供这些个人信息之前,您需确保您已经取得合法的授权。若其中涉及未成年人个人信息的,您需在发布前取得对应未成年人监护人的同意,前述情形下监护人有权通过本政策第九条的途径联系我们,要求更正或删除涉及未成年人个人信息的内容。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   2.若我们将您的个人信息用于本政策未载明的其他用途,或者我们超出了与收集您的个人信息时所声称的目的及具有直接或合理关联范围的,均会事先获得您的同意。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   3. 若我们从第三方处间接获取(如从第三方处共享)您的信息,我们会在收集前明确以书面形式要求该第三方在已依法取得您同意后共享您的个人信息,并向您告知共享的您的个人信息的类型、使用目的、方式、授权同意范围,并要求第三方对个人信息来源的合法性和合规性作出承诺,如第三方存在违反行为,我们会明确要求对方承担相应法律责任。同时,我们的专业安全团队对个人信息会进行安全加固(包括敏感信息报备、敏感信息加密存储、访问权限控制)。我们会使用不低于我们对自身用户个人信息同等的保护手段与措施保护间接获取的个人信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   4.征得授权同意的例外 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   您充分理解并同意,根据法律法规要求,我们在以下情况下收集、使用您的个人信息无需征得您的授权同意: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (1) 为订立、履行个人作为一方当事人的合同所必需; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (2) 为履行法定职责或者法定义务所必需; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (3) 为应对突发公共卫生事件,或者紧急情况下为保护自然人的生命健康和财产安全所必需; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (4) 为公共利益实施新闻报道、舆论监督等行为,在合理的范围内处理个人信息; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (5)在合理的范围内处理个人自行公开或者其他已经合法公开的个人信息; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (6) 法律、行政法规规定的其他情形。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 二、 我们如何使用 Cookie 和同类技术 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   为确保网站正常运转、为您获得更轻松的访问体验、向您推荐您可能感兴趣的内容,我们和第三方合作伙伴可能借助于 Cookie或同类技术收集和使用您访问以及使用我们产品和/或服务的信息,并将该信息进行存储。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   如果您的浏览器或浏览器附加服务允许,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"您可修改对Cookie的接受程度或拒绝我们的Cookie。"),e.createTextVNode("但如果您这么做,在某些情况下可能会影响您安全访问我们的网站,且可能需要在每一次访问我们的网站时更改用户设置。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   当您使用网页浏览使用我们的产品和/或服务时,您可以选择在浏览器的设置中清除Cookie数据,大部分浏览器均为用户提供了该等功能。但请您知悉,当您选择清除后,可能无法使用由我们提供的依赖于Cookie的功能或服务。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 三、我们如何共享、转让和披露您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (一) 共享 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   除下列情形外,我们不会与任何其他第三方共享您的个人信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   1. 在获得您的明确同意或授权或您主动选择的情况下共享。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"2. 在法定情形下的共享。"),e.createTextVNode("我们可能会根据法律法规规定、诉讼争议解决需要,或按行政、司法机关依法提出的要求,对外共享您的个人信息。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"3. 统一账号体系下的共享。"),e.createTextVNode("为便于我们基于统一账号体系为您带来标准化的服务体验、实现安全风控及客户服务之需要,您可以使用NU护理单元账号登录适用统一账号体系下的关联应用产品。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"4. 与合作伙伴共享。"),e.createTextVNode("您授权并同意我们可能委托合作伙伴为您提供某些服务或代表我们履行职能,我们仅会出于本隐私信息保护政策声明的合法、正当、必要、特定、明确的目的共享您的信息。我们将通过协议约束我们的合作伙伴只能接触到为其履行职责所需信息,要求其履行严格的保密和与风险相适应的安全措施来处理您的个人信息、包括但不限于数据保护协议或条款、承诺函等,且不得将您的个人信息用于其他任何目的。如超出共享目的使用您个人信息,我们将要求其另行遵循您的明确同意。  ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   5. 安全运营。我们将部分个人信息提供给支持我们业务的供应商、服务提供商和其他合作伙伴,以提供技术基础设施服务、分析用户使用方式、支付便利或进行学术研究和调查,进行Bug或者崩溃统计、提升登录体验,实现网关取号。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   6. 商业推广。为了您能更方便地了解和触达我们的资讯、产品/服务促销等信息,我们会向某些第三方网站和应用程序提供"),e.createElementVNode("text",{style:{"font-weight":"600"}},"加密后的设备信息"),e.createTextVNode(",进而在第三方平台为您提供我们的上述市场推广信息,并衡量优化有关我们产品和/或服务的市场推广效果。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   7. 留资广告。当第三方合作伙伴使用我们提供的技术服务向您提供商业信息或其他服务时,经取得您的授权同意,我们将基于第三方合作伙伴的委托处理您主动填写或提供的个人信息,请以相应页面内的信息收集使用提示文本为准。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"请您知悉,该等情形下,第三方合作伙伴为个人信息处理者。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   请您放心,除得到您的明确同意,我们不会将可以联系或识别您身份的个人信息与授权合作伙伴共享,我们将能够识别您身份的个人信息进行去标识化处理,以便授权合作伙伴无法识别您的具体身份。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   NU护理单元产品中包含我们的合作伙伴提供的SDK插件。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"当您在NU护理单元中使用该授权合作伙伴提供的相关服务,该等服务插件将收集和处理您的相关个人信息,详见附件:《NU护理单元与第三方共享个人信息清单》,我们强烈建议您在使用在使用我们的产品和/或服务前先行查看并了解其隐私条款。"),e.createTextVNode("我们会对合作伙伴获取有关信息的应用程序接口(API)、软件工具开发包(SDK)进行严格的安全检测,审慎评估服务提供商使用您个人信息的目的,并与合作伙伴通过签署协议的方式约定严格的数据保护措施,要求其按照我们的委托目的、服务说明以及其他任何相关的保密和安全措施来处理个人信息。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (二) 转让、公开披露 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   我们不会将您的个人信息转让给任何公司、组织和个人,但以下情况除外: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   1.  在获取您明确同意的情况下转让; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   2. 在NU护理单元及其关联公司发生重组、合并、分立、收购、资产出售或破产清算情形或其他类似情形时,如涉及到个人信息转让,我们将要求受让方采用与本政策相同或更高的标准和要求进行处理和保护,否则我们将要求受让方重新向您征求同意。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   除符合法律法规的规定进行公开披露或获得您单独同意外,我们不会公开披露您未自行公开或者其他未合法公开的个人信息。且在我们公开披露您的个人信息前会进行个人信息保护影响评估,并采用符合行业内标准的安全保护措施进行处理。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (三) 共享、转让、披露个人信息时事先征得授权同意的例外 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   以下情形中,共享、转让、公开披露您的个人信息无需事先征得您的授权同意: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   1.与国家安全、国防安全有关的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   2.与公共安全、公共卫生、重大公共利益有关的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   3.与犯罪侦查、起诉、审判和判决执行有关的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   4.出于维护您或其他个人的生命、财产重大合法权益但又很难得到本人同意的; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   5.您自行向社会公众公开的个人信息; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   6.从合法公开披露的信息中收集个人信息的,包括合法的新闻报道、政府信息公开渠道; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   7.履行其他履行法律法规规定的相关义务,如促成在线知识产权纠纷解决。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   根据法律规定,当共享、转让经采取技术措施处理的个人信息,使得数据接收方无法复原并重新识别特定个人身份时,我们将不会另行向您通知并征得您的同意。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 四、 我们如何存储您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (一) 存储地点 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   我们在中华人民共和国境内运营中收集和产生的个人信息,存储在中国境内。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   目前我们暂时不存在跨境存储您的个人信息或向境外提供您的个人信息的情况。如果确有必要进行数据的跨境传输,我们会单独向您明确告知(包括数据出境的目的、接收方、使用方式与范围、使用内容、安全保障措施、安全风险等),并征得您的明确授权同意,我们会确保数据接收方有充足的数据保护能力来保护您的个人信息,并严格按照适用法律法规的规定执行。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   针对以上情形,我们会确保依据本政策对您的个人信息提供足够的保护。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (二)存储期限 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   我们只会在达成本政策所述目的所需的最短期限内保留您的个人信息,除非法律法规有强制的存留要求,例如,根据《电子商务法》及配套法规的要求,您的订单类交易数据的保存时间自交易完成之日起不少于三年。我们判断前述期限的标准主要包括并以其中较长者为准: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   1、完成与您相关的服务目的、维护相应服务及业务记录、应对您可能的查询或投诉; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   2、保证我们为您提供服务的安全和质量; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   3、您是否同意更长的留存期间; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   4、是否存在保留期限的其他特别约定。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   在您的个人信息超出保留期限后,我们会根据适用法律的要求删除或者匿名化处理您的个人信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (三) 删除和匿名化处理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   如本平台服务决定停止运营时,我们将在相关服务停止运营后停止继续收集您的个人信息。我们将以公告形式将停止运营通知向您送达。对已持有您的个人信息,我们将进行删除或匿名化处理,除非法律法规另有规定。涉及未成年人个人信息的,我们会采取必要合理方式及时将停止运营的通知及时告知未成年人监护人。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 五、我们如何保护您的个人信息安全 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   为保障您的信息安全,我们努力采取各种符合业界标准的合理的物理、电子和管理方面的安全措施来保护您的信息,使您的信息不会被泄漏、毁损或者丢失。为确保您的个人信息安全,我们承诺将尽合理商业努力达到通行或者更高的安全水平: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (一) 技术安全防护 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   我们将采取的技术安全措施包括但不限于SSL、信息加密存储、数据中心的访问控制。我们会使用加密技术提高个人信息的安全性;使用受信赖的保护机制防止个人信息遭到恶意攻击。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (二) 安全体系保证 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   我们有行业先进的以数据为核心,围绕数据生命周期进行的数据安全管理体系,从组织建设、制度设计、人员管理、产品技术方面多维度提升整个系统的安全性。目前,NU护理单元已通过网络安全等级保护的三级测评。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (三) 人员安全管理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   我们对可能接触到您的信息的员工或外包人员采取了严格管理,包括但不限于根据不同岗位分配不同访问权限的控制机制,并签署保密协议,实时记录并掌握操作情况等。我们会举办安全和隐私保护培训课程,加强员工对于保护个人信息重要性的认识。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (四) 敏感信息及密码保护提示 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"1. 敏感个人信息保护:"),e.createTextVNode("您在使用我们服务时自愿共享甚至公开分享的信息,可能会涉及您或他人的个人信息甚至"),e.createElementVNode("text",{style:{"font-weight":"600"}},"敏感个人信息,例如您上传的头像图片,您在评论、发弹幕时选择上传包含个人信息的图片。"),e.createTextVNode("请您更加谨慎地考虑,是否在使用我们的服务时共享甚至公开分享相关信息。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"2. 您的账户均有安全保护功能,请妥善保管您的账户及密码信息。"),e.createTextVNode("我们将通过向其它服务器备份、对用户密码进行加密以及其他安全措施确保您的信息不丢失,不被滥用和变造。此外,请您尽量使用"),e.createElementVNode("text",{style:{"font-weight":"600"}},"复杂密码"),e.createTextVNode(",协助我们保证您的账号安全。我们将尽力保障您发送给我们的任何信息的安全性。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   "),e.createElementVNode("text",{style:{"font-weight":"600"}},"但请您知悉,互联网并非绝对安全的环境。"),e.createTextVNode("尽管有前述安全措施,但同时也请您理解在网络上不存在“完善的安全措施”。故请您妥善保护自己的个人信息,仅在必要的情形下向他人提供。如您发现自己的个人信息泄露,尤其是您的账户及密码发生泄露,请您立即联络我们客服,以便我们采取相应措施。 ")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (五) 信息安全事件处理 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   在不幸发生个人信息安全事件时,我们将按照法律法规的要求向您告知:安全事件的基本情况和可能的影响、我们已采取或将要采取的处置措施、您可自主防范和降低风险的建议、对您的补救措施。事件相关情况我们将以邮件、电话、推送通知、短消息的方式告知您,难以逐一告知个人信息主体时,我们会采取合理、有效的方式发布公告。同时,我们还将按照监管部门要求,上报个人信息安全事件的处置情况。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 六、 我们如何保护未成年人的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   若您是未满18周岁的未成年人,您应在您的监护人监护、指导下并获得监护人同意的情况下,认真阅读并同意本政策后,方可使用我们的服务或向我们提供信息。若您未取得监护人的同意,监护人可以通过联系本政策第九节中提供的联系方式通知我们处理相关账号,我们有权对相关账号的功能、使用进行限制,包括但不限于浏览、发布信息、互动交流等功能。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   我们非常重视对未成年人的个人信息保护,未成年用户在填写个人信息时,请加强个人保护意识并谨慎对待,并应在取得监护人的同意以及在监护人指导下正确使用我们提供的产品及相关服务。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   未成年人用户及其监护人理解并确认,如您违反法律法规、本政策内容,则您及您的监护人应依照法律规定承担因此而可能导致的全部法律责任。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   我们在应用内专门为未成年人提供了青少年模式,监护人应为未成年人选择使用青少年模式。同时,我们为14周岁以下的儿童制定了专门的隐私保护政策,如您为儿童,我们要求您请您的父母或其他监护人仔细阅读本隐私信息保护政策及《儿童隐私政策》,并在征得您的父母或其他监护人明确同意的前提下使用我们的服务或向我们提供信息。对于经父母或其他监护人同意使用我们的产品或服务而收集儿童个人信息的情况,我们只会在法律法规允许、父母或监护人明确同意或者保护未成年人所必要的情况下使用、共享、转让或披露此信息。如您的父母或其他监护人不同意您按照本政策使用我们的服务或向我们提供信息,请立即终止使用我们的服务并及时通知我们,以便我们采取相应的措施,如果监护人发现我们在未获监护人同意的情况下收集了未成年人的个人信息,可通过第九节中的联系方式与我们联系,我们会设法尽快删除相关数据。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   未成年人个人信息的保护将同样适用于严格的个人信息访问权限控制制度和个人信息处理记录与管控措施我们始终遵循最小够用的授权原则,采取相应技术措施以尽可能避免未成年人个人信息被违法复制、下载。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   我们已制定的个人信息安全事件应急预案将同样适用于对未成年人个人信息的保护。我们定期组织内部相关人员进行应急响应培训和应急演练,使其掌握岗位职责和应急处置策略和规程。在不幸发生未成年人个人信息安全事件后,我们将按照法律法规的要求,及时向未成年人及其监护人告知:安全事件的基本情况和可能的影响、我们已采取或将要采取的处置措施、未成年人及其监护人可自主防范和降低风险的建议、对未成年人及其监护人的补救措施。我们将及时将事件相关情况以APP推送通知、发送邮件/短消息的方式告知未成年人及其监护人。难以逐一告知时,我们会采取合理、有效的方式发布相关警示信息。同时,我们还将按照监管部门要求,主动上报未成年人个人信息安全事件的处置情况。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   若您是未成年人的父母或其他监护人,请您关注您监护的未成年人是否是在取得您的授权同意之后使用我们的服务。如您对您所监护的未成年人的个人信息有疑问,请通过第九节中的联系方式与我们联系。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 七、 您如何行使您的个人信息权利 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   我们通过提供便捷的方法,让您可以访问、更正及删除自己的账户信息或使用我们的服务时您提供的其他个人信息。您可以通过如下方式访问及管理您的个人信息,但我们在不同的版本或操作系统中提供的管理方式路径可能存在差异,请以实际为准。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (一) 访问您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   您有权访问您的个人信息,但法律法规规定的例外情况除外。您可以通过以下方式自行访问您的个人信息: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   账户信息——如果您希望访问或编辑您的账户中的账户信息、更改您的密码或关闭您的账户,您可以登录账号通过“账号管理”执行此类操作;例如您可以登录PC端或APP端“我的-设置-账号与安全”查询、修改自己的账号绑定情况、设置/修改密码、查看最近登录设备。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   资料信息——如果您希望访问或编辑您的账户中的个人资料,您可以通过在App端“我的-头像-编辑资料”来添加、修改、删除您的头像、昵称、性别、生日、地区、声音签名、简介。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   如果您无法通过上述方式访问您的个人信息,您可以随时通过本政策披露的联系方式联系我们,我们将在十五个工作日内回复您的请求。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (二) 更正或补充您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   当您发现我们处理的关于您的个人信息有错误时,您有权要求我们做出更正或补充。您可以通过“(一)访问您的个人信息”中列明的方式提出更正或补充申请。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   如果您无法通过上述方式访问您的个人信息或者其他可能目前无法向您提供在线自行更正/修改服务的,您可以随时通过本政策披露的联系方式联系我们,我们将在十五个工作日内回复您的请求。经过对您身份的验证,且更正/修改不影响信息的客观性和准确性的情况下,您有权对错误或不完整的信息作出更正或修改,但法律法规另有规定的除外。出于安全性和身份识别的考虑,您可能无法修改注册时提交的某些初始注册信息。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (三) 删除您的个人信息 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   您有权通过“(一)访问您的个人信息”中列明的方式对已经填写的信息进行删除。同时,在以下情形中,您可以通过本政策披露的联系方式联系我们,向我们提出删除个人信息的请求,我们将在十五个工作日内回复您的请求: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   1.如果我们处理个人信息的行为违反法律法规; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   2.如果我们收集、使用您的个人信息,却未征得您的明确同意; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   3.如果我们处理个人信息的行为严重违反与您的约定; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   4.如果您不再使用我们的产品或服务,或您主动注销账号; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   5.如果我们永久不再为您提供产品或服务 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   若我们决定响应您的删除请求,我们还将同时尽可能通知从我们处获得您的个人信息的主体,要求其及时删除,除非法律法规另有规定,例如您所提供的订单类交易数据,将会基于法律法规要求至少保留3年,或这些主体获得您的独立授权。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (四) 个人信息副本获取 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   如您需要您的个人信息的副本,您可以通过本隐私政策文末提供的方式联系我们,在核实您的身份后,我们将向您提供您在我们的服务中的个人信息副本(包括基本资料、身份信息),但法律法规另有规定的或本政策另有约定的除外。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (五) 改变您授权同意的范围 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   您可在您的设备系统设置-应用-APP名称-权限中逐项查看您授权同意权限的状态,或在NU护理单元App内通过“我的-设置-隐私管理-系统权限”查看并可自行决定这些权限随时的开启或关闭。对于不同功能服务中个人信息的收集和使用,您也可以与NU护理单元客服联系给予或收回您的授权同意,我们将在十五个工作日内回复您的请求。"),e.createElementVNode("text",{style:{"font-weight":"600"}},"当您撤回同意后,我们将不再处理相应的个人信息,我们将无法继续为您提供撤回同意或授权所对应的服务。但您撤回同意的决定,不会影响此前基于您的授权而开展的个人信息处理。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (六) 注销账户 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   当您注销账号后,您将无法再以该账号登录和使用我们的产品与服务;且该账号在使用我们的产品与服务期间已产生的但未消耗完毕的权益及未来的预期利益等全部权益将被清除;该账号下的内容、信息、数据、记录等将会被删除或匿名化处理,但法律法规另有规定或监管部门另有要求的除外;您的账号注销完成后,将无法恢复。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   如您在谨慎考虑后仍决定注销您的账号的,您可以在您使用的我们的产品与/或服务的相关功能设置页面或根据操作指引向我们提交注销申请,例如,您可以通过“我的-设置-账号与安全-注销账户”自行在“注销账户”页面提交账户注销申请。若未能申请成功,您也可联系NU护理单元客服,我们将在十五个工作日内回复您的请求。在您主动注销账户之后,我们将停止为您提供产品或服务。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (七) 限制自动化决策 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   在NU护理单元App端,您可以通过“我的-设置-隐私管理-个性化内容推荐/个性化广告推荐”选择是否使用我们提供的个性化服务。此外,在某些业务功能中,经向您告知并取得同意后,我们可能仅依据信息系统、算法在内的非人工自动决策机制做出决定。如果您认为这些决定显著影响您的合法权益,您有权通过本政策披露的联系方式要求我们做出解释,我们也将在十五个工作日内回复您的请求,为您提供申诉方法。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (八) 退订 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   如您发现收到了不属于您主动搜索、浏览的视频内容和产品、服务信息推送。如您不希望接收上述信息,可通过原路径进行退订,例如短信推送可以直接回复相关的退订口令。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (九) 投诉 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   您有权通过本政策披露的联系方式联系我们进行投诉。我们将在收到您投诉之日起十五个工作日内做出答复。如果您对我们的答复不满意,特别是我们的个人信息处理行为损害了您的合法权益,您还可以向网信、公安、工商等监管部门进行投诉或举报,或向有管辖权法院提起诉讼,但我们希望您能够首先就相关问题与我们取得联系。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   (十) 响应您的上述请求 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   为保障安全,您可能需要提供书面请求,或以其他方式证明您的身份。我们可能会先要求您验证自己的身份,然后再处理您的请求。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   对于您合理的请求,我们原则上不收取费用。但对多次重复、超出合理限度的请求,我们将视情收取一定成本费用。对于那些无端重复、需要过多技术手段(例如需要开发新系统或从根本上改变现行管理)、给他人合法权益带来风险或者非常不切实际的请求,我们可能会予以拒绝。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   此外,如果您的请求直接涉及国家安全、国防安全、公共卫生、犯罪侦查等和公共利益直接相关的事由,或者可能导致您或者其他个人、组织的合法权益受到严重损害,或者基于NU护理单元履行法律法规规定的义务相关的情形,或者有充分证据标明您存在主观恶意或滥用权利,或者响应您的请求将导致您或者其他个人、组织的合法权益受到严重损害的,我们将无法响应您的请求。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   如果您无法通过上述方式访问您的个人信息,您都可以通过第九节中的联系方式与我们取得联系,我们将在十五个工作日内回复您的权利响应请求。 "),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 七:您如何行使您的个人信息权利 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},[e.createTextVNode("   您理解,您与NU护理单元签署的本政策所列明的条款,并不能完全涵盖您与NU护理单元所有的关于个人信息的权利和义务。因此,"),e.createElementVNode("text",{style:{"font-weight":"600"}},"NU护理单元公布其他声明(包括但不限于页面提示、新签署文件、弹窗、网站公告或站内信等)、各形式规则均视为本政策之补充条款,为本政策不可分割的组成部分,与本政策具有同等法律效力。")]),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   未经您明确同意,我们不会限制您按照本政策所应享有的权利。我们将在NU护理单元专门链接上发布对隐私权政策所做的任何变更和更新。对于重大变更,我们还会提供更为显著的通知(包括通过平台公示通知甚至向您进行弹窗提示)。本政策所指的重大变更包括但不限于: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   1.我们的服务模式发生重大变化。如处理个人信息的目的、处理的个人信息类型、个人信息的使用方式; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   2.我们在控制权方面发生重大变化。如并购重组引起的所有者变更; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   3.个人信息共享、转让或公开披露的主要对象发生变化; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   4.您参与个人信息处理方面的权利及其行使方式发生重大变化; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   5.我们负责处理个人信息安全的责任部门、联络方式及投诉渠道发生变化时。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},'   为了您能及时接收到通知,建议您在您个人的联系方式更新时及时通知我们。如您在本政策更新生效后继续使用我们的服务,即代表您已充分阅读、理解并接受更新后的政策并愿意受更新后的政策约束。我们鼓励您在每次使用我们服务时都查阅本政策。您可以在NU护理单元APP通过"首页-我的-设置-隐私政策"中查看本政策。 '),e.createElementVNode("view",{style:{"font-size":"33rpx","margin-bottom":"20rpx","font-weight":"600"}}," 八、如何联系我们 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   您可以通过以下方式与我们联系,我们将在十五个工作日内回复您的请求: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   我们设立了个人信息保护专职部门,如您对NU护理单元隐私信息保护政策、儿童个人信息有任何疑问、意见或建议,或有关于网络信息安全的投诉和举报,您可通过以下方式与我们取得联系: "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   我们收件地址:长春市经济开发区长吉南线以东、吉林大路以南东方广场中意国际大厦B座1431号; "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   联系人:NU护理单元客服部 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   联系方式:18043530712 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   联系邮箱:service@blxinchuang.com "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx"}},"   本政策签订地为中华人民共和国吉林省长春市,因本政策生效、履行、解释及使用NU护理单元产品和/或服务而产生或与本政策相关的一切争议、权利主张或其他事项,均适用中华人民共和国法律(为本政策之目的,港澳台地区法律不在此列)。您与NU护理单元及其关联公司或NU护理单元发生的一切争议,应友好协商,如协商不成的,您同意双方通过将争议提交本政策签订地有管辖权的法院解决。 "),e.createElementVNode("view",{style:{"font-size":"28rpx","margin-bottom":"20rpx","line-height":"50rpx","font-weight":"600"}},"   请您再次确认您已全部阅读并充分理解上述条款。 ")])])}],["__scopeId","data-v-842c1160"]]),v="https://www.focusnu.com/opeapi",p=e=>{let t=e.url,a=e.method||"get",i=e.data||{},r={"X-Access-Token":uni.getStorageSync("token")||"","Content-Type":"application/json;charset=UTF-8",Authorization:"Basic c2FiZXI6c2FiZXJfc2VjcmV0",...e.header};return new Promise(((e,n)=>{uni.request({url:/^https?:\/\//.test(t)?t:v+t,method:a,header:r,data:i,timeout:5e3,success(a){const r=a;if(200==r.statusCode)e(r.data);else switch(l("log","at request/index.js:34","http",/^https?:\/\//.test(t)?t:v+t),l("log","at request/index.js:35","res",a),l("log","at request/index.js:36","data",i),r.statusCode){case 401:uni.showModal({title:"提示",content:"登录过期",showCancel:!1,success(){uni.clearStorageSync(),setTimeout((()=>{uni.navigateTo({url:"/pages/login/login"})}),1e3)}});break;case 404:uni.showToast({title:"请求地址不存在...",duration:2e3});break;default:uni.showToast({title:"请重试...",duration:2e3})}},fail(e){l("log","at request/index.js:69",e),-1!==e.errMsg.indexOf("request:fail")?uni.showToast({title:"网络异常",icon:"error",duration:2e3}):uni.showToast({title:"未知异常",duration:2e3}),n(e)},complete(){uni.hideLoading(),uni.hideToast()}})})).catch((()=>{}))},g=s({__name:"huakuai",emits:["success"],setup(t,{emit:a}){const i=a,r=100,n=e.ref(400),o=e.ref(400),c=e.ref(0),s=e.ref(0),d=e.ref(0),m=e.ref(!1),u=e.ref(0),v=e.ref(""),p=e.getCurrentInstance();const g=`path('${w=r,`\n M20 0\n h${w/3-20}\n a20 20 0 0 1 0 40\n h${w/3}\n a20 20 0 0 0 0 -40\n h${w/3-20}\n v${w/3-20}\n a20 20 0 0 1 -40 0\n v${w/3}\n a20 20 0 0 0 40 0\n v${w/3-20}\n h-${w/3-20}\n a20 20 0 0 1 0 -40\n h-${w/3}\n a20 20 0 0 0 0 40\n h-${w/3-20}\n z\n `}')`;var w;function h(){e.nextTick((()=>{p?uni.createSelectorQuery().in(p.proxy).select(".bg-image").boundingClientRect((e=>{e?(n.value=2*e.width,o.value=2*e.height,c.value=Math.random()*(n.value-200)+r,c.value<100&&(c.value=100),c.value>400&&(c.value=400),s.value=o.value/2,d.value=0):l("error","at component/public/huakuai.vue:115","无法获取图片尺寸")})).exec():l("error","at component/public/huakuai.vue:107","无法获取组件实例")}))}function f(e){m.value=!0,u.value=2*e.touches[0].clientX}function N(e){if(!m.value)return;let t=2*e.touches[0].clientX-u.value;t=Math.max(0,Math.min(t,n.value-r)),d.value=t}function y(){m.value=!1,Math.abs(d.value+47-c.value)<20?(uni.showToast({title:"验证成功",icon:"none",duration:2e3}),i("success")):(d.value=0,uni.showToast({title:"验证失败",icon:"none",duration:2e3}))}return e.onMounted((()=>{const e=["https://www.focusnu.com/media/directive/login/0.png","https://www.focusnu.com/media/directive/login/1.png","https://www.focusnu.com/media/directive/login/2.png"];v.value=e[Math.floor(Math.random()*e.length)],l("log","at component/public/huakuai.vue:172","加载图片:",v.value)})),(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"captcha-container",id:"container"},[e.createElementVNode("view",{class:"font-title"},"请通过滑块验证"),e.createElementVNode("view",{class:"captcha-image",style:{position:"relative",width:"100%",height:"400rpx",overflow:"hidden"}},[e.createElementVNode("image",{src:v.value,class:"bg-image",mode:"widthFix",onLoad:h},null,40,["src"]),e.createElementVNode("view",{class:"overlay",style:e.normalizeStyle({width:n.value+"rpx",height:o.value+"rpx"})},[e.createElementVNode("view",{class:"hole",style:e.normalizeStyle({top:s.value+"rpx",left:c.value+"rpx",width:"100rpx",height:"100rpx",clipPath:g,transform:"translate(-50%, -50%)",backgroundColor:"rgba(0,0,0,0.6)"})},null,4),e.createElementVNode("view",{class:"piece",style:e.normalizeStyle({top:s.value+"rpx",left:d.value+47+"rpx",width:"100rpx",height:"100rpx",backgroundImage:`url(${v.value})`,backgroundSize:n.value+"rpx "+o.value+"rpx",backgroundPosition:`-${c.value-45}rpx -${s.value-50}rpx`,clipPath:g,transform:"translate(-50%, -50%)"})},null,4)],4)]),e.createElementVNode("view",{class:"slider-bar"},[e.createElementVNode("view",{class:"slider-bar-font"},"向右滑动滑块填充拼图"),e.createElementVNode("view",{class:"slider-button",ref:"btn",onTouchstart:f,onTouchmove:N,onTouchend:y,style:e.normalizeStyle({left:d.value+"rpx",maxWidth:n.value-r+"rpx"})},[e.createElementVNode("image",{src:"https://www.focusnu.com/media/directive/login/right.png",style:{width:"50rpx",height:"50rpx"},mode:"widthFix"})],36)])]))}},[["__scopeId","data-v-ca7ea5fb"]]),w=s(e.defineComponent({__name:"login",setup(a){const i=e.ref(null),n=e.ref(!1),s=e.ref(!1),v=e.reactive({username:"",password:"",captcha:"",checkKey:0}),w=e.reactive({oldpassword:"",newpassword:""}),h=e.computed((()=>{return v.password&&("string"==typeof(e=v.username)&&11===e.length);var e})),f=e.ref(!1);function N(){T.value=!1,n.value=!0,B()}function y(){f.value=!1,uni.setStorageSync("appWgtVersion",uni.getSystemInfoSync().appWgtVersion)}function x(){plus.runtime.quit()}const E=e=>{uni.navigateTo({url:e})},V=e.ref(!1),b=e.ref(0),k=()=>{var e;/^\d{11}$/.test(v.username)?(e=v.username,p({url:`/api/pad/loginApi/getAdvisoryInfo?tel=${encodeURIComponent(e)}`,method:"get"})).then((e=>{null!==e.result&&e.result.serverUrl?(uni.setStorageSync("serverUrl",e.result.serverUrl),l("log","at pages/login/login.vue:195","url",e.result.serverUrl),b.value=Date.now(),(e=>p({url:`${uni.getStorageSync("serverUrl")}/sys/randomCode/${e}`,method:"get"}))(b.value).then((e=>{v.captcha=e.message,V.value=!0}))):(uni.setStorageSync("serverUrl",""),uni.showToast({title:"该手机号未绑定机构",icon:"none",duration:2e3}),V.value=!1)})):v.username&&uni.showToast({title:"手机号不足11位",icon:"none",duration:2e3})},T=e.ref(!1),D=e.ref(!1),C=e.ref(!1),S=e.ref(!1),B=()=>{n.value?s.value=!0:T.value=!0},z=e.ref(!1),_=()=>{z.value||(2===I.value?setTimeout((()=>{E("/pages/watch/index")}),500):I.value++,z.value=!0)},I=e.ref(0),U=()=>{var e;v.checkKey=b.value,s.value=!1,(e=v,p({url:`${uni.getStorageSync("serverUrl")}/sys/login`,method:"post",data:e})).then((e=>{e.success?(uni.showToast({title:e.message,icon:"none",duration:500}),uni.setStorageSync("token",e.result.token),uni.setStorageSync("username",v.username),uni.setStorageSync("realname",e.result.userInfo.realname),2===I.value?setTimeout((()=>{E("/pages/watch/index")}),500):I.value++):uni.showToast({title:e.message,icon:"none",duration:2e3})}))};return o((()=>{var e,a;uni.getStorageSync("appWgtVersion")!=uni.getSystemInfoSync().appWgtVersion&&(f.value=!0),uni.getStorageSync("token")&&1!==uni.getStorageSync("token")&&(2===I.value?setTimeout((()=>{E("/pages/watch/index")}),500):I.value++),t("MonitorModule").initSMBCloudSDK(),e=t("MonitorModule"),a={userName:"admin",password:"Bl20230518",serverAddress:"121.36.88.64",port:8888},e.cloudLoginIn(a,(e=>{l("log","at pages/login/login.vue:322","?????",e),2===I.value?setTimeout((()=>{E("/pages/watch/index")}),500):I.value++}))})),r((()=>{var e;null==(e=i.value)||e.check_update()})),(t,l)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("view",{class:"backgroundContainer"},[e.createElementVNode("image",{class:"title-img",src:"/static/index/superNu.png"}),e.createElementVNode("view",{class:"input-father"},[e.createElementVNode("view",{class:"add"},"+86"),e.createElementVNode("view",{class:"shu"}),e.withDirectives(e.createElementVNode("input",{style:{"font-size":"27rpx",height:"350rpx"},type:"number","onUpdate:modelValue":l[0]||(l[0]=e=>v.username=e),maxlength:"11",placeholder:"请输入手机号",onBlur:k},null,544),[[e.vModelText,v.username]])]),e.createElementVNode("view",{class:"input-father"},[e.withDirectives(e.createElementVNode("input",{class:"password",password:"",type:"text","onUpdate:modelValue":l[1]||(l[1]=e=>v.password=e),maxlength:"15",placeholder:"请输入密码"},null,512),[[e.vModelText,v.password]])]),e.withDirectives(e.createElementVNode("view",{class:"input-father-gray"}," 验证并登录 ",512),[[e.vShow,!h.value||!V.value]]),e.withDirectives(e.createElementVNode("view",{class:"input-father-blue",onClick:l[2]||(l[2]=e=>B())}," 验证并登录 ",512),[[e.vShow,h.value&&V.value]]),e.createElementVNode("view",{class:"under-container-title"},[e.createElementVNode("view",{class:e.normalizeClass(n.value?"radio-circle-target":"radio-circle"),onClick:l[3]||(l[3]=e=>n.value=!n.value)},null,2),e.createElementVNode("view",{style:{"margin-left":"17rpx"},class:"radio-circle-font",onClick:l[4]||(l[4]=e=>n.value=!n.value)},"我已阅读并同意"),e.createElementVNode("view",{class:"radio-circle-blue",onClick:l[5]||(l[5]=e=>{C.value=!0,S.value=!0})}," 《用户协议》 "),e.createElementVNode("view",{class:"radio-circle-blue",onClick:l[6]||(l[6]=e=>{C.value=!0,S.value=!1})}," 《隐私政策》 ")])]),f.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"popup-wrapper",style:{"z-index":"999"}},[e.createElementVNode("view",{class:"mask"}),e.createElementVNode("view",{class:"box"},[e.createElementVNode("view",{class:"box-title"}," 服务条款和隐私保护提示 "),e.createElementVNode("view",{class:"font-father"},[e.createElementVNode("view",{class:""}," 欢迎使用护理单元app! "),e.createElementVNode("view",{style:{"text-indent":"2em"}},[e.createTextVNode(" 我们将通过"),e.createElementVNode("text",{class:"text-blue",onClick:l[7]||(l[7]=e=>{C.value=!0,S.value=!0})},"《用户协议》"),e.createTextVNode("和"),e.createElementVNode("text",{class:"text-blue",onClick:l[8]||(l[8]=e=>{C.value=!0,S.value=!1})},"《隐私政策》"),e.createTextVNode(",帮助您了解我们为您提供的服务、我们如何处理个人信息以及您享有的权利。我们会严格按照相关法律法规要求,采取各种安全措施来保护您的个人信息。 ")]),e.createElementVNode("view",{style:{margin:"30rpx 0"}}," 点击“同意”按钮,表示您已知情并同意以上协议和以下约定。 ")]),e.createElementVNode("view",{class:"gray-box-bgc"},[e.createElementVNode("scroll-view",{style:{width:"100%",height:"100%"},"scroll-y":"","show-scrollbar":!0},[e.createElementVNode("view",{style:{"margin-bottom":"10rpx"}}," 1、服务条款与隐私政策确认:登录即表示您已阅读并同意《NU 护理单元用户服务协议》及《NU 护理单元隐私信息保护政策》,其中包含对您权利义务、个人信息处理的详细说明。 "),e.createElementVNode("view",{style:{"margin-bottom":"10rpx"}}," 2、账号使用规范:账号仅限本人使用,禁止恶意注册、转借或泄露。请妥善保管账号密码,因保管不善导致的账号安全问题,由您自行承担责任。 "),e.createElementVNode("view",{style:{"margin-bottom":"10rpx"}}," 3、内容发布责任:您在平台发布的内容需遵守法律法规,不得包含不良信息或侵犯他人权益的内容。发布利用新技术制作的非真实信息时,须显著标识。 "),e.createElementVNode("view",{style:{"margin-bottom":"10rpx"}}," 4、个人信息保护:我们将依法收集、使用您的个人信息(如手机号用于注册登录),您可通过 “我的 - 设置 - 隐私管理” 查看、修改授权,也可申请注销账号(注销后相关数据将按规定处理)。 "),e.createElementVNode("view",{style:{"margin-bottom":"10rpx"}}," 5、未成年人使用提示:未满 18 周岁用户需在监护人同意后使用,监护人可联系客服人员处理未成年人账号相关事宜,我们将严格保护未成年人信息。 ")])]),e.createElementVNode("view",{class:"blue-button",onClick:y},"同意"),e.createElementVNode("view",{class:"white-button",onClick:x},"不同意")])])):e.createCommentVNode("",!0),C.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"popup-any"},[e.createElementVNode("view",{class:"mask",onClick:l[9]||(l[9]=e=>C.value=!1)}),e.createElementVNode("view",{class:"box-any"},[e.createElementVNode("view",{class:"title-left"},[e.createElementVNode("image",{class:"back-img",src:c,onClick:l[10]||(l[10]=e=>C.value=!1)}),S.value?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"back-font"},"NU护理单元隐私信息保护政策")),S.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"back-font"},"NU护理单元用户服务协议")):e.createCommentVNode("",!0)]),S.value?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(u,{key:0})),S.value?(e.openBlock(),e.createBlock(m,{key:1})):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0),T.value?(e.openBlock(),e.createElementBlock("view",{key:2,class:"popup-wrapper"},[e.createElementVNode("view",{class:"mask",onClick:l[11]||(l[11]=e=>T.value=!1)}),e.createElementVNode("view",{class:"box-small"},[e.createElementVNode("view",{class:"box-title",style:{"margin-top":"30rpx"}}," 请阅读并同意以下条款 "),e.createElementVNode("view",{class:"font-father"},[e.createElementVNode("text",{class:"text-blue",onClick:l[12]||(l[12]=e=>{C.value=!0,S.value=!0})},"《用户协议》"),e.createElementVNode("text",{class:"text-blue",onClick:l[13]||(l[13]=e=>{C.value=!0,S.value=!1})},"《隐私政策》")]),e.createElementVNode("view",{class:"blue-button",onClick:N},"同意并继续")])])):e.createCommentVNode("",!0),D.value?(e.openBlock(),e.createElementBlock("view",{key:3,class:"popup-wrapper"},[e.createElementVNode("view",{class:"mask"}),e.createElementVNode("view",{class:"box-change"},[e.createElementVNode("view",{class:"box-title"}," 修改账户登录密码 "),e.createElementVNode("view",{class:"input-father"},[e.withDirectives(e.createElementVNode("input",{class:"password",password:!1,"onUpdate:modelValue":l[14]||(l[14]=e=>w.oldpassword=e),maxlength:"15",placeholder:"请输入新密码"},null,512),[[e.vModelText,w.oldpassword]])]),e.createElementVNode("view",{class:"input-father"},[e.withDirectives(e.createElementVNode("input",{class:"password",password:!1,"onUpdate:modelValue":l[15]||(l[15]=e=>w.newpassword=e),maxlength:"15",placeholder:"请再次输入新密码"},null,512),[[e.vModelText,w.newpassword]])]),e.createElementVNode("view",{class:"blue-button",style:{"margin-top":"80rpx"},onClick:l[16]||(l[16]=e=>D.value=!1)},"确定")])])):e.createCommentVNode("",!0),e.createVNode(d,{ref_key:"zyupgrade",ref:i,noticeflag:!0,theme:"blue",h5preview:!1,oldversion:"1.0.0",appstoreflag:!0,autocheckupdate:!0,onShowupdateTips:_},null,512),s.value?(e.openBlock(),e.createElementBlock("view",{key:4,class:"bg-mask",onClick:l[18]||(l[18]=e=>s.value=!1)},[e.createVNode(g,{onClick:l[17]||(l[17]=e.withModifiers((()=>{}),["stop"])),onSuccess:U})])):e.createCommentVNode("",!0)],64))}}),[["__scopeId","data-v-e979d453"]]);const h=s({data:()=>({title:"Hello"}),onLoad(){t("globalEvent").addEventListener("myEvent",(function(e){l("log","at pages/denglu.vue:20","myEvent"+JSON.stringify(e)),uni.showToast({title:"myEvent"+JSON.stringify(e),duration:2e3})}))},methods:{testAsyncFunc(){t("MonitorModule").gotoNativePage({deviceId:"4",deviceName:"sdfsfsdf"})},jumptonve(){uni.navigateTo({url:"/pages/ceshianzhuo"})},init(e){t("MonitorModule").initSMBCloudSDK()},login(e){t("MonitorModule").cloudLoginIn({userName:"admin",password:"Bl20230518",serverAddress:"121.36.88.64",port:8888},(e=>{l("log","at pages/denglu.vue:58","loginResult",e.code),uni.showToast({title:"操作成功",duration:2e3})}))},logout(e){t("MonitorModule").cloudLoginOut((e=>{l("log","at pages/denglu.vue:68","loginResult",e.code)}))}}},[["render",function(t,l,a,i,r,n){return e.openBlock(),e.createElementBlock("view",{class:"content"},[e.createElementVNode("button",{class:"typebutton",type:"primary",onClick:l[0]||(l[0]=(...e)=>n.init&&n.init(...e))},"初始化sdk"),e.createElementVNode("button",{class:"typebutton",type:"primary",onClick:l[1]||(l[1]=(...e)=>n.login&&n.login(...e))},"登陆"),e.createElementVNode("button",{class:"typebutton",type:"primary",onClick:l[2]||(l[2]=(...e)=>n.logout&&n.logout(...e))},"退出登陆"),e.createElementVNode("button",{class:"typebutton",type:"primary",onClick:l[3]||(l[3]=(...e)=>n.jumptonve&&n.jumptonve(...e))},"跳到nvue")])}]]),f=s(e.defineComponent({__name:"index",setup(t){e.ref(!1);const l=e.ref(null),a=[{name:"初始化",url:"/pages/Initialization/index"},{name:"护理单元",url:"/pages/Nursing/index"},{name:"仓库",url:"/pages/Warehousing/index"}];return o((e=>{})),r((()=>{var e;null==(e=l.value)||e.check_update()})),(t,i)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("view",{class:"backgroundContainer"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(a,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"menuCard",onClick:e=>{return l=t.url,void uni.navigateTo({url:l});var l}},e.toDisplayString(t.name),9,["onClick"])]))),64))]),e.createVNode(d,{ref_key:"zyupgrade",ref:l,noticeflag:!0,theme:"blue",h5preview:!1,oldversion:"1.0.0",appstoreflag:!0,autocheckupdate:!0},null,512)],64))}}),[["__scopeId","data-v-bd6792ac"]]),N="/static/index/oldman.png",y="/static/index/customer.png",x=s({__name:"Drawer",props:{widNumber:{type:Number,default:85},canclose:{type:Boolean,default:!0}},setup(t,{expose:l}){const a=e.ref(!1),i=t,r=e.computed((()=>({width:`${i.widNumber}%`})));function n(){i.canclose&&(a.value=!1)}return l({openDrawer:function(){a.value=!0},closeDrawer:function(){a.value=!1}}),(l,i)=>(e.openBlock(),e.createElementBlock("view",null,[e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(["overlay",{"overlay-show":a.value}]),onClick:n},null,2),[[e.vShow,a.value]]),e.createElementVNode("view",{class:e.normalizeClass(["drawer",{"drawer-open":a.value}]),style:e.normalizeStyle(r.value)},[e.createElementVNode("view",{class:"drawer-content"},[e.withDirectives(e.createElementVNode("view",{class:"drawer-content-circle",onClick:n},[e.createElementVNode("image",{class:"drawer-img",src:"/static/index/zuoyuan.png"})],512),[[e.vShow,a.value&&t.canclose]]),e.renderSlot(l.$slots,"default",{},void 0,!0)])],6)]))}},[["__scopeId","data-v-8cdafce2"]]),E="/static/index/teeth.png",V="/static/index/helpdo/xian.png",b=s(e.defineComponent({__name:"index",setup(t){const l=e=>{},a=e.ref(!1);e.ref(null);const i=e.ref(-1),r=e.ref(0),n=uni.createVideoContext("myVideo"),o=()=>{n.pause(),a.value=!1};e.computed((()=>{switch(c.value){case 0:return"0";case 1:return"calc(100% - 600rpx)";case 2:return"calc(100% - 120rpx)";default:return"100%"}}));const c=e.ref(0);return(t,n)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"转单执行")]),e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"downitems-father"},[e.createElementVNode("view",{class:"downitems-left"},[e.createElementVNode("view",{class:"downitems-left-mar"},[e.createElementVNode("image",{class:"downitems-left-img",src:E}),e.createElementVNode("view",{class:"downitems-left-father"},[e.createElementVNode("image",{class:"downitems-father-img",src:"/static/index/helpdo/zero.png"}),e.createElementVNode("view",{class:"downitems-father-font"},"清洁照料")]),e.createElementVNode("view",{class:"downitems-left-father"},[e.createElementVNode("image",{class:"downitems-father-img",src:"/static/index/helpdo/one.png"}),e.createElementVNode("view",{class:"downitems-father-font"},"四肢清洁")]),e.createElementVNode("view",{class:"downitems-left-father"},[e.createElementVNode("image",{class:"downitems-father-img",src:"/static/index/helpdo/two.png"}),e.createElementVNode("view",{class:"downitems-father-font-laba"},"协助清洁(四肢)"),e.createElementVNode("image",{class:"downitems-father-img-laba",src:"/static/index/helpdo/laba.png"})]),e.createElementVNode("view",{class:"downitems-left-father"},[e.createElementVNode("image",{class:"downitems-father-img",src:"/static/index/helpdo/three.png"}),e.createElementVNode("view",{class:"downitems-father-font-small"},"准备清水,一次性面巾,香皂,清洁后涂身体保湿乳。")]),e.createElementVNode("view",{class:"downitems-kuai",onClick:n[0]||(n[0]=e=>a.value=!0)},[e.createElementVNode("image",{class:"downitems-kuai-img",src:"/static/index/helpdo/video.png"})]),e.createElementVNode("view",{class:"downitems-says"}," 视频讲解 ")])]),e.createElementVNode("image",{class:"downitems-shu",src:V}),e.createElementVNode("view",{class:"downitems-center"},[e.createElementVNode("view",{class:"downitems-center-title"},[e.createElementVNode("view",{class:"downitems-center-title-gun"}),e.createElementVNode("view",{class:"downitems-center-title-font"},"转单原因"),e.createElementVNode("view",{class:"downitems-center-says"},[e.createElementVNode("view",{class:"downitems-center-father"},[e.createElementVNode("image",{class:"downitems-center-says-maike",src:"/static/index/helpdo/maike.png"})]),e.createElementVNode("view",{class:""},"语音输入")])]),e.createElementVNode("view",{class:"downitems-textarea"},[e.createElementVNode("textarea",{class:"custom-textarea",onBlur:l,placeholder:"请输入"},null,32)]),e.createElementVNode("view",{class:"downitems-center-title"},[e.createElementVNode("view",{class:"downitems-center-title-gun"}),e.createElementVNode("view",{class:"downitems-center-title-font"},"转单方式")]),e.createElementVNode("view",{class:"radio-circle-top-father"},[e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(r.value?"radio-circle":"radio-circle-target"),onClick:n[1]||(n[1]=e=>r.value=0)},null,2),e.createElementVNode("view",{class:"radio-font",onClick:n[2]||(n[2]=e=>r.value=0)},"重新派单")]),e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(r.value?"radio-circle-target":"radio-circle"),onClick:n[3]||(n[3]=e=>{r.value=1})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:n[4]||(n[4]=e=>r.value=1)},"定向派单")])]),e.createElementVNode("view",{class:"downitems-button"}," 确认 ")]),e.createElementVNode("image",{class:"downitems-shu",style:{transform:"rotate(180deg)","margin-left":"0rpx"},src:V}),e.createElementVNode("view",{class:"downitems-right"},[e.withDirectives(e.createElementVNode("view",{class:"downitems-all"},[e.createElementVNode("view",{class:"downitems-center-title"},[e.createElementVNode("view",{class:"downitems-center-title-gun"}),e.createElementVNode("view",{class:"downitems-center-title-font"},"重新派单")]),e.createElementVNode("view",{class:"downitems-all-font"}," 选择重新派单,平台自动将服务指令重新派发给其他员工,等待执行。 ")],512),[[e.vShow,!r.value]]),e.withDirectives(e.createElementVNode("view",{class:"downitems-all"},[e.createElementVNode("view",{class:"downitems-center-title"},[e.createElementVNode("view",{class:"downitems-center-title-gun"}),e.createElementVNode("view",{class:"downitems-center-title-font"},"定向派单")]),e.createElementVNode("view",{class:"downitems-all-font"}," 选择定向转单,请选择要执行服务指令的员工。 "),e.createElementVNode("view",{class:"downitems-card-all"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([0,1,2,3,4,5,6,7],((t,l)=>e.createElementVNode("view",{class:"downitems-card"},[e.createElementVNode("view",{class:e.normalizeClass(i.value===l?"downitems-card-one-target":"downitems-card-one"),onClick:e=>(e=>{i.value=e})(l)},[e.createElementVNode("view",{class:"downitems-card-father"},[e.createElementVNode("image",{class:"downitems-card-img",src:"/static/index/helpdo/people.png"})]),e.createElementVNode("view",{class:"downitems-card-font"}," 李金福 ")],10,["onClick"])]))),64))])],512),[[e.vShow,r.value]])])])]),e.withDirectives(e.createElementVNode("view",{class:"modal",onClick:o},[e.createElementVNode("view",{class:"modal-content",onClick:n[5]||(n[5]=e.withModifiers((()=>{}),["stop"]))})],512),[[e.vShow,a.value]])]))}}),[["__scopeId","data-v-6070efba"]]),k=s(e.defineComponent({__name:"index",props:{isshow:{type:Boolean,required:!0},darkFans:{type:Boolean,required:!0}},emits:["darkchange"],setup(t,{emit:l}){const a=e.ref(null),i=t,r=e.ref(!1),n=e.ref(!1),o=e.ref(!1),c=e.ref(!1),s=e.ref(!1),d=e.ref(!1),m=e.ref(""),u=e.ref(""),v=e.ref(""),p=e.ref([{url:"/static/index/undericons/alarm.png",targetUrl:"/static/index/undericons/alarmdark.png",name:"服务考核"},{url:"/static/index/undericons/linshitime.png",targetUrl:"/static/index/undericons/linshitimedark.png",name:"护理流程"},{url:"/static/index/darkicon/zhaomingdark.png",targetUrl:"/static/index/roomicons/zhaomingtar.png",name:"电子医嘱"},{url:"/static/index/darkicon/kontiaodark.png",targetUrl:"/static/index/roomicons/kongtiaotar.png",name:"进销存"},{url:"/static/index/darkicon/nuanfengdark.png",targetUrl:"/static/index/roomicons/nuanfengtar.png",name:"实时监控"},{url:"/static/index/darkicon/dianqidark.png",targetUrl:"/static/index/roomicons/dianqitar.png",name:"我的指令"}]),g=e.ref([{url:"/static/index/hulilist/zhuandan.png",name:"转单执行"},{url:"/static/index/hulilist/xiezhu.png",name:"协助执行"},{url:"/static/index/hulilist/zhongdian.png",name:"重点追踪"}]),w=e.ref([{url:"/static/index/darkicon/zhuandandark.png",name:"转单执行"},{url:"/static/index/darkicon/xiezhudark.png",name:"协助执行"},{url:"/static/index/darkicon/zhongdiandark.png",name:"重点追踪"}]),h=e.ref([{url:"/static/index/medium/yaopin.png",name:"药品信息",number:0},{url:"/static/index/medium/qingling.png",name:"请领指令",number:60},{url:"/static/index/medium/peiyao.png",name:"配药指令",number:100},{url:"/static/index/medium/xinxi.png",name:"信息反馈",number:0},{url:"/static/index/medium/xinxi.png",name:"信息反馈2",number:0}]),f=e.ref([{url:"/static/index/darkicon/yaopindark.png",name:"药品信息",number:55},{url:"/static/index/darkicon/qinglingdark.png",name:"请领指令",number:10},{url:"/static/index/darkicon/peiyaodark.png",name:"配药指令",number:100},{url:"/static/index/darkicon/xinxidark.png",name:"信息反馈",number:15},{url:"/static/index/darkicon/xinxidark.png",name:"信息反馈2",number:20}]),N=e.ref([{url:"/static/index/roomicons/zhaoming.png",targetUrl:"/static/index/roomicons/zhaomingtar.png",name:"照明"},{url:"/static/index/roomicons/kongtiao.png",targetUrl:"/static/index/roomicons/kongtiaotar.png",name:"空调"},{url:"/static/index/roomicons/nuanfeng.png",targetUrl:"/static/index/roomicons/nuanfengtar.png",name:"暖风"},{url:"/static/index/roomicons/dianqi.png",targetUrl:"/static/index/roomicons/dianqitar.png",name:"电器"}]),E=e.ref([{url:"/static/index/darkicon/zhaomingdark.png",targetUrl:"/static/index/roomicons/zhaomingtar.png",name:"照明"},{url:"/static/index/darkicon/kontiaodark.png",targetUrl:"/static/index/roomicons/kongtiaotar.png",name:"空调"},{url:"/static/index/darkicon/nuanfengdark.png",targetUrl:"/static/index/roomicons/nuanfengtar.png",name:"暖风"},{url:"/static/index/darkicon/dianqidark.png",targetUrl:"/static/index/roomicons/dianqitar.png",name:"电器"}]);e.ref(0);const V=e.ref(0);e.ref(!1);const k=e.ref([]),T=e.ref(0),D=e.ref(0),C=e.ref(0),S=e.ref(0);e.ref(0);const B=l,z=()=>{uni.navigateTo({url:"/pages/NursingNew/index"})},_=()=>{B("darkchange",!i.darkFans)},I=e=>{if(k.value.includes(e)){let t=[];k.value.forEach((l=>{l!==e&&t.push(l)})),k.value=t}else k.value.push(e)},U=()=>{const e=new Date,t=e.getHours().toString().padStart(2,"0"),l=e.getMinutes().toString().padStart(2,"0");m.value=`${t}:${l}`;const a=e.getFullYear(),i=(e.getMonth()+1).toString().padStart(2,"0"),r=e.getDate().toString().padStart(2,"0");u.value=`${a}年${i}月${r}日`;const n=["星期日","星期一","星期二","星期三","星期四","星期五","星期六"][e.getDay()];v.value=n},F=e=>{D.value=e.detail.current},$=e=>{C.value=e.detail.current},M=()=>{r.value=!r.value,n.value=!0,o.value=!1,s.value=!1,setTimeout((()=>{n.value=!1}),500)},A=()=>{o.value=!o.value,r.value=!1,s.value=!1,c.value=!0,setTimeout((()=>{c.value=!1}),500)},L=()=>{s.value=!s.value,d.value=!0,r.value=!1,o.value=!1,setTimeout((()=>{d.value=!1}),500)};let O=null;return e.onMounted((()=>{O=U(),setInterval(U,1e3)})),e.onBeforeUnmount((()=>{clearInterval(O)})),(l,i)=>(e.openBlock(),e.createElementBlock("view",{class:"right-container",style:e.normalizeStyle(t.isshow?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"right-container-title-nav"},[e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," ID:12345678 ",2),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," 名称:未命名01 ",2),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("image",{class:"right-icons-img",src:"/static/index/undericons/man.png"},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"right-icons-font-dark":"right-icons-font")},"王金福",2),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/face.png":"/static/index/undericons/facelight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/hand.png":"/static/index/undericons/handlight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/out.png":"/static/index/undericons/outlight.png"},null,8,["src"])]),e.withDirectives(e.createElementVNode("view",{class:"right-container-title-class-anhei-button",onClick:i[0]||(i[0]=e=>_())},[e.createElementVNode("text",{class:"right-container-title-class-anhei"}," 切换到暗黑模式 ")],512),[[e.vShow,!t.darkFans]]),e.withDirectives(e.createElementVNode("view",{class:"right-container-title-class-anhei-button",style:e.normalizeStyle(t.darkFans?{backgroundColor:"#fff"}:{}),onClick:i[1]||(i[1]=e=>_())},[e.createElementVNode("text",{class:"right-container-title-class-anhei",style:e.normalizeStyle(t.darkFans?{color:"black"}:{})}," 取消暗黑模式 ",4)],4),[[e.vShow,t.darkFans]]),e.createElementVNode("view",{class:"right-container-title-class-anhei-button",style:{"background-color":"#fff"}},[e.createElementVNode("text",{class:"right-container-title-class-anhei",style:{color:"black"},onClick:z}," 切换到新版主页 ")])]),e.createElementVNode("view",{class:"right-container-fir"},[e.createElementVNode("view",{class:e.normalizeClass([r.value?"right-container-big":"right-container-small","right-container-fir-left-nav"]),style:e.normalizeStyle(n.value||r.value?{zIndex:999}:{zIndex:998})},[e.createElementVNode("view",{style:e.normalizeStyle(r.value?{borderRadius:"30rpx"}:{borderRadius:"50rpx"}),class:e.normalizeClass(t.darkFans?"right-container-fir-left-card-dark":"right-container-fir-left-card")},[e.createElementVNode("image",{class:"right-container-fir-left-card-hulilei",src:"/static/index/hulilei.png"},null,8,["src"]),e.createElementVNode("div",{class:"right-container-fir-left-card-hulilei-font",onClick:M},"护理类"),t.darkFans?(e.openBlock(),e.createElementBlock("image",{key:0,class:"card-upfaguang",src:"/static/index/cardbgc/uplight.png"},null,8,["src"])):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"right-container-fir-left-carousel"},[e.createElementVNode("view",{class:"carousel"},[e.createElementVNode("view",{class:"dots"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("span",{key:a,class:e.normalizeClass(t.darkFans?"dot-dark":"dot"),style:e.normalizeStyle(a===D.value?{backgroundColor:"#01A0FE"}:{})},null,6))),64))])])]),e.createElementVNode("view",{class:"right-container-fir-left-card-main"},[e.createElementVNode("swiper",{current:D.value,class:"swiper savehundred",circular:"","indicator-dots":!1,vertical:!0,interval:4e3,duration:500,onChange:F},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("swiper-item",{class:"swiper-item-flex",key:a},[e.createElementVNode("view",{class:"right-container-fir-left-card-flex"},[e.createElementVNode("view",{class:"uni-margin-wrap-fir"},[e.createElementVNode("swiper",{current:T.value,class:"swiper",circular:"","indicator-dots":!1,interval:4e3,duration:500},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("swiper-item",{class:"swiper-item-flex",key:a},[e.createElementVNode("view",{class:"right-container-fir-left-card-card"},[e.createElementVNode("view",{class:"right-container-fir-left-card-zhixing"},[e.createElementVNode("div",{class:"right-container-fir-left-card-zhixing-font"},"待执行 ")]),e.createElementVNode("image",{class:"right-container-fir-left-card-img",src:"/static/index/teeth.png",onClick:M},null,8,["src"]),e.createElementVNode("view",{class:"right-container-fir-left-card-main-laba-video"},[e.createElementVNode("image",{class:"right-container-fir-left-card-main-laba",src:t.darkFans?"/static/index/darkicon/labadark.png":"/static/index/laba.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-fir-left-card-main-font-dark":"right-container-fir-left-card-main-font")}," 准备洁具(口腔) ",2),e.createElementVNode("image",{class:"right-container-fir-left-card-main-video",src:(t.darkFans,"/static/index/indexvideo.png")},null,8,["src"])])]),e.createElementVNode("view",{class:"split-line"}),e.createElementVNode("view",{class:"time-tra-fir"},[e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-font-dark":"time-font")}," 10:00 - 10:10 ",2),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-text-dark":"time-text")}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ",2),e.createElementVNode("view",{class:"time-people-two"},[e.createElementVNode("view",{class:"time-people-fir"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/darkicon/zhixingpeopledark.png":"/static/index/cardicons/zhixing.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 单人执行 ",2)]),e.createElementVNode("view",{class:"time-people-sec"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/dopeopledark.png":"/static/index/cardicons/zhifa.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," -- ",2)])]),e.createElementVNode("view",{class:"time-button-view"},[e.createElementVNode("view",{class:"time-button-start"}," 开始服务 "),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-button-end-dark":"time-button-end")}," 服务结束 ",2)])])]))),64))],8,["current"])]),e.createElementVNode("view",{class:"split-line-white-right-left",style:e.normalizeStyle(t.darkFans?"background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #386997 50%, rgba(0, 0, 0, 0) 100%);":"")},[t.darkFans?(e.openBlock(),e.createElementBlock("image",{key:0,class:"split-line-white-img",src:"/static/index/cardbgc/leftlight.png"},null,8,["src"])):e.createCommentVNode("",!0)],4)])]))),64))],40,["current"]),e.createElementVNode("view",{class:"right-huli-sec"},[e.createElementVNode("image",{class:"right-huli-shang",src:"/static/index/hulilist/shang.png"},null,8,["src"]),t.darkFans?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("scroll-view",{key:0,"show-scrollbar":!1,"scroll-y":"true",class:"right-huli-view"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-huli-view-dis",onClick:e=>{a.value.openDrawer()}},[e.createElementVNode("image",{class:"right-huli-img",src:t.url},null,8,["src"]),e.createElementVNode("text",{class:"right-huli-text"},e.toDisplayString(t.name),1)],8,["onClick"])))),128))])),t.darkFans?(e.openBlock(),e.createElementBlock("scroll-view",{key:1,"show-scrollbar":!1,"scroll-y":"true",class:"right-huli-view"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(w.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-huli-view-dis"},[e.createElementVNode("image",{class:"right-huli-img",src:t.url},null,8,["src"]),e.createElementVNode("text",{class:"right-huli-text-dark"},e.toDisplayString(t.name),1)])))),128))])):e.createCommentVNode("",!0),e.createElementVNode("image",{class:"right-huli-xia",src:"/static/index/hulilist/xia.png"},null,8,["src"])])])],6)],6),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"right-container-fir-right-dark":"right-container-fir-right")},[e.createElementVNode("view",{class:"right-container-card"},[e.createElementVNode("view",{class:"right-container-card-right"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3,4],((t,l)=>e.createElementVNode("view",{class:"",key:l},[e.createElementVNode("image",{class:"right-container-card-right-img",src:y})]))),64))]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-dark":"right-container-title")},e.toDisplayString(m.value),3),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-date-dark":"right-container-date")},e.toDisplayString(u.value),3),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-day-dark":"right-container-day")},e.toDisplayString(v.value),3),e.createElementVNode("view",{class:"right-container-tem"},[e.createElementVNode("image",{class:"right-container-tem-img",src:t.darkFans?"/static/index/darkicon/wendudark.png":"/static/index/roomicons/wendu.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-tem-text-dark":"right-container-tem-text")},"23°C",2),e.createElementVNode("image",{class:"right-container-tem-img",src:t.darkFans?"/static/index/roomicons/shidu.png":"/static/index/darkicon/shidudark.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-tem-text-dark":"right-container-tem-text")},"39%",2)]),e.createElementVNode("view",{class:"right-container-fenge"}),t.darkFans?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"right-container-button"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(N.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-container-button-any"},[e.withDirectives(e.createElementVNode("image",{class:"right-container-button-ray",src:"/static/index/cardicons/ray2.png"},null,8,["src"]),[[e.vShow,k.value.includes(l)]]),e.createElementVNode("image",{class:"right-container-button-img",src:k.value.includes(l)?t.targetUrl:t.url,onClick:e=>I(l)},null,8,["src","onClick"]),e.createElementVNode("text",{class:"right-container-button-text",style:e.normalizeStyle(k.value.includes(l)?{color:"#167ED7"}:{})},e.toDisplayString(t.name),5)])))),128))])),t.darkFans?(e.openBlock(),e.createElementBlock("view",{key:1,class:"right-container-button"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(E.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-container-button-any"},[e.withDirectives(e.createElementVNode("image",{class:"right-container-button-ray",src:"/static/index/cardicons/ray2.png"},null,8,["src"]),[[e.vShow,k.value.includes(l)]]),e.createElementVNode("image",{class:"right-container-button-img",src:k.value.includes(l)?t.targetUrl:t.url,onClick:e=>I(l)},null,8,["src","onClick"]),e.createElementVNode("text",{class:"right-container-button-text",style:e.normalizeStyle(k.value.includes(l)?{color:"#167ED7"}:{color:"#fff"})},e.toDisplayString(t.name),5)])))),128))])):e.createCommentVNode("",!0)])],2)]),e.createElementVNode("view",{class:"right-container-sec"},[e.createElementVNode("view",{class:e.normalizeClass(o.value?"right-container-left-big":"right-container-left-small"),style:e.normalizeStyle(c.value||o.value?{zIndex:999}:{zIndex:0})},[e.createElementVNode("view",{style:e.normalizeStyle(o.value?{borderRadius:"29rpx"}:{borderRadius:"50rpx"}),class:e.normalizeClass(t.darkFans?"right-container-left-dark":"right-container-left")},[e.createElementVNode("image",{class:"right-container-left-type",src:"/static/index/yiliao/yiliaolei.png"},null,8,["src"]),e.createElementVNode("div",{class:"right-container-left-font",onClick:A},"医疗类"),e.createElementVNode("view",{class:"right-container-fir-left-carousel"},[e.createElementVNode("view",{class:"carousel"},[e.createElementVNode("view",{class:"dots"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("span",{key:a,class:e.normalizeClass(t.darkFans?"dot-dark":"dot"),style:e.normalizeStyle(a===C.value?{backgroundColor:"#01A0FE"}:{})},null,6))),64))])])]),t.darkFans?(e.openBlock(),e.createElementBlock("image",{key:0,class:"card-upfaguang-down",src:"/static/index/cardbgc/uplight.png"},null,8,["src"])):e.createCommentVNode("",!0),e.createElementVNode("swiper",{current:C.value,class:"swiper savehundred",circular:"","indicator-dots":!1,vertical:!0,interval:4e3,duration:500,onChange:$},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("swiper-item",{class:"swiper-item-flex",key:a},[e.createElementVNode("div",{class:"right-container-fir-left-card-flex-sec"},[e.createElementVNode("view",{class:"uni-margin-wrap"},[e.createElementVNode("swiper",{current:S.value,class:"swiper",circular:"","indicator-dots":!1,autoplay:!1,interval:4e3,duration:500},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("swiper-item",{class:"swiper-item-flex",key:a},[e.createElementVNode("div",{class:"right-container-left-font-spec"},"进行中 "),e.createElementVNode("view",{class:"time-tra-sec"},[e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-font-dark":"time-font")}," 10:00 - 10:10 ",2),e.createElementVNode("view",{class:"time-people-thi"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/doctorsaydark.png":"/static/index/medium/doctorsay.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 医嘱类型:药品 ",2)]),e.createElementVNode("view",{class:"time-people-thi"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/howtododark.png":"/static/index/medium/howtodo.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 处置方式:肌肉注射 ",2)]),e.createElementVNode("view",{class:"time-people-thi"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/useMed.png":"/static/index/medium/yongyao.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 用药类型:抗生素类 ",2)]),e.createElementVNode("view",{class:"time-people-thi"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/domanydark.png":"/static/index/medium/domany.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 执行方式:周期一日执行一次 ",2)]),e.createElementVNode("view",{class:"time-people-thi"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/darkicon/zhixingpeopledark.png":"/static/index/cardicons/zhixing.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 单人执行 ",2),e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/dopeopledark.png":"/static/index/cardicons/zhifa.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 赵宇 ",2)]),e.createElementVNode("view",{class:"time-button-view"},[e.createElementVNode("view",{class:"time-button-start"}," 开始服务 "),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-button-end-dark":"time-button-end")}," 服务结束 ",2)])]),e.createElementVNode("view",{class:"right-container-photo"},[e.createElementVNode("image",{class:"right-container-photo-img",src:"/static/index/yiliao/project2.png",onClick:A},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-photo-text-dark":"right-container-photo-text")}," 脑膜炎(1/2) ",2)])]))),64))],8,["current"])])])]))),64))],40,["current"]),e.createElementVNode("view",{class:"split-line-white-sec",style:e.normalizeStyle(t.darkFans?"background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, #386997 50%, rgba(0, 0, 0, 0) 100%);":"")},[t.darkFans?(e.openBlock(),e.createElementBlock("image",{key:0,class:"split-line-white-img",src:"/static/index/cardbgc/leftlight.png"},null,8,["src"])):e.createCommentVNode("",!0)],4),e.createElementVNode("view",{class:"right-huli-fir"},[e.createElementVNode("image",{class:"right-huli-shang",src:"/static/index/hulilist/shang.png"},null,8,["src"]),t.darkFans?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("scroll-view",{key:0,"show-scrollbar":!1,"scroll-y":"true",class:"right-huli-view"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(h.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-huli-view-dis"},[e.createElementVNode("image",{class:"right-huli-img",src:t.url},null,8,["src"]),e.createElementVNode("text",{class:"right-huli-text"},e.toDisplayString(t.name),1),e.withDirectives(e.createElementVNode("div",{class:"progress-bar-container"},[e.createElementVNode("div",{style:e.normalizeStyle({width:`${t.number}%`}),class:"progress-bar"},null,4)],512),[[e.vShow,0!==t.number]])])))),128))])),t.darkFans?(e.openBlock(),e.createElementBlock("scroll-view",{key:1,"show-scrollbar":!1,"scroll-y":"true",class:"right-huli-view"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(f.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"right-huli-view-dis"},[e.createElementVNode("image",{class:"right-huli-img",src:t.url},null,8,["src"]),e.createElementVNode("text",{class:"right-huli-text-dark"},e.toDisplayString(t.name),1),e.withDirectives(e.createElementVNode("div",{class:"progress-bar-container"},[e.createElementVNode("div",{style:e.normalizeStyle({width:`${t.number}%`}),class:"progress-bar"},null,4)],512),[[e.vShow,0!==t.number]])])))),128))])):e.createCommentVNode("",!0),e.createElementVNode("image",{class:"right-huli-xia",src:"/static/index/hulilist/xia.png"},null,8,["src"])])],6)],6),e.createElementVNode("view",{style:e.normalizeStyle(d.value||s.value?{zIndex:999}:{zIndex:0}),class:e.normalizeClass([s.value?"right-container-right-big":"right-container-right-small"])},[e.createElementVNode("view",{style:e.normalizeStyle(s.value?{borderRadius:"29rpx"}:{borderRadius:"50rpx"}),class:e.normalizeClass([t.darkFans?"right-container-right-father-dark":"right-container-right-father"])},[e.createElementVNode("view",{class:"right-container-right-down-father"},[e.createElementVNode("div",{class:"right-container-fir-left-card-flex-sec"},[e.createElementVNode("image",{class:"right-container-fir-left-card-flex-sec-img",src:"/static/index/baojielei.png"},null,8,["src"]),e.createElementVNode("div",{class:"right-container-fir-left-card-flex-sec-font",onClick:L},"保洁类"),e.createElementVNode("image",{class:"right-container-fir-left-card-flex-sec-imgright-fir",src:"/static/index/baojieleft.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-container-fir-left-card-flex-sec-imgright-sec",src:"/static/index/baojieright.png"},null,8,["src"]),e.createElementVNode("view",{class:"uni-margin-wrap"},[e.createElementVNode("swiper",{current:S.value,class:"swiper",circular:"","indicator-dots":!1,autoplay:!1,interval:4e3,duration:500},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3],((l,a)=>e.createElementVNode("swiper-item",{class:"swiper-item-flex",key:a},[e.createElementVNode("view",{class:"time-tra-thi"},[e.createElementVNode("view",{class:"time-tra-thi-zhixing"},[e.createElementVNode("div",{class:"time-tra-thi-zhixing-font"},"待执行 ")]),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-font-dark":"time-font")}," 10:00 - 10:10 ",2),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-text-dark":"time-text")}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ",2),e.createElementVNode("view",{class:"time-people-two"},[e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/darkicon/zhixingpeopledark.png":"/static/index/cardicons/zhixing.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 单人执行 ",2),e.createElementVNode("image",{class:"time-people-img",src:t.darkFans?"/static/index/medium/dopeopledark.png":"/static/index/cardicons/zhifa.png"},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-people-font-dark":"time-people-font")}," 王金福 / 李贵田 ",2)]),e.createElementVNode("view",{class:"time-button-view"},[e.createElementVNode("view",{class:"time-button-start"}," 开始服务 "),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"time-button-end-dark":"time-button-end")}," 服务结束 ",2)])]),e.createElementVNode("view",{class:"time-tra-thi-photo"},[e.createElementVNode("image",{class:"time-tra-thi-photo-img",src:"/static/index/project3.png",onClick:L},null,8,["src"]),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"time-tra-thi-photo-font-dark":"time-tra-thi-photo-font")}," 更换纸尿裤 ",2)])]))),64))],8,["current"])])])])],6)],6),e.createElementVNode("view",{class:"under-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(p.value,((l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"under-father-view",key:a,onClick:e=>(e=>{V.value=e})(a)},[e.withDirectives(e.createElementVNode("image",{class:"under-father-light",src:"/static/index/undericons/upguang.png"},null,512),[[e.vShow,a===V.value]]),e.createElementVNode("image",{class:"under-father-img",src:a===V.value?l.targetUrl:l.url},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"under-father-img-font-dark":"under-father-img-font")},e.toDisplayString(l.name),3)],8,["onClick"])))),128))])]),e.createVNode(x,{ref_key:"drawer",ref:a},{default:e.withCtx((()=>[e.createVNode(b)])),_:1},512)],4))}}),[["__scopeId","data-v-6d6a66c6"]]),T="/static/index/deleteicon.png",D="/static/index/NU.png",C=[{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706886",title:"协助喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604232524795905",title:"鼻饲喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604428667228162",title:"注射器/吸管喂药",tagName:"头部,大体重"}],levle:"2",title:"协助喂药",key:"1900114812020310017",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605892869394433",title:"一级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606105021485058",title:"二级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606339931869185",title:"三级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606614344208386",title:"一级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606869953482753",title:"二级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607023431454722",title:"三级压疮防护",tagName:"大体重"}],levle:"2",title:"压疮防护",key:"1900115034452639746",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706887",title:"床椅转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706888",title:"床椅转移",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605073730211842",title:"床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605223185846273",title:"床椅转移",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605365393723393",title:"协助床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605496071458818",title:"协助床椅转移",tagName:null}],levle:"2",title:"床椅转移",key:"1902248363784159233",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607507626102786",title:"轮椅防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607677415723010",title:"轮椅防护",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902607817589362689",title:"轮椅防护",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902608061588803585",title:"轮椅防护",tagName:"大体重"}],levle:"2",title:"轮椅防护",key:"1902280900178886657",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608564582322178",title:"约束位按摩",tagName:"手"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608974609092610",title:"约束位按摩",tagName:"足"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618507855237121",title:"约束位按摩",tagName:"全"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618751548493825",title:"防护网约束",tagName:null}],levle:"2",title:"约束防护",key:"1902280933364219906",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620309090701314",title:"协助行走",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620486044192769",title:"放松按摩",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902625161569079298",title:"心灵慰藉",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902625402468929537",title:"狂躁",tagName:null}],levle:"2",title:"按摩保健",key:"1902564031454744577",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902625872432304130",title:"准备衣物",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626005538541569",title:"协助更换",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626664711163905",title:"肢体障碍",tagName:"半侧"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626800510144513",title:"肢体障碍",tagName:"全身"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627064688381953",title:"准备衣物",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627280716009474",title:"协助更换",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627416598876161",title:"肢体障碍",tagName:"半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627522404388866",title:"肢体障碍",tagName:"全身"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902627711806574593",title:"协助更换",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628058591629313",title:"肢体障碍",tagName:"半侧,大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628650718302209",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628837725540354",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628966847188993",title:"肢体障碍",tagName:"大体重,半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902629129879785474",title:"协助更换",tagName:"大体重"}],levle:"2",title:"更换衣物",key:"1902564088417587201",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629344456183809",title:"坐起",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629492301205506",title:"躺下",tagName:null}],levle:"2",title:"调整坐卧",key:"1902564199830884354",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902630862769065985",title:"遗体净身",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902631162275926017",title:"遗体穿衣",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631422431825921",title:"遗体转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631602463936514",title:"床位消毒",tagName:null}],levle:"2",title:"殡仪服务",key:"1902564263743688705",parentId:"1900112597427793921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902631830441136129",title:"更换床上用品",tagName:"全部"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632063828987905",title:"隔尿褥子更换",tagName:null}],levle:"2",title:"更换床上用品",key:"1902564446648897538",parentId:"1900112597427793921"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632288270389250",title:"临终护理",tagName:null}],levle:"2",title:"临终服务",key:"1902564503783706625",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"40",id:"1902632678701371393",title:"制氧机吸氧",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902632799853842433",title:"制氧机维护",tagName:null}],levle:"2",title:"制氧机应用",key:"1902564586101116930",parentId:"1900112597427793921"}],levle:"1",title:"1 日常照料",key:"1900112597427793921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900376187661553665",title:"准备洁具",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900420873478553602",title:"棉球清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706881",title:"协助清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706885",title:"义齿清洁",tagName:"口腔"}],levle:"2",title:"口腔清洁",key:"1902597070889127938",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902636771540963329",title:"准备洁具",tagName:"头部"},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637623425077250",title:"协助洗头",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637985234128898",title:"卧式洗头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902638122949906433",title:"擦头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902638304739430401",title:"刮头",tagName:null}],levle:"2",title:"头部清洁",key:"1902597497344987137",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902641763073101826",title:"准备洁具",tagName:"面部"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642254465175553",title:"协助洁面",tagName:null}],levle:"2",title:"面部清洁",key:"1902597651405967361",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642508145070081",title:"准备洁具",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642672796667905",title:"协助清洁",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642822885642242",title:"卧床清洁",tagName:"躯干"}],levle:"2",title:"躯干清洁",key:"1902597718082818050",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643318811758594",title:"准备洁具",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643483320750082",title:"协助清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643630888947713",title:"卧床清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643837525528578",title:"肌张力高",tagName:"清洁"}],levle:"2",title:"四肢清洁",key:"1902597811565465601",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645148199391234",title:"会阴清洁",tagName:"男"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645295457210369",title:"会阴清洁",tagName:"女"}],levle:"2",title:"会阴清洁",key:"1902597873964126209",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645493185089537",title:"肛周清洁",tagName:null}],levle:"2",title:"肛周清洁",key:"1902597930020999170",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645693211447298",title:"洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647316134465538",title:"泡手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647529817477122",title:"准备洁具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647673212342274",title:"协助洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647905878773762",title:"强直屈曲洗手",tagName:null}],levle:"2",title:"手清洁",key:"1902597991698239489",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648101203316737",title:"泡脚",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648239091060737",title:"卧式泡脚",tagName:null}],levle:"2",title:"足清洁",key:"1902598178588037121",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648426383511553",title:"修睫毛",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648548777496577",title:"剃须",tagName:null}],levle:"2",title:"剃须",key:"1902598258573414401",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648962444922882",title:"角质增生",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649132536532994",title:"灰指甲",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649302149992449",title:"正常",tagName:"修甲"}],levle:"2",title:"修甲",key:"1902598354606198785",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902649683919736834",title:"理发",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"25",id:"1902649860344745985",title:"理发",tagName:"颅骨缺损"}],levle:"2",title:"理发",key:"1902598400382832642",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902650121280786434",title:"床上沐浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650408884211713",title:"深度清洁",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650763722330113",title:"浴间洗浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"30",id:"1902651229122301954",title:"床上沐浴",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651366317985794",title:"深度清洁",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651555363655682",title:"浴间洗浴",tagName:"大体重"}],levle:"2",title:"沐浴",key:"1902598454782955522",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651778777452545",title:"内套管清洁",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651924047171586",title:"更换气切纱布",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"10",id:"1902652055928672258",title:"更换气切纱布",tagName:null}],levle:"2",title:"气切消毒",key:"1902598509522817026",parentId:"1900112615777873921"}],levle:"1",title:"2 清洁照料",key:"1900112615777873921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898057679966209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898202668666881",title:"协助进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898339931459586",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898472584712194",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898590658564097",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898719952179201",title:"准备餐具",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898979948695554",title:"协助进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899086840532993",title:"协助进餐",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899214838108162",title:"鼻胃管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899325014085633",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899587028062210",title:"食物加工",tagName:null}],levle:"2",title:"加餐饮食",key:"1902596129720864770",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281139677839362",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902281522340970498",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281654100836354",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281870434648066",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902654960639381506",title:"鼻肠管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902655101874180097",title:"轮椅进餐",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902892199009030145",title:"轮椅进餐",tagName:null}],levle:"2",title:"正餐饮食",key:"1902601263850950657",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893231608926209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893551978254337",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893716466274306",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894369850757122",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894528533860354",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"辅餐饮食",key:"1902601382595891202",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894832176304129",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894954117304322",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895077522116609",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895233407619073",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895569912434689",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"果汁饮食",key:"1902601427168759809",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895878508351489",title:"准备水杯",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895984053817346",title:"协助饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896136835534850",title:"协助饮水",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896508421509122",title:"鼻胃管饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896636553302017",title:"鼻肠管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902896855802155010",title:"准备水杯",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897018344017921",title:"协助饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897464936730626",title:"协助饮水",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897675813752834",title:"鼻胃管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897803417063426",title:"鼻肠管饮水",tagName:null}],levle:"2",title:"饮水饮食",key:"1902601487625457665",parentId:"1902280495747317762"}],levle:"1",title:"3 饮食照料",key:"1902280495747317762"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902653177363927041",title:"巡视",tagName:null}],levle:"2",title:"巡视",key:"1902564741860790273",parentId:"1902560466095017986"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653325481578497",title:"防坠床",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653497066360833",title:"被褥调整",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653650917625857",title:"睡姿调整",tagName:null}],levle:"2",title:"体位调整",key:"1902564818838851585",parentId:"1902560466095017986"}],levle:"1",title:"4 睡眠照料",key:"1902560466095017986"},{children:[{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904277308510210",title:"更换尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904458779267073",title:"更换隔尿垫",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905631242424322",title:"使用尿盆",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905824973131777",title:"使用尿壶",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906220483416065",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906459051233281",title:"坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906610562076674",title:"留置尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906783325458434",title:"更换纸尿裤",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908406344945665",title:"热敷抚触排尿",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908523827400705",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909645401067522",title:"更换尿片",tagName:null}],levle:"2",title:"小便",key:"1902596314152800257",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909835331735554",title:"床上排便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910002671882242",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910156154048514",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910361008050178",title:"人工取便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910524623654913",title:"造瘘袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910700176248834",title:"坐便椅",tagName:null}],levle:"2",title:"大便",key:"1902596399423000577",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910899565072385",title:"口腔吸痰",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911047405899778",title:"气切吸痰",tagName:null}],levle:"2",title:"吸痰",key:"1902596461238652930",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911232974491650",title:"呕吐",tagName:null}],levle:"2",title:"呕吐",key:"1902596886771765250",parentId:"1902560510768549889"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902911378349068290",title:"腹腔引流护理",tagName:null}],levle:"2",title:"引流",key:"1902596940366581762",parentId:"1902560510768549889"}],levle:"1",title:"5 排泄照料",key:"1902560510768549889"}],S=s(e.defineComponent({__name:"index",props:{isshow:{type:Boolean,required:!0},darkFans:{type:Boolean,required:!0},canmove:{type:Boolean,required:!0},liang:{type:Object}},emits:["darkchange","savename","saveruler","closename","changefangkuang","changeold"],setup(t,{expose:a,emit:i}){const o=t;e.watch((()=>o.canmove),(()=>{Ee.value=!1})),e.watch((()=>o.isshow),(()=>{Ee.value=!1,ae.value=!1})),e.onMounted((()=>{}));const c=e.ref([{name:"纸尿裤",url:"/static/index/niao.png"},{name:"呕吐",url:"/static/index/tu.png"},{name:"吸痰",url:"/static/index/ou.png"},{name:"大便",url:"/static/index/baba.png"},{name:"纸尿裤",url:"/static/index/niao.png"},{name:"呕吐",url:"/static/index/tu.png"},{name:"吸痰",url:"/static/index/ou.png"},{name:"大便",url:"/static/index/baba.png"},{name:"纸尿裤",url:"/static/index/niao.png"},{name:"呕吐",url:"/static/index/tu.png"},{name:"吸痰",url:"/static/index/ou.png"},{name:"大便",url:"/static/index/baba.png"},{name:"纸尿裤",url:"/static/index/niao.png"},{name:"呕吐",url:"/static/index/tu.png"},{name:"吸痰",url:"/static/index/ou.png"},{name:"大便",url:"/static/index/baba.png"}]),s=["00","05","10","15","20","25","30","35","40","45","50","55"],d=["周一","周二","周三","周四","周五","周六","周日"],m=Array.from({length:31},((e,t)=>(t+1).toString().padStart(2,"0"))),u=e.ref(!0),v=e.ref(0),p=e.ref(0),g=e.ref(),w=e.ref([]),h=e.ref([]),f=e.ref(!1),N=e.ref(!1),y=e.ref(!1),x=e.ref(!1),E=e.ref(!1),V=e.ref(""),b=e.ref(!1),k=e.ref(1);function S(e,t){return 2*function(e,t){const l=55.9898*e+78.233*t;return Math.abs(43758.5453*Math.sin(l))%1}(e,t)}e.ref(0);const B=t=>{k.value=t.detail.current,e.nextTick((()=>{p.value=z.value}))};e.ref(0);const z=e.ref(0);function _(e){let t=e.detail.scrollTop,l=parseFloat(t.toFixed(2));z.value=l}e.ref(!0);const I=(e,t)=>!(o.canmove||o.liang.index0!==e||o.liang.index1!==t||!pe.value.includes(e+6*k.value)&&ge.value==t),U=(e,t)=>!o.canmove&&o.liang.index0===e&&o.liang.index1===t,F=(e,t,l)=>"日常"===e.cycleType?J.value.index0===t+6*k.value&&J.value.index1===l&&ae.value?"title-time-border-yellow-active-transparent":ae.value?"title-time-border-yellow-active":"title-time-border-yellow":e.cycleType?J.value.index0===t+6*k.value&&J.value.index1===l&&ae.value?"title-time-border-pouple-active-transparent":ae.value?"title-time-border-pouple-active":"title-time-border-pouple":"title-time-border",$=e.ref([{url:"/static/index/doctorsay/light/use.png",targetUrl:"/static/index/doctorsay/dark/use.png",name:"日常"},{url:"/static/index/doctorsay/light/clean.png",targetUrl:"/static/index/doctorsay/dark/clean.png",name:"清洁"},{url:"/static/index/doctorsay/light/drink.png",targetUrl:"/static/index/doctorsay/dark/drink.png",name:"饮食"},{url:"/static/index/doctorsay/light/bed.png",targetUrl:"/static/index/doctorsay/dark/bed.png",name:"睡眠"},{url:"/static/index/doctorsay/light/shi.png",targetUrl:"/static/index/doctorsay/dark/shi.png",name:"排泻"}]),M=e.ref(1),A=e.ref(0),L=e.ref(999);e.ref(!1),e.ref([]);const O=i,P=e=>{O("changeold",e)},j=e.ref(null);e.ref({});const q=e.ref(0),R=e.ref(0),W=e.ref(0),Y=e.ref(0),J=e.ref({index0:999,index1:999,typeName:""}),X=e.ref(-1),Z=e.ref(!1),H=e.ref(!1),G=e.ref([-1,-1]),Q=e.ref(""),K=e.ref(-1),ee=e.ref(!1),te=()=>{ee.value=!0,H.value=!1,setTimeout((()=>{H.value=!0}),100)},le=()=>{uni.share({provider:"weixin",scene:"WXSceneSession",type:0,href:"http://192.168.2.31:3101/daytoday",title:"护理日程分享",summary:"九泰护理日程测试",imageUrl:"https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/uni@2x.png",success:function(e){l("log","at component/rightItemssecond/index.vue:740","success:")},fail:function(e){l("log","at component/rightItemssecond/index.vue:743","fail:")}})},ae=e.ref(!1),ie=e.ref([]),re=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-q.value)>0||Math.abs(l-R.value)>0)&&j.value&&(clearTimeout(j.value),j.value=null)},ne=e.ref(null),oe=e.ref(!1);let ce=null;function se(e){oe.value=!0,ce&&clearTimeout(ce),ce=setTimeout((()=>{oe.value=!1}),400)}const de=e.ref(!1),me=e.ref(0),ue=e.ref(0),ve=e.ref(!1),pe=e.ref([]),ge=e.ref(-1),we=e.ref(""),he=e.ref("");function fe(){return!!(!Ce.value&&De.value.startTime||1===Ce.value&&De.value.startTime&&(De.value.weekTime||De.value.monthTime)||2===Ce.value)}const Ne=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-me.value)>0||Math.abs(l-ue.value)>0)&&ne.value&&(clearTimeout(ne.value),ne.value=null)},ye=()=>{ve.value=!1,ne.value&&(clearTimeout(ne.value),ne.value=null)},xe=e.ref(null),Ee=e.ref(!1),Ve=e=>{me.value=Math.floor(e.touches[0].pageX),ue.value=Math.floor(e.touches[0].pageY),xe.value=setTimeout((()=>{Ee.value=!0}),500)},be=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-me.value)>0||Math.abs(l-ue.value)>0)&&xe.value&&(clearTimeout(xe.value),xe.value=null)},ke=()=>{xe.value&&(clearTimeout(xe.value),xe.value=null)},Te=e.ref({time:"",array:[]}),De=e.ref({op:{name:"",index:[-1,-1,-1]},startTime:"",monthTime:"",weekTime:""}),Ce=e.ref(0),Se=(e,t)=>{if(we.value=t.id,he.value=t.tagName,De.value.op.index[2]===e)De.value.op.index[2]=-1,De.value.op.name="",Ce.value=-1;else switch(De.value.op.index[2]=e,De.value.op.name=t.relName,t.cycleType){case"日常护理":Ce.value=0;break;case"周期护理":Ce.value=1;break;case"即时护理":Ce.value=2}},Be=e.ref([-1,-1]);e.ref(null);const ze=async()=>{N.value=!1,u.value=!0;let t=-1,l=[];if(2===Ce.value)return v.value=1,void e.nextTick((()=>{v.value=0,c.value.unshift({name:De.value.op.name,url:"/static/index/ou.png",target:"#00a8ff"}),setTimeout((()=>{c.value[0].target="#fff"}),1500),setTimeout((()=>{c.value[0].target=""}),3e3)}));Ae.value.forEach(((e,a)=>{l=[],e.children.forEach(((e,t)=>{if(null===e.directiveName||""===e.directiveName||void 0===e.directiveName){Ae.value.every((e=>{const l=e.children[t];return void 0===l||null===l.directiveName||""===l.directiveName||void 0===l.directiveName}))&&l.push(t)}})),e.children.forEach(((e,l)=>{e.typeName==h.value[De.value.op.index[0]].children[De.value.op.index[1]].title&&(t=l)}))})),-1===t&&(t=l[0]);let a=h.value[De.value.op.index[0]].children[De.value.op.index[1]].title;await e.nextTick(),Ae.value.forEach(((e,l)=>{e.children[t].typeName=a}));let i="";Ce.value?1===Ce.value&&(i=De.value.weekTime||De.value.monthTime+"号"):i="日常";const r=Number(Te.value.time),n=Number(De.value.startTime),o=n+10,s=r+Math.floor(o/60),d=`${String(r)}:${String(n).padStart(2,"0")}`,m=`${String(s)}:${String(o%60).padStart(2,"0")}`;-1!==t?(Ae.value[Be.value[0]].children[t].startTime=d,Ae.value[Be.value[0]].children[t].endTime=m):(Ae.value[Be.value[0]].children[Be.value[1]].startTime=d,Ae.value[Be.value[0]].children[Be.value[1]].endTime=m);let g={directiveId:we.value,directiveName:De.value.op.name,startTime:d,endTime:m,positioning:Be.value[0].toString(),positioningLong:Be.value[1].toString(),tagName:he.value,cycleType:i,nuId:"1",customerId:"1",id:"",typeName:a};Ae.value[Be.value[0]].children[t]=g,Ae.value.forEach((e=>{e.children.forEach((e=>{}))}));let w={index0:Be.value[0],index1:t};$e(w);Ae.value.some((e=>{const t=e.children;return""!==t[t.length-1].directiveName.trim()}))&&(Ae.value.forEach((e=>{e.children.push({directiveName:""})})),p.value=999,e.nextTick(),p.value=9999),_e()},_e=()=>{Ae.value.forEach(((e,t)=>{e.children.forEach(((e,l)=>{let a="";if(e.directiveName||e.id)e.positioning=t,e.positioningLong=l;else{let i={};e.typeName&&(a=e.typeName),i=JSON.parse(JSON.stringify(Me.value)),a&&(i.typeName=a),i.positioning=t,i.positioningLong=l}}))}))},Ie=()=>{uni.setStorage({key:"myArray",data:Ae.value,success:function(){uni.navigateTo({url:`/pages/timeMatrix/index?currentNumber=${k.value}`})}})},Ue=e.ref({index0:-1,index1:-1}),Fe=e.ref({index0:-1,index1:-1,current:-1,bordershow:!0}),$e=e=>{p.value=0,p.value=104*e.index1,k.value===Math.floor(e.index0/6)?(Fe.value.index0=e.index0-6*k.value,Fe.value.index1=e.index1,Ue.value.index0=Fe.value.index0,Ue.value.index1=Fe.value.index1,Fe.value.current=k.value,Fe.value.bordershow=!1,setTimeout((()=>{Fe.value.index0=-1,Fe.value.index1=-1,Fe.value.current=-1}),400),setTimeout((()=>{Fe.value.bordershow=!0,Ue.value.index0=-1,Ue.value.index1=-1}),1e3)):(setTimeout((()=>{k.value=Math.floor(e.index0/6)}),100),setTimeout((()=>{Fe.value.index0=e.index0-6*k.value,Fe.value.index1=e.index1,Ue.value.index0=Fe.value.index0,Ue.value.index1=Fe.value.index1,Fe.value.current=k.value,Fe.value.bordershow=!1}),800),setTimeout((()=>{Fe.value.index0=-1,Fe.value.index1=-1,Fe.value.current=-1}),1400),setTimeout((()=>{Fe.value.bordershow=!0,Ue.value.index0=-1,Ue.value.index1=-1}),2200))};r((()=>{h.value=C,g.value=h.value[0].children,uni.$on("where",$e)})),n((()=>{uni.$off("where",$e)})),a({rulerEnd:async e=>{de.value=!1,999!==o.liang.index0&&e&&(De.value={op:{name:"",index:[-1,-1,-1]},startTime:"",monthTime:"",weekTime:""},x.value=!1,N.value=!0,setTimeout((()=>{x.value=!0}),100),De.value.op.index[0]=A.value,De.value.op.index[1]=L.value,Te.value.time=Ae.value[o.liang.index0+6*k.value].positioning,Te.value.array=h.value[A.value].children[L.value].children,Te.value.array.forEach((e=>{e.relName=e.title+(e.tagName?e.tagName.split(",").map((e=>`(${e})`)).join(""):"")})),Be.value=[o.liang.index0+6*k.value,o.liang.index1],Se(0,Te.value.array[0]))},rulerMoveEnd:e=>{if(999!==o.liang.index0&&e.cycleType){if(pe.value.includes(o.liang.index0+6*k.value)||ge.value!==o.liang.index1)return!1;Be.value=[o.liang.index0+6*k.value,o.liang.index1];let t=-1,l=[];Ae.value.forEach(((a,i)=>{l=[],a.children.forEach(((e,t)=>{if(null===e.directiveName||""===e.directiveName||void 0===e.directiveName){Ae.value.every((e=>{const l=e.children[t];return void 0===l||null===l.directiveName||""===l.directiveName||void 0===l.directiveName}))&&l.push(t)}})),a.children.forEach(((l,a)=>{l.typeName==e.typeName&&(t=a)}))})),-1===t&&(t=l[0]);let a=0,i="";Ae.value.forEach((e=>{e.children[0].value&&(a++,i=e.children[0].typeName)})),Ae.value[J.value.index0].children[J.value.index1]=a>1?{directiveName:"",typeName:i}:{directiveName:""},Ae.value[Be.value[0]].children[t]=e;let r=Ae.value[Be.value[0]].children[t].startTime,n=Ae.value[Be.value[0]].children[t].endTime,c=Ae.value[Be.value[0]].positioning;const s=r.substring(r.indexOf(":")),d=n.substring(n.indexOf(":"));Ae.value[Be.value[0]].children[t].startTime=c+s,Ae.value[Be.value[0]].children[t].endTime=c+d;Ae.value.some((e=>{const t=e.children;return""!==t[t.length-1].directiveName.trim()}))&&(Ae.value.forEach((e=>{e.children.push({directiveName:""})})),p.value=999,p.value=9999),_e()}},nextItems:()=>{0==k.value?k.value=3:k.value--}}),e.ref({index0:999,index1:999});const Me=e.ref({directiveId:"",directiveName:"",startTime:"",endTime:"",positioning:"",positioningLong:"",tagName:"",cycleType:"",nuId:"1",customerId:"1",id:"",typeName:""}),Ae=e.ref(Array.from({length:24},((e,t)=>({positioning:t.toString(),children:Array.from({length:4},(()=>({directiveName:""})))}))));function Le(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}return(l,a)=>{var i,r,n,o;return e.openBlock(),e.createElementBlock("view",{class:"right-container",style:e.normalizeStyle(t.isshow?{opacity:"1"}:{opacity:"0"}),onClick:a[22]||(a[22]=e=>{Ee.value=!1,ae.value=!1})},[e.createElementVNode("view",{class:"right-container-title-nav"},[e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," ID:12345678 ",2),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," 名称:未命名01 ",2),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("image",{class:"right-icons-img",src:"/static/index/undericons/man.png"},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"right-icons-font-dark":"right-icons-font")},"王金福",2),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/face.png":"/static/index/undericons/facelight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/hand.png":"/static/index/undericons/handlight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/out.png":"/static/index/undericons/outlight.png"},null,8,["src"])]),e.createElementVNode("view",{class:"right-container-title-class-anhei-button",onClick:a[0]||(a[0]=e=>P(0))},[e.createElementVNode("text",{class:"right-container-title-class-anhei"}," 拖动模式 ")]),e.createElementVNode("view",{class:"right-container-title-class-anhei-button-wrong",onClick:a[1]||(a[1]=e=>P(2))},[e.createElementVNode("text",{class:"right-container-title-class-anhei"}," 手柄模式 ")])]),e.createElementVNode("view",{class:"doctorsay-container-view"},[e.createElementVNode("view",{class:"doctorsay-container-container"},[e.createElementVNode("view",{class:"doctorsay-container-title"},[e.createElementVNode("view",{class:"doctorsay-container-left"},[e.createElementVNode("view",{class:"doctorsay-container-left-gun"}),e.createElementVNode("view",{class:"doctorsay-container-left-font"},"时间矩阵"),e.createElementVNode("view",{class:"doctorsay-container-share",onClick:te}," 分享 ")]),e.createElementVNode("view",{class:"doctorsay-container-right"},[e.createElementVNode("view",{class:"doctorsay-container-right-kuai-cheng"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"日常"),e.createElementVNode("view",{class:"doctorsay-container-right-kuai-zi"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"周期"),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(w.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"doctorsay-container-button-father",key:l},[e.createElementVNode("view",{class:e.normalizeClass(M.value===l?"doctorsay-container-button-target":"doctorsay-container-button"),onClick:e=>(e=>{M.value=e})(l)},e.toDisplayString(t),11,["onClick"])])))),128)),e.createElementVNode("view",{class:"doctorsay-container-juzhen",onClick:Ie}," 预览 ")])]),e.createElementVNode("view",{class:"super-card"},[e.createElementVNode("view",{class:"super-card-container"},[e.createElementVNode("view",{class:"boom"},[e.createElementVNode("view",{style:e.normalizeStyle({marginTop:`-${2*z.value}rpx`})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Ae.value[0].children,((l,a)=>(e.openBlock(),e.createElementBlock("view",{key:a},[e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(K.value===a||t.liang.index1===a&&!t.canmove||J.value.index1===a&&ae.value?"boom-son-target":"boom-son")},e.toDisplayString(l.typeName),3),[[e.vShow,l.typeName]])])))),128))],4)]),e.createElementVNode("swiper",{"disable-touch":!t.canmove||ae.value,current:k.value,class:"scroll-x",circular:"","indicator-dots":!1,onChange:B,interval:4e3,duration:500},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,2,3,4],((l,i)=>e.createElementVNode("swiper-item",{key:i},[e.createElementVNode("view",{style:{display:"flex","box-shadow":"10rpx 10rpx 20rpx rgba(0, 0, 0, 0.1)",background:"linear-gradient(to right, #c4dbf4,#c9c2ef, #c6dcf3)"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Ae.value.slice(6*i,6*(i+1)),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time",style:e.normalizeStyle(M.value?{width:"274rpx"}:{width:"206rpx"})},e.toDisplayString((1==t.positioning.length?"0"+t.positioning:t.positioning)+":00"),5)])))),128))]),e.createElementVNode("view",{style:{display:"flex",height:"calc(100% - 80rpx)"}},[e.createElementVNode("scroll-view",{style:e.normalizeStyle([{height:"100%"},M.value?{width:"6700rpx"}:{width:"5000rpx"}]),"scroll-top":p.value,"scroll-y":t.canmove&&!ae.value,onScroll:_,"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex",height:"100%"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Ae.value.slice(6*i,6*(i+1)),((l,i)=>(e.openBlock(),e.createElementBlock("view",{key:i},[e.createElementVNode("view",{class:"super-card-time-und",style:e.normalizeStyle(M.value?{width:"274rpx"}:{width:"206rpx"})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.children,((l,r)=>(e.openBlock(),e.createElementBlock("view",{style:{width:"100%"},key:r},[e.createElementVNode("view",{class:e.normalizeClass(Fe.value.current===k.value&&Fe.value.index0===i&&Fe.value.index1===r?Fe.value.index1?"title-time-border-big":"title-time-border-big-top":"super-card-time-card"),style:e.normalizeStyle([Fe.value.bordershow||Ue.value.index0!==i||Ue.value.index1!==r?{borderTop:"1rpx solid transparent"}:{zIndex:999},{position:"relative"}]),id:`a${i}_${r}`,onClick:t=>((t,l,a,i)=>{t.directiveName&&(K.value=a,uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((t=>{t.forEach((async t=>{t.left>100&&t.left<900&&t.top<570&&t.top>140&&t.dataset.index0==l&&t.dataset.index1==a&&(t.left>100&&t.left<400?W.value=Math.floor(t.left)+520:W.value=Math.floor(t.left),t.top>140&&t.top<300?Y.value=Math.floor(t.top)+250:Y.value=Math.floor(t.top),await e.nextTick(),f.value=!0,y.value=!1,setTimeout((()=>{y.value=!0}),100))}))})).exec())})(l,i,r),onTouchstart:e=>((e,t,l,a)=>{p.value=z.value,pe.value=[];let i=-1;q.value=Math.floor(a.touches[0].pageX),R.value=Math.floor(a.touches[0].pageY),j.value=setTimeout((()=>{e.directiveName&&(Ae.value.forEach(((t,l)=>{t.children.forEach((t=>{t.typeName===e.typeName&&t.directiveName&&pe.value.push(l),t.directiveName&&(i=l)}))})),pe.value.length?ge.value=l:ge.value=i+1,J.value.typeName=e.typeName,J.value.index0=t+6*k.value,J.value.index1=l,Be.value=[-1,-1],ie.value=[],ve.value=!0,uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((e=>{e.forEach((async e=>{e.left>100&&e.left<900&&e.top<570&&e.top>140&&ie.value.push(e)}))})).exec(),O("saveruler",e,ie.value),ae.value=!0)}),100)})(l,i,r,e),onTouchmove:re,onTouchend:a[2]||(a[2]=e=>(ve.value=!1,void(j.value&&(clearTimeout(j.value),j.value=null)))),"data-index0":i,"data-index1":r},[l.directiveName&&ae.value?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time-delete",onClick:e.withModifiers((e=>((e,t,l)=>{G.value=[-1,-1],ae.value=!1,Ee.value=!1,b.value=!1,E.value=!0,G.value=[t+6*k.value,l],V.value=e.directiveName,Q.value=e.id,setTimeout((()=>{b.value=!0}),100)})(l,i,r)),["stop"])}," - ",8,["onClick"])),[[e.vShow,t.liang.index0!==i||t.liang.index1!==r||t.canmove]]):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("view",{class:"title-time-blue"},[e.createElementVNode("image",{class:"title-time-blue-img",src:I(i,r)?"/static/index/movemode/targetcheng.png":"/static/index/movemode/target.png"},null,8,["src"])],512),[[e.vShow,U(i,r)]]),e.createElementVNode("view",{class:e.normalizeClass(F(l,i,r)),style:e.normalizeStyle([{"font-size":"30rpx",overflow:"hidden"},{animationDelay:`-${S(i,r).toFixed(2)}s`}])},[l.startTime?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time",style:{"margin-top":"5rpx"}},[e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"30rpx"}},e.toDisplayString(l.startTime+"-"+l.endTime),1),e.createElementVNode("image",{class:"title-time-button",src:"日常"==l.cycleType?"/static/index/yellowbian.png":"/static/index/puoplebian.png"},null,8,["src"]),e.createElementVNode("view",{class:"title-time-font"},e.toDisplayString(l.cycleType),1)],512)),[[e.vShow,t.liang.index0!==i||t.liang.index1!==r||t.canmove]]):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("view",{style:{"margin-top":"20rpx","font-weight":"700"}},e.toDisplayString(Le(l.directiveName)[0]),513),[[e.vShow,t.liang.index0!==i||t.liang.index1!==r||t.canmove]]),Le(l.directiveName)[1]?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:1,class:"down-icons",style:e.normalizeStyle("日常"!=l.cycleType?{backgroundColor:"rgb(212,203,255)"}:{})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Le(l.directiveName).slice(1),((t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"",key:a},[e.createElementVNode("view",{class:"icon",style:e.normalizeStyle("日常"!=l.cycleType?{backgroundColor:"rgb(123,97,255)"}:{})},e.toDisplayString(Le(l.directiveName)[a+1]),5)])))),128))],4)),[[e.vShow,t.liang.index0!==i||t.liang.index1!==r||t.canmove]]):e.createCommentVNode("",!0)],6)],46,["id","onClick","onTouchstart","data-index0","data-index1"])])))),128))],4)])))),128))])],44,["scroll-top","scroll-y"])])]))),64))],40,["disable-touch","current"])])]),e.createElementVNode("view",{class:"super-card-end"},[e.createElementVNode("view",{class:"super-end-father"},[e.createElementVNode("view",{class:"super-end-font-father"},[e.createElementVNode("view",{class:"super-end-font-gun"}),e.createElementVNode("view",{class:"super-end-font-font"},"即时指令")]),e.createElementVNode("scroll-view",{"scroll-x":"",class:"super-end-items-all","scroll-left":v.value},[e.createElementVNode("view",{class:"super-end-items"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{onTouchstart:Ve,onTouchmove:be,onTouchend:ke,style:e.normalizeStyle(t.target?{background:t.target,transition:"all 1.5s ease-in-out"}:{transition:"all 1.5s ease-in-out"}),class:"super-end-items-father"},[e.withDirectives(e.createElementVNode("view",{class:"super-end-items-father-close-father",onClick:e.withModifiers((e=>((e,t)=>{Ee.value=!1,X.value=e,ae.value=!1,H.value=!1,Z.value=!0,V.value=t,setTimeout((()=>{H.value=!0}),100)})(l,t.name)),["stop"])}," - ",8,["onClick"]),[[e.vShow,Ee.value]]),e.createElementVNode("view",{style:e.normalizeStyle({animationDelay:`-${.1*l}s`}),class:e.normalizeClass(Ee.value?"super-end-items-img-father-active":"super-end-items-img-father")},[e.createElementVNode("image",{class:"super-end-items-img",src:t.url},null,8,["src"])],6),e.createElementVNode("view",{class:"super-end-items-font"},e.toDisplayString(t.name),1)],36)])))),128))])],8,["scroll-left"])])])]),e.createElementVNode("view",{class:"doctorsay-container-items"},[e.createElementVNode("view",{class:"doctorsay-container-up"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList($.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>(e=>{A.value=e,g.value=h.value[e].children,L.value=999})(l)},[e.createElementVNode("view",{class:"doctorsay-container-card",style:e.normalizeStyle(l===A.value?{background:"linear-gradient(to right bottom, #00c9ff, #0076ff)"}:{})},[e.createElementVNode("image",{class:"doctorsay-container-card-img",src:l===A.value?t.targetUrl:t.url},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(l===A.value?"doctorsay-container-card-font-dark":"doctorsay-container-card-font")},e.toDisplayString(t.name),3)],4)],8,["onClick"])))),128)),e.createElementVNode("view",null,[e.createElementVNode("view",{class:"doctorsay-container-card",style:{background:"linear-gradient(135deg, #01e7be 0%, #0080dd 100%)"}},[e.createElementVNode("image",{class:"doctorsay-container-card-img",src:"/static/index/shexiang.png"}),e.createElementVNode("view",{class:"doctorsay-container-card-font-dark"}," 监控 ")])])]),e.createElementVNode("view",{class:"doctorsay-container-down"},[e.createElementVNode("view",{class:"doctorsay-top"},[e.createElementVNode("view",{class:"doctorsay-top-gun"}),e.createElementVNode("view",{class:"doctorsay-top-font"},"服务类型")]),e.createElementVNode("scroll-view",{"scroll-y":t.canmove,class:"doctorsay-container-scroll",onScroll:se},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"doctorsay-container-button",onClick:e=>L.value=l,onTouchstart:e=>((e,t,l)=>{p.value=z.value,ae.value=!1,me.value=Math.floor(l.touches[0].pageX),ue.value=Math.floor(l.touches[0].pageY),ne.value=setTimeout((()=>{if(pe.value=[],oe.value)return;let l=-1,a=-1;Ae.value.forEach(((t,i)=>{t.children.forEach(((t,r)=>{t.typeName===e.title&&t.directiveName&&(pe.value.push(i),l=r),t.directiveName&&r>a&&(a=r)}))})),pe.value.length?ge.value=l:ge.value=a+1,de.value=!0,L.value=t,Be.value=[-1,-1],ve.value=!0,ie.value=[],uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((e=>{e.forEach((e=>{e.left>100&&e.left<900&&e.top<570&&e.top>140&&ie.value.push(e)}))})).exec(),O("savename",e.title,ie.value)}),200)})(t,l,e),onTouchmove:Ne,onTouchend:ye},[e.createElementVNode("text",{class:e.normalizeClass(L.value===l?"doctorsay-container-text-target":"doctorsay-container-text"),style:e.normalizeStyle({backgroundColor:t.color?t.color:"",...de.value?{}:{width:"250rpx",height:"75rpx",fontSize:"30rpx",borderRadius:"25rpx"}})},e.toDisplayString(t.title),7),e.withDirectives(e.createElementVNode("image",{class:"doctorsay-container-button-uplight",style:e.normalizeStyle(de.value?{}:{top:"30rpx"}),src:"/static/index/cardicons/uplight.png"},null,12,["src"]),[[e.vShow,L.value===l]])],40,["onClick","onTouchstart"])])))),128))],40,["scroll-y"])])])]),e.withDirectives(e.createElementVNode("view",{class:"popup-overlay",onClick:a[4]||(a[4]=e=>{f.value=!1,J.value.index0=999,K.value=-1})},[e.createElementVNode("view",{class:"popup-overlay-content",style:e.normalizeStyle({top:2*Y.value-350+"rpx",left:2*W.value-780+"rpx",opacity:y.value?1:0,backgroundColor:"日常"===(null==(r=null==(i=Ae.value[J.value.index0])?void 0:i.children[J.value.index1])?void 0:r.type)?"#fffcf6":"rgb(246, 244, 254)"}),onClick:a[3]||(a[3]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-overlay-content-left"},[e.createElementVNode("image",{class:"popup-overlay-content-left-img",src:"/static/index/teeth.png"},null,8,["src"]),e.createElementVNode("text",{class:"popup-overlay-content-left-font"},e.toDisplayString(null==(o=null==(n=Ae.value[J.value.index0])?void 0:n.children[J.value.index1])?void 0:o.value),1)]),e.createElementVNode("view",{class:"popup-overlay-content-right"},[e.createElementVNode("view",{class:"time-font"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"time-text"}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ")])],4)],512),[[e.vShow,f.value]]),N.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"popup-song",onClick:a[11]||(a[11]=e=>N.value=!1)},[e.createElementVNode("view",{class:"popup-song-contain",style:e.normalizeStyle({opacity:x.value?1:0}),onClick:a[10]||(a[10]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-song-father"},[e.createElementVNode("image",{class:"shu-up-img",src:"/static/index/cheng.png"}),e.createElementVNode("view",{class:"shu-up-font"},[e.createElementVNode("view",{class:""}," 服务时段:"+e.toDisplayString(Te.value.time+":00"),1),e.createElementVNode("view",{style:{"margin-left":"30rpx"}}," 护理时长:10分钟 ")]),e.createElementVNode("view",{class:"shu-container-left"},[e.createElementVNode("view",{class:"shu-container-left-gun"}),e.createElementVNode("view",{class:"shu-container-left-font"},"服务指令")]),e.createElementVNode("view",{class:"arrayindex"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Te.value.array,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{style:{position:"relative","box-shadow":"10rpx 10rpx 20rpx rgba(105, 129, 178, 0.4)"},class:e.normalizeClass(De.value.op.index[2]===l?"arrayindex-one-target":"arrayindex-one"),onClick:e=>Se(l,t)},[e.withDirectives(e.createElementVNode("image",{class:"ri-img",src:De.value.op.index[2]!==l?"/static/index/ridark.png":"/static/index/ri.png"},null,8,["src"]),[[e.vShow,"日常护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"ri-img",src:De.value.op.index[2]==l?"/static/index/zhoudark.png":"/static/index/zhou.png"},null,8,["src"]),[[e.vShow,"周期护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"ri-img",src:De.value.op.index[2]==l?"/static/index/jidark.png":"/static/index/ji.png"},null,8,["src"]),[[e.vShow,"即时护理"===t.cycleType]]),e.createTextVNode(" "+e.toDisplayString(t.relName),1)],10,["onClick"])])))),128))]),e.withDirectives(e.createElementVNode("view",{class:"shu-container-left",style:{"margin-top":"50rpx"}},[e.createElementVNode("view",{class:"shu-container-left-gun"}),e.createElementVNode("view",{class:"shu-container-left-font"},"开始分钟")],512),[[e.vShow,2!=Ce.value]]),e.withDirectives(e.createElementVNode("view",{class:"time-father"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(s,((t,l)=>e.createElementVNode("view",{key:l},[e.withDirectives(e.createElementVNode("view",{class:"time-one-hui"},e.toDisplayString(t),513),[[e.vShow,Number(t)>=50]]),e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(De.value.startTime===t?"time-one-target":"time-one"),onClick:e=>(e=>{De.value.startTime==e?De.value.startTime="":De.value.startTime=e})(t)},e.toDisplayString(t),11,["onClick"]),[[e.vShow,Number(t)<50]])]))),64))],512),[[e.vShow,2!=Ce.value]]),e.withDirectives(e.createElementVNode("view",{class:"shu-container-left",style:{"margin-top":"50rpx"}},[e.createElementVNode("view",{class:"shu-container-left-gun"}),e.createElementVNode("view",{class:"shu-container-left-font"},"周期类型")],512),[[e.vShow,1==Ce.value]]),e.withDirectives(e.createElementVNode("view",{class:"radio-father"},[e.createElementVNode("view",{class:e.normalizeClass(u.value?"radio-circle-target":"radio-circle"),onClick:a[5]||(a[5]=e=>{u.value=!0,De.value.monthTime=""})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:a[6]||(a[6]=e=>{u.value=!0,De.value.monthTime=""})},"每周"),e.createElementVNode("view",{class:e.normalizeClass(u.value?"radio-circle":"radio-circle-target"),onClick:a[7]||(a[7]=e=>{u.value=!1,De.value.weekTime=""})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:a[8]||(a[8]=e=>{u.value=!1,De.value.weekTime=""})},"每月")],512),[[e.vShow,1==Ce.value]]),e.withDirectives(e.createElementVNode("view",{class:"week-father"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(d,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(De.value.weekTime===t?"week-one-target":"week-one"),onClick:e=>(e=>{De.value.weekTime==e?De.value.weekTime="":De.value.weekTime=e})(t)},e.toDisplayString(t),11,["onClick"])]))),64))],512),[[e.vShow,u.value&&1==Ce.value]]),e.withDirectives(e.createElementVNode("view",{class:"month-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(e.unref(m),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(De.value.monthTime===t?"month-one-target":"month-one"),onClick:e=>(e=>{De.value.monthTime==e?De.value.monthTime="":De.value.monthTime=e})(t)},e.toDisplayString(t),11,["onClick"])])))),128))],512),[[e.vShow,!u.value&&1==Ce.value]]),e.createElementVNode("view",{class:"button-father"},[e.createElementVNode("view",{style:{display:"flex"}},[e.withDirectives(e.createElementVNode("view",{class:"button-father-right",onClick:ze}," 确定 ",512),[[e.vShow,fe()]]),e.withDirectives(e.createElementVNode("view",{class:"button-father-wrong"}," 确定 ",512),[[e.vShow,!fe()]]),e.createElementVNode("view",{class:"button-father-wrong",onClick:a[9]||(a[9]=e=>N.value=!1),style:{"margin-left":"20rpx"}}," 取消 ")])])])],4)])):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("view",{class:"popup-delete",onClick:a[15]||(a[15]=e=>E.value=!1)},[e.createElementVNode("view",{class:"popup-delete-content",style:e.normalizeStyle({opacity:b.value?1:0}),onClick:a[14]||(a[14]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("image",{class:"popup-delete-img",src:T}),e.createElementVNode("view",{class:"popup-delete-text"}," 确定要删除 "+e.toDisplayString(V.value)+" 吗? ",1),e.createElementVNode("view",{class:"popup-delete-button"},[e.createElementVNode("view",{class:"popup-delete-button-right",onClick:a[12]||(a[12]=e=>E.value=!1)}," 取消 "),e.createElementVNode("view",{class:"popup-delete-button-left",onClick:a[13]||(a[13]=e=>((e,t)=>{Ae.value[e].children[t]={directiveName:""},f.value=!1,J.value.index0=999,J.value.index1=999;let l=[],a=0;Ae.value.forEach(((e,t)=>{l=[],a=e.children.length,e.children.forEach(((e,t)=>{null!==e.directiveName&&""!==e.directiveName&&void 0!==e.directiveName||Ae.value.every((e=>{const l=e.children[t];return void 0===l||null===l.directiveName||""===l.directiveName||void 0===l.directiveName}))&&l.push(t)}))})),a>4&&l.length>1?Ae.value.forEach(((e,t)=>{e.children.splice(l[0],1)})):Ae.value.forEach(((e,t)=>{e.children.splice(l[0],1),e.children.push({directiveName:""})})),E.value=!1,_e()})(G.value[0],G.value[1]))}," 确定 ")])],4)],512),[[e.vShow,E.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-delete",onClick:a[19]||(a[19]=e=>Z.value=!1)},[e.createElementVNode("view",{class:"popup-delete-content",style:e.normalizeStyle({opacity:H.value?1:0}),onClick:a[18]||(a[18]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("image",{class:"popup-delete-img",src:T}),e.createElementVNode("view",{class:"popup-delete-text"}," 确定要删除 "+e.toDisplayString(V.value)+" 吗? ",1),e.createElementVNode("view",{class:"popup-delete-button"},[e.createElementVNode("view",{class:"popup-delete-button-right",onClick:a[16]||(a[16]=e=>Z.value=!1)}," 取消 "),e.createElementVNode("view",{class:"popup-delete-button-left",onClick:a[17]||(a[17]=e=>{c.value.splice(X.value,1),Z.value=!1})}," 确定 ")])],4)],512),[[e.vShow,Z.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-share",onClick:a[21]||(a[21]=e=>ee.value=!1)},[e.createElementVNode("view",{class:"popup-share-content",style:e.normalizeStyle({opacity:H.value?1:0}),onClick:a[20]||(a[20]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-share-title"},[e.createTextVNode(" 护理日程分享 "),e.createElementVNode("image",{class:"popup-share-img",src:D})]),e.createElementVNode("view",{class:"popup-share-upcontent"},[e.createElementVNode("view",{class:"popup-share-font"},"久泰护理日程分享测试")]),e.createElementVNode("view",{class:"popup-share-gray"}),e.createElementVNode("view",{class:"popup-share-downcontent"},[e.createElementVNode("view",{class:"popup-share-downcontent-left"},[e.createElementVNode("image",{class:"popup-downcontent-img",src:D}),e.createElementVNode("view",{class:"popup-downcontent-font"},"久泰护理")]),e.createElementVNode("view",{class:"popup-share-downcontent-button",onClick:le}," 分享 ")])],4)],512),[[e.vShow,ee.value]])],4)}}}),[["__scopeId","data-v-81c0d68b"]]),B="/static/index/ku.png",z="/static/index/ren.png",_="/static/index/tu.png",I=[{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706886",title:"协助喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604232524795905",title:"鼻饲喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604428667228162",title:"注射器/吸管喂药",tagName:"头部,大体重"}],levle:"2",title:"协助喂药",key:"1900114812020310017",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605892869394433",title:"一级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606105021485058",title:"二级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606339931869185",title:"三级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606614344208386",title:"一级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606869953482753",title:"二级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607023431454722",title:"三级压疮防护",tagName:"大体重"}],levle:"2",title:"压疮防护",key:"1900115034452639746",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706887",title:"床椅转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706888",title:"床椅转移",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605073730211842",title:"床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605223185846273",title:"床椅转移",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605365393723393",title:"协助床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605496071458818",title:"协助床椅转移",tagName:null}],levle:"2",title:"床椅转移",key:"1902248363784159233",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607507626102786",title:"轮椅防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607677415723010",title:"轮椅防护",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902607817589362689",title:"轮椅防护",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902608061588803585",title:"轮椅防护",tagName:"大体重"}],levle:"2",title:"轮椅防护",key:"1902280900178886657",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608564582322178",title:"约束位按摩",tagName:"手"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608974609092610",title:"约束位按摩",tagName:"足"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618507855237121",title:"约束位按摩",tagName:"全"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618751548493825",title:"防护网约束",tagName:null}],levle:"2",title:"约束防护",key:"1902280933364219906",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620309090701314",title:"协助行走",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620486044192769",title:"放松按摩",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902625161569079298",title:"心灵慰藉",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902625402468929537",title:"狂躁",tagName:null}],levle:"2",title:"按摩保健",key:"1902564031454744577",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902625872432304130",title:"准备衣物",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626005538541569",title:"协助更换",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626664711163905",title:"肢体障碍",tagName:"半侧"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626800510144513",title:"肢体障碍",tagName:"全身"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627064688381953",title:"准备衣物",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627280716009474",title:"协助更换",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627416598876161",title:"肢体障碍",tagName:"半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627522404388866",title:"肢体障碍",tagName:"全身"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902627711806574593",title:"协助更换",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628058591629313",title:"肢体障碍",tagName:"半侧,大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628650718302209",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628837725540354",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628966847188993",title:"肢体障碍",tagName:"大体重,半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902629129879785474",title:"协助更换",tagName:"大体重"}],levle:"2",title:"更换衣物",key:"1902564088417587201",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629344456183809",title:"坐起",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629492301205506",title:"躺下",tagName:null}],levle:"2",title:"调整坐卧",key:"1902564199830884354",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902630862769065985",title:"遗体净身",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902631162275926017",title:"遗体穿衣",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631422431825921",title:"遗体转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631602463936514",title:"床位消毒",tagName:null}],levle:"2",title:"殡仪服务",key:"1902564263743688705",parentId:"1900112597427793921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902631830441136129",title:"更换床上用品",tagName:"全部"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632063828987905",title:"隔尿褥子更换",tagName:null}],levle:"2",title:"更换床上用品",key:"1902564446648897538",parentId:"1900112597427793921"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632288270389250",title:"临终护理",tagName:null}],levle:"2",title:"临终服务",key:"1902564503783706625",parentId:"1900112597427793921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"40",id:"1902632678701371393",title:"制氧机吸氧",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902632799853842433",title:"制氧机维护",tagName:null}],levle:"2",title:"制氧机应用",key:"1902564586101116930",parentId:"1900112597427793921"}],levle:"1",title:"1 日常照料",key:"1900112597427793921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900376187661553665",title:"准备洁具",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900420873478553602",title:"棉球清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706881",title:"协助清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706885",title:"义齿清洁",tagName:"口腔"}],levle:"2",title:"口腔清洁",key:"1902597070889127938",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902636771540963329",title:"准备洁具",tagName:"头部"},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637623425077250",title:"协助洗头",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637985234128898",title:"卧式洗头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902638122949906433",title:"擦头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902638304739430401",title:"刮头",tagName:null}],levle:"2",title:"头部清洁",key:"1902597497344987137",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902641763073101826",title:"准备洁具",tagName:"面部"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642254465175553",title:"协助洁面",tagName:null}],levle:"2",title:"面部清洁",key:"1902597651405967361",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642508145070081",title:"准备洁具",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642672796667905",title:"协助清洁",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642822885642242",title:"卧床清洁",tagName:"躯干"}],levle:"2",title:"躯干清洁",key:"1902597718082818050",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643318811758594",title:"准备洁具",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643483320750082",title:"协助清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643630888947713",title:"卧床清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643837525528578",title:"肌张力高",tagName:"清洁"}],levle:"2",title:"四肢清洁",key:"1902597811565465601",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645148199391234",title:"会阴清洁",tagName:"男"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645295457210369",title:"会阴清洁",tagName:"女"}],levle:"2",title:"会阴清洁",key:"1902597873964126209",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645493185089537",title:"肛周清洁",tagName:null}],levle:"2",title:"肛周清洁",key:"1902597930020999170",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645693211447298",title:"洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647316134465538",title:"泡手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647529817477122",title:"准备洁具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647673212342274",title:"协助洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647905878773762",title:"强直屈曲洗手",tagName:null}],levle:"2",title:"手清洁",key:"1902597991698239489",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648101203316737",title:"泡脚",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648239091060737",title:"卧式泡脚",tagName:null}],levle:"2",title:"足清洁",key:"1902598178588037121",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648426383511553",title:"修睫毛",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648548777496577",title:"剃须",tagName:null}],levle:"2",title:"剃须",key:"1902598258573414401",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648962444922882",title:"角质增生",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649132536532994",title:"灰指甲",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649302149992449",title:"正常",tagName:"修甲"}],levle:"2",title:"修甲",key:"1902598354606198785",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902649683919736834",title:"理发",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"25",id:"1902649860344745985",title:"理发",tagName:"颅骨缺损"}],levle:"2",title:"理发",key:"1902598400382832642",parentId:"1900112615777873921"},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902650121280786434",title:"床上沐浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650408884211713",title:"深度清洁",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650763722330113",title:"浴间洗浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"30",id:"1902651229122301954",title:"床上沐浴",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651366317985794",title:"深度清洁",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651555363655682",title:"浴间洗浴",tagName:"大体重"}],levle:"2",title:"沐浴",key:"1902598454782955522",parentId:"1900112615777873921"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651778777452545",title:"内套管清洁",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651924047171586",title:"更换气切纱布",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"10",id:"1902652055928672258",title:"更换气切纱布",tagName:null}],levle:"2",title:"气切消毒",key:"1902598509522817026",parentId:"1900112615777873921"}],levle:"1",title:"2 清洁照料",key:"1900112615777873921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898057679966209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898202668666881",title:"协助进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898339931459586",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898472584712194",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898590658564097",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898719952179201",title:"准备餐具",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898979948695554",title:"协助进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899086840532993",title:"协助进餐",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899214838108162",title:"鼻胃管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899325014085633",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899587028062210",title:"食物加工",tagName:null}],levle:"2",title:"加餐饮食",key:"1902596129720864770",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281139677839362",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902281522340970498",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281654100836354",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281870434648066",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902654960639381506",title:"鼻肠管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902655101874180097",title:"轮椅进餐",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902892199009030145",title:"轮椅进餐",tagName:null}],levle:"2",title:"正餐饮食",key:"1902601263850950657",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893231608926209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893551978254337",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893716466274306",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894369850757122",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894528533860354",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"辅餐饮食",key:"1902601382595891202",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894832176304129",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894954117304322",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895077522116609",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895233407619073",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895569912434689",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"果汁饮食",key:"1902601427168759809",parentId:"1902280495747317762"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895878508351489",title:"准备水杯",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895984053817346",title:"协助饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896136835534850",title:"协助饮水",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896508421509122",title:"鼻胃管饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896636553302017",title:"鼻肠管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902896855802155010",title:"准备水杯",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897018344017921",title:"协助饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897464936730626",title:"协助饮水",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897675813752834",title:"鼻胃管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897803417063426",title:"鼻肠管饮水",tagName:null}],levle:"2",title:"饮水饮食",key:"1902601487625457665",parentId:"1902280495747317762"}],levle:"1",title:"3 饮食照料",key:"1902280495747317762"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902653177363927041",title:"巡视",tagName:null}],levle:"2",title:"巡视",key:"1902564741860790273",parentId:"1902560466095017986"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653325481578497",title:"防坠床",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653497066360833",title:"被褥调整",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653650917625857",title:"睡姿调整",tagName:null}],levle:"2",title:"体位调整",key:"1902564818838851585",parentId:"1902560466095017986"}],levle:"1",title:"4 睡眠照料",key:"1902560466095017986"},{children:[{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904277308510210",title:"更换尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904458779267073",title:"更换隔尿垫",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905631242424322",title:"使用尿盆",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905824973131777",title:"使用尿壶",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906220483416065",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906459051233281",title:"坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906610562076674",title:"留置尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906783325458434",title:"更换纸尿裤",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908406344945665",title:"热敷抚触排尿",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908523827400705",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909645401067522",title:"更换尿片",tagName:null}],levle:"2",title:"小便",key:"1902596314152800257",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909835331735554",title:"床上排便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910002671882242",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910156154048514",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910361008050178",title:"人工取便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910524623654913",title:"造瘘袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910700176248834",title:"坐便椅",tagName:null}],levle:"2",title:"大便",key:"1902596399423000577",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910899565072385",title:"口腔吸痰",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911047405899778",title:"气切吸痰",tagName:null}],levle:"2",title:"吸痰",key:"1902596461238652930",parentId:"1902560510768549889"},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911232974491650",title:"呕吐",tagName:null}],levle:"2",title:"呕吐",key:"1902596886771765250",parentId:"1902560510768549889"},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902911378349068290",title:"腹腔引流护理",tagName:null}],levle:"2",title:"引流",key:"1902596940366581762",parentId:"1902560510768549889"}],levle:"1",title:"5 排泄照料",key:"1902560510768549889"}],U=s(e.defineComponent({__name:"joysticknew",props:{getblue:{type:Boolean,default:!1},movebottom:{type:Number,default:0},moveright:{type:Number,default:110},pao:{type:Boolean,default:!0},notext:{type:Boolean,default:!1}},emits:["movecard"],setup(t,{emit:l}){const a=l,i=e.ref(-1);let r=null,n=null,o=!1;const c=e.ref(-1),s=e.reactive({x:0,y:0}),d=e.ref(!1),m=e.ref(!1),u=e.ref(0),v=uni.upx2px(175),p=uni.upx2px(350);uni.upx2px(-50);const g=uni.upx2px(100),w=uni.getSystemInfoSync().windowHeight-g-p,h=t,f=e.ref(!1),N=e.ref(0);function y(e,t){if(!o){if(V(),i.value=e,a("movecard",e),(null==t?void 0:t.touches)&&t.touches.length){const e=t.touches[0];k(e.pageX,e.pageY)}m.value=!1,u.value++,c.value=e,setTimeout((()=>{c.value=-1}),300),setTimeout((()=>{m.value=!0}),16),r=setTimeout((()=>{i.value=-1,r=null}),300)}}function x(e,t){b(),o=!0,d.value=!0,c.value=e;const l=((null==t?void 0:t.touches)||[])[0];l&&k(l.pageX,l.pageY),i.value=e,a("movecard",e),n=setInterval((()=>{i.value=e,a("movecard",e)}),500)}function E(){V(),b(),o=!1,d.value=!1,i.value=-1,c.value=-1}function V(){r&&(clearTimeout(r),r=null)}function b(){n&&(clearInterval(n),n=null)}function k(e,t){let l=e,a=t-w-50+h.movebottom/2;const i=l-v,r=a-v;if(Math.sqrt(i*i+r*r)>v){const e=Math.atan2(r,i);l=v+v*Math.cos(e),a=v+v*Math.sin(e)}s.x=l,s.y=a}function T(e){var t;if(!o)return;const l=((null==(t=e.detail)?void 0:t.touches)||e.touches||[])[0];l&&k(l.pageX,l.pageY)}return e.ref(0),e.watch((()=>h.getblue),(e=>{})),e.onBeforeUnmount((()=>{})),(l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"move-circle",style:e.normalizeStyle({bottom:`${t.movebottom}rpx`,right:`${t.moveright}rpx`}),onTouchmove:T,onTouchend:E,onTouchcancel:E},[e.withDirectives(e.createElementVNode("image",{src:"/static/index/camera/arrow1.png",class:"move-circle-all"},null,512),[[e.vShow,-1==c.value||4==c.value]]),e.withDirectives(e.createElementVNode("image",{src:"/static/index/camera/arrow3.png",class:"move-circle-all"},null,512),[[e.vShow,3==c.value]]),e.withDirectives(e.createElementVNode("image",{src:"/static/index/camera/arrow5.png",class:"move-circle-all"},null,512),[[e.vShow,2==c.value]]),e.withDirectives(e.createElementVNode("image",{src:"/static/index/camera/arrow4.png",class:"move-circle-all"},null,512),[[e.vShow,0==c.value]]),e.withDirectives(e.createElementVNode("image",{src:"/static/index/camera/arrow2.png",class:"move-circle-all"},null,512),[[e.vShow,1==c.value]]),f.value?(e.openBlock(),e.createElementBlock("view",{class:"pulse-circle",key:N.value})):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"click-box-top",onClick:a[0]||(a[0]=e=>y(0,e)),onLongpress:a[1]||(a[1]=e=>x(0,e))},null,32),e.createElementVNode("view",{class:"click-box-left",onClick:a[2]||(a[2]=e=>y(3,e)),onLongpress:a[3]||(a[3]=e=>x(3,e))},null,32),e.createElementVNode("view",{class:"click-box-bottom",onClick:a[4]||(a[4]=e=>y(2,e)),onLongpress:a[5]||(a[5]=e=>x(2,e))},null,32),e.createElementVNode("view",{class:"click-box-right",onClick:a[6]||(a[6]=e=>y(1,e)),onLongpress:a[7]||(a[7]=e=>x(1,e))},null,32),e.createElementVNode("view",{class:"click-box-center",onClick:a[8]||(a[8]=e=>y(4,e)),onLongpress:a[9]||(a[9]=e=>x(4,e))},null,32)],36))}}),[["__scopeId","data-v-a880c760"]]),F=s(e.defineComponent({__name:"index",props:{isshow:{type:Boolean,required:!0},darkFans:{type:Boolean,required:!0},canmove:{type:Boolean,required:!0},liang:{type:Object},isold:{type:Boolean,required:!0}},emits:["darkchange","savename","saveruler","closename","changefangkuang","changeold"],setup(t,{expose:a,emit:i}){const o=t;e.watch((()=>o.isold),(()=>{o.isold&&(te.value.index0=9,te.value.index1=0,Oe(),h.value=1,f.value=1,e.nextTick((()=>{f.value=0,h.value=605})))})),e.watch((()=>o.canmove),(()=>{ye.value=!1})),e.watch((()=>o.isshow),((t,l)=>{t!==l&&(ye.value=!1,ve.value=!1,Ie.value?Ie.value--:(te.value.index0=9,te.value.index1=0,Oe(),h.value=1,f.value=1,e.nextTick((()=>{f.value=0,h.value=605}))))}));const c=e.ref([{name:"纸尿裤",url:"/static/index/niao.png",target:"#fff",id:-1},{name:"呕吐",url:"/static/index/tu.png",target:"#fff",id:-1},{name:"吸痰",url:"/static/index/ou.png",target:"#fff",id:-1},{name:"大便",url:"/static/index/baba.png",target:"#fff",id:-1},{name:"纸尿裤",url:"/static/index/niao.png",target:"#fff",id:-1},{name:"呕吐",url:"/static/index/tu.png",target:"#fff",id:-1},{name:"吸痰",url:"/static/index/ou.png",target:"#fff",id:-1},{name:"大便",url:"/static/index/baba.png",target:"#fff",id:-1}]),s=["狂躁","正常","大体重","口腔","小体重","头部","面部","躯干","四肢","修甲","颅骨缺损"],d=["周一","周二","周三","周四","周五","周六","周日"],m=Array.from({length:31},((e,t)=>(t+1).toString().padStart(2,"0"))),u=e.ref(!0),v=e.ref(!1),p=e.ref(0),g=e.ref(0),w=e.ref(0),h=e.ref(678),f=e.ref(0),N=e.ref();e.ref([]);const y=e.ref(!1),x=e.ref([]),E=e.ref(!1);e.ref(!1);const V=e.ref(!1);e.ref(!1),e.ref(!1),e.ref(""),e.ref(!1);const b=e.ref(!1);e.ref("");const k=e.ref(!1);e.ref(0),e.ref(0),e.ref(6),e.ref(11),e.ref(0),e.ref(3);const T=e.ref(!1);e.onMounted((()=>{}));const C=e.ref(0);const S=()=>{let e=JSON.parse(JSON.stringify($e.value[oe.value.index0].children[oe.value.index1]));be.value=[te.value.index0,te.value.index1];let t=$e.value[oe.value.index0].children[oe.value.index1].typeName;$e.value[oe.value.index0].children[oe.value.index1]={directiveName:"",typeName:t};let l=$e.value[be.value[0]].children[be.value[1]].typeName;$e.value[be.value[0]].children[be.value[1]]=e,$e.value[be.value[0]].children[be.value[1]].typeName=l;let a=$e.value[be.value[0]].children[be.value[1]].startTime,i=$e.value[be.value[0]].children[be.value[1]].endTime,r=$e.value[be.value[0]].positioning;const n=a.split(":")[1],o=i.split(":")[1];let c=Number(o)-Number(n),s=l,d=Number(s)+c;$e.value[be.value[0]].children[be.value[1]].startTime=r+":"+s.padStart(2,"0"),$e.value[be.value[0]].children[be.value[1]].endTime=r+":"+String(d%60).padStart(2,"0"),oe.value.index0=-1,oe.value.index1=-1,T.value=!1;let m={index0:te.value.index0,index1:te.value.index1};Ue(m)},F=()=>{P.value=!1,T.value?S():$e.value[te.value.index0].children[te.value.index1].directiveName&&(oe.value.index0=te.value.index0,oe.value.index1=te.value.index1,T.value=!0)};e.ref(!0),e.ref(!1);const $=e=>{switch(P.value=!1,e){case 0:te.value.index1&&(te.value.index1--,Oe());break;case 1:if(23==te.value.index0)return;te.value.index0++,Oe();break;case 2:if(11==te.value.index1)return;te.value.index1++,Oe();break;case 3:if(0==te.value.index0)return;te.value.index0--,Oe()}},M=e.ref(""),A=e.ref(-1),L=e.ref(""),O=e.ref(-1),P=e.ref(!1),j=()=>{$e.value[te.value.index0].children[te.value.index1].directiveName&&(P.value?(P.value=!1,ge(te.value.index0,te.value.index1)):P.value=!0)};function q(e,t){return 2*function(e,t){const l=55.9898*e+78.233*t;return Math.abs(43758.5453*Math.sin(l))%1}(e,t)}e.ref(!1),e.ref(0);const R=e.ref(0),W=e.ref(0);function Y(e){let t=e.detail.scrollTop;R.value=e.detail.scrollTop;let l=parseFloat(t.toFixed(2));W.value=l}const J=e.ref(0);function X(e){J.value=e.detail.scrollLeft}e.ref(!0);const Z=(e,t,l)=>"日常"===e.cycleType?oe.value.index0===t&&oe.value.index1===l?"title-time-border-yellow-active-transparent":ve.value?"title-time-border-yellow-active":"title-time-border-yellow":e.cycleType?oe.value.index0===t&&oe.value.index1===l?"title-time-border-pouple-active-transparent":ve.value?"title-time-border-pouple-active":"title-time-border-pouple":"title-time-border",H=e.ref([{url:"/static/index/firstTags/30.png",targetUrl:"/static/index/firstTags/21.png",name:"日常"},{url:"/static/index/firstTags/10.png",targetUrl:"/static/index/firstTags/99.png",name:"清洁"},{url:"/static/index/firstTags/40.png",targetUrl:"/static/index/firstTags/31.png",name:"饮食"},{url:"/static/index/firstTags/00.png",targetUrl:"/static/index/firstTags/01.png",name:"睡眠"},{url:"/static/index/firstTags/20.png",targetUrl:"/static/index/firstTags/11.png",name:"排泻"},{url:"/static/index/firstTags/50.png",targetUrl:"/static/index/firstTags/41.png",name:"影像"}]),G=e.ref(0),Q=e.ref(0),K=e.ref(0);e.ref(!1),e.ref([]);const ee=i;e.ref(!1);const te=e.ref({index0:9,index1:0});e.ref(0),e.ref([]);const le=e.ref(null);e.ref({});const ae=e.ref(0),ie=e.ref(0),re=e.ref(0),ne=e.ref(0),oe=e.ref({index0:999,index1:999,typeName:""});e.ref(-1),e.ref(!1);const ce=e.ref(!1),se=e.ref(-1),de=e.ref(!1),me=()=>{de.value=!0,ce.value=!1,setTimeout((()=>{ce.value=!0}),100)},ue=()=>{uni.share({provider:"weixin",scene:"WXSceneSession",type:0,href:"http://192.168.2.31:3101/daytoday",title:"护理日程分享",summary:"九泰护理日程测试",imageUrl:"https://qiniu-web-assets.dcloud.net.cn/unidoc/zh/uni@2x.png",success:function(e){l("log","at component/rightItemssecondrelnew/index.vue:943","success:")},fail:function(e){l("log","at component/rightItemssecondrelnew/index.vue:946","fail:")}})},ve=e.ref(!1);e.ref([]);const pe=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-ae.value)>0||Math.abs(l-ie.value)>0)&&le.value&&(clearTimeout(le.value),le.value=null)},ge=(e,t)=>{let l=$e.value[e].children[t].typeName;$e.value[e].children[t]={directiveName:"",typeName:l}};e.ref(null),e.ref(!1),e.ref(!1);const we=e.ref(0),he=e.ref(0),fe=e.ref(!1);e.ref(""),e.ref("");const Ne=e.ref(null),ye=e.ref(!1),xe=e=>{we.value=Math.floor(e.touches[0].pageX),he.value=Math.floor(e.touches[0].pageY),Ne.value=setTimeout((()=>{ye.value=!0}),500)},Ee=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-we.value)>0||Math.abs(l-he.value)>0)&&Ne.value&&(clearTimeout(Ne.value),Ne.value=null)},Ve=()=>{Ne.value&&(clearTimeout(Ne.value),Ne.value=null)};e.ref({time:"",minute:"",array:[]}),e.ref({op:{name:"",index:[-1,-1,-1]},startTime:"",weekTimeNumber:-1,monthTimeNumber:-1,monthTime:"",weekTime:""}),e.ref(0);const be=e.ref([-1,-1]);e.ref(null);const ke=()=>{k.value=!1,b.value=!0,setTimeout((()=>{k.value=!0}),50)},Te=()=>{if(P.value)return P.value=!1,void ge(te.value.index0,te.value.index1);if(T.value)return void S();oe.value.index0=-1,oe.value.index1=-1,T.value=!1;let t=!1,a=x.value[G.value].children[Q.value].children[K.value];if("即时护理"===a.cycleType)return w.value=1,c.value.forEach(((e,l)=>{e.id===a.id&&(t=!0)})),void e.nextTick((()=>{t?(clearTimeout(Ce.value),y.value=!0,Ce.value=setTimeout((()=>{y.value=!1}),1e3)):(w.value=0,c.value.length&&"#00a8ff"===c.value[0].target&&(c.value[0].target="#fff",clearTimeout(De.value)),c.value.unshift({name:a.title,url:"/static/index/ou.png",target:"#00a8ff",id:a.id}),l("log","at component/rightItemssecondrelnew/index.vue:1188","!!!!",c.value),De.value=setTimeout((()=>{c.value[0].target="#fff"}),1500))}));if("周期护理"===a.cycleType&&v.value&&-1==A.value&&-1==O.value)return;if("周期护理"===a.cycleType&&!v.value)return void(v.value=!0);let i="";"日常护理"===a.cycleType?i="日常":(i=-1!==A.value?M.value:L.value+"号",v.value=!1,A.value=-1,O.value=-1,M.value="",L.value="");const r=Number(te.value.index0),n=Number($e.value[te.value.index0].children[te.value.index1].typeName),o=n+10,s=r+Math.floor(o/60),d=`${String(r)}:${String(n).padStart(2,"0")}`,m=`${String(s)}:${String(o%60).padStart(2,"0")}`;$e.value[te.value.index0].children[te.value.index1].startTime=d,$e.value[te.value.index0].children[te.value.index1].endTime=m;let u={directiveId:a.id,directiveName:a.title,startTime:d,endTime:m,positioning:te.value.index0.toString(),positioningLong:te.value.index1.toString(),tagName:a.tagName,cycleType:i,nuId:"1",customerId:"1",id:"",typeName:$e.value[te.value.index0].children[te.value.index1].typeName};$e.value[te.value.index0].children[te.value.index1]=u;let p={index0:te.value.index0,index1:te.value.index1};Ue(p),Se()},De=e.ref(null),Ce=e.ref(null),Se=()=>{$e.value.forEach(((e,t)=>{e.children.forEach(((e,l)=>{let a="";if(e.directiveName||e.id)e.positioning=t,e.positioningLong=l;else{let i={};e.typeName&&(a=e.typeName),i=JSON.parse(JSON.stringify(Ae.value)),a&&(i.typeName=a),i.positioning=t,i.positioningLong=l}}))}))},Be=()=>{uni.setStorage({key:"myArray",data:$e.value,success:function(){uni.navigateTo({url:"/pages/timeMatrix/indexnew"})}})},ze=e.ref({index0:-1,index1:-1}),_e=e.ref({index0:-1,index1:-1,current:-1,bordershow:!0}),Ie=e.ref(0),Ue=e=>{te.value.index0=e.index0,te.value.index1=e.index1,Oe(),_e.value.index0=e.index0,_e.value.index1=e.index1,ze.value.index0=_e.value.index0,ze.value.index1=_e.value.index1,_e.value.bordershow=!1,setTimeout((()=>{_e.value.index0=-1,_e.value.index1=-1,_e.value.current=-1}),400),setTimeout((()=>{_e.value.bordershow=!0,ze.value.index0=-1,ze.value.index1=-1}),1e3)},Fe=["00","05","10","15","20","25","30","35","40","45","50","55"],$e=e.ref(Array.from({length:24},((e,t)=>({positioning:t.toString(),children:Fe.map((e=>({typeName:e,directiveName:""})))}))));function Me(e){Ie.value=3,Ue(e)}r((()=>{x.value=I,N.value=x.value[0].children,uni.$on("where",Me)})),n((()=>{uni.$off("where",Me)})),a({rulerMoveEnd:e=>{if(999!==o.liang.index0&&e.cycleType){be.value=[o.liang.index0,o.liang.index1];let t=$e.value[oe.value.index0].children[oe.value.index1].typeName;$e.value[oe.value.index0].children[oe.value.index1]={directiveName:"",typeName:t};let l=$e.value[be.value[0]].children[be.value[1]].typeName;$e.value[be.value[0]].children[be.value[1]]=e,$e.value[be.value[0]].children[be.value[1]].typeName=l;let a=$e.value[be.value[0]].children[be.value[1]].startTime,i=$e.value[be.value[0]].children[be.value[1]].endTime,r=$e.value[be.value[0]].positioning;const n=a.split(":")[1],c=i.split(":")[1];let s=Number(c)-Number(n),d=l,m=Number(d)+s;$e.value[be.value[0]].children[be.value[1]].startTime=r+":"+d.padStart(2,"0"),$e.value[be.value[0]].children[be.value[1]].endTime=r+":"+String(m%60).padStart(2,"0")}}}),e.ref({index0:999,index1:999});const Ae=e.ref({directiveId:"",directiveName:"",startTime:"",endTime:"",positioning:"",positioningLong:"",tagName:"",cycleType:"",nuId:"1",customerId:"1",id:"",typeName:""});function Le(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}function Oe(){if(te.value.index0>=0&&te.value.index0<=24&&te.value.index1>=0&&te.value.index1<=11){const e=201*(te.value.index0+.5),t=167*(te.value.index1-.5);h.value=e-702.5,f.value=t-240;const l=4824,a=1837;h.value=Math.max(0,Math.min(h.value,l-1405))/2,f.value=Math.max(0,Math.min(f.value,a-480))/2}}return(l,a)=>{var i,r,n,o;return e.openBlock(),e.createElementBlock("view",{class:"right-container",style:e.normalizeStyle(t.isshow?{opacity:"1"}:{opacity:"0"}),onClick:a[10]||(a[10]=e=>{ye.value=!1,ve.value=!1})},[e.createVNode(U,{onMovecard:$}),e.createElementVNode("view",{class:"right-container-title-nav"},[e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," ID:12345678 ",2),e.createElementVNode("text",{class:e.normalizeClass(t.darkFans?"right-container-title-no-dark":"right-container-title-no")}," 名称:未命名01 ",2),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("image",{class:"right-icons-img",src:"/static/index/undericons/man.png"},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(t.darkFans?"right-icons-font-dark":"right-icons-font")},"王金福",2),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/face.png":"/static/index/undericons/facelight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/hand.png":"/static/index/undericons/handlight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:t.darkFans?"/static/index/undericons/out.png":"/static/index/undericons/outlight.png"},null,8,["src"])]),e.createElementVNode("view",{class:"right-container-title-class-anhei-button-wrong",onClick:a[0]||(a[0]=e=>{ee("changeold",0)})},[e.createElementVNode("text",{class:"right-container-title-class-anhei"}," 拖动模式 ")]),e.createElementVNode("view",{class:"right-container-title-class-anhei-button"},[e.createElementVNode("text",{class:"right-container-title-class-anhei"}," 手柄模式 ")])]),e.createElementVNode("view",{class:"doctorsay-container-view"},[e.createElementVNode("view",{class:"doctorsay-container-container"},[e.createElementVNode("view",{class:"doctorsay-container-title"},[e.createElementVNode("view",{class:"doctorsay-container-left"},[e.createElementVNode("view",{class:"doctorsay-container-left-gun"}),e.createElementVNode("view",{class:"doctorsay-container-left-font"},"护理流程"),e.createElementVNode("view",{class:"doctorsay-container-share",onClick:me}," 分享 "),e.createElementVNode("view",{class:"doctorsay-container-share"}," 立即生效 ")]),e.createElementVNode("view",{class:"doctorsay-container-right"},[e.createElementVNode("view",{class:"doctorsay-container-right-kuai-cheng"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"日常"),e.createElementVNode("view",{class:"doctorsay-container-right-kuai-zi"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"周期"),e.createElementVNode("view",{class:"doctorsay-container-juzhen",onClick:Be}," 预览 ")])]),e.createElementVNode("view",{class:"super-card"},[e.createElementVNode("view",{class:"boom-title"},[e.createElementVNode("view",{class:"boom-title-left"}," 分 "),e.createElementVNode("view",{class:"boom-title-right"}," 时 ")]),e.createElementVNode("view",{class:"boom-father"},[e.createElementVNode("view",{class:"boom"},[e.createElementVNode("view",{style:e.normalizeStyle({marginTop:`-${2*W.value}rpx`})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList($e.value[0].children,((l,a)=>(e.openBlock(),e.createElementBlock("view",{key:a},[e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(se.value===a||t.liang.index1===a&&!t.canmove||oe.value.index1===a&&ve.value?"boom-son-target":"boom-son")},e.toDisplayString(l.typeName),3),[[e.vShow,l.typeName]])])))),128))],4)])]),e.createElementVNode("view",{class:"super-card-container"},[e.createElementVNode("scroll-view",{style:{height:"920rpx",width:"100%"},"scroll-left":h.value,"scroll-x":"",onScroll:X,"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex","box-shadow":"10rpx 10rpx 20rpx rgba(0, 0, 0, 0.1)",width:"4824rpx",background:"linear-gradient(to right, #c4dbf4,#c9c2ef, #c6dcf3)"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList($e.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time"},e.toDisplayString((1==t.positioning.length?"0"+t.positioning:t.positioning)+":00"),1)])))),128))]),e.createElementVNode("view",{style:{display:"flex",height:"calc(100% - 80rpx)"}},[e.createElementVNode("scroll-view",{style:{height:"100%",width:"4824rpx"},"scroll-top":f.value,"scroll-y":t.canmove&&!ve.value,onScroll:Y,"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex",height:"100%"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList($e.value,((l,i)=>(e.openBlock(),e.createElementBlock("view",{key:i},[e.createElementVNode("view",{class:"super-card-time-und"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.children,((l,r)=>(e.openBlock(),e.createElementBlock("view",{style:{width:"100%"},key:r},[e.createElementVNode("view",{class:e.normalizeClass(_e.value.index0===i&&_e.value.index1===r?_e.value.index1?"title-time-border-big":"title-time-border-big-top":"super-card-time-card"),style:e.normalizeStyle([_e.value.bordershow||ze.value.index0!==i||ze.value.index1!==r?{borderBottom:"1rpx solid transparent"}:{zIndex:999},{position:"relative"}]),id:`a${i}_${r}`,onClick:t=>((t,l,a,i)=>{t.directiveName&&(se.value=a,uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((t=>{t.forEach((async t=>{t.left>100&&t.left<1067&&t.top<570&&t.top>140&&t.dataset.index0==l&&t.dataset.index1==a&&(t.left>100&&t.left<500?re.value=Math.floor(t.left)+520:re.value=Math.floor(t.left),t.top>140&&t.top<300?ne.value=Math.floor(t.top)+250:ne.value=Math.floor(t.top),await e.nextTick(),E.value=!0,V.value=!1,setTimeout((()=>{V.value=!0}),100))}))})).exec())})(l,i,r),onTouchstart:e=>{},onTouchmove:pe,onTouchend:a[1]||(a[1]=e=>(fe.value=!1,void(le.value&&(clearTimeout(le.value),le.value=null)))),"data-index0":i,"data-index1":r},[oe.value.index0===i&&oe.value.index1===r&&0==r?(e.openBlock(),e.createElementBlock("view",{key:0,class:"time-button-orange-spe"},[e.createTextVNode(" 请选择服务指令迁移的目标单元格 "),e.createElementVNode("view",{class:"under-button-three"})])):e.createCommentVNode("",!0),oe.value.index0===i&&oe.value.index1===r&&r?(e.openBlock(),e.createElementBlock("view",{key:1,class:"time-button-orange"},[e.createTextVNode(" 请选择服务指令迁移的目标单元格 "),e.createElementVNode("view",{class:"under-button-three"})])):e.createCommentVNode("",!0),te.value.index0==i&&te.value.index1==r&&0==r&&P.value?(e.openBlock(),e.createElementBlock("view",{key:2,class:"time-button-black-spe"},[e.createTextVNode(" 是否确认删除该服务指令 "),e.createElementVNode("view",{class:"under-button-three"})])):e.createCommentVNode("",!0),te.value.index0==i&&te.value.index1==r&&r&&P.value?(e.openBlock(),e.createElementBlock("view",{key:3,class:"time-button-black"},[e.createTextVNode(" 是否确认删除该服务指令 "),e.createElementVNode("view",{class:"under-button-three"})])):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("view",{class:"title-time-blue"},[e.createElementVNode("image",{class:"title-time-blue-img",src:T.value?"/static/index/movemode/targetcheng.png":"/static/index/movemode/target.png"},null,8,["src"])],512),[[e.vShow,te.value.index0==i&&te.value.index1==r]]),e.createElementVNode("view",{class:e.normalizeClass(Z(l,i,r)),style:e.normalizeStyle([{"font-size":"30rpx",overflow:"hidden"},{animationDelay:`-${q(i,r).toFixed(2)}s`}])},[l.startTime?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time",style:{"margin-top":"5rpx"}},[e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"25rpx","margin-top":"20rpx"}},e.toDisplayString(l.startTime+"-"+l.endTime),1),e.createElementVNode("image",{class:"title-time-button",src:"日常"==l.cycleType?"/static/index/yellowbian.png":"/static/index/puoplebian.png"},null,8,["src"]),e.createElementVNode("view",{class:"title-time-font"},e.toDisplayString(l.cycleType),1)],512)),[[e.vShow,t.liang.index0!==i||t.liang.index1!==r||t.canmove]]):e.createCommentVNode("",!0),l.startTime?(e.openBlock(),e.createElementBlock("view",{key:1,class:"title-time-font-rel"},e.toDisplayString(Le(l.directiveName)[0]),1)):e.createCommentVNode("",!0),l.startTime?(e.openBlock(),e.createElementBlock("view",{key:2,class:"title-time-items"},[e.createElementVNode("image",{class:"right-box-items-button",src:B}),e.createElementVNode("image",{class:"right-box-items-button",src:z})])):e.createCommentVNode("",!0)],6)],46,["id","onClick","onTouchstart","data-index0","data-index1"])])))),128))])])))),128))])],40,["scroll-top","scroll-y"])])],40,["scroll-left"]),e.createElementVNode("view",{class:"scroll-bottom-bgc"})]),e.createElementVNode("view",{class:"right-cards"},[e.createElementVNode("scroll-view",{"scroll-x":"",class:"scroll-box","scroll-left":w.value},[e.createElementVNode("view",{class:"right-box"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"right-box-item",onTouchstart:xe,onTouchmove:Ee,onTouchend:Ve,style:e.normalizeStyle(t.target?{background:t.target,transition:"all 1.5s ease-in-out"}:{transition:"all 1.5s ease-in-out"})},[e.createElementVNode("image",{class:"title-time-button",src:"/static/index/redbian.png"}),e.createElementVNode("view",{class:"title-time-font"}," 即时 "),e.createElementVNode("view",{style:e.normalizeStyle({animationDelay:`-${.1*l}s`}),class:e.normalizeClass(ye.value?"super-end-items-img-father-active":"super-end-items-img-father")},[e.createElementVNode("image",{class:"right-box-img",src:t.url},null,8,["src"])],6),e.createElementVNode("view",{class:"right-box-font"},e.toDisplayString(t.name),1),e.createElementVNode("view",{class:"right-box-items"},[e.createElementVNode("image",{class:"right-box-items-button",src:B}),e.createElementVNode("image",{class:"right-box-items-button",src:z})]),e.withDirectives(e.createElementVNode("view",{class:"super-end-items-father-close-father",onClick:e.withModifiers((e=>c.value.splice(l,1)),["stop"])}," - ",8,["onClick"]),[[e.vShow,ye.value]])],36)])))),128))])],8,["scroll-left"]),e.createElementVNode("view",{class:"middle-box"},[e.createElementVNode("view",{class:"middle-left-box"},[e.createElementVNode("view",{class:"first-contant"},[e.withDirectives(e.createElementVNode("view",{class:"time-father"},[e.withDirectives(e.createElementVNode("view",{class:"time-button"},[e.createElementVNode("view",{class:"time-button-month"},"周"),e.createElementVNode("view",{class:"time-button-week",onClick:a[2]||(a[2]=e=>{u.value=!1,A.value=-1,M.value=""})},"月")],512),[[e.vShow,u.value]]),e.withDirectives(e.createElementVNode("view",{class:"time-button"},[e.createElementVNode("view",{class:"time-button-month-target",onClick:a[3]||(a[3]=e=>{u.value=!0,O.value=-1,L.value=""})},"周"),e.createElementVNode("view",{class:"time-button-week-target"},"月")],512),[[e.vShow,!u.value]]),e.createElementVNode("scroll-view",{"scroll-y":"",style:{width:"100%",height:"600rpx"},"show-scrollbar":!1,"scroll-top":p.value},[u.value?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},e.renderList(d,((t,l)=>e.createElementVNode("view",{key:l,onClick:e=>((e,t)=>{const l=Date.now();l-C.value<300?(M.value=e,A.value=t,Te(),C.value=0):(M.value=e,A.value=t,C.value=l)})(t,l)},[e.createElementVNode("view",{class:e.normalizeClass(A.value===l?"items-card-target":"items-card")},e.toDisplayString(t),3)],8,["onClick"]))),64)):e.createCommentVNode("",!0),u.value?e.createCommentVNode("",!0):(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:1},e.renderList(e.unref(m),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>((e,t)=>{const l=Date.now();l-C.value<300?(L.value=e,O.value=t,Te(),C.value=0):(L.value=e,O.value=t,C.value=l)})(t,l)},[e.createElementVNode("view",{class:e.normalizeClass(O.value===l?"items-card-target":"items-card")},e.toDisplayString(t),3)],8,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"40rpx"}})],8,["scroll-top"])],512),[[e.vShow,v.value]]),e.withDirectives(e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%",width:"100%"},"show-scrollbar":!1,"scroll-top":p.value},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(x.value[G.value].children[Q.value].children,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>function(e){const t=Date.now();t-C.value<300?(K.value=e,Te(),C.value=0):(K.value=e,C.value=t)}(l)},[e.createElementVNode("view",{class:"right-box-item",style:e.normalizeStyle(K.value==l?{border:"2rpx solid rgb(54, 159, 239)",backgroundColor:"#fff"}:{border:"2rpx solid rgb(229, 233, 249)"})},[e.withDirectives(e.createElementVNode("image",{class:"title-time-button",src:"/static/index/ri.png"},null,512),[[e.vShow,"日常护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"title-time-button",src:"/static/index/zhou.png"},null,512),[[e.vShow,"周期护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"title-time-button",src:"/static/index/ji.png"},null,512),[[e.vShow,"即时护理"===t.cycleType]]),e.createElementVNode("image",{class:"right-box-img",src:_}),e.createElementVNode("view",{class:"right-box-font",style:e.normalizeStyle(K.value==l?{color:"rgb(54, 159, 239)"}:{})},e.toDisplayString(t.title),5),e.createElementVNode("view",{class:"right-box-items"},[e.createElementVNode("image",{class:"right-box-items-button",src:B}),e.createElementVNode("image",{class:"right-box-items-button",src:z})])],4)],8,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"20rpx"}})],8,["scroll-top"]),[[e.vShow,!v.value]])]),e.createElementVNode("view",{class:"second-contant"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%",width:"100%"},"show-scrollbar":!1,"scroll-top":g.value},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(N.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:t=>(t=>{v.value=!1,A.value=-1,O.value=-1,M.value="",L.value="",Q.value=t,K.value=0,p.value=1,e.nextTick((()=>{p.value=0}))})(l)},[e.createElementVNode("view",{class:e.normalizeClass(Q.value==l?"downList-box-target":"downList-box")},[e.createElementVNode("image",{class:"downList-box-img",src:_}),e.createElementVNode("view",{class:"downList-box-text"},e.toDisplayString(t.title),1)],2)],8,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"20rpx"}})],8,["scroll-top"])])]),e.createElementVNode("view",{class:"middle-right-box"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(H.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:t=>(t=>{5!==t&&(v.value=!1,A.value=-1,O.value=-1,M.value="",L.value="",g.value=1,p.value=1,e.nextTick((()=>{g.value=0,p.value=0})),G.value=t,N.value=x.value[t].children,Q.value=0,K.value=0)})(l)},[e.createElementVNode("view",{class:e.normalizeClass(l===G.value?"doctorsay-container-card-target":"doctorsay-container-card")},[e.createElementVNode("image",{class:"doctorsay-container-card-img",src:l===G.value?t.targetUrl:t.url},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(l===G.value?"doctorsay-container-card-font-dark":"doctorsay-container-card-font")},e.toDisplayString(t.name),3)],2)],8,["onClick"])))),128))])]),e.createElementVNode("view",{class:"under-button"},[e.createElementVNode("view",{class:"under-button-black",style:e.normalizeStyle(y.value?{opacity:1}:{opacity:0})}," 不能重复添加相同的即时服务指令 ",4),e.createElementVNode("view",{class:"white-circle",onClick:F},[e.createElementVNode("image",{class:"white-circle-img",src:"/static/index/keyimg/movebutton.png"})]),e.createElementVNode("view",{class:"white-circle",onClick:j},[e.createElementVNode("image",{class:"white-circle-img",src:"/static/index/keyimg/deletebutton.png"})]),e.createElementVNode("view",{class:"white-circle",onClick:ke},[e.createElementVNode("image",{class:"white-circle-img",src:"/static/index/keyimg/notebutton.png"})]),e.createElementVNode("view",{class:"white-circle-click-father",onClick:Te},[e.createElementVNode("image",{class:"white-circle-click",src:"/static/index/keyimg/okbutton.png"}),e.createElementVNode("view",{class:"white-circle-font"}," 确定 ")])])])])])]),e.withDirectives(e.createElementVNode("view",{class:"popup-overlay",onClick:a[5]||(a[5]=e=>{E.value=!1,oe.value.index0=999,se.value=-1})},[e.createElementVNode("view",{class:"popup-overlay-content",style:e.normalizeStyle({top:2*ne.value-350+"rpx",left:2*re.value-780+"rpx",opacity:V.value?1:0,backgroundColor:"日常"===(null==(r=null==(i=$e.value[oe.value.index0])?void 0:i.children[oe.value.index1])?void 0:r.type)?"#fffcf6":"rgb(246, 244, 254)"}),onClick:a[4]||(a[4]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-overlay-content-left"},[e.createElementVNode("image",{class:"popup-overlay-content-left-img",src:"/static/index/teeth.png"},null,8,["src"]),e.createElementVNode("text",{class:"popup-overlay-content-left-font"},e.toDisplayString(null==(o=null==(n=$e.value[oe.value.index0])?void 0:n.children[oe.value.index1])?void 0:o.value),1)]),e.createElementVNode("view",{class:"popup-overlay-content-right"},[e.createElementVNode("view",{class:"time-font"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"time-text"}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ")])],4)],512),[[e.vShow,E.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-say",onClick:a[7]||(a[7]=e=>b.value=!1)},[e.createElementVNode("view",{class:"popup-say-content",style:e.normalizeStyle([{"padding-top":"30rpx"},{opacity:k.value?1:0}]),onClick:a[6]||(a[6]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-say-content-flex"},[e.createElementVNode("view",{class:"popup-say-content-gun"}),e.createElementVNode("view",{class:"popup-say-content-font"},"情绪标签")]),e.createElementVNode("view",{style:{display:"flex"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.slice(0,2),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"tags-father"},[e.createElementVNode("image",{class:"tags-img",src:`/static/index/tagNames/${l}.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font"},e.toDisplayString(t),1)])])))),128))]),e.createElementVNode("view",{class:"popup-say-content-flex",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"popup-say-content-gun"}),e.createElementVNode("view",{class:"popup-say-content-font"},"体型标签")]),e.createElementVNode("view",{style:{display:"flex","flex-wrap":"wrap"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.slice(2,11),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"tags-father"},[e.createElementVNode("image",{class:"tags-img",src:`/static/index/tagNames/${l+2}.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font"},e.toDisplayString(t),1)])])))),128))]),e.createElementVNode("view",{class:"popup-say-three"})],4)],512),[[e.vShow,b.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-share",onClick:a[9]||(a[9]=e=>de.value=!1)},[e.createElementVNode("view",{class:"popup-share-content",style:e.normalizeStyle({opacity:ce.value?1:0}),onClick:a[8]||(a[8]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-share-title"},[e.createTextVNode(" 护理日程分享 "),e.createElementVNode("image",{class:"popup-share-img",src:D})]),e.createElementVNode("view",{class:"popup-share-upcontent"},[e.createElementVNode("view",{class:"popup-share-font"},"久泰护理日程分享测试")]),e.createElementVNode("view",{class:"popup-share-gray"}),e.createElementVNode("view",{class:"popup-share-downcontent"},[e.createElementVNode("view",{class:"popup-share-downcontent-left"},[e.createElementVNode("image",{class:"popup-downcontent-img",src:D}),e.createElementVNode("view",{class:"popup-downcontent-font"},"久泰护理")]),e.createElementVNode("view",{class:"popup-share-downcontent-button",onClick:ue}," 分享 ")])],4)],512),[[e.vShow,de.value]])],4)}}}),[["__scopeId","data-v-bd7a2b2a"]]),$=s(e.defineComponent({__name:"index",setup(t){e.onMounted((()=>{c.value=2,uni.getSystemInfoSync(),uni.pageScrollTo}));const l=e.ref([{url:"/static/index/lefticon/index.png",targetUrl:"/static/index/lefticontarget/blueindex.png"},{url:"/static/index/lefticon/nurse.png",targetUrl:"/static/index/lefticontarget/bluenurse.png"},{url:"/static/index/lefticon/doctor.png",targetUrl:"/static/index/lefticontarget/bluedoctor.png"},{url:"/static/index/lefticon/give.png",targetUrl:"/static/index/lefticontarget/givedark.png"},{url:"/static/index/lefticon/wifi.png",targetUrl:"/static/index/lefticontarget/bluewifi.png"},{url:"/static/index/lefticon/back.png",targetUrl:"/static/index/lefticontarget/blueback.png"}]),a=e.ref(0),i=e.ref(!1),n=e.ref(!1),o=e.ref(!1),c=e.ref(-1);e.ref([]),e.ref(0),e.ref(0),e.ref(0),e.ref(0),e.ref(0);const s=e=>{o.value=e},d=e=>{c.value=e},m=e=>{if(3===e)return i.value=!1,n.value=!1,void uni.navigateTo({url:`/pages/somethingmove/index?darkFans=${o.value}`,animationType:"slide-in-right",animationDuration:400});5!==e?(a.value=e,i.value=!1,n.value=!1,setTimeout((()=>{switch(e){case 0:i.value=!0;break;case 1:n.value=!0}}),50)):uni.navigateBack()},u=e.ref(0),v=e.ref(0),p=e.ref(""),g=e.ref(!0),w=e.ref({index0:999,index1:999}),h=e.ref(!0),f=uni.createAnimation({duration:0,timingFunction:"linear",delay:0}),y=e.ref({}),x=function(e,t){let l=0;return function(...a){const i=Date.now();i-l>=t&&(l=i,e.apply(this,a))}}((e=>{var t;const l=e.touches[0];u.value=2*(Math.floor(l.clientX)-100),v.value=2*(Math.floor(l.clientY)-55),f.translate3d(u.value/2,v.value/2,0).step({duration:0}),y.value=f.export();const a=Math.floor(l.clientX)-50,i=Math.floor(l.clientY)-25,r=E.value.find((e=>a>=Math.floor(e.left)&&a<=Math.floor(e.right)&&i>=Math.floor(e.top)&&i<=Math.floor(e.bottom)));if(r){const{index0:e,index1:l}=r.dataset;w.value.index0=e,w.value.index1=l,u.value<200&&h.value&&!c.value&&(null==(t=B.value)||t.nextItems(),h.value=!1,setTimeout((()=>{h.value=!0}),1e3))}else w.value.index0=999,w.value.index1=999}),40),E=e.ref([]),V=(e,t)=>{p.value=e,g.value=!1,E.value=t},b=e=>{E.value=e},T=e.ref({directiveName:"",cycleType:"",positioningLong:"0",typeName:"",startTime:"",id:"",endTime:"",tagName:null}),D=(e,t)=>{T.value=e,g.value=!1,E.value=t},C=()=>{p.value="",g.value=!0},B=e.ref(null),z=e.ref(null),_=()=>{var e,t,l;u.value=9999,v.value=9999,f.translate3d(u.value/2,v.value/2,0).step({duration:0}),y.value=f.export(),g.value=!0,w.value={index0:999,index1:999},p.value?c.value||null==(e=B.value)||e.rulerEnd(p.value):T.value.typeName&&(0===c.value?null==(t=B.value)||t.rulerMoveEnd(T.value):null==(l=z.value)||l.rulerMoveEnd(T.value)),p.value="",T.value={directiveName:"",cycleType:"",positioningLong:"0",typeName:"",startTime:"",id:"",endTime:"",tagName:null}};function I(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}return r((()=>{setTimeout((()=>{m(a.value)}),50)})),(t,r)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(o.value?"darkbackgroundContainer":"backgroundContainer"),onTouchmove:r[0]||(r[0]=(...t)=>e.unref(x)&&e.unref(x)(...t)),onTouchend:_},[e.withDirectives(e.createElementVNode("view",{class:"move-font",animation:y.value},e.toDisplayString(p.value),9,["animation"]),[[e.vShow,p.value&&u.value]]),e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass("日常"==T.value.cycleType?"title-time-border-yellow":"title-time-border-pouple"),animation:y.value,style:{"font-size":"30rpx",overflow:"hidden"}},[e.withDirectives(e.createElementVNode("view",{class:"title-time",style:{"margin-top":"5rpx"}},[e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"30rpx"}},e.toDisplayString(T.value.startTime+"-"+T.value.endTime),1),e.createElementVNode("image",{class:"title-time-button",src:"日常"==T.value.cycleType?"/static/index/yellowbian.png":"/static/index/puoplebian.png"},null,8,["src"]),e.createElementVNode("view",{class:"title-time-font"},e.toDisplayString(T.value.cycleType),1)],512),[[e.vShow,T.value.startTime]]),e.createElementVNode("view",{style:{"margin-top":"20rpx","font-weight":"700"}},e.toDisplayString(I(T.value.directiveName)[0]),1),e.withDirectives(e.createElementVNode("view",{class:"down-icons",style:e.normalizeStyle("日常"!=T.value.cycleType?{backgroundColor:"rgb(212,203,255)"}:{})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(I(T.value.directiveName).slice(1),((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"",key:l},[e.createElementVNode("view",{class:"icon",style:e.normalizeStyle("日常"!=T.value.cycleType?{backgroundColor:"rgb(123,97,255)"}:{})},e.toDisplayString(I(T.value.directiveName)[1]),5)])))),128))],4),[[e.vShow,I(T.value.directiveName)[1]]])],10,["animation"]),[[e.vShow,T.value.cycleType]]),e.createElementVNode("view",{class:"left-container"},[e.createElementVNode("view",{class:"left-head"},[e.createElementVNode("image",{class:"left-head-img",src:N}),e.createElementVNode("text",{class:e.normalizeClass(o.value?"left-head-font-dark":"left-head-font")}," 王金凤 ",2)]),e.createElementVNode("view",{class:"left-img-container"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"blue-circle-pos"},[e.withDirectives(e.createElementVNode("view",{class:"blue-circle"},[e.createElementVNode("image",{class:"blue-circle-size",src:"/static/index/ray.png"},null,8,["src"])],512),[[e.vShow,l===a.value]]),e.createElementVNode("image",{class:"left-img",src:l===a.value?t.targetUrl:t.url,onClick:e=>m(l)},null,8,["src","onClick"])])))),128))])]),e.withDirectives(e.createVNode(k,{isshow:i.value,darkFans:o.value,onDarkchange:s},null,8,["isshow","darkFans"]),[[e.vShow,!a.value]]),e.withDirectives(e.createVNode(S,{ref_key:"ruler",ref:B,liang:w.value,isshow:n.value,canmove:g.value,darkFans:o.value,onDarkchange:s,onSavename:V,onSaveruler:D,onChangefangkuang:b,onCleanname:C,onChangeold:d},null,8,["liang","isshow","canmove","darkFans"]),[[e.vShow,1==a.value&&!c.value]]),e.withDirectives(e.createVNode(F,{ref_key:"rulernew",ref:z,isold:2===c.value,liang:w.value,isshow:n.value,canmove:g.value,darkFans:o.value,onDarkchange:s,onSavename:V,onSaveruler:D,onChangefangkuang:b,onCleanname:C,onChangeold:d},null,8,["isold","liang","isshow","canmove","darkFans"]),[[e.vShow,1==a.value&&2===c.value]])],34))}}),[["__scopeId","data-v-ee189f8b"]]),M="/static/index/newindex/wendu/0.png",A="/static/index/newindex/wendu/1.png",L="https://www.focusnu.com/devopsapi",O=(e,t)=>(e=>{let t=e.url,a=e.method||"get",i=e.data||{},r={"X-Access-Token":uni.getStorageSync("token")||"","Content-Type":"application/json;charset=UTF-8",Authorization:"Basic c2FiZXI6c2FiZXJfc2VjcmV0",...e.header};return new Promise(((e,n)=>{uni.request({url:/^https?:\/\//.test(t)?t:L+t,method:a,header:r,data:i,timeout:5e3,success(a){const r=a;if(200==r.statusCode)e(r.data);else switch(l("log","at request/guanli.js:34","http",/^https?:\/\//.test(t)?t:L+t),l("log","at request/guanli.js:35","res",a),l("log","at request/guanli.js:36","data",i),r.statusCode){case 401:uni.showModal({title:"提示",content:"登录过期",showCancel:!1,success(){uni.clearStorageSync(),setTimeout((()=>{uni.navigateTo({url:"/pages/login/login"})}),1e3)}});break;case 404:uni.showToast({title:"请求地址不存在...",duration:2e3});break;default:uni.showToast({title:"请重试...",duration:2e3})}},fail(e){l("log","at request/guanli.js:69",e),-1!==e.errMsg.indexOf("request:fail")?uni.showToast({title:"网络异常",icon:"error",duration:2e3}):uni.showToast({title:"未知异常",duration:2e3}),n(e)},complete(){uni.hideLoading(),uni.hideToast()}})})).catch((()=>{}))})({url:`/iot/tplink/cameraInfo/motionCtrl?deviceIndex=5&direction=${e}&startOrNot=${t}&speed=1`,method:"get"}),P=100,j=400,q=s(e.defineComponent({__name:"index",setup(t){const l=e.ref([]);o((()=>{l.value=h})),e.ref(null);const a=e.ref(-1),i=e.ref(-1),n=e.ref(!1),c=e.ref(!1),s=e.ref(null),d=e.ref(null),m=e.ref(0),u=e.ref(3),v=[{name:"左右翻转",url:"/static/index/camera/800.png",target:"/static/index/camera/801.png"},{name:"上下翻转",url:"/static/index/camera/810.png",target:"/static/index/camera/811.png"},{name:"中心翻转",url:"/static/index/camera/820.png",target:"/static/index/camera/821.png"},{name:"不翻转",url:"/static/index/camera/830.png",target:"/static/index/camera/831.png"}],p=["原图","全景拉伸","四分屏","180°全景","360°全景"],g=e.ref([]),w=["截图","录制","对讲","静音","预警","更多","图片","视频","清晰度","翻转"],h=["截图","录制","对讲","静音","预警","更多"],f=e.ref(0),N=e.ref(5),y=e.ref(0),x=()=>{s.value.openDrawer()};function E(e,t,l){return Math.max(t,Math.min(l,e))}function V(e){const t=e*P,l=m.value,a=l+j;if(ta){const e=t+P-j;m.value=E(e,0,ie.value.length*P-j)}}function b(e,t,l,a="png",i=0,r=!1){return Array.from({length:l},((l,n)=>{const o=r?String(n+i).padStart(2,"0"):n+i;return`${e}/${t}${o}.${a}`}))}const k=b("/static/index/newindex/curve","curve_",9,"png",1,!1),T=e.ref([...k,...[...k].reverse()]),D=b("/static/index/newindex/curve","breathe_",9,"png",1,!1),C=e.ref([...D,...[...D].reverse()]);e.ref([{name:"王金福",url:"/static/index/watch/people0.png"},{name:"李宝田",url:"/static/index/watch/people1.png"}]);const S=e.ref([{name:"省医保",url:"/static/index/watch/00.png",error:!1},{name:"重度失能",url:"/static/index/watch/01.png",error:!1},{name:"欠费",url:"/static/index/watch/03.png",error:!0}]),B=e.ref([{name:"护理单元",url:b("/static/index/watch","nurs_",10,"png",1,!1)},{name:"仓库",url:b("/static/index/watch","warehouse_",6,"png",1,!1)},{name:"配务室",url:b("/static/index/watch","delivery_",5,"png",1,!1)},{name:"服务大厅",url:b("/static/index/watch","service_",5,"png",1,!1)},{name:"",url:""}]),z=e.ref([{name:"护理单元01",NUID:"2508000001",url:b("/static/index/watch","nurs_",10,"png",1,!1),warning:!1,type:0},{name:"护理单元02",NUID:"2508000002",url:b("/static/index/watch","nurs_",10,"png",1,!1),warning:!1,type:0},{name:"护理单元03",NUID:"2508000003",url:b("/static/index/watch","nurs_",10,"png",1,!1),warning:!0,type:0},{name:"仓库01",NUID:"2508000001",url:b("/static/index/watch","warehouse_",6,"png",1,!1),warning:!1,type:1},{name:"配务室",NUID:"2508000001",url:b("/static/index/watch","delivery_",5,"png",1,!1),warning:!1,type:2},{name:"服务大厅",NUID:"2508000001",url:b("/static/index/watch","service_",5,"png",1,!1),warning:!1,type:3}]);e.onMounted((()=>{a.value=0,i.value=0,n.value=!0,c.value=!0}));const _=e.ref(0),I=e.ref(-1),F=e.ref(!1),$=e.ref(!1),L=e.ref(!1),q=e.ref(!1),R=e=>{ce(e)},W=e=>{if(-1!==_.value)switch(e){case 0:a.value>0?(a.value--,i.value=0,_.value=a.value,V(a.value)):(I.value=i.value,_.value=-1);break;case 1:I.value=i.value,_.value=-1;break;case 2:a.value{for(const e of Y.values())clearTimeout(e);Y.clear()}));const J=e=>{const t=g.value.indexOf(e);-1!==t&&g.value.splice(t,1)},X=e.ref(!1),Z=ae((()=>{var e;return null==(e=d.value)?void 0:e.moveFirstUp()}),400),H=ae((()=>{var e;return null==(e=d.value)?void 0:e.moveFirstDown()}),400),G=ae((()=>{var e;return null==(e=d.value)?void 0:e.moveSecondUp()}),400),Q=ae((()=>{var e;return null==(e=d.value)?void 0:e.moveSecondDown()}),400),K=ae((()=>function(){var e;null==(e=d.value)||e.startchange(),0===N.value&&(y.value,uni.$emit("monitor:toggleVolume"));1===N.value&&(y.value?uni.$emit("monitor:stopTalk"):uni.$emit("monitor:openTalk"));2===N.value&&uni.$emit("monitor:doSnapshot");3===N.value&&(y.value?uni.$emit("monitor:stopRecord"):uni.$emit("monitor:startRecord"));4===N.value&&(y.value||(le.value=N.value,N.value=-1,te.value=!0));5===N.value&&ee.value!==y.value&&(ee.value=y.value,uni.$emit("monitor:changeQuality"));6===N.value&&uni.$emit("monitor:switchDisplay",y.value);7===N.value&&(3===y.value?uni.$emit("monitor:flipImage",6):uni.$emit("monitor:flipImage",y.value));8===N.value&&(y.value?uni.$emit("monitor:stopAlarm"):uni.$emit("monitor:startAlarm"))}()),700),ee=e.ref(0),te=e.ref(!1),le=e.ref(-1);function ae(e,t=1e3){let l=!1;return()=>{l||(e(),l=!0,setTimeout((()=>{l=!1}),t))}}const ie=e.computed((()=>(a.value=-1,setTimeout((()=>a.value=0),50),z.value.filter((e=>e.type===i.value))))),re=()=>{uni.navigateTo({url:"/pages/watch/settings/settings"})};r((()=>{}));let ne=-1;const oe={};function ce(e){switch(e){case 0:se(1,0);break;case 1:se(5,1);break;case 2:se(7,2);break;case 3:se(3,3);break;case 4:case 5:N.value=le.value,te.value=!1,le.value=-1,G(),K()}}function se(e,t){-1!==ne&&ne!==t&&de(ne),ne=t,O(e,1),oe[t]&&clearTimeout(oe[t]),oe[t]=setTimeout((()=>{de(t)}),550)}function de(e){if(-1===e)return;let t=0;switch(e){case 0:t=1;break;case 1:t=5;break;case 2:t=7;break;case 3:t=3}O(t,0).then((e=>{})),clearTimeout(oe[e]),oe[e]=null,ne===e&&(ne=-1)}return(t,r)=>{const o=e.resolveComponent("donghua"),s=e.resolveComponent("arrowkeys");return e.openBlock(),e.createElementBlock("view",{class:"view"},[e.createElementVNode("view",{class:"view-left"},[e.createElementVNode("view",{class:"title-father"},[e.createElementVNode("image",{class:"title-img",src:"/static/index/watch/uni.png"}),e.createElementVNode("view",{class:"title-font"}," 护理单元 ")]),e.createElementVNode("view",{class:"zhezhao-top"}),e.createElementVNode("view",{class:"zhezhao-bottom"}),e.createElementVNode("scroll-view",{class:"menus-father","scroll-y":"","scroll-top":m.value},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(ie.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass(["menu",{warning:t.warning,target:l===_.value}]),style:e.normalizeStyle([l===a.value?{backgroundColor:"#fff"}:{},_.value===l?{backgroundColor:"#ddf0ff"}:{}]),onClick:e=>{a.value=l}},[e.createElementVNode("view",{class:"menu-img"},[e.createVNode(o,{width:"65rpx",height:"65rpx",links:t.url,playing:a.value===l},null,8,["links","playing"])]),e.createElementVNode("view",{style:{"margin-left":"10rpx"}},[e.createElementVNode("view",{style:e.normalizeStyle([{"font-size":"31rpx",overflow:"hidden","white-space":"nowrap","text-overflow":"ellipsis",width:"200rpx"},l===a.value?{color:"#017DE9 "}:{}])},e.toDisplayString(t.name),5)])],14,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"45rpx"}})],8,["scroll-top"])]),e.createElementVNode("view",{class:"view-right"},[e.createElementVNode("view",{class:"scroll-vi"},[e.createElementVNode("view",{class:"zhezhao-left"}),e.createElementVNode("view",{class:"zhezhao-right"}),e.createElementVNode("scroll-view",{"scroll-x":"true",style:{width:"66%",height:"100%"}},[e.createElementVNode("view",{style:{display:"flex","align-items":"center","margin-top":"5rpx"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(B.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass(["menu",{target:l===I.value}]),style:e.normalizeStyle(I.value===l?{backgroundColor:"#ddf0ff"}:{}),onClick:e=>{i.value=l}},[t.url?(e.openBlock(),e.createBlock(o,{key:0,links:t.url,playing:i.value===l},null,8,["links","playing"])):e.createCommentVNode("",!0),t.url?(e.openBlock(),e.createElementBlock("text",{key:1,class:e.normalizeClass(["menu-font",{zoom:i.value===l}]),style:e.normalizeStyle(i.value===l?{color:"#008FF5"}:{})},e.toDisplayString(t.name),7)):e.createCommentVNode("",!0),t.url?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:2},[e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx"},src:"/static/index/watch/more.png"})]))],14,["onClick"])))),128))])]),e.createElementVNode("view",{class:"right-father"},[e.createElementVNode("view",{style:{"font-weight":"600","font-size":"90rpx","margin-right":"15rpx"}}," 10:18 "),e.createElementVNode("view",{class:"",style:{"font-weight":"600","margin-right":"50rpx"}},[e.createElementVNode("view",{class:""},"7-25"),e.createElementVNode("view",{class:""},"星期三")]),e.createElementVNode("view",{class:e.normalizeClass({targetbutton:F.value}),style:{display:"flex","align-items":"center"}},[e.createElementVNode("image",{style:{width:"65rpx",height:"65rpx"},src:"/static/index/newindex/curve/shezhi.png",onClick:re}),e.createElementVNode("view",{style:{"font-size":"32rpx","margin-left":"10rpx"},onClick:re}," 设置 ")],2)])]),e.createElementVNode("view",{class:"big-bgc"},[e.createElementVNode("view",{style:{width:"100%",position:"absolute",top:"0",left:"0","z-index":"1",display:"flex","align-items":"center"}},[e.createElementVNode("text",{style:{"margin-top":"40rpx","font-size":"32rpx","margin-left":"50rpx"}}," NUID:2508000001 "),e.createElementVNode("text",{class:"new-weight"}," 护理单元01 "),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("view",{class:"right-container-tem"},[e.createElementVNode("image",{class:"right-container-tem-img",src:M}),e.createElementVNode("text",{class:"right-container-tem-text"},"23°C"),e.createElementVNode("image",{class:"right-container-tem-img",src:A}),e.createElementVNode("text",{class:"right-container-tem-text"},"39%")])])])]),e.createElementVNode("view",{class:"picture"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(p,((t,l)=>e.createElementVNode("view",{class:"picture-card",key:l,style:e.normalizeStyle({color:f.value===l?"#1486EB":""}),onClick:e=>(e=>{switch(f.value=e,e){case 0:uni.$emit("monitor:switchDisplay",0);break;case 1:uni.$emit("monitor:switchDisplay",4);break;case 2:uni.$emit("monitor:switchDisplay",1);break;case 3:uni.$emit("monitor:switchDisplay",2);break;case 4:uni.$emit("monitor:switchDisplay",3)}})(l)},[e.createElementVNode("view",{class:"bgc-card",style:e.normalizeStyle({background:f.value===l?"#E2EDFC":""})},[e.createElementVNode("image",{style:{width:"90rpx",height:"90rpx"},src:`/static/index/picture/${l}${f.value===l?1:0}.png`},null,8,["src"])],4),e.createTextVNode(" "+e.toDisplayString(t),1)],12,["onClick"]))),64))]),e.createElementVNode("view",{class:"right-right"},[0===i.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"red-kuang"},[e.createElementVNode("image",{style:{width:"75rpx",height:"90rpx","margin-left":"40rpx","margin-top":"-10rpx"},src:"/static/index/watch/laotai.png"}),e.createElementVNode("view",{class:""},[e.createElementVNode("view",{style:{"margin-left":"20rpx",display:"flex","align-items":"center","margin-bottom":"5rpx"}},[e.createElementVNode("view",{class:"font-weight"}," 王金凤 "),e.createElementVNode("view",{class:"font-small",style:{"margin-left":"30rpx"}}," 女 80岁 "),e.createElementVNode("view",{class:"blue-bgc"}," 当日指令 ")]),e.createElementVNode("view",{class:"font-small",style:{"margin-left":"20rpx","margin-top":"0rpx"}}," 入住时间:2025.01.01 ")])])):e.createCommentVNode("",!0),1===i.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"red-kuang"},[e.createElementVNode("image",{style:{width:"110rpx",height:"140rpx","margin-left":"40rpx","margin-top":"-10rpx"},src:"/static/index/watch/laotou.png"}),e.createElementVNode("view",{class:""},[e.createElementVNode("view",{style:{"margin-left":"20rpx",display:"flex","align-items":"center","margin-bottom":"5rpx","margin-top":"25rpx",height:"60rpx"}},[e.createElementVNode("view",{class:"font-weight"}," 李树奎 "),e.createElementVNode("view",{class:"font-small",style:{"margin-left":"10rpx"}}," 男 50岁 ")]),e.createElementVNode("view",{class:"font-small",style:{"margin-left":"20rpx","margin-top":"25rpx"}}," 入职时间:2025.01.15 ")])])):e.createCommentVNode("",!0),0===i.value?(e.openBlock(),e.createElementBlock("view",{key:2,class:"states-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(S.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["states",t.error?"warning":""]),key:l},[e.createElementVNode("image",{style:{width:"40rpx",height:"40rpx"},src:t.url},null,8,["src"]),e.createElementVNode("view",{style:{color:"#555555","margin-left":"5rpx","font-size":"25rpx"}},e.toDisplayString(t.name),1)],2)))),128))])):e.createCommentVNode("",!0),1===i.value?(e.openBlock(),e.createElementBlock("view",{key:3,class:"states-father"},[e.createElementVNode("view",{class:"phone-number"},[e.createElementVNode("image",{class:"bgc-image",src:"/static/index/watch/phonebgc.png"}),e.createElementVNode("image",{style:{width:"20rpx",height:"35rpx","margin-left":"40rpx"},src:"/static/index/watch/phone.png"}),e.createElementVNode("view",{class:"font-phone"},"15533556676"),e.createElementVNode("image",{class:"phone-ball",src:"/static/index/watch/phoneball.png"})])])):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"big-view"},[e.createElementVNode("view",{class:"font-weight"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"pao"},[e.createElementVNode("image",{style:{width:"100%",height:"100%",position:"absolute",top:"0",left:"0"},src:"/static/index/watch/pao.png"}),e.createElementVNode("view",{style:{"font-size":"20rpx","z-index":"1"}}," 待进行 ")]),e.createElementVNode("view",{class:"juzhong",style:{top:"-120rpx"}},[e.createVNode(o,{width:"600rpx",height:"500rpx",links:T.value,playing:n.value,loop:!0,interval:120},null,8,["links","playing"])]),e.createElementVNode("view",{class:"juzhong",style:{"z-index":"2","margin-top":"50rpx"}},[e.createVNode(o,{width:"300rpx",height:"200rpx",links:C.value,playing:n.value,loop:!0,interval:120},null,8,["links","playing"])]),e.createElementVNode("image",{style:{width:"300rpx",height:"200rpx"},src:"/static/index/newindex/wendu/2.png"}),e.createElementVNode("view",{style:{"font-size":"25rpx"}}," 一级压疮防护 ")]),e.createElementVNode("view",{class:"bottom-view"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.value,((t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"button-father",onClick:e=>(e=>{switch(e){case 0:uni.$emit("monitor:doSnapshot"),g.value.includes(e)||g.value.push(e),Y.has(e)&&clearTimeout(Y.get(e));const t=setTimeout((()=>{const t=g.value.indexOf(e);-1!==t&&g.value.splice(t,1),Y.delete(e)}),500);Y.set(e,t);break;case 1:g.value.includes(e)?(uni.$emit("monitor:stopRecord"),J(e)):(uni.$emit("monitor:startRecord"),g.value.push(e));break;case 2:g.value.includes(e)?(uni.$emit("monitor:stopTalk"),J(e)):(uni.$emit("monitor:openTalk"),g.value.push(e));break;case 3:g.value.includes(e)?(uni.$emit("monitor:toggleVolume"),J(e)):(uni.$emit("monitor:toggleVolume"),g.value.push(e));break;case 4:g.value.includes(e)?(uni.$emit("monitor:stopAlarm"),J(e)):(uni.$emit("monitor:startAlarm"),g.value.push(e));break;case 5:g.value.includes(e)?(l.value=h,J(e)):(l.value=w,g.value.push(e)),X.value=!1;break;case 6:case 7:g.value.includes(e)?J(e):g.value.push(e);break;case 8:g.value.includes(e)?(uni.$emit("monitor:changeQuality"),J(e)):(uni.$emit("monitor:changeQuality"),g.value.push(e));break;case 9:X.value=!0}})(a)},[e.createElementVNode("view",{class:"bottom-button",style:e.normalizeStyle({backgroundColor:g.value.includes(a)?"#DDE9F0":""})},[e.createElementVNode("image",{style:{width:"70%",height:"70%"},src:`/static/index/camera/${a}${g.value.includes(a)?1:0}.png`},null,8,["src"])],4),e.createElementVNode("view",{style:e.normalizeStyle([{"font-size":"25rpx"},{color:g.value.includes(a)?"#0E86EA":""}])},e.toDisplayString(t),5)],8,["onClick"])))),256)),e.withDirectives(e.createElementVNode("view",{class:"jump-white"},[e.createElementVNode("view",{style:{display:"flex","justify-content":"space-around",height:"100rpx",width:"100%","align-items":"center"}},[e.createElementVNode("view",{class:""}," 清晰度 "),e.createElementVNode("image",{style:{width:"40rpx",height:"40rpx"},src:"/static/index/camera/back.png",onClick:r[0]||(r[0]=e=>X.value=!1)})]),(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(v,((t,l)=>e.createElementVNode("view",{class:"jump-item",key:l,onClick:e=>(e=>{u.value=e,3===e?(uni.$emit("monitor:flipImage",6),J(9)):(uni.$emit("monitor:flipImage",e),g.value.push(9))})(l),style:e.normalizeStyle({backgroundColor:u.value===l?"#E5E8EE":""})},[e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx","margin-right":"10rpx","margin-left":"-10rpx"},src:u.value===l?t.target:t.url},null,8,["src"]),e.createElementVNode("view",{style:e.normalizeStyle({color:u.value===l?"#0E86EA":""})},e.toDisplayString(t.name),5)],12,["onClick"]))),64))],512),[[e.vShow,X.value]])])])]),e.createVNode(s,{onMovecard:W,getblue:c.value,moveleft:5},null,8,["getblue"]),e.withDirectives(e.createVNode(U,{onMovecard:R},null,512),[[e.vShow,!g.value.includes(5)]])])}}}),[["__scopeId","data-v-bd9aba2f"]]),R=s({__name:"exit",props:{show:{type:Boolean,default:!0}},emits:["close"],setup(t,{emit:l}){const a=t,i=e.ref(!1);e.watch((()=>a.show),((e,t)=>{!t&&e&&(i.value=!1,setTimeout((()=>i.value=!0),50))}));const r=l;function n(){r("close")}const o=()=>{uni.setStorageSync("token",1),uni.redirectTo({url:"/pages/login/login"})};return(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["neuro-wrapper",i.value?"is-active":""])},[e.createElementVNode("view",{class:"neuro-mask",onClick:n}),e.createElementVNode("view",{class:"neuro-box",onClick:a[0]||(a[0]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"button-father"},[e.createElementVNode("view",{class:"button-white",onClick:n},"取消"),e.createElementVNode("view",{class:"button",onClick:o},"确定")]),e.createElementVNode("view",{class:"title"},"退出登录"),e.createElementVNode("view",{class:"card-font"}," 确定要注销130******31账户吗 ")])],2)),[[e.vShow,t.show]])}},[["__scopeId","data-v-9117e9d1"]]),W=s({__name:"reset",props:{show:{type:Boolean,default:!0}},emits:["close"],setup(t,{emit:a}){const i=t,r=e.reactive({username:uni.getStorageSync("username"),oldpassword:"",password:"",confirmpassword:""}),n=e.ref(!1);e.watch((()=>i.show),((e,t)=>{!t&&e&&(n.value=!1,setTimeout((()=>n.value=!0),50))}));const o=a;function c(){o("close")}const s=()=>{r.username&&r.oldpassword&&r.password&&r.confirmpassword?r.password.length<6||r.confirmpassword.length<6?uni.showToast({title:"密码要多于六位",icon:"none",duration:2e3}):r.password===r.confirmpassword?(e=>p({url:`${uni.getStorageSync("serverUrl")}/sys/user/updatePassword`,method:"put",data:{username:e.username,oldpassword:e.oldpassword,password:e.password,confirmpassword:e.confirmpassword}}))(r).then((e=>{l("log","at component/public/reset.vue:105","res",e),e.success?(uni.showToast({title:e.message,icon:"none",duration:2e3}),setTimeout((()=>{uni.setStorageSync("token",1),uni.reLaunch({url:"/pages/login/login"})}),1e3)):uni.showToast({title:e.message,icon:"none",duration:2e3})})):uni.showToast({title:"新密码与确认密码不一致",icon:"none",duration:2e3}):uni.showToast({title:"请完善信息",icon:"error",duration:2e3})};return(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["neuro-wrapper",n.value?"is-active":""])},[e.createElementVNode("view",{class:"neuro-mask",onClick:c}),e.createElementVNode("view",{class:"neuro-box",onClick:a[3]||(a[3]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"button-father"},[e.createElementVNode("view",{class:"button",onClick:s},"确定")]),e.createElementVNode("view",{class:"title"},"修改账号登录密码"),e.createElementVNode("view",{class:"password-father",style:{"margin-top":"50rpx"}},[e.withDirectives(e.createElementVNode("input",{class:"password",password:!1,"onUpdate:modelValue":a[0]||(a[0]=e=>r.oldpassword=e),maxlength:"15",placeholder:"请输入旧密码"},null,512),[[e.vModelText,r.oldpassword]])]),e.createElementVNode("view",{class:"password-father"},[e.withDirectives(e.createElementVNode("input",{class:"password",password:!1,"onUpdate:modelValue":a[1]||(a[1]=e=>r.password=e),maxlength:"15",placeholder:"请输入新密码"},null,512),[[e.vModelText,r.password]])]),e.createElementVNode("view",{class:"password-father"},[e.withDirectives(e.createElementVNode("input",{class:"password",password:!1,"onUpdate:modelValue":a[2]||(a[2]=e=>r.confirmpassword=e),maxlength:"15",placeholder:"请再次输入新密码"},null,512),[[e.vModelText,r.confirmpassword]])]),e.createElementVNode("view",{class:"card-font"})])],2)),[[e.vShow,t.show]])}},[["__scopeId","data-v-8de7e110"]]),Y=s(e.defineComponent({__name:"settings",emits:["jump"],setup(t,{emit:l}){const a=e.ref(null),i=e.ref(!1),r=e.ref(!1),n=e.ref(!1),o=e.ref(!1),c=e.ref(!1),s=e.ref(["雷达扫描","扫码添加","手动录入","修改密码","切换机构","检查更新","用户协议","隐私政策"]);e.ref(!0),e.ref("");const v=e.ref(!1),p=e=>{var t;switch(e){case 0:uni.navigateTo({url:"/pages/watch/settings/leida"});break;case 1:uni.navigateTo({url:"/pages/watch/settings/saoma"});break;case 2:uni.navigateTo({url:"/pages/watch/settings/input"});break;case 3:c.value=!0;break;case 4:break;case 5:i.value=!0,null==(t=a.value)||t.check_update();break;case 6:r.value=!0,n.value=!0,v.value=!1,setTimeout((()=>{v.value=!0}),50);break;case 7:r.value=!0,n.value=!1,v.value=!1,setTimeout((()=>{v.value=!0}),50)}},g=()=>{i.value&&uni.showToast({title:"已经是最新版了",icon:"none",duration:2e3})},w=()=>{uni.navigateBack()};return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"index-content-other"},[e.createElementVNode("view",{class:"index-content-right",onClick:w},[e.createElementVNode("image",{class:"back-img",src:"/static/index/settings/back.png"},null,8,["src"]),e.createTextVNode(" 返回 ")]),e.createElementVNode("view",{class:"array-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value.slice(0,3),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>p(l)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"array-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value.slice(3,5),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>p(l+3)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l+3}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"array-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value.slice(5,8),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>p(l+5)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l+5}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"bottom-button",onClick:l[0]||(l[0]=e=>o.value=!0)}," 注销登录 "),e.createElementVNode("view",{class:"text-center"},[e.createElementVNode("view",null,"长春市朝阳区久泰开运养老服务有限公司")]),e.createVNode(R,{show:o.value,onClose:l[1]||(l[1]=e=>o.value=!1)},null,8,["show"]),e.createVNode(W,{show:c.value,onClose:l[2]||(l[2]=e=>c.value=!1)},null,8,["show"]),e.createVNode(d,{ref_key:"zyupgrade",ref:a,noticeflag:!0,theme:"blue",h5preview:!1,oldversion:"1.0.0",appstoreflag:!0,autocheckupdate:!0,onShowupdateTips:g},null,512),r.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"popup-any",style:e.normalizeStyle(v.value?{opacity:1}:{opacity:0})},[e.createElementVNode("view",{class:"mask",onClick:l[3]||(l[3]=e=>r.value=!1)}),e.createElementVNode("view",{class:"box-any"},[e.createElementVNode("view",{class:"title-left"},[n.value?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"back-font"},"NU护理单元隐私信息保护政策")),n.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"back-font"},"NU护理单元用户服务协议")):e.createCommentVNode("",!0)]),n.value?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(u,{key:0})),n.value?(e.openBlock(),e.createBlock(m,{key:1})):e.createCommentVNode("",!0)])],4)):e.createCommentVNode("",!0)]))}}),[["__scopeId","data-v-ccb4084b"]]),J="/static/click.png",X="/static/x.png",Z=s(e.defineComponent({__name:"input",setup(t){const l=()=>{uni.navigateBack()},a=e.ref("");return(t,i)=>(e.openBlock(),e.createElementBlock("view",{class:"index-content-other"},[e.createElementVNode("view",{class:"index-content-right",onClick:l},[e.createElementVNode("image",{class:"back-img",src:"/static/index/settings/back.png"},null,8,["src"]),e.createTextVNode(" 返回 ")]),e.createElementVNode("view",{class:"saomiao"},[e.createElementVNode("view",{class:"big-ball"},[e.createElementVNode("view",{class:"ball"})]),e.createElementVNode("image",{class:"left-img",src:J}),e.withDirectives(e.createElementVNode("input",{class:"saoma-input",password:!1,"onUpdate:modelValue":i[0]||(i[0]=e=>a.value=e),placeholder:"请手动录入NUID"},null,512),[[e.vModelText,a.value]]),e.withDirectives(e.createElementVNode("image",{class:"right-img",src:X,onClick:i[1]||(i[1]=e=>a.value="")},null,512),[[e.vShow,a.value]]),e.createElementVNode("view",{class:"blue-button"}," 确定 ")]),e.createElementVNode("image",{class:"big-bgc",src:"/static/bgc.png"}),e.createElementVNode("image",{class:"big-img",src:"/static/qiu.png"}),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 ")]))}}),[["__scopeId","data-v-87f7dd57"]]),H=s(e.defineComponent({__name:"saoma",setup(t){const l=()=>{uni.navigateBack()};function a(){uni.scanCode({onlyFromCamera:!0,scanType:["qrCode","barCode"],success(e){},fail(e){}})}return e.ref(""),(t,i)=>(e.openBlock(),e.createElementBlock("view",{class:"index-content-other"},[e.createElementVNode("view",{class:"index-content-right",onClick:l},[e.createElementVNode("image",{class:"back-img",src:"/static/index/settings/back.png"},null,8,["src"]),e.createTextVNode(" 返回 ")]),e.createElementVNode("view",{class:"saomiao"}),e.createElementVNode("image",{class:"big-bgc",src:"/static/kuai.png"}),e.createElementVNode("view",{class:"big-img",onClick:a},[e.createElementVNode("image",{style:{width:"100%",height:"100%"},src:"/static/sao.png"}),e.createElementVNode("view",{class:"big-font"}," 点击扫描区域二维码 ")]),e.createElementVNode("image",{class:"big-QR",src:"/static/qr.png",onClick:a}),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 ")]))}}),[["__scopeId","data-v-33cdb877"]]),G="/static/index/quxiao.png",Q=()=>p({url:`${uni.getStorageSync("serverUrl")}/api/pad/baseInfo/queryPadPageList?token=${uni.getStorageSync("token")}`,method:"get"}),K=s(e.defineComponent({__name:"leida",setup(t){const l=()=>{uni.navigateBack()},a=e.ref(!0),i=e.ref(0),r=e.ref(100),n=e.ref(-1),o=e.ref(""),c=e.ref(),s=e.ref(!1),d=e.ref([{url:"/static/index/leida/00.png",targetUrl:"/static/index/leida/01.png",target:!1},{url:"/static/index/leida/10.png",targetUrl:"/static/index/leida/11.png",target:!1},{url:"/static/index/leida/20.png",targetUrl:"/static/index/leida/21.png",target:!1},{url:"/static/index/leida/30.png",targetUrl:"/static/index/leida/31.png",target:!1}]),m=e.ref([]),u=e.ref([]),v=e.ref(0);let p=null;function g(e){return"function"==typeof globalThis.requestAnimationFrame?globalThis.requestAnimationFrame(e):setTimeout((()=>e(Date.now())),16)}function w(e){var t;return"number"==typeof e?e:(null==(t=globalThis.performance)?void 0:t.now)?globalThis.performance.now():Date.now()}let h=null;function f(e){const t=w(e);h||(h=t);const l=(t-h)/1e3;h=t,a.value&&(i.value=(i.value+r.value*l)%360),p=g(f)}function N(){100===D.value&&(C(),y())}function y(){a.value=!a.value,a.value?(h=w(),k()):T()}const x=e.computed((()=>({transform:`rotate(${i.value}deg)`}))),E=e.ref([]);let V=null,b=0;function k(){V||(V=setInterval((()=>{!function(){const e=1*Math.random()+5,t=Math.random()*(200-e),l=Math.random()*(200-e),a=b++,i={id:a,size:e,left:t,top:l,color:"#02a9ff",opacity:0};E.value.push(i),setTimeout((()=>{i.opacity=1}),20),setTimeout((()=>{i.opacity=0,setTimeout((()=>{E.value=E.value.filter((e=>e.id!==a))}),500)}),2e3)}()}),500))}function T(){clearInterval(V),V=null}const D=e.ref(0);function C(){let e=Date.now(),t=Math.floor(30*Math.random())+30,l=!1,a=Math.floor(500*Math.random())+300,i=0;Q().then((e=>{e.result.records.forEach((e=>{e.menu=JSON.parse(JSON.stringify(d.value)),e.isNew=!0})),u.value=[],u.value.push(JSON.parse(JSON.stringify(e.result.records[0]))),u.value.push(JSON.parse(JSON.stringify(e.result.records[0]))),u.value.push(JSON.parse(JSON.stringify(e.result.records[0]))),u.value.push(JSON.parse(JSON.stringify(e.result.records[0]))),u.value.push(JSON.parse(JSON.stringify(e.result.records[0]))),function(){const e=u.value.length;m.value=[];const t=Array.from({length:e},(()=>Math.random())),l=t.reduce(((e,t)=>e+t),0),a=t.map((e=>e/l*4e3));let i=0;for(let r=0;r{m.value.push(u.value[r]),m.value.length}),i)}()})),setTimeout((function r(){let n=Date.now()-e;if(!l&&D.value>=t&&(l=!0,i=Date.now()),l){if(!(Date.now()-i>=a))return void setTimeout(r,16);l=!1}let o=Math.min(n/4e3,1);D.value=Math.floor(100*o),100===D.value&&y(),D.value<100&&setTimeout(r,16)}),16)}const S=(e,t)=>{n.value=e,o.value=t.nuName,c.value=t.nuId,s.value=!1,setTimeout((()=>{s.value=!0}),50)};e.onMounted((()=>{B()}));const B=()=>{h=w(),p=g(f),k(),C()},z=e.ref(-1),_=e.ref(-1),I=e=>{if(100===D.value)switch(e){case 0:if(0===_.value)return void(_.value=1);if(1===_.value)return void(_.value=0);z.value-2<-1?z.value=-1:(z.value=z.value-2,U(z.value));break;case 1:if(0===_.value)return void(_.value=1);if(1===_.value)return void(_.value=0);z.value+1>m.value.length-1||(z.value++,U(z.value));break;case 2:if(0===_.value)return void(_.value=1);if(1===_.value)return void(_.value=0);z.value+1===m.value.length-1||-1===z.value?(z.value++,U(z.value)):z.value+2>m.value.length-1||(z.value=z.value+2,U(z.value));break;case 3:if(0===_.value)return void(_.value=1);if(1===_.value)return void(_.value=0);-1!==z.value&&(z.value--,U(z.value));break;case 4:if(1===_.value)return void S(z.value,m.value[z.value]);-1===z.value?N():_.value=0;break;case 5:-1!==_.value?_.value=-1:l()}};function U(t){const l=m.value.length;t<0&&(t=0),t>=l&&(t=l-1),e.nextTick((()=>{const e=245*Math.floor(t/2),a=e+245,i=v.value,r=i+475;let n=v.value;er&&(n=a-475);const o=245*Math.ceil(l/2),c=Math.max(0,o-475);n<0&&(n=0),n>c&&(n=c),v.value=Math.round(n)}))}return e.onBeforeUnmount((()=>{var e;null!=p&&(e=p,"function"==typeof globalThis.cancelAnimationFrame?globalThis.cancelAnimationFrame(e):clearTimeout(e)),T()})),(t,a)=>{const i=e.resolveComponent("arrowkeys");return e.openBlock(),e.createElementBlock("view",{class:"index-content-other"},[e.createElementVNode("view",{class:"index-content-right",onClick:l},[e.createElementVNode("image",{class:"back-img",src:"/static/index/settings/back.png"},null,8,["src"]),e.createTextVNode(" 返回 ")]),e.createElementVNode("view",{class:"left-contain"},[e.createElementVNode("view",{class:"blue-bgc"},[e.createElementVNode("image",{class:"all-img",src:"/static/index/leida/leftbgc.png"}),e.createElementVNode("image",{class:"all-img",style:{width:"90%",height:"90%","margin-top":"5%","margin-left":"5%"},src:"/static/index/leida/bigball.png"}),e.createElementVNode("view",{class:"inset-img",style:e.normalizeStyle(x.value)},[e.createElementVNode("image",{class:"all-img",style:{"z-index":"2"},src:"/static/index/leida/biao.png"}),e.createElementVNode("image",{class:"all-img",style:{"z-index":"1"},src:"/static/index/leida/ball.png"}),e.createElementVNode("image",{class:"all-img",src:"/static/index/leida/shallow.png"})],4),e.createElementVNode("view",{class:"ball-layer"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(E.value,(t=>(e.openBlock(),e.createElementBlock("view",{key:t.id,class:"ball",style:e.normalizeStyle({width:t.size+"px",height:t.size+"px",top:t.top+"px",left:t.left+"px",backgroundColor:t.color,opacity:t.opacity})},null,4)))),128))])]),e.createElementVNode("view",{style:{width:"100%",display:"flex","flex-direction":"column","align-items":"center"}},[e.createElementVNode("view",{class:e.normalizeClass(["blue-button",-1==z.value?"zerotarget":""]),style:{"margin-top":"0"},onClick:N},e.toDisplayString((D.value,"扫描")),3),e.createElementVNode("view",{class:"progress-wrap"},[e.createElementVNode("view",{class:"progress-inner",style:e.normalizeStyle({width:D.value+"%"})},null,4)]),e.createElementVNode("view",{class:"progress-text"},e.toDisplayString(D.value)+"%",1)])]),e.createElementVNode("view",{class:"other"},[e.createElementVNode("scroll-view",{ref:"scrollViewRef","scroll-y":"",class:"other-father","scroll-top":v.value},[e.createElementVNode("view",{class:"card-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["card",[z.value===l&&-1===_.value?"zerotarget":"",{"fade-in":t.isNew}]]),key:l,onAnimationend:e=>{t.isNew=!1}},[e.createElementVNode("view",{class:"main-title"},[e.createElementVNode("view",{class:"main-title-font",style:{"font-weight":"600","font-size":"40rpx"}},e.toDisplayString(t.nuName),1),e.createElementVNode("view",{class:e.normalizeClass(["video-father",z.value===l&&0===_.value?"zerotarget":""])},[e.createElementVNode("image",{class:"edit-img",onClick:a[0]||(a[0]=()=>{}),src:"/static/index/leida/play.png"})],2)]),e.createElementVNode("view",{class:e.normalizeClass(["blue-button",z.value===l&&1===_.value?"zerotarget":""]),style:{width:"200rpx",height:"70rpx","margin-top":"50rpx"},onClick:e=>S(l,t)}," 重命名 ",10,["onClick"]),e.createElementVNode("view",{class:"card-tags"},[e.createElementVNode("view",{style:{"margin-left":"80rpx"}}," NUID:"+e.toDisplayString(t.nuId),1)]),e.createElementVNode("view",{class:"play-img"}," 护理单元 ")],42,["onAnimationend"])))),128)),-1!==n.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"popup-any",style:e.normalizeStyle(s.value?{opacity:1}:{opacity:0})},[e.createElementVNode("view",{class:"mask",onClick:a[1]||(a[1]=e=>n.value=-1)}),e.createElementVNode("view",{class:"rename-father"},[e.createElementVNode("view",{class:"rename-title"}," 重命名 "),e.createElementVNode("view",{style:{width:"100%","margin-left":"5rpx","margin-bottom":"20rpx"}}," NUID:"+e.toDisplayString(c.value),1),e.createElementVNode("view",{class:"rename-input"},[e.withDirectives(e.createElementVNode("input",{class:"uni-input",placeholder:"请重新命名","onUpdate:modelValue":a[2]||(a[2]=e=>o.value=e)},null,512),[[e.vModelText,o.value]]),e.withDirectives(e.createElementVNode("image",{class:"right-img",src:G,onClick:a[3]||(a[3]=e=>o.value="")},null,512),[[e.vShow,o.value]])]),e.createElementVNode("view",{class:"blue-button",style:{width:"200rpx",height:"70rpx","margin-top":"40rpx"},onClick:a[4]||(a[4]=e=>{return t=o.value,l=n.value,t&&(m.value[l].nuName=t),void(n.value=-1);var t,l})}," 确定 ")])],4)):e.createCommentVNode("",!0)])],8,["scroll-top"])]),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 "),e.createVNode(i,{onMovecard:I})])}}}),[["__scopeId","data-v-2b7adbee"]]),ee=s(e.defineComponent({__name:"index",props:{isShow:{type:Boolean,required:!0},propsmove:{type:Number},isMain:{type:Boolean}},emits:["back"],setup(t,{emit:l}){const a=t,i=e.ref(-1);e.watch((()=>a.isMain),((e,t)=>{"boolean"==typeof t&&a.isShow&&(!0===t&&!1===e?(i.value=0,r.value=0,o.value=r.value):!1===t&&!0===e&&(i.value=-1,r.value=-1,o.value=0))}));const r=e.ref(-1),n=l;e.watch((()=>a.propsmove),(()=>{if(-1!=i.value)switch(i.value){case 0:switch(a.propsmove){case 0:i.value=-1,r.value=-1,n("back");break;case 1:r.value{const o=r?String(n+i).padStart(2,"0"):n+i;return`${e}/${t}${o}.${a}`}))}const u=e.ref([{url:"/static/index/newindex/rightmenu/0.png",name:"重点追踪"},{url:"/static/index/newindex/rightmenu/1.png",name:"转单执行"},{url:"/static/index/newindex/rightmenu/2.png",name:"协助执行"}]),v=e.ref([{url:"/static/index/newindex/states/0.png",name:"狂躁"},{url:"/static/index/newindex/states/1.png",name:"易怒"},{url:"/static/index/newindex/states/2.png",name:"大体重"},{url:"/static/index/newindex/states/3.png",name:"四肢"}]),p=e.ref(m("/static/index/newindex/leftmenu","",3,"png",0,!1));e.ref(m("/static/index/newindex/huli","care",9,"png",0,!1));const g=m("/static/index/newindex/curve","curve_",9,"png",1,!1),w=e.ref([...g,...[...g].reverse()]),h=m("/static/index/newindex/curve","breathe_",9,"png",1,!1),f=e.ref([...h,...[...h].reverse()]),N=e.ref([{url:m("/static/index/newindex/huli","care",8,"png",0,!1),name:"护理类"},{url:m("/static/index/newindex/yiliao","health_",9,"png",1,!1),name:"医疗类"},{url:m("/static/index/newindex/kufang","storeroom_",11,"png",1,!1),name:"库房类"},{url:m("/static/index/newindex/baojie","clean_",12,"png",1,!1),name:"保洁类"},{url:m("/static/index/newindex/xiaoxi","wash_",14,"png",1,!1),name:"消洗类"},{url:m("/static/index/newindex/kangfu","recovery_",6,"png",1,!1),name:"康复类"}]),y=e.ref(!1);e.watch((()=>a.isShow),((e,t)=>{!t&&e?(y.value=!1,setTimeout((()=>{y.value=!0}),50)):y.value=!1}));const x=e.ref("");return e.onMounted((()=>{x.value=uni.getStorageSync("realname"),o.value=0,c.value=!0})),(t,l)=>{const a=e.resolveComponent("donghua");return e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(y.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"right-container-title-nav"},[e.createElementVNode("text",{style:{"margin-left":"30rpx"}}," NUID:2508000001 "),e.createElementVNode("text",{class:"new-weight"}," 护理单元01 "),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("view",{class:"right-container-tem"},[e.createElementVNode("image",{class:"right-container-tem-img",src:M}),e.createElementVNode("text",{class:"right-container-tem-text"},"23°C"),e.createElementVNode("image",{class:"right-container-tem-img",src:A}),e.createElementVNode("text",{class:"right-container-tem-text"},"39%")]),e.createElementVNode("image",{class:"right-icons-img",src:"/static/index/undericons/man.png"},null,8,["src"]),e.createElementVNode("view",null,e.toDisplayString(x.value),1)])]),e.createElementVNode("view",{class:"scroll-vi"},[e.createElementVNode("view",{class:"zhezhao-left"}),e.createElementVNode("view",{class:"zhezhao-right"}),e.createElementVNode("scroll-view",{"scroll-x":"true",style:{width:"100%",height:"100%"}},[e.createElementVNode("view",{style:{display:"flex","align-items":"center"}},[e.createElementVNode("view",{style:{width:"100rpx"}}),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(N.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass([{zerotarget:0===i.value&&r.value===l},"menu"]),style:e.normalizeStyle({backgroundColor:0===i.value&&r.value===l?"#ddf0ff":""}),onClick:e=>{o.value=l,r.value=l}},[e.createVNode(a,{links:t.url,playing:o.value===l},null,8,["links","playing"]),e.createElementVNode("text",{class:e.normalizeClass(["menu-font",{zoom:o.value===l}]),style:e.normalizeStyle(o.value===l?{color:"#008FF5"}:{})},e.toDisplayString(t.name),7)],14,["onClick"])))),128)),e.createElementVNode("view",{style:{width:"100rpx"}})])])]),e.createElementVNode("view",{class:"photo-father"},[e.createElementVNode("view",{class:"juzhong",style:{"margin-left":"-50rpx"}},[e.createVNode(a,{width:"1500rpx",height:"1000rpx",links:w.value,playing:c.value,loop:!0,interval:120},null,8,["links","playing"])]),e.createElementVNode("view",{class:"juzhong",style:{"z-index":"2","margin-top":"120rpx"}},[e.createVNode(a,{width:"800rpx",height:"500rpx",links:f.value,playing:c.value,loop:!0,interval:120},null,8,["links","playing"])]),e.createElementVNode("view",{class:"weight-time"},[e.createTextVNode(" 10:00 - 10:10 "),e.createElementVNode("view",{class:"pao-father"},[e.createElementVNode("image",{class:"pao-img",src:"/static/index/newindex/states/pao.png"},null,8,["src"]),e.createElementVNode("view",{style:{"z-index":"1"}}," 待执行 ")])]),e.createElementVNode("image",{class:"big-img",src:"/static/index/newindex/wendu/2.png"},null,8,["src"]),e.createElementVNode("view",{style:{display:"flex","align-items":"center","margin-top":"5rpx"}},[e.createElementVNode("view",{class:"server-name"}," 一级压疮防护 ")]),e.createElementVNode("view",{style:{display:"flex","align-items":"center","margin-top":"40rpx"}},[e.createElementVNode("image",{class:"down-img",src:"/static/index/newindex/states/left.png"},null,8,["src"]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(v.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"states-father"},[e.createElementVNode("image",{class:"icon-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{style:{"margin-top":"15rpx","margin-left":"10rpx"}},e.toDisplayString(t.name),1)])))),128)),e.createElementVNode("image",{class:"down-img",src:"/static/index/newindex/states/right.png"},null,8,["src"])]),e.createElementVNode("view",{style:{display:"flex","margin-top":"60rpx"}},[e.createElementVNode("view",{class:e.normalizeClass({thirdtarget:3===i.value&&0===r.value}),style:{width:"240rpx",height:"90rpx","margin-right":"40rpx"}},[e.createElementVNode("view",{class:"start-button"}," 开始服务 ")],2),e.createElementVNode("view",{class:e.normalizeClass({thirdtarget:3===i.value&&1===r.value}),style:{width:"240rpx",height:"90rpx"}},[e.createElementVNode("view",{class:"end-button"}," 结束服务 ")],2)])]),e.createElementVNode("view",{class:"left-menu"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(p.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,style:{margin:"30rpx 0"},class:e.normalizeClass({firsttarget:1===i.value&&r.value===l})},[e.createElementVNode("view",{class:"left-ball",style:e.normalizeStyle({backgroundColor:1===i.value&&r.value===l?"#ddf0ff":""})},[e.createElementVNode("image",{class:"left-menu-img",src:t},null,8,["src"])],4)],2)))),128))]),e.createElementVNode("view",{class:"right-menu"},[e.createElementVNode("view",{class:"zhezhao-top",onClick:l[0]||(l[0]=e=>s.value-=115)}),e.createElementVNode("view",{class:"zhezhao-bottom",onClick:l[1]||(l[1]=e=>s.value+=115)}),e.createElementVNode("image",{class:"top-img",src:"/static/index/newindex/rightmenu/top.png",onClick:l[2]||(l[2]=e=>s.value>0?s.value-=115:s.value=0)},null,8,["src"]),e.createElementVNode("scroll-view",{"scroll-y":"true",class:"right-scroll","scroll-top":s.value,onScroll:d},[e.createElementVNode("view",{style:{height:"30rpx"}}),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(u.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass({secondtarget:2===i.value&&r.value===l}),style:{margin:"20rpx auto",width:"110rpx"}},[e.createElementVNode("view",{class:"white-circle",style:e.normalizeStyle({backgroundColor:2===i.value&&r.value===l?"#ddf0ff":""})},[e.createElementVNode("image",{class:"right-menu-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{class:"right-menu-name"},e.toDisplayString(t.name),1)],4)],2)))),256)),e.createElementVNode("view",{style:{height:"30rpx"}})],40,["scroll-top"]),e.createElementVNode("image",{class:"top-img",src:"/static/index/newindex/rightmenu/bottom.png",onClick:l[3]||(l[3]=e=>s.value>55*u.value.length?s.value=55*u.value.length:s.value+=115)},null,8,["src"])])],4)}}}),[["__scopeId","data-v-9c8806b6"]]),te="/static/index/newruler/jiao.png";function le(e,t,l,a="png",i=0,r=!1){return Array.from({length:l},((l,n)=>{const o=r?String(n+i).padStart(2,"0"):n+i;return`${e}/${t}${o}.${a}`}))}const ae=[{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706886",title:"协助喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604232524795905",title:"鼻饲喂药",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902604428667228162",title:"注射器/吸管喂药",tagName:"头部,大体重"}],levle:"2",title:"协助喂药",key:"1900114812020310017",parentId:"1900112597427793921",url:le("/static/index/diet","medicine_",7,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605892869394433",title:"一级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606105021485058",title:"二级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606339931869185",title:"三级压疮防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606614344208386",title:"一级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902606869953482753",title:"二级压疮防护",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607023431454722",title:"三级压疮防护",tagName:"大体重"}],levle:"2",title:"压疮防护",key:"1900115034452639746",parentId:"1900112597427793921",url:le("/static/index/diet","knead_",4,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706887",title:"床椅转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706888",title:"床椅转移",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605073730211842",title:"床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605223185846273",title:"床椅转移",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902605365393723393",title:"协助床椅转移",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902605496071458818",title:"协助床椅转移",tagName:null}],levle:"2",title:"床椅转移",key:"1902248363784159233",parentId:"1900112597427793921",url:le("/static/index/diet","chair_",8,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607507626102786",title:"轮椅防护",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902607677415723010",title:"轮椅防护",tagName:"大体重"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902607817589362689",title:"轮椅防护",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902608061588803585",title:"轮椅防护",tagName:"大体重"}],levle:"2",title:"轮椅防护",key:"1902280900178886657",parentId:"1900112597427793921",url:le("/static/index/diet","wheelchair_",10,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608564582322178",title:"约束位按摩",tagName:"手"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902608974609092610",title:"约束位按摩",tagName:"足"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618507855237121",title:"约束位按摩",tagName:"全"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902618751548493825",title:"防护网约束",tagName:null}],levle:"2",title:"约束防护",key:"1902280933364219906",parentId:"1900112597427793921",url:le("/static/index/diet","constraint_",4,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620309090701314",title:"协助行走",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902620486044192769",title:"放松按摩",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902625161569079298",title:"心灵慰藉",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902625402468929537",title:"狂躁",tagName:null}],levle:"2",title:"按摩保健",key:"1902564031454744577",parentId:"1900112597427793921",url:le("/static/index/diet","massage_",5,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902625872432304130",title:"准备衣物",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626005538541569",title:"协助更换",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626664711163905",title:"肢体障碍",tagName:"半侧"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902626800510144513",title:"肢体障碍",tagName:"全身"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627064688381953",title:"准备衣物",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627280716009474",title:"协助更换",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627416598876161",title:"肢体障碍",tagName:"半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902627522404388866",title:"肢体障碍",tagName:"全身"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902627711806574593",title:"协助更换",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628058591629313",title:"肢体障碍",tagName:"半侧,大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902628650718302209",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628837725540354",title:"肢体障碍",tagName:"大体重,全测"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902628966847188993",title:"肢体障碍",tagName:"大体重,半侧"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902629129879785474",title:"协助更换",tagName:"大体重"}],levle:"2",title:"更换衣物",key:"1902564088417587201",parentId:"1900112597427793921",url:le("/static/index/diet","replace_",4,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629344456183809",title:"坐起",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902629492301205506",title:"躺下",tagName:null}],levle:"2",title:"调整坐卧",key:"1902564199830884354",parentId:"1900112597427793921",url:le("/static/index/diet","adjust_",7,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902630862769065985",title:"遗体净身",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"55",id:"1902631162275926017",title:"遗体穿衣",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631422431825921",title:"遗体转移",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"30",id:"1902631602463936514",title:"床位消毒",tagName:null}],levle:"2",title:"殡仪服务",key:"1902564263743688705",parentId:"1900112597427793921",url:le("/static/index/diet","exequy_",4,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902631830441136129",title:"更换床上用品",tagName:"全部"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632063828987905",title:"隔尿褥子更换",tagName:null}],levle:"2",title:"更换床上用品",key:"1902564446648897538",parentId:"1900112597427793921",url:le("/static/index/diet","change_",6,"png",1,!1)},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902632288270389250",title:"临终护理",tagName:null}],levle:"2",title:"临终服务",key:"1902564503783706625",parentId:"1900112597427793921",url:le("/static/index/diet","funeral_",5,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"40",id:"1902632678701371393",title:"制氧机吸氧",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902632799853842433",title:"制氧机维护",tagName:null}],levle:"2",title:"制氧机应用",key:"1902564586101116930",parentId:"1900112597427793921",url:le("/static/index/diet","oxygen_",6,"png",1,!1)}],levle:"1",title:"1 日常照料",key:"1900112597427793921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900376187661553665",title:"准备洁具",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900420873478553602",title:"棉球清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706881",title:"协助清洁",tagName:"口腔"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1900421622979706885",title:"义齿清洁",tagName:"口腔"}],levle:"2",title:"口腔清洁",key:"1902597070889127938",parentId:"1900112615777873921",url:le("/static/index/diet","oral_",7,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902636771540963329",title:"准备洁具",tagName:"头部"},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637623425077250",title:"协助洗头",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902637985234128898",title:"卧式洗头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902638122949906433",title:"擦头",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902638304739430401",title:"刮头",tagName:null}],levle:"2",title:"头部清洁",key:"1902597497344987137",parentId:"1900112615777873921",url:le("/static/index/diet","head_",5,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902641763073101826",title:"准备洁具",tagName:"面部"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642254465175553",title:"协助洁面",tagName:null}],levle:"2",title:"面部清洁",key:"1902597651405967361",parentId:"1900112615777873921",url:le("/static/index/diet","wash_",4,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642508145070081",title:"准备洁具",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642672796667905",title:"协助清洁",tagName:"躯干"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902642822885642242",title:"卧床清洁",tagName:"躯干"}],levle:"2",title:"躯干清洁",key:"1902597718082818050",parentId:"1900112615777873921",url:le("/static/index/diet","limbs_",4,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643318811758594",title:"准备洁具",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643483320750082",title:"协助清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643630888947713",title:"卧床清洁",tagName:"四肢"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902643837525528578",title:"肌张力高",tagName:"清洁"}],levle:"2",title:"四肢清洁",key:"1902597811565465601",parentId:"1900112615777873921",url:le("/static/index/diet","torso_",6,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645148199391234",title:"会阴清洁",tagName:"男"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645295457210369",title:"会阴清洁",tagName:"女"}],levle:"2",title:"会阴清洁",key:"1902597873964126209",parentId:"1900112615777873921",url:le("/static/index/diet","perineum_",5,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645493185089537",title:"肛周清洁",tagName:null}],levle:"2",title:"肛周清洁",key:"1902597930020999170",parentId:"1900112615777873921",url:le("/static/index/diet","perianal_",7,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902645693211447298",title:"洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647316134465538",title:"泡手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647529817477122",title:"准备洁具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647673212342274",title:"协助洗手",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902647905878773762",title:"强直屈曲洗手",tagName:null}],levle:"2",title:"手清洁",key:"1902597991698239489",parentId:"1900112615777873921",url:le("/static/index/diet","hands_",5,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648101203316737",title:"泡脚",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648239091060737",title:"卧式泡脚",tagName:null}],levle:"2",title:"足清洁",key:"1902598178588037121",parentId:"1900112615777873921",url:le("/static/index/diet","feet_",4,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648426383511553",title:"修睫毛",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902648548777496577",title:"剃须",tagName:null}],levle:"2",title:"剃须",key:"1902598258573414401",parentId:"1900112615777873921",url:le("/static/index/diet","shave_",6,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902648962444922882",title:"角质增生",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649132536532994",title:"灰指甲",tagName:"修甲"},{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902649302149992449",title:"正常",tagName:"修甲"}],levle:"2",title:"修甲",key:"1902598354606198785",parentId:"1900112615777873921",url:le("/static/index/diet","clippers_",6,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"20",id:"1902649683919736834",title:"理发",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"25",id:"1902649860344745985",title:"理发",tagName:"颅骨缺损"}],levle:"2",title:"理发",key:"1902598400382832642",parentId:"1900112615777873921",url:le("/static/index/diet","haircut_",5,"png",1,!1)},{children:[{cycleType:"周期护理",levle:"3",serviceDuration:"5",id:"1902650121280786434",title:"床上沐浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650408884211713",title:"深度清洁",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902650763722330113",title:"浴间洗浴",tagName:null},{cycleType:"周期护理",levle:"3",serviceDuration:"30",id:"1902651229122301954",title:"床上沐浴",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651366317985794",title:"深度清洁",tagName:"大体重"},{cycleType:"周期护理",levle:"3",serviceDuration:"55",id:"1902651555363655682",title:"浴间洗浴",tagName:"大体重"}],levle:"2",title:"沐浴",key:"1902598454782955522",parentId:"1900112615777873921",url:le("/static/index/diet","bathe_",9,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651778777452545",title:"内套管清洁",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902651924047171586",title:"更换气切纱布",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"10",id:"1902652055928672258",title:"更换气切纱布",tagName:null}],levle:"2",title:"气切消毒",key:"1902598509522817026",parentId:"1900112615777873921",url:le("/static/index/diet","omy_",4,"png",1,!1)}],levle:"1",title:"2 清洁照料",key:"1900112615777873921"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898057679966209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898202668666881",title:"协助进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898339931459586",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898472584712194",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902898590658564097",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898719952179201",title:"准备餐具",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902898979948695554",title:"协助进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899086840532993",title:"协助进餐",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899214838108162",title:"鼻胃管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899325014085633",title:"胃肠管进餐",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902899587028062210",title:"食物加工",tagName:null}],levle:"2",title:"加餐饮食",key:"1902596129720864770",parentId:"1902280495747317762",url:le("/static/index/diet","snack_",7,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281139677839362",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"10",id:"1902281522340970498",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281654100836354",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902281870434648066",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902654960639381506",title:"鼻肠管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902655101874180097",title:"轮椅进餐",tagName:"大体重"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902892199009030145",title:"轮椅进餐",tagName:null}],levle:"2",title:"正餐饮食",key:"1902601263850950657",parentId:"1902280495747317762",url:le("/static/index/diet","dinner_",8,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893231608926209",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893551978254337",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902893716466274306",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894369850757122",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894528533860354",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"辅餐饮食",key:"1902601382595891202",parentId:"1902280495747317762",url:le("/static/index/diet","food_",6,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894832176304129",title:"准备餐具",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902894954117304322",title:"协助进餐",tagName:"正常"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895077522116609",title:"协助进餐",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895233407619073",title:"鼻胃管进餐",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895569912434689",title:"鼻肠管进餐",tagName:null}],levle:"2",title:"果汁饮食",key:"1902601427168759809",parentId:"1902280495747317762",url:le("/static/index/diet","juice_",9,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895878508351489",title:"准备水杯",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902895984053817346",title:"协助饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896136835534850",title:"协助饮水",tagName:"超时"},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896508421509122",title:"鼻胃管饮水",tagName:null},{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902896636553302017",title:"鼻肠管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902896855802155010",title:"准备水杯",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897018344017921",title:"协助饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897464936730626",title:"协助饮水",tagName:"超时"},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897675813752834",title:"鼻胃管饮水",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902897803417063426",title:"鼻肠管饮水",tagName:null}],levle:"2",title:"饮水饮食",key:"1902601487625457665",parentId:"1902280495747317762",url:le("/static/index/diet","drink_",5,"png",1,!1)}],levle:"1",title:"3 饮食照料",key:"1902280495747317762"},{children:[{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902653177363927041",title:"巡视",tagName:null}],levle:"2",title:"巡视",key:"1902564741860790273",parentId:"1902560466095017986",url:le("/static/index/diet","posture_",6,"png",1,!1)},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653325481578497",title:"防坠床",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653497066360833",title:"被褥调整",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902653650917625857",title:"睡姿调整",tagName:null}],levle:"2",title:"体位调整",key:"1902564818838851585",parentId:"1902560466095017986",url:le("/static/index/diet","visitation_",5,"png",1,!1)}],levle:"1",title:"4 睡眠照料",key:"1902560466095017986"},{children:[{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904277308510210",title:"更换尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902904458779267073",title:"更换隔尿垫",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905631242424322",title:"使用尿盆",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902905824973131777",title:"使用尿壶",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906220483416065",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906459051233281",title:"坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906610562076674",title:"留置尿袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902906783325458434",title:"更换纸尿裤",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908406344945665",title:"热敷抚触排尿",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902908523827400705",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909645401067522",title:"更换尿片",tagName:null}],levle:"2",title:"小便",key:"1902596314152800257",parentId:"1902560510768549889",url:le("/static/index/diet","urinate_",4,"png",1,!1)},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902909835331735554",title:"床上排便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910002671882242",title:"协助坐便椅",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910156154048514",title:"协助入厕",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910361008050178",title:"人工取便",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910524623654913",title:"造瘘袋",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910700176248834",title:"坐便椅",tagName:null}],levle:"2",title:"大便",key:"1902596399423000577",parentId:"1902560510768549889",url:le("/static/index/diet","stool_",3,"png",1,!1)},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902910899565072385",title:"口腔吸痰",tagName:null},{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911047405899778",title:"气切吸痰",tagName:null}],levle:"2",title:"吸痰",key:"1902596461238652930",parentId:"1902560510768549889",url:le("/static/index/diet","Sputuma_",7,"png",1,!1)},{children:[{cycleType:"即时护理",levle:"3",serviceDuration:"5",id:"1902911232974491650",title:"呕吐",tagName:null}],levle:"2",title:"呕吐",key:"1902596886771765250",parentId:"1902560510768549889",url:le("/static/index/diet","vomiting_",6,"png",1,!1)},{children:[{cycleType:"日常护理",levle:"3",serviceDuration:"5",id:"1902911378349068290",title:"腹腔引流护理",tagName:null}],levle:"2",title:"引流",key:"1902596940366581762",parentId:"1902560510768549889",url:le("/static/index/diet","drainage_",6,"png",1,!1)}],levle:"1",title:"5 排泄照料",key:"1902560510768549889"}],ie=s(e.defineComponent({__name:"index",props:{isshow:{type:Boolean,required:!0},darkFans:{type:Boolean},canmove:{type:Boolean},liang:{type:Object},isold:{type:Boolean,required:!0},propsmove:{type:Number},isMain:{type:Boolean}},emits:["vip","changeold"],setup(t,{expose:a,emit:i}){const o=t;e.watch((()=>o.isMain),((e,t)=>{o.isshow&&(!0===t&&!1===e?(xe.value.index0=8,xe.value.index1=0,X.value=!0):!1===t&&!0===e&&(xe.value.index0=-1,xe.value.index1=-1))})),e.watch((()=>o.isold),(()=>{o.isold&&(dt(),I.value=1,U.value=1,e.nextTick((()=>{U.value=0,I.value=700})))})),e.watch((()=>o.canmove),(()=>{Pe.value=!1})),e.watch((()=>o.isshow),((t,l)=>{t!==l&&(Pe.value=!1,Ue.value=!1,at.value?at.value--:(dt(),I.value=1,U.value=1,e.nextTick((()=>{U.value=0,I.value=775}))),we.value=0,E.value=!E.value)}));const c=e.ref(!1),s=e.ref(-1),d=e.ref(!1),m=e.ref(-1);e.watch((()=>o.propsmove),(()=>{if(d.value)switch(o.propsmove){case 0:m.value-3>0?m.value=m.value-3:m.value=0;break;case 1:m.value>5||m.value++;break;case 2:m.value+3>5?m.value=6:m.value=m.value+3;break;case 3:m.value&&m.value--;break;case 4:y(m.value);break;case 5:v.value=!1,g.value=!1,d.value=!1,c.value=!1,G.value=1}else if(c.value)switch(o.propsmove){case 0:s.value-3>0?s.value=s.value-3:s.value=0;break;case 1:s.value>3||s.value++;break;case 2:s.value+3>3?s.value=4:s.value=s.value+3;break;case 3:s.value&&s.value--;break;case 4:N(s.value);break;case 5:v.value=!1,g.value=!1,d.value=!1,c.value=!1,G.value=0}else if(4===o.propsmove)if(X.value)Ze();else switch(G.value){case 0:g.value=!1,v.value=!v.value,c.value=!0,s.value=0;break;case 1:v.value=!1,g.value=!g.value,d.value=!0,m.value=0;break;case 2:et();break;default:ze()}else X.value?H(o.propsmove):Q(o.propsmove)}));const u=e.ref(!1),v=e.ref(!1),g=e.ref(!1);e.watch((()=>v.value),(()=>{setTimeout((()=>{u.value=v.value,ye("vip",u.value)}),50)}));const w=e.ref(!1);e.watch((()=>g.value),(()=>{setTimeout((()=>{w.value=g.value,ye("vip",w.value)}),50)}));const h=e.ref([]),f=e.ref([]),N=e=>{h.value.includes(e)?h.value=h.value.filter((t=>t!==e)):h.value.length>1?uni.showToast({title:"标签最多只能添加两个",icon:"none",duration:2e3}):h.value.push(e)},y=e=>{f.value.includes(e)?f.value=f.value.filter((t=>t!==e)):f.value.length>1?uni.showToast({title:"标签最多只能添加两个",icon:"none",duration:2e3}):f.value.push(e)},x=e.ref(!1),E=e.ref(!1),V=e.ref([{name:"纸尿裤",url:"/static/index/niao.png",target:"#fff",id:-1},{name:"呕吐",url:"/static/index/tu.png",target:"#fff",id:-1},{name:"吸痰",url:"/static/index/ou.png",target:"#fff",id:-1},{name:"大便",url:"/static/index/baba.png",target:"#fff",id:-1},{name:"纸尿裤",url:"/static/index/niao.png",target:"#fff",id:-1},{name:"呕吐",url:"/static/index/tu.png",target:"#fff",id:-1},{name:"吸痰",url:"/static/index/ou.png",target:"#fff",id:-1},{name:"大便",url:"/static/index/baba.png",target:"#fff",id:-1}]),b=["标准","超重","强直","偏瘫","佝偻","稳定","焦虑","抑郁","暴力","恐惧","烦躁","易怒","臆想"],k=["周一","周二","周三","周四","周五","周六","周日"],T=Array.from({length:31},((e,t)=>(t+1).toString().padStart(2,"0"))),D=e.ref(!0),C=e.ref(!1),S=e.ref(0),B=e.ref(0),z=e.ref(0),I=e.ref(678),U=e.ref(0),F=e.ref();e.ref([]);const $=e.ref(!1),M=e.ref([]),A=e.ref(!1);e.ref(!1);const L=e.ref(!1);e.ref(!1),e.ref(!1),e.ref(""),e.ref(!1);const O=e.ref(!1);e.ref("");const P=e.ref(!1);e.ref(0),e.ref(0),e.ref(6),e.ref(11),e.ref(0),e.ref(3);const j=e.ref(!1),q=e.computed((()=>_e.value[0]&&_e.value[1]?"left-bottom":!_e.value[0]&&_e.value[1]?"right-bottom":_e.value[0]&&!_e.value[1]?"left-top":"right-top"));e.onMounted((()=>{fe.value=0,p({url:`${uni.getStorageSync("serverUrl")}/nuIpadApi/nuConfigServiceCategory/getServiceTree`,method:"get"}).then((e=>{l("log","at pages/NursingNew/component/nurse/index.vue:930","res",e)}))}));const R=e.ref(0);const W=()=>{let e=JSON.parse(JSON.stringify(nt.value[De.value.index0].children[De.value.index1]));We.value=[xe.value.index0,xe.value.index1];let t=nt.value[De.value.index0].children[De.value.index1].typeName;nt.value[De.value.index0].children[De.value.index1]={directiveName:"",typeName:t};let l=nt.value[We.value[0]].children[We.value[1]].typeName;nt.value[We.value[0]].children[We.value[1]]=e,nt.value[We.value[0]].children[We.value[1]].typeName=l;let a=nt.value[We.value[0]].children[We.value[1]].startTime,i=nt.value[We.value[0]].children[We.value[1]].endTime,r=nt.value[We.value[0]].positioning;const n=a.split(":")[1],o=i.split(":")[1];let c=Number(o)-Number(n),s=l,d=Number(s)+c;nt.value[We.value[0]].children[We.value[1]].startTime=r+":"+s.padStart(2,"0"),nt.value[We.value[0]].children[We.value[1]].endTime=r+":"+String(d%60).padStart(2,"0"),De.value.index0=-1,De.value.index1=-1,j.value=!1;let m={index0:xe.value.index0,index1:xe.value.index1};it(m)},Y=t=>{5!==t?(C.value=!1,ee.value=-1,ie.value=-1,K.value="",le.value="",B.value=1,S.value=1,fe.value=-1,e.nextTick((()=>{B.value=0,S.value=0,fe.value=0})),he.value=0,we.value=t,F.value=M.value[t].children,Ne.value=0):uni.navigateTo({url:"/pages/watch/index"})},J=()=>{re.value=!1,j.value?W():nt.value[xe.value.index0].children[xe.value.index1].directiveName&&(De.value.index0=xe.value.index0,De.value.index1=xe.value.index1,j.value=!0)};e.ref(!0),e.ref(!1);const X=e.ref(!1),Z=e.ref(-1),H=e=>{switch(re.value=!1,e){case 0:xe.value.index1?(xe.value.index1--,dt(),A.value=!1,x.value&&setTimeout((()=>{Ie(nt.value[xe.value.index0].children[xe.value.index1],xe.value.index0,xe.value.index1)}),50)):(G.value=0,Z.value=xe.value.index0,X.value=!1);break;case 1:if(23==xe.value.index0)return;xe.value.index0++,dt(),A.value=!1,x.value&&setTimeout((()=>{Ie(nt.value[xe.value.index0].children[xe.value.index1],xe.value.index0,xe.value.index1)}),50);break;case 2:if(11==xe.value.index1)return;xe.value.index1++,dt(),A.value=!1,x.value&&setTimeout((()=>{Ie(nt.value[xe.value.index0].children[xe.value.index1],xe.value.index0,xe.value.index1)}),50);break;case 3:if(0==xe.value.index0)return;xe.value.index0--,dt(),A.value=!1,x.value&&setTimeout((()=>{Ie(nt.value[xe.value.index0].children[xe.value.index1],xe.value.index0,xe.value.index1)}),50)}},G=e.ref(-1),Q=e=>{switch(re.value=!1,e){case 0:break;case 1:G.value<3&&G.value++;break;case 2:v.value=!1,g.value=!1,G.value=-1,xe.value.index0=Z.value,X.value=!0;break;case 3:G.value&&G.value--}},K=e.ref(""),ee=e.ref(-1),le=e.ref(""),ie=e.ref(-1),re=e.ref(!1),ne=()=>{De.value.index0=-1,De.value.index1=-1,j.value=!1,nt.value[xe.value.index0].children[xe.value.index1].directiveName&&(re.value?(re.value=!1,$e(xe.value.index0,xe.value.index1)):re.value=!0)};function oe(e,t){return 2*function(e,t){const l=55.9898*e+78.233*t;return Math.abs(43758.5453*Math.sin(l))%1}(e,t)}e.ref(!1),e.ref(0);const ce=e.ref(0),se=e.ref(0);function de(e){let t=e.detail.scrollTop;ce.value=e.detail.scrollTop;let l=parseFloat(t.toFixed(2));se.value=l}const me=e.ref(0);function ue(e){me.value=e.detail.scrollLeft}e.ref(!0);const ve=(e,t,l)=>"日常"===e.cycleType?De.value.index0===t&&De.value.index1===l?"title-time-border-yellow-active-transparent":Ue.value?"title-time-border-yellow-active":"title-time-border-yellow":e.cycleType?De.value.index0===t&&De.value.index1===l?"title-time-border-pouple-active-transparent":Ue.value?"title-time-border-pouple-active":"title-time-border-pouple":"title-time-border";function pe(e,t,l,a="png",i=0,r=!1){return Array.from({length:l},((l,n)=>{const o=r?String(n+i).padStart(2,"0"):n+i;return`${e}/${t}${o}.${a}`}))}const ge=e.ref([{url:pe("/static/index/newruler","daily_",6,"png",1,!1),name:"日常"},{url:pe("/static/index/newruler","clean_",8,"png",1,!1),name:"清洁"},{url:pe("/static/index/newruler","diet_",7,"png",1,!1),name:"饮食"},{url:pe("/static/index/newruler","sleep_",5,"png",1,!1),name:"睡眠"},{url:pe("/static/index/newruler","defecate_",5,"png",1,!1),name:"排泻"}]),we=e.ref(1),he=e.ref(0),fe=e.ref(-1),Ne=e.ref(0);e.ref(!1),e.ref([]);const ye=i;e.ref(!1);const xe=e.ref({index0:-1,index1:-1});e.ref(0),e.ref([]);const Ee=e.ref(null);e.ref({});const Ve=e.ref(0),be=e.ref(0),ke=e.ref(0),Te=e.ref(0),De=e.ref({index0:999,index1:999,typeName:""});e.ref(-1),e.ref(!1);const Ce=e.ref(!1),Se=e.ref(-1),Be=e.ref(!1),ze=()=>{Be.value=!0,Ce.value=!1,setTimeout((()=>{Ce.value=!0}),100)},_e=e.ref([!1,!1]),Ie=(t,l,a)=>{if(t.directiveName){Se.value=a;uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((t=>{t.forEach((async t=>{t.left>100&&t.left<1067&&t.top<670&&t.top>50&&t.dataset.index0==l&&t.dataset.index1==a&&(t.left>100&&t.left<500?(ke.value=Math.floor(t.left)+528,_e.value[0]=!0):(ke.value=Math.floor(t.left)-18,_e.value[0]=!1),t.top>500?(Te.value=Math.floor(t.top)+100,_e.value[1]=!0):(Te.value=Math.floor(t.top)+180,_e.value[1]=!1),await e.nextTick(),A.value=!0,L.value=!1,setTimeout((()=>{L.value=!0}),100))}))})).exec()}},Ue=e.ref(!1);e.ref([]);const Fe=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-Ve.value)>0||Math.abs(l-be.value)>0)&&Ee.value&&(clearTimeout(Ee.value),Ee.value=null)},$e=(e,t)=>{let l=nt.value[e].children[t].typeName;nt.value[e].children[t]={directiveName:"",typeName:l}};e.ref(null),e.ref(!1),e.ref(!1);const Me=e.ref(0),Ae=e.ref(0),Le=e.ref(!1);e.ref(""),e.ref("");const Oe=e.ref(null),Pe=e.ref(!1),je=e=>{Me.value=Math.floor(e.touches[0].pageX),Ae.value=Math.floor(e.touches[0].pageY),Oe.value=setTimeout((()=>{Pe.value=!0}),500)},qe=e=>{const t=Math.floor(e.touches[0].pageX),l=Math.floor(e.touches[0].pageY);(Math.abs(t-Me.value)>0||Math.abs(l-Ae.value)>0)&&Oe.value&&(clearTimeout(Oe.value),Oe.value=null)},Re=()=>{Oe.value&&(clearTimeout(Oe.value),Oe.value=null)};e.ref({time:"",minute:"",array:[]}),e.ref({op:{name:"",index:[-1,-1,-1]},startTime:"",weekTimeNumber:-1,monthTimeNumber:-1,monthTime:"",weekTime:""}),e.ref(0);const We=e.ref([-1,-1]);e.ref(null);const Ye=()=>{P.value=!1,O.value=!0,setTimeout((()=>{P.value=!0}),50)},Je=e.ref(!1);let Xe=null;async function Ze(){Xe&&(clearTimeout(Xe),Xe=null),Je.value=!1,await e.nextTick(),Je.value=!0,He(),Xe=setTimeout((()=>{Je.value=!1,Xe=null}),1e3)}e.onBeforeUnmount((()=>{Xe&&clearTimeout(Xe)}));const He=()=>{if(-1===xe.value.index1&&-1===xe.value.index0)return;if(re.value)return re.value=!1,void $e(xe.value.index0,xe.value.index1);if(j.value)return void W();De.value.index0=-1,De.value.index1=-1,j.value=!1;let t=!1,l=M.value[we.value].children[he.value].children[Ne.value];if("即时护理"===l.cycleType)return z.value=1,V.value.forEach(((e,a)=>{e.id===l.id&&(t=!0)})),void e.nextTick((()=>{t?(clearTimeout(Qe.value),$.value=!0,Qe.value=setTimeout((()=>{$.value=!1}),1500)):(z.value=0,V.value.length&&"#03a4ff"===V.value[0].target&&(V.value[0].target="#fff",clearTimeout(Ge.value)),V.value.unshift({name:l.title,url:"/static/index/ou.png",target:"#03a4ff",id:l.id}),Ge.value=setTimeout((()=>{V.value[0].target="#fff"}),1500))}));if("周期护理"===l.cycleType&&C.value&&-1==ee.value&&-1==ie.value)return;if("周期护理"===l.cycleType&&!C.value)return void(C.value=!0);let a="";"日常护理"===l.cycleType?a="日常":(a=-1!==ee.value?K.value:le.value+"号",C.value=!1,ee.value=-1,ie.value=-1,K.value="",le.value="");const i=Number(xe.value.index0),r=Number(nt.value[xe.value.index0].children[xe.value.index1].typeName),n=r+10,o=i+Math.floor(n/60),c=`${String(i)}:${String(r).padStart(2,"0")}`,s=`${String(o)}:${String(n%60).padStart(2,"0")}`;nt.value[xe.value.index0].children[xe.value.index1].startTime=c,nt.value[xe.value.index0].children[xe.value.index1].endTime=s;let d={directiveId:l.id,directiveName:l.title,startTime:c,endTime:s,positioning:xe.value.index0.toString(),positioningLong:xe.value.index1.toString(),tagName:l.tagName,cycleType:a,nuId:"1",customerId:"1",id:"",typeName:nt.value[xe.value.index0].children[xe.value.index1].typeName};nt.value[xe.value.index0].children[xe.value.index1]=d;let m={index0:xe.value.index0,index1:xe.value.index1};it(m),Ke()},Ge=e.ref(null),Qe=e.ref(null),Ke=()=>{nt.value.forEach(((e,t)=>{e.children.forEach(((e,l)=>{let a="";if(e.directiveName||e.id)e.positioning=t,e.positioningLong=l;else{let i={};e.typeName&&(a=e.typeName),i=JSON.parse(JSON.stringify(ct.value)),a&&(i.typeName=a),i.positioning=t,i.positioningLong=l}}))}))},et=()=>{uni.setStorage({key:"myArray",data:nt.value,success:function(){uni.navigateTo({url:"/pages/timeMatrix/indexnew"})}})},tt=e.ref({index0:-1,index1:-1}),lt=e.ref({index0:-1,index1:-1,current:-1,bordershow:!0}),at=e.ref(0),it=e=>{xe.value.index0=e.index0,xe.value.index1=e.index1,dt(),lt.value.index0=e.index0,lt.value.index1=e.index1,tt.value.index0=lt.value.index0,tt.value.index1=lt.value.index1,lt.value.bordershow=!1,setTimeout((()=>{lt.value.index0=-1,lt.value.index1=-1,lt.value.current=-1}),400),setTimeout((()=>{lt.value.bordershow=!0,tt.value.index0=-1,tt.value.index1=-1}),1e3)},rt=["00","05","10","15","20","25","30","35","40","45","50","55"],nt=e.ref(Array.from({length:24},((e,t)=>({positioning:t.toString(),children:rt.map((e=>({typeName:e,directiveName:""})))}))));function ot(e){at.value=3,it(e)}r((()=>{M.value=ae,F.value=M.value[0].children,uni.$on("where",ot)})),n((()=>{uni.$off("where",ot)})),a({rulerMoveEnd:e=>{if(999!==o.liang.index0&&e.cycleType){We.value=[o.liang.index0,o.liang.index1];let t=nt.value[De.value.index0].children[De.value.index1].typeName;nt.value[De.value.index0].children[De.value.index1]={directiveName:"",typeName:t};let l=nt.value[We.value[0]].children[We.value[1]].typeName;nt.value[We.value[0]].children[We.value[1]]=e,nt.value[We.value[0]].children[We.value[1]].typeName=l;let a=nt.value[We.value[0]].children[We.value[1]].startTime,i=nt.value[We.value[0]].children[We.value[1]].endTime,r=nt.value[We.value[0]].positioning;const n=a.split(":")[1],c=i.split(":")[1];let s=Number(c)-Number(n),d=l,m=Number(d)+s;nt.value[We.value[0]].children[We.value[1]].startTime=r+":"+d.padStart(2,"0"),nt.value[We.value[0]].children[We.value[1]].endTime=r+":"+String(m%60).padStart(2,"0")}}}),e.ref({index0:999,index1:999});const ct=e.ref({directiveId:"",directiveName:"",startTime:"",endTime:"",positioning:"",positioningLong:"",tagName:"",cycleType:"",nuId:"1",customerId:"1",id:"",typeName:""});function st(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}function dt(){if(xe.value.index0>=0&&xe.value.index0<=24&&xe.value.index1>=0&&xe.value.index1<=11){const e=259*(xe.value.index0+.5),t=250.5*(xe.value.index1-1);I.value=e-650,U.value=t-250;const l=6216,a=2755.5;I.value=Math.max(0,Math.min(I.value,l-1300))/2,U.value=Math.max(0,Math.min(U.value,a-500))/2}}return(l,a)=>{var i,r;const n=e.resolveComponent("donghua");return e.openBlock(),e.createElementBlock("view",{class:"right-container",style:e.normalizeStyle(t.isshow?{opacity:"1"}:{opacity:"0"}),onClick:a[15]||(a[15]=e=>{Pe.value=!1,Ue.value=!1})},[e.createElementVNode("view",{class:"right-container-title-nav"},[e.createElementVNode("text",{style:{"margin-left":"30rpx"}}," NUID:2508000001 "),e.createElementVNode("text",{class:"new-weight"}," 护理单元01 "),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("view",{style:{display:"flex","align-items":"center","margin-right":"25rpx",padding:"0 15rpx"},class:e.normalizeClass(G.value||c.value||d.value?"":"firsttarget")},[e.createElementVNode("view",{class:"mark"},[e.createElementVNode("view",{style:{"margin-right":"15rpx"}}," 体型标签: "),e.withDirectives(e.createElementVNode("view",{class:"mark-bgc",style:e.normalizeStyle({opacity:u.value?1:0})},[e.createElementVNode("view",{style:{"margin-top":"40rpx","margin-bottom":"30rpx","margin-left":"50rpx","font-size":"32rpx"}},[e.createElementVNode("view",null," 体型标签 ")]),e.createElementVNode("view",{style:{display:"flex","flex-wrap":"wrap"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(b.slice(0,5),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>N(l)},[e.createElementVNode("view",{class:e.normalizeClass(["tags-father",s.value===l?"secondtarget":""])},[e.createElementVNode("image",{class:"tags-img",src:h.value.includes(l)?`/static/index/tagNames/${l}1.png`:`/static/index/tagNames/${l}0.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font",style:e.normalizeStyle(h.value.includes(l)?{color:"rgb(54, 159, 239)"}:{})},e.toDisplayString(t),5)],2)],8,["onClick"])))),128))])],4),[[e.vShow,v.value]])]),e.createElementVNode("view",{class:"marknone",onClick:a[0]||(a[0]=e=>{v.value=!v.value,g.value=!1})},[h.value.length?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,style:{"margin-top":"-3rpx"}}," 未选择 ")),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(h.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("image",{class:"tags-img",style:{width:"40rpx",height:"40rpx",margin:"0 10rpx"},src:`/static/index/tagNames/${t}0.png`},null,8,["src"])])))),128))]),e.createElementVNode("view",{class:"tri-down",onClick:a[1]||(a[1]=e=>{v.value=!v.value,g.value=!1})})],2),e.createElementVNode("view",{style:{display:"flex","align-items":"center","margin-right":"15rpx",padding:"0 15rpx"},class:e.normalizeClass(1!==G.value||c.value||d.value?"":"firsttarget")},[e.createElementVNode("view",{class:"mark"},[e.createTextVNode(" 情绪标签: "),e.withDirectives(e.createElementVNode("view",{class:"mark-bgc",style:e.normalizeStyle({opacity:w.value?1:0})},[e.createElementVNode("view",{style:{"margin-top":"40rpx","margin-bottom":"30rpx","margin-left":"50rpx","font-size":"32rpx"}},[e.createElementVNode("view",null," 情绪标签 ")]),e.createElementVNode("view",{style:{display:"flex","flex-wrap":"wrap"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(b.slice(5,12),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>y(l)},[e.createElementVNode("view",{class:e.normalizeClass(["tags-father",m.value===l?"secondtarget":""])},[e.createElementVNode("image",{class:"tags-img",src:f.value.includes(l)?`/static/index/tagNames/${l+5}1.png`:`/static/index/tagNames/${l+5}0.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font",style:e.normalizeStyle(f.value.includes(l)?{color:"rgb(54, 159, 239)"}:{})},e.toDisplayString(t),5)],2)],8,["onClick"])))),128))])],4),[[e.vShow,g.value]])]),e.createElementVNode("view",{class:"marknone",onClick:a[2]||(a[2]=e=>{g.value=!g.value,v.value=!1})},[f.value.length?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,style:{"margin-top":"-3rpx"}}," 未选择 ")),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(f.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("image",{class:"tags-img",style:{width:"40rpx",height:"40rpx",margin:"0 10rpx"},src:`/static/index/tagNames/${t+5}0.png`},null,8,["src"])])))),128))]),e.createElementVNode("view",{class:"tri-down",onClick:a[3]||(a[3]=e=>{g.value=!g.value,v.value=!1})})],2),e.createElementVNode("view",{class:e.normalizeClass(["white-button",2===G.value?"firsttarget":""]),onClick:et},[e.createElementVNode("image",{class:"white-img",src:"/static/index/newruler/yulan.png"},null,8,["src"]),e.createTextVNode(" 预览 ")],2),e.createElementVNode("view",{class:e.normalizeClass(["white-button",3===G.value?"firsttarget":""]),onClick:ze},[e.createElementVNode("image",{class:"white-img",src:"/static/index/newruler/fenxiang.png"},null,8,["src"]),e.createTextVNode(" 分享 ")],2)])]),e.createElementVNode("view",{class:"doctorsay-container-view"},[e.createElementVNode("view",{class:"doctorsay-container-container"},[e.createElementVNode("view",{class:"super-card"},[e.createElementVNode("view",{class:"boom-father"},[e.createElementVNode("view",{class:"boom"},[e.createElementVNode("view",{style:e.normalizeStyle({marginTop:`-${2*se.value}rpx`})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(nt.value[0].children,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.withDirectives(e.createElementVNode("view",{class:"boom-son"},[e.createElementVNode("text",{class:"boom-text"},e.toDisplayString(t.typeName),1)],512),[[e.vShow,t.typeName]])])))),128))],4)])]),e.createElementVNode("view",{class:"super-card-container"},[e.createElementVNode("scroll-view",{style:{height:"1330rpx",width:"100%",border:"2rpx solid balck"},"scroll-left":I.value,"scroll-x":"",onScroll:ue,"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex",width:"4824rpx"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(nt.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time"},e.toDisplayString((1==t.positioning.length?"0"+t.positioning:t.positioning)+":00"),1)])))),128))]),e.createElementVNode("view",{style:{display:"flex",height:"calc(100% - 80rpx)",position:"relative"}},[e.createElementVNode("view",{class:"xian-bian"}),e.createElementVNode("scroll-view",{style:{height:"100%",width:"6744rpx"},"scroll-top":U.value,"scroll-y":!0,onScroll:de,"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex",height:"100%"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(nt.value,((l,i)=>(e.openBlock(),e.createElementBlock("view",{key:i},[e.createElementVNode("view",{class:"super-card-time-und"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(l.children,((l,r)=>(e.openBlock(),e.createElementBlock("view",{style:{width:"100%"},key:r},[e.createElementVNode("view",{class:e.normalizeClass(lt.value.index0===i&<.value.index1===r?lt.value.index1?"title-time-border-big":"title-time-border-big-top":"super-card-time-card"),style:e.normalizeStyle([lt.value.bordershow||tt.value.index0!==i||tt.value.index1!==r?{borderBottom:"1rpx solid transparent"}:{zIndex:999},{position:"relative"}]),id:`a${i}_${r}`,onClick:e=>Ie(l,i,r),onTouchstart:e=>{},onTouchmove:Fe,onTouchend:a[4]||(a[4]=e=>(Le.value=!1,void(Ee.value&&(clearTimeout(Ee.value),Ee.value=null)))),"data-index0":i,"data-index1":r},[De.value.index0===i&&De.value.index1===r&&0==r?(e.openBlock(),e.createElementBlock("view",{key:0,class:"time-button-orange-spe",style:e.normalizeStyle({left:De.value.index0?"-130rpx":"0"})}," 请选择服务指令迁移的目标单元格 ",4)):e.createCommentVNode("",!0),De.value.index0===i&&De.value.index1===r&&r?(e.openBlock(),e.createElementBlock("view",{key:1,class:"time-button-orange",style:e.normalizeStyle({left:De.value.index0?"-130rpx":"0"})}," 请选择服务指令迁移的目标单元格 ",4)):e.createCommentVNode("",!0),xe.value.index0==i&&xe.value.index1==r&&0==r&&re.value?(e.openBlock(),e.createElementBlock("view",{key:2,class:"time-button-black-spe",style:e.normalizeStyle({left:xe.value.index0?"-220rpx":"0"})}," 是否确认删除该服务指令 ",4)):e.createCommentVNode("",!0),xe.value.index0==i&&xe.value.index1==r&&r&&re.value?(e.openBlock(),e.createElementBlock("view",{key:3,class:"time-button-black",style:e.normalizeStyle({left:xe.value.index0?"-220rpx":"0"})}," 是否确认删除该服务指令 ",4)):e.createCommentVNode("",!0),e.withDirectives(e.createElementVNode("view",{class:"title-time-blue"},null,512),[[e.vShow,xe.value.index0==i&&xe.value.index1==r&&X.value]]),e.createElementVNode("view",{class:e.normalizeClass(ve(l,i,r)),style:e.normalizeStyle([{"font-size":"30rpx",overflow:"hidden"},{animationDelay:`-${oe(i,r).toFixed(2)}s`}])},[l.startTime?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time",style:{"flex-direction":"column"}},[e.withDirectives(e.createElementVNode("image",{style:{width:"60rpx",height:"60rpx",margin:"0 auto","margin-top":"30rpx"},src:_},null,512),[[e.vShow,l.startTime]]),e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"30rpx"}},e.toDisplayString(l.startTime+"-"+l.endTime),1),"日常"!=l.cycleType?(e.openBlock(),e.createElementBlock("image",{key:0,class:"title-time-button",style:{width:"80rpx",height:"48rpx"},src:te})):e.createCommentVNode("",!0),"日常"!=l.cycleType?(e.openBlock(),e.createElementBlock("view",{key:1,class:"title-time-font",style:{right:"10rpx",top:"5rpx","font-size":"23rpx"}},e.toDisplayString(l.cycleType),1)):e.createCommentVNode("",!0)],512)),[[e.vShow,t.liang.index0!==i||t.liang.index1!==r||t.canmove]]):e.createCommentVNode("",!0),l.startTime?(e.openBlock(),e.createElementBlock("view",{key:1,class:"title-time-font-rel"},e.toDisplayString(st(l.directiveName)[0]),1)):e.createCommentVNode("",!0)],6)],46,["id","onClick","onTouchstart","data-index0","data-index1"])])))),128))])])))),128))])],40,["scroll-top"])])],40,["scroll-left"])]),e.createElementVNode("view",{class:"right-cards"},[e.createElementVNode("view",{style:{"margin-top":"60rpx","margin-left":"30rpx"}},[e.createElementVNode("view",{class:""}," 即时指令 "),e.createElementVNode("view",{style:{width:"30rpx",height:"6rpx","background-color":"black","margin-left":"40rpx","margin-top":"3rpx","border-radius":"20rpx"}})]),e.createElementVNode("scroll-view",{"scroll-x":"",class:"scroll-box","scroll-left":z.value},[e.createElementVNode("view",{class:"right-box"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(V.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"right-box-item",onTouchstart:je,onTouchmove:qe,onTouchend:Re,style:e.normalizeStyle(t.target?{background:t.target,transition:"all 1.5s ease-in-out"}:{transition:"all 1.5s ease-in-out"})},[e.createElementVNode("view",{style:e.normalizeStyle({animationDelay:`-${.1*l}s`}),class:e.normalizeClass(Pe.value?"super-end-items-img-father-active":"super-end-items-img-father")},[e.createElementVNode("image",{class:"right-box-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{class:"right-box-font"},e.toDisplayString(t.name),1)],6),e.withDirectives(e.createElementVNode("view",{class:"super-end-items-father-close-father",onClick:e.withModifiers((e=>V.value.splice(l,1)),["stop"])}," - ",8,["onClick"]),[[e.vShow,Pe.value]])],36)])))),128))])],8,["scroll-left"]),e.createElementVNode("view",{class:"middle-box"},[e.createElementVNode("view",{class:"middle-left-box"},[e.createElementVNode("view",{class:"first-contant"},[e.withDirectives(e.createElementVNode("view",{class:"time-father"},[e.withDirectives(e.createElementVNode("view",{class:"time-button"},[e.createElementVNode("view",{class:"time-button-month"},"周"),e.createElementVNode("view",{class:"time-button-week",onClick:a[5]||(a[5]=e=>{D.value=!1,ee.value=-1,K.value=""})},"月")],512),[[e.vShow,D.value]]),e.withDirectives(e.createElementVNode("view",{class:"time-button"},[e.createElementVNode("view",{class:"time-button-month-target",onClick:a[6]||(a[6]=e=>{D.value=!0,ie.value=-1,le.value=""})},"周"),e.createElementVNode("view",{class:"time-button-week-target"},"月")],512),[[e.vShow,!D.value]]),e.createElementVNode("scroll-view",{"scroll-y":"",style:{width:"100%",height:"600rpx"},"show-scrollbar":!1,"scroll-top":S.value},[D.value?(e.openBlock(),e.createElementBlock(e.Fragment,{key:0},e.renderList(k,((t,l)=>e.createElementVNode("view",{key:l,onClick:e=>((e,t)=>{const l=Date.now();l-R.value<300?(K.value=e,ee.value=t,He(),R.value=0):(K.value=e,ee.value=t,R.value=l)})(t,l)},[e.createElementVNode("view",{class:e.normalizeClass(ee.value===l?"items-card-target":"items-card")},e.toDisplayString(t),3)],8,["onClick"]))),64)):e.createCommentVNode("",!0),D.value?e.createCommentVNode("",!0):(e.openBlock(!0),e.createElementBlock(e.Fragment,{key:1},e.renderList(e.unref(T),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>((e,t)=>{const l=Date.now();l-R.value<300?(le.value=e,ie.value=t,He(),R.value=0):(le.value=e,ie.value=t,R.value=l)})(t,l)},[e.createElementVNode("view",{class:e.normalizeClass(ie.value===l?"items-card-target":"items-card")},e.toDisplayString(t),3)],8,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"40rpx"}})],8,["scroll-top"])],512),[[e.vShow,C.value]]),e.withDirectives(e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%",width:"100%"},"show-scrollbar":!1,"scroll-top":S.value},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(M.value[we.value].children[he.value].children,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>function(e){const t=Date.now();Ne.value=e,t-R.value<300?(Ne.value=e,He(),R.value=0):(Ne.value=e,R.value=t)}(l)},[e.createElementVNode("view",{class:"right-box-item",style:e.normalizeStyle(Ne.value==l?{border:"2rpx solid rgb(229, 233, 249)",backgroundColor:"#fff"}:{border:"2rpx solid rgb(229, 233, 249)"})},[e.withDirectives(e.createElementVNode("view",{class:"title-time-button-font"}," 周期 ",512),[[e.vShow,"周期护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("view",{class:"title-time-button-font"}," 即时 ",512),[[e.vShow,"即时护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"title-time-button",src:te},null,512),[[e.vShow,"周期护理"===t.cycleType]]),e.withDirectives(e.createElementVNode("image",{class:"title-time-button",src:te},null,512),[[e.vShow,"即时护理"===t.cycleType]]),e.createElementVNode("image",{class:"right-box-img",src:_}),e.createElementVNode("view",{class:"right-box-font",style:e.normalizeStyle([{"font-size":"20rpx","margin-top":"2rpx"},Ne.value==l?{color:"rgb(54, 159, 239)"}:{}])},e.toDisplayString(t.title),5)],4)],8,["onClick"])))),128)),e.createElementVNode("view",{style:{height:"20rpx"}})],8,["scroll-top"]),[[e.vShow,!C.value]])]),e.createElementVNode("view",{class:"second-contant"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%",width:"100%"},"show-scrollbar":!1,"scroll-top":B.value},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(F.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(fe.value==l?"downList-box-target":"downList-box"),onClick:t=>(t=>{C.value=!1,ee.value=-1,ie.value=-1,K.value="",le.value="",he.value=t,fe.value=t,Ne.value=0,S.value=1,e.nextTick((()=>{S.value=0}))})(l)},[e.createVNode(n,{width:"55rpx",height:"55rpx",links:t.url,playing:fe.value==l,interval:120},null,8,["links","playing"]),e.createElementVNode("view",{class:"downList-box-text"},e.toDisplayString(t.title),1)],10,["onClick"])])))),128)),e.createElementVNode("view",{style:{height:"20rpx"}})],8,["scroll-top"])])]),e.createElementVNode("view",{class:"middle-right-box"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(ge.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>Y(l)},[e.createElementVNode("view",{class:"doctorsay-container-card"},[e.createVNode(n,{width:"55rpx",height:"55rpx",links:t.url,playing:l===we.value,interval:120},null,8,["links","playing"]),e.createElementVNode("view",{class:e.normalizeClass(l===we.value?"doctorsay-container-card-font-dark":"doctorsay-container-card-font")},e.toDisplayString(t.name),3)])],8,["onClick"])))),128))])]),e.createElementVNode("view",{class:"under-button"},[$.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"under-button-black"}," 不能重复添加相同的即时服务指令 ")):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"white-circle",onClick:J},[e.createElementVNode("image",{class:"white-circle-img",src:`/static/index/keyimg/movebutton${j.value?"blue":""}.png`},null,8,["src"])]),e.createElementVNode("view",{class:"white-circle",onClick:ne},[e.createElementVNode("image",{class:"white-circle-img",src:`/static/index/keyimg/deletebutton${re.value?"blue":""}.png`},null,8,["src"])]),e.createElementVNode("view",{class:"white-circle",onClick:Ye},[e.createElementVNode("image",{class:"white-circle-img",src:`/static/index/keyimg/notebutton${O.value?"blue":""}.png`},null,8,["src"])]),e.createElementVNode("view",{class:"white-circle",onClick:a[7]||(a[7]=e=>x.value=!x.value)},[e.createElementVNode("image",{class:"white-circle-img",src:`/static/index/keyimg/open${x.value?"blue":""}.png`},null,8,["src"])]),e.createElementVNode("view",{style:{position:"relative"}},[e.createElementVNode("view",{ref:"btnRef",class:e.normalizeClass(["white-circle-click-father",{anim:Je.value}]),style:e.normalizeStyle({color:Je.value?"#fff":""}),onClick:Ze},[e.createElementVNode("view",{style:{"z-index":"999"}}," 确定 ")],6),e.createElementVNode("view",{class:"white-circle-click-father-spec",onClick:a[8]||(a[8]=e=>Y(5))},[e.createElementVNode("view",{class:"other-father"},[e.createElementVNode("image",{style:{width:"55rpx",height:"55rpx"},src:"/static/index/newruler/monitor_1.png"}),e.createElementVNode("view",{style:{"z-index":"999","font-size":"25rpx"}}," 监控 ")])])])])])])])]),e.withDirectives(e.createElementVNode("view",{class:"popup-overlay",onClick:a[10]||(a[10]=e=>{A.value=!1,De.value.index0=999,Se.value=-1})},[e.createElementVNode("view",{class:e.normalizeClass(["popup-overlay-content",q.value]),style:e.normalizeStyle({top:2*Te.value-350+"rpx",left:2*ke.value-780+"rpx",opacity:L.value?1:0}),onClick:a[9]||(a[9]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-overlay-content-left"},[e.createElementVNode("image",{class:"popup-overlay-content-left-img",src:"/static/index/teeth.png"},null,8,["src"]),e.createElementVNode("text",{class:"popup-overlay-content-left-font"},e.toDisplayString(null==(r=null==(i=nt.value[De.value.index0])?void 0:i.children[De.value.index1])?void 0:r.value),1)]),e.createElementVNode("view",{class:"popup-overlay-content-right"},[e.createElementVNode("view",{class:"time-font"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"time-text"}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ")])],6)],512),[[e.vShow,A.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-say",onClick:a[12]||(a[12]=e=>O.value=!1)},[e.createElementVNode("view",{class:"popup-say-content",style:e.normalizeStyle([{padding:"30rpx 0"},{opacity:P.value?1:0}]),onClick:a[11]||(a[11]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{style:{"margin-top":"20rpx","margin-bottom":"20rpx","margin-left":"30rpx","font-size":"32rpx"}},[e.createElementVNode("view",null," 体型标签 ")]),e.createElementVNode("view",{style:{display:"flex","flex-wrap":"wrap"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(b.slice(0,5),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"tags-father"},[e.createElementVNode("image",{class:"tags-img",src:`/static/index/tagNames/${l}0.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font"},e.toDisplayString(t),1)])])))),128))]),e.createElementVNode("view",{style:{"margin-top":"40rpx","margin-bottom":"20rpx","margin-left":"30rpx","font-size":"32rpx"}},[e.createElementVNode("view",null," 情绪标签 ")]),e.createElementVNode("view",{style:{display:"flex","flex-wrap":"wrap"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(b.slice(5,12),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"tags-father"},[e.createElementVNode("image",{class:"tags-img",src:`/static/index/tagNames/${l+5}0.png`},null,8,["src"]),e.createElementVNode("view",{class:"tags-font"},e.toDisplayString(t),1)])])))),128))]),e.createElementVNode("view",{class:"popup-say-three"})],4)],512),[[e.vShow,O.value]]),e.withDirectives(e.createElementVNode("view",{class:"popup-share",onClick:a[14]||(a[14]=e=>Be.value=!1)},[e.createElementVNode("view",{class:"popup-share-content",style:e.normalizeStyle({opacity:Ce.value?1:0}),onClick:a[13]||(a[13]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"share-other"},[e.createElementVNode("view",{class:"share-title"},[e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx"},src:"/static/index/sharelogo.png"}),e.createElementVNode("view",{style:{"font-weight":"600","margin-left":"15rpx"}}," 护理单元 ")]),e.createElementVNode("view",{class:"share-others"},[e.createElementVNode("view",{style:{"font-weight":"600","font-size":"45rpx"}}," 护理流程 "),e.createElementVNode("view",{style:{"margin-top":"30rpx"}},[e.createTextVNode(" 护理单元01 "),e.createElementVNode("text",{style:{color:"#1083F8"}}," 王金凤 ")]),e.createElementVNode("view",{class:"blue-button"}," 分享 ")])])],4)],512),[[e.vShow,Be.value]])],4)}}}),[["__scopeId","data-v-08249c72"]]),re=s(e.defineComponent({__name:"index",setup(l){e.onMounted((()=>{o.value=-1,e.nextTick((()=>o.value=0)),m.value=2,uni.getSystemInfoSync(),uni.pageScrollTo,a.value=uni.getStorageSync("realname")}));const a=e.ref("");function i(e,t,l,a="png",i=0,r=!1){return Array.from({length:l},((l,n)=>{const o=r?String(n+i).padStart(2,"0"):n+i;return`${e}/${t}${o}.${a}`}))}const n=e.ref([{url:i("/static/index/newindex/curve","home_",5,"png",1,!1),name:"首页"},{url:i("/static/index/newindex/curve","nurse_",8,"png",1,!1),name:"护嘱"},{url:i("/static/index/newindex/curve","doctor_",6,"png",1,!1),name:"医嘱"},{url:i("/static/index/newindex/curve","lead_",12,"png",1,!1),name:"请领"},{url:i("/static/index/newindex/curve","device_",7,"png",1,!1),name:"设备"}]);e.ref([{url:"/static/index/lefticon/index.png",name:"首页"},{url:"/static/index/lefticon/nurse.png",name:"护嘱"},{url:"/static/index/lefticon/doctor.png",name:"医嘱"},{url:"/static/index/lefticon/give.png",name:"请领"},{url:"/static/index/lefticon/wifi.png",name:"设备"},{url:"/static/index/lefticon/back.png",name:"返回"}]),e.ref([{url:"/static/index/lefticon/index.png",targetUrl:"/static/index/lefticontarget/blueindex.png"},{url:"/static/index/lefticon/nurse.png",targetUrl:"/static/index/lefticontarget/bluenurse.png"},{url:"/static/index/lefticon/doctor.png",targetUrl:"/static/index/lefticontarget/bluedoctor.png"},{url:"/static/index/lefticon/give.png",targetUrl:"/static/index/lefticontarget/givedark.png"},{url:"/static/index/lefticon/wifi.png",targetUrl:"/static/index/lefticontarget/bluewifi.png"},{url:"/static/index/lefticon/back.png",targetUrl:"/static/index/lefticontarget/blueback.png"}]);const o=e.ref(-1),c=e.ref(!1),s=e.ref(!1),d=e.ref(!1),m=e.ref(-1);function u(){t("TestModule").gotoNativePage({deviceId:"4",deviceName:"sdfsfsdf"})}e.ref([]),e.ref(0),e.ref(0),e.ref(0),e.ref(0),e.ref(0);const v=e=>{o.value!==e&&(o.value=e,c.value=!1,s.value=!1,setTimeout((()=>{switch(e){case 0:c.value=!0;break;case 1:s.value=!0}}),50))},p=e=>{z.value=!0,_.value=e,o.value=e,c.value=!1,s.value=!1,5!==e?setTimeout((()=>{switch(e){case 0:c.value=!0;break;case 1:s.value=!0}}),50):uni.navigateBack()},g=e.ref(0),w=e.ref(0),h=e.ref(""),f=e.ref(!0),y=e.ref({index0:999,index1:999}),x=e.ref(!0),E=uni.createAnimation({duration:0,timingFunction:"linear",delay:0}),V=e.ref({}),b=function(e,t){let l=0;return function(...a){const i=Date.now();i-l>=t&&(l=i,e.apply(this,a))}}((e=>{var t;const l=e.touches[0];g.value=2*(Math.floor(l.clientX)-100),w.value=2*(Math.floor(l.clientY)-55),E.translate3d(g.value/2,w.value/2,0).step({duration:0}),V.value=E.export();const a=Math.floor(l.clientX)-50,i=Math.floor(l.clientY)-25,r=k.value.find((e=>a>=Math.floor(e.left)&&a<=Math.floor(e.right)&&i>=Math.floor(e.top)&&i<=Math.floor(e.bottom)));if(r){const{index0:e,index1:l}=r.dataset;y.value.index0=e,y.value.index1=l,g.value<200&&x.value&&!m.value&&(null==(t=D.value)||t.nextItems(),x.value=!1,setTimeout((()=>{x.value=!0}),1e3))}else y.value.index0=999,y.value.index1=999}),40),k=e.ref([]),T=e.ref({directiveName:"",cycleType:"",positioningLong:"0",typeName:"",startTime:"",id:"",endTime:"",tagName:null}),D=e.ref(null),C=e.ref(null),S=()=>{var e,t,l;g.value=9999,w.value=9999,E.translate3d(g.value/2,w.value/2,0).step({duration:0}),V.value=E.export(),f.value=!0,y.value={index0:999,index1:999},h.value?m.value||null==(e=D.value)||e.rulerEnd(h.value):T.value.typeName&&(0===m.value?null==(t=D.value)||t.rulerMoveEnd(T.value):null==(l=C.value)||l.rulerMoveEnd(T.value)),h.value="",T.value={directiveName:"",cycleType:"",positioningLong:"0",typeName:"",startTime:"",id:"",endTime:"",tagName:null}};function B(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}r((()=>{setTimeout((()=>{p(o.value)}),50),c.value=!1,setTimeout((()=>{c.value=!0}),50)}));const z=e.ref(!0),_=e.ref(0),I=e.ref(-1),U=e.ref(!1),F=e=>{U.value=e},$=t=>{if(5===t)return U.value?(I.value=-1,void e.nextTick((()=>I.value=t))):void(z.value?uni.navigateBack():(z.value=!0,_.value=o.value));if(z.value)switch(t){case 0:_.value&&(_.value--,v(_.value));break;case 1:z.value=!1,_.value=-1;break;case 2:_.valueI.value=t))};return(t,l)=>{const a=e.resolveComponent("donghua"),i=e.resolveComponent("arrowkeys");return e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(d.value?"darkbackgroundContainer":"backgroundContainer"),onTouchmove:l[1]||(l[1]=(...t)=>e.unref(b)&&e.unref(b)(...t)),onTouchend:S},[e.withDirectives(e.createElementVNode("view",{class:"move-font",animation:V.value},e.toDisplayString(h.value),9,["animation"]),[[e.vShow,h.value&&g.value]]),e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass("日常"==T.value.cycleType?"title-time-border-yellow":"title-time-border-pouple"),animation:V.value,style:{"font-size":"30rpx",overflow:"hidden"}},[e.withDirectives(e.createElementVNode("view",{class:"title-time",style:{"margin-top":"5rpx"}},[e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"30rpx"}},e.toDisplayString(T.value.startTime+"-"+T.value.endTime),1),e.createElementVNode("image",{class:"title-time-button",src:"日常"==T.value.cycleType?"/static/index/yellowbian.png":"/static/index/puoplebian.png"},null,8,["src"]),e.createElementVNode("view",{class:"title-time-font"},e.toDisplayString(T.value.cycleType),1)],512),[[e.vShow,T.value.startTime]]),e.createElementVNode("view",{style:{"margin-top":"20rpx","font-weight":"700"}},e.toDisplayString(B(T.value.directiveName)[0]),1),e.withDirectives(e.createElementVNode("view",{class:"down-icons",style:e.normalizeStyle("日常"!=T.value.cycleType?{backgroundColor:"rgb(212,203,255)"}:{})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(B(T.value.directiveName).slice(1),((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"",key:l},[e.createElementVNode("view",{class:"icon",style:e.normalizeStyle("日常"!=T.value.cycleType?{backgroundColor:"rgb(123,97,255)"}:{})},e.toDisplayString(B(T.value.directiveName)[1]),5)])))),128))],4),[[e.vShow,B(T.value.directiveName)[1]]])],10,["animation"]),[[e.vShow,T.value.cycleType]]),e.createElementVNode("view",{class:"left-container"},[e.createElementVNode("view",{class:"left-head",onClick:u},[e.createElementVNode("image",{class:"left-head-img",src:N}),e.createElementVNode("text",{class:e.normalizeClass(d.value?"left-head-font-dark":"left-head-font")}," 王金福 ",2)]),e.createElementVNode("view",{class:"menus-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass(["menu",_.value===l?"target":""]),style:e.normalizeStyle(_.value===l?{backgroundColor:"#ddf0ff"}:l===o.value?{backgroundColor:"#fff"}:{}),onClick:e=>p(l)},[e.createVNode(a,{width:"65rpx",height:"65rpx",links:t.url,playing:l===o.value},null,8,["links","playing"]),e.createElementVNode("text",{style:{"font-size":"31rpx","margin-left":"15rpx"}},e.toDisplayString(t.name),1)],14,["onClick"])))),128))])]),o.value?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(ee,{key:0,isShow:c.value,propsmove:I.value,isMain:z.value,onBack:l[0]||(l[0]=e=>$(5))},null,8,["isShow","propsmove","isMain"])),1==o.value&&2===m.value?(e.openBlock(),e.createBlock(ie,{key:1,isold:2===m.value,liang:y.value,isshow:s.value,propsmove:I.value,isMain:z.value,onVip:F},null,8,["isold","liang","isshow","propsmove","isMain"])):e.createCommentVNode("",!0),e.createVNode(i,{onMovecard:$})],34)}}}),[["__scopeId","data-v-8ad00f91"]]),ne=s(e.defineComponent({__name:"index",setup(t){const l=e.ref("");return(t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"请购清单")]),e.createElementVNode("view",{class:"draw-blue"}," 请购单号:A0120250301001 ")]),e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("image",{class:"swiper-card-top-img",src:"/static/index/project3.png"},null,8,["src"]),e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"}," 纸尿裤-拉拉裤 "),e.createElementVNode("view",{class:"weight-right",style:{width:"40%"}}," 采购数量:50 ")]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 规格型号: "),e.createElementVNode("view",{class:"swiper-black"}," 800mm*690mm ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购单位: "),e.createElementVNode("view",{class:"swiper-black"}," 片 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"40%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 库存数量: "),e.createElementVNode("view",{class:"swiper-black"}," 50 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 库存下限: "),e.createElementVNode("view",{class:"swiper-black"}," 10 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"40%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 库存上限: "),e.createElementVNode("view",{class:"swiper-black"}," 1000 ")])])])]),e.createElementVNode("view",{class:"swiper-card-down"},[e.createElementVNode("view",{class:"down-left"},[e.createElementVNode("view",{class:"down-left-weight"}," 供应商: "),e.createElementVNode("view",{class:"down-left-font"}," 长春市永佳利商贸有限公司1 ")]),e.createElementVNode("image",{class:"delete-img",src:"/static/index/deleteIt.png"},null,8,["src"])])])]))),64))])])]),e.createElementVNode("view",{class:"down-note"},[e.withDirectives(e.createElementVNode("textarea",{class:"down-note-title-input","onUpdate:modelValue":a[0]||(a[0]=e=>l.value=e),maxlength:"300","placeholder-style":"color:#999",placeholder:"请输入备注"},null,512),[[e.vModelText,l.value]]),e.createElementVNode("text",{class:"char-count"},e.toDisplayString(l.value.length)+"/300",1)]),e.createElementVNode("view",{class:"down-button"},[e.createElementVNode("view",{class:"swiper-left-button-orange"}," 清空 "),e.createElementVNode("view",{class:"swiper-left-button-blue"}," 保存 "),e.createElementVNode("view",{class:"swiper-left-button-blue",style:{"margin-right":"40rpx"}}," 提交 ")])])]))}}),[["__scopeId","data-v-e15809eb"]]),oe=s(e.defineComponent({__name:"index",setup(t){const l=e.ref("");return(t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"请购清单")]),e.createElementVNode("view",{class:"draw-blue"}," 请购单号:A0120250301001 ")]),e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("image",{class:"swiper-card-top-img",src:"/static/index/project3.png"},null,8,["src"]),e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"}," 纸尿裤-拉拉裤 "),e.createElementVNode("view",{class:"weight-right",style:{width:"40%"}}," 采购数量:50 ")]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 规格型号: "),e.createElementVNode("view",{class:"swiper-black"}," 800mm*690mm ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购单位: "),e.createElementVNode("view",{class:"swiper-black"}," 片 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"40%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 库存数量: "),e.createElementVNode("view",{class:"swiper-black"}," 50 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 库存下限: "),e.createElementVNode("view",{class:"swiper-black"}," 10 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"40%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 库存上限: "),e.createElementVNode("view",{class:"swiper-black"}," 1000 ")])])])]),e.createElementVNode("view",{class:"swiper-card-down"},[e.createElementVNode("view",{class:"down-left"},[e.createElementVNode("view",{class:"down-left-weight"}," 供应商: "),e.createElementVNode("view",{class:"down-left-font"}," 长春市永佳利商贸有限公司1 ")])])])]))),64))])])]),e.createElementVNode("view",{class:"down-note"},[e.withDirectives(e.createElementVNode("textarea",{disabled:"",class:"down-note-title-input","onUpdate:modelValue":a[0]||(a[0]=e=>l.value=e),maxlength:"300","placeholder-style":"color:#999",placeholder:"该请购单未备注"},null,512),[[e.vModelText,l.value]]),e.createElementVNode("text",{class:"char-count"},e.toDisplayString(l.value.length)+"/300",1)])])]))}}),[["__scopeId","data-v-c8dcc752"]]),ce=s(e.defineComponent({__name:"index",setup(t){e.ref("");const l=e.ref(0),a=e.ref(0),i=e.ref(!1),r=e.ref(!1),n=e.ref("全部"),o=e.ref("日期从近到远"),c=e.ref([{value:0,label:"全部"},{value:1,label:"出库"},{value:2,label:"入库"}]),s=e.ref([{value:0,label:"日期从近到远"},{value:1,label:"日期从远到近"}]),d=e.ref([{name:"生活用品请领",add:-20},{name:"采购入库",add:10},{name:"生活用品请领",add:-20},{name:"生活用品请领",add:20},{name:"生活用品请领",add:-20},{name:"生活用品请领",add:100},{name:"生活用品请领",add:9999}]),m=e=>{a.value=e.detail.scrollTop.toFixed(2)};return(t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"出入库")])]),e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("image",{class:"swiper-card-top-img",src:"/static/index/project3.png"},null,8,["src"]),e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"}," 纸尿裤-拉拉裤 "),e.createElementVNode("view",{class:"weight-right",style:{"margin-right":"30rpx"}}," 当前库存:96 ")]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"20rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 物料编码: "),e.createElementVNode("view",{class:"swiper-black"}," ZHYP044 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"20rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 规格型号: "),e.createElementVNode("view",{class:"swiper-black"}," 800mm*690mm ")])])])])]),e.createElementVNode("view",{class:"select-width"},[e.createElementVNode("view",{class:"select-blue",onClick:a[1]||(a[1]=e=>i.value=!i.value)},[e.createElementVNode("image",{class:"select-blue-img",src:"/static/index/warehouseCard/selectblue.png"}),e.createElementVNode("view",{class:"select-blue-font"},e.toDisplayString(n.value),1),e.createElementVNode("div",{class:"triangle-down"}),e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(["dropdown-list",i.value?"open":"close"]),onClick:a[0]||(a[0]=e.withModifiers((()=>{}),["stop"]))},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass(["dropdown-item",t.label==n.value?"active":""]),onClick:e=>{n.value=t.label,i.value=!1}},e.toDisplayString(t.label),11,["onClick"])))),128))],2),[[e.vShow,i.value]])]),e.createElementVNode("view",{class:"select-white",onClick:a[3]||(a[3]=e=>r.value=!r.value)},[e.createElementVNode("image",{class:"select-blue-img",src:"/static/index/warehouseCard/selectwhite.png"}),e.createElementVNode("view",{class:"select-blue-font"},e.toDisplayString(o.value),1),e.createElementVNode("div",{class:"triangle-down"}),e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(["dropdown-list",r.value?"open":"close"]),onClick:a[2]||(a[2]=e.withModifiers((()=>{}),["stop"]))},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:e.normalizeClass(["dropdown-item",t.label==o.value?"active":""]),onClick:e=>{o.value=t.label,r.value=!1}},e.toDisplayString(t.label),11,["onClick"])))),128))],2),[[e.vShow,r.value]])])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("view",{class:"scroll-view-title"},[e.createElementVNode("view",{class:"amount"}," 总计:100笔 "),e.createElementVNode("view",{class:"outhouse"},[e.createElementVNode("image",{class:"outhouse-img",src:"/static/index/warehouseCard/orangeicon.png"}),e.createElementVNode("view",{class:"outhouse-left"}," 出库: "),e.createElementVNode("view",{class:"outhouse-right"}," 50笔 ")]),e.createElementVNode("view",{class:"inhouse"},[e.createElementVNode("image",{class:"inhouse-img",src:"/static/index/warehouseCard/blueicon.png"}),e.createElementVNode("view",{class:"inhouse-left"}," 出库: "),e.createElementVNode("view",{class:"inhouse-right"}," 50笔 ")])]),e.createElementVNode("scroll-view",{"scroll-y":"","scroll-top":l.value,onScroll:m,style:{height:"770rpx","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(d.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"swiper-card-spec"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},e.toDisplayString(t.name),1),e.createElementVNode("view",{class:"weight-right",style:{color:"#59657A","font-weight":"400"}}," 摘要:服务指令 ")]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 服务指令:生活用品请领 ")]),e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray",style:e.normalizeStyle([t.add<0?{color:"#FF6600"}:{color:"#008AFF"},{"font-weight":"700","font-size":"35rpx"}])},e.toDisplayString(t.add>0?"+"+t.add:t.add),5)])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-black"}," 2025-02-13 17:29:18 ")]),e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-black"}," 库存: "),e.createElementVNode("view",{class:"swiper-black"}," 96 ")])])])]),e.createElementVNode("view",{class:"swiper-card-down"},[e.createElementVNode("view",{class:"down-left"},[e.createElementVNode("view",{class:"down-left-weight"}," 供应商: "),e.createElementVNode("view",{class:"down-left-font"}," 长春市永佳利商贸有限公司1 ")]),e.createElementVNode("image",{class:"delete-img",src:"/static/index/deleteIt.png"},null,8,["src"])])])])))),128))])],40,["scroll-top"])])])]))}}),[["__scopeId","data-v-a22273dc"]]);const se=s({name:"u-icon",emits:["click","touchstart"],props:{name:{type:String,default:""},color:{type:[String,null],default:""},size:{type:[Number,String],default:"inherit"},bold:{type:Boolean,default:!1},index:{type:[Number,String],default:""},hoverClass:{type:String,default:""},customPrefix:{type:String,default:"uicon"},label:{type:[String,Number],default:""},labelPos:{type:String,default:"right"},labelSize:{type:[String,Number],default:"28"},labelColor:{type:String,default:"#606266"},marginLeft:{type:[String,Number],default:"6"},marginTop:{type:[String,Number],default:"6"},marginRight:{type:[String,Number],default:"6"},marginBottom:{type:[String,Number],default:"6"},imgMode:{type:String,default:"widthFix"},customStyle:{type:Object,default:()=>({})},width:{type:[String,Number],default:""},height:{type:[String,Number],default:""},top:{type:[String,Number],default:0},showDecimalIcon:{type:Boolean,default:!1},inactiveColor:{type:String,default:"#ececec"},percent:{type:[Number,String],default:"50"}},computed:{customClass(){let e=[],{customPrefix:t,name:l}=this,a=l.indexOf("-icon-");return a>-1?(t=l.substring(0,a+5),e.push(l)):e.push(`${t}-${l}`),"uicon"===t?e.push("u-iconfont"):e.push(t),this.showDecimalIcon&&this.inactiveColor&&this.$u.config.type.includes(this.inactiveColor)?e.push("u-icon__icon--"+this.inactiveColor):this.color&&this.$u.config.type.includes(this.color)&&e.push("u-icon__icon--"+this.color),e},iconStyle(){let e={};return e={fontSize:"inherit"==this.size?"inherit":this.$u.addUnit(this.size),fontWeight:this.bold?"bold":"normal",top:this.$u.addUnit(this.top)},this.showDecimalIcon&&this.inactiveColor&&!this.$u.config.type.includes(this.inactiveColor)?e.color=this.inactiveColor:this.color&&!this.$u.config.type.includes(this.color)&&(e.color=this.color),e},isImg(){return-1!==this.name.indexOf("/")},imgStyle(){let e={};return e.width=this.width?this.$u.addUnit(this.width):this.$u.addUnit(this.size),e.height=this.height?this.$u.addUnit(this.height):this.$u.addUnit(this.size),e},decimalIconStyle(){let e={};return e={fontSize:"inherit"==this.size?"inherit":this.$u.addUnit(this.size),fontWeight:this.bold?"bold":"normal",top:this.$u.addUnit(this.top),width:this.percent+"%"},this.color&&!this.$u.config.type.includes(this.color)&&(e.color=this.color),e},decimalIconClass(){let e=[];return e.push(this.customPrefix+"-"+this.name),"uicon"==this.customPrefix?e.push("u-iconfont"):e.push(this.customPrefix),this.color&&this.$u.config.type.includes(this.color)?e.push("u-icon__icon--"+this.color):e.push("u-icon__icon--primary"),e}},methods:{click(){this.$emit("click",this.index)},touchstart(){this.$emit("touchstart",this.index)}}},[["render",function(t,l,a,i,r,n){return e.openBlock(),e.createElementBlock("view",{style:e.normalizeStyle([a.customStyle]),class:e.normalizeClass(["u-icon",["u-icon--"+a.labelPos]]),onClick:l[1]||(l[1]=(...e)=>n.click&&n.click(...e))},[n.isImg?(e.openBlock(),e.createElementBlock("image",{key:0,class:"u-icon__img",src:a.name,mode:a.imgMode,style:e.normalizeStyle([n.imgStyle])},null,12,["src","mode"])):(e.openBlock(),e.createElementBlock("view",{key:1,class:e.normalizeClass(["u-icon__icon",n.customClass]),style:e.normalizeStyle([n.iconStyle]),"hover-class":a.hoverClass,onTouchstart:l[0]||(l[0]=(...e)=>n.touchstart&&n.touchstart(...e))},[a.showDecimalIcon?(e.openBlock(),e.createElementBlock("text",{key:0,style:e.normalizeStyle([n.decimalIconStyle]),class:e.normalizeClass([n.decimalIconClass,"u-icon__decimal"]),"hover-class":a.hoverClass},null,14,["hover-class"])):e.createCommentVNode("",!0)],46,["hover-class"])),""!==a.label&&null!==a.label?(e.openBlock(),e.createElementBlock("text",{key:2,class:"u-icon__label",style:e.normalizeStyle({color:a.labelColor,fontSize:t.$u.addUnit(a.labelSize),marginLeft:"right"==a.labelPos?t.$u.addUnit(a.marginLeft):0,marginTop:"bottom"==a.labelPos?t.$u.addUnit(a.marginTop):0,marginRight:"left"==a.labelPos?t.$u.addUnit(a.marginRight):0,marginBottom:"top"==a.labelPos?t.$u.addUnit(a.marginBottom):0})},e.toDisplayString(a.label),5)):e.createCommentVNode("",!0)],6)}],["__scopeId","data-v-32e6a46e"]]);const de=s({name:"u-button",emits:["click","getphonenumber","getuserinfo","error","opensetting","launchapp","chooseavatar"],props:{hairLine:{type:Boolean,default:!0},type:{type:String,default:"default"},size:{type:String,default:"default"},shape:{type:String,default:"square"},plain:{type:Boolean,default:!1},disabled:{type:Boolean,default:!1},loading:{type:Boolean,default:!1},openType:{type:String,default:""},formType:{type:String,default:""},appParameter:{type:String,default:""},hoverStopPropagation:{type:Boolean,default:!1},lang:{type:String,default:"en"},sessionFrom:{type:String,default:""},sendMessageTitle:{type:String,default:""},sendMessagePath:{type:String,default:""},sendMessageImg:{type:String,default:""},showMessageCard:{type:Boolean,default:!1},hoverBgColor:{type:String,default:""},rippleBgColor:{type:String,default:""},ripple:{type:Boolean,default:!1},hoverClass:{type:String,default:""},customStyle:{type:Object,default:()=>({})},dataName:{type:String,default:""},throttleTime:{type:[String,Number],default:500},hoverStartTime:{type:[String,Number],default:20},hoverStayTime:{type:[String,Number],default:150},timerId:{type:[String,Number]}},computed:{getHoverClass(){if(this.loading||this.disabled||this.ripple||this.hoverClass)return"";let e="";return e=this.plain?"u-"+this.type+"-plain-hover":"u-"+this.type+"-hover",e},showHairLineBorder(){return["primary","success","error","warning"].indexOf(this.type)>=0&&!this.plain?"":"u-hairline-border"}},data(){return{btnTimerId:this.timerId||"button_"+Math.floor(1e8*Math.random()+0),rippleTop:0,rippleLeft:0,fields:{},waveActive:!1}},methods:{click(e){this.$u.throttle((()=>{!0!==this.loading&&!0!==this.disabled&&(this.ripple&&(this.waveActive=!1,this.$nextTick((function(){this.getWaveQuery(e)}))),this.$emit("click",e))}),this.throttleTime,!0,this.btnTimerId)},getWaveQuery(e){this.getElQuery().then((t=>{let l=t[0];if(!l.width||!l.width)return;if(l.targetWidth=l.height>l.width?l.height:l.width,!l.targetWidth)return;this.fields=l;let a="",i="";a=e.touches[0].clientX,i=e.touches[0].clientY,this.rippleTop=i-l.top-l.targetWidth/2,this.rippleLeft=a-l.left-l.targetWidth/2,this.$nextTick((()=>{this.waveActive=!0}))}))},getElQuery(){return new Promise((e=>{let t="";t=uni.createSelectorQuery().in(this),t.select(".u-btn").boundingClientRect(),t.exec((t=>{e(t)}))}))},getphonenumber(e){this.$emit("getphonenumber",e)},getuserinfo(e){this.$emit("getuserinfo",e)},error(e){this.$emit("error",e)},opensetting(e){this.$emit("opensetting",e)},launchapp(e){this.$emit("launchapp",e)},chooseavatar(e){this.$emit("chooseavatar",e)}}},[["render",function(t,l,a,i,r,n){return e.openBlock(),e.createElementBlock("button",{id:"u-wave-btn",class:e.normalizeClass(["u-btn u-line-1 u-fix-ios-appearance",["u-size-"+a.size,a.plain?"u-btn--"+a.type+"--plain":"",a.loading?"u-loading":"","circle"==a.shape?"u-round-circle":"",a.hairLine?n.showHairLineBorder:"u-btn--bold-border","u-btn--"+a.type,a.disabled?`u-btn--${a.type}--disabled`:""]]),"hover-start-time":Number(a.hoverStartTime),"hover-stay-time":Number(a.hoverStayTime),disabled:a.disabled,"form-type":a.formType,"open-type":a.openType,"app-parameter":a.appParameter,"hover-stop-propagation":a.hoverStopPropagation,"send-message-title":a.sendMessageTitle,"send-message-path":"sendMessagePath",lang:a.lang,"data-name":a.dataName,"session-from":a.sessionFrom,"send-message-img":a.sendMessageImg,"show-message-card":a.showMessageCard,onGetphonenumber:l[0]||(l[0]=(...e)=>n.getphonenumber&&n.getphonenumber(...e)),onGetuserinfo:l[1]||(l[1]=(...e)=>n.getuserinfo&&n.getuserinfo(...e)),onError:l[2]||(l[2]=(...e)=>n.error&&n.error(...e)),onOpensetting:l[3]||(l[3]=(...e)=>n.opensetting&&n.opensetting(...e)),onLaunchapp:l[4]||(l[4]=(...e)=>n.launchapp&&n.launchapp(...e)),onChooseavatar:l[5]||(l[5]=(...e)=>n.chooseavatar&&n.chooseavatar(...e)),style:e.normalizeStyle([a.customStyle,{overflow:a.ripple?"hidden":"visible"}]),onClick:l[6]||(l[6]=e.withModifiers((e=>n.click(e)),["stop"])),"hover-class":n.getHoverClass,loading:a.loading},[e.renderSlot(t.$slots,"default",{},void 0,!0),a.ripple?(e.openBlock(),e.createElementBlock("view",{key:0,class:e.normalizeClass(["u-wave-ripple",[r.waveActive?"u-wave-active":""]]),style:e.normalizeStyle({top:r.rippleTop+"px",left:r.rippleLeft+"px",width:r.fields.targetWidth+"px",height:r.fields.targetWidth+"px","background-color":a.rippleBgColor||"rgba(0, 0, 0, 0.15)"})},null,6)):e.createCommentVNode("",!0)],46,["hover-start-time","hover-stay-time","disabled","form-type","open-type","app-parameter","hover-stop-propagation","send-message-title","lang","data-name","session-from","send-message-img","show-message-card","hover-class","loading"])}],["__scopeId","data-v-942515d8"]]);const me=s({name:"u-mask",emits:["click"],props:{show:{type:Boolean,default:!1},zIndex:{type:[Number,String],default:""},customStyle:{type:Object,default:()=>({})},zoom:{type:Boolean,default:!0},duration:{type:[Number,String],default:300},maskClickAble:{type:Boolean,default:!0},blur:{type:[Number,String],default:0}},data:()=>({zoomStyle:{transform:""},scale:"scale(1.2, 1.2)"}),watch:{show(e){e&&this.zoom?this.zoomStyle.transform="scale(1, 1)":!e&&this.zoom&&(this.zoomStyle.transform=this.scale)}},computed:{maskStyle(){let e={backgroundColor:"rgba(0, 0, 0, 0.6)"};return this.show?e.zIndex=this.zIndex?this.zIndex:this.$u.zIndex.mask:e.zIndex=-1,e.transition=`all ${this.duration/1e3}s ease-in-out`,Object.keys(this.customStyle).length&&(e={...e,...this.customStyle}),e},filterStyle(){let{blur:e}=this,t={};return e&&(t.backdropFilter=`blur(${e}rpx)`),t}},methods:{click(){this.maskClickAble&&this.$emit("click")}}},[["render",function(t,l,a,i,r,n){return e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["u-mask",{"u-mask-zoom":a.zoom,"u-mask-show":a.show}]),"hover-stop-propagation":"",style:e.normalizeStyle([n.maskStyle,r.zoomStyle,n.filterStyle]),onClick:l[0]||(l[0]=(...e)=>n.click&&n.click(...e)),onTouchmove:e.withModifiers((()=>{}),["stop","prevent"])},[e.renderSlot(t.$slots,"default",{},void 0,!0)],38)}],["__scopeId","data-v-005d3602"]]);const ue=s({name:"u-popup",emits:["update:modelValue","input","open","close"],props:{value:{type:Boolean,default:!1},modelValue:{type:Boolean,default:!1},show:{type:Boolean,default:!1},mode:{type:String,default:"left"},mask:{type:Boolean,default:!0},length:{type:[Number,String],default:"auto"},zoom:{type:Boolean,default:!0},safeAreaInsetBottom:{type:Boolean,default:!1},maskCloseAble:{type:Boolean,default:!0},customStyle:{type:Object,default:()=>({})},popup:{type:Boolean,default:!0},borderRadius:{type:[Number,String],default:0},zIndex:{type:[Number,String],default:""},closeable:{type:Boolean,default:!1},closeIcon:{type:String,default:"close"},closeIconPos:{type:String,default:"top-right"},closeIconColor:{type:String,default:"#909399"},closeIconSize:{type:[String,Number],default:"30"},width:{type:String,default:""},height:{type:String,default:""},negativeTop:{type:[String,Number],default:0},maskCustomStyle:{type:Object,default:()=>({})},duration:{type:[String,Number],default:250},blur:{type:[String,Number],default:0}},data:()=>({visibleSync:!1,showDrawer:!1,timer:null,closeFromInner:!1}),computed:{valueCom(){return this.modelValue},style(){let e={};if("left"==this.mode||"right"==this.mode?e={width:this.width?this.getUnitValue(this.width):this.getUnitValue(this.length),height:"100%",transform:`translate3D(${"left"==this.mode?"-100%":"100%"},0px,0px)`}:"top"!=this.mode&&"bottom"!=this.mode||(e={width:"100%",height:this.height?this.getUnitValue(this.height):this.getUnitValue(this.length),transform:`translate3D(0px,${"top"==this.mode?"-100%":"100%"},0px)`}),e.zIndex=this.uZindex,this.borderRadius){switch(this.mode){case"left":e.borderRadius=`0 ${this.borderRadius}rpx ${this.borderRadius}rpx 0`;break;case"top":e.borderRadius=`0 0 ${this.borderRadius}rpx ${this.borderRadius}rpx`;break;case"right":e.borderRadius=`${this.borderRadius}rpx 0 0 ${this.borderRadius}rpx`;break;case"bottom":e.borderRadius=`${this.borderRadius}rpx ${this.borderRadius}rpx 0 0`}e.overflow="hidden"}return this.duration&&(e.transition=`all ${this.duration/1e3}s linear`),e},centerStyle(){let e={};return e.width=this.width?this.getUnitValue(this.width):this.getUnitValue(this.length),e.height=this.height?this.getUnitValue(this.height):"auto",e.zIndex=this.uZindex,e.marginTop=`-${this.$u.addUnit(this.negativeTop)}`,this.borderRadius&&(e.borderRadius=`${this.borderRadius}rpx`,e.overflow="hidden"),e},uZindex(){return this.zIndex?this.zIndex:this.$u.zIndex.popup}},watch:{valueCom:{handler(e){e?this.open():this.closeFromInner||this.close(),this.closeFromInner=!1}}},mounted(){this.valueCom&&this.open()},methods:{getUnitValue:e=>/(%|px|rpx|auto)$/.test(e)?e:e+"rpx",maskClick(){this.close()},close(){this.closeFromInner=!0,this.change("showDrawer","visibleSync",!1)},modeCenterClose(e){"center"==e&&this.maskCloseAble&&this.close()},open(){this.change("visibleSync","showDrawer",!0)},change(e,t,l){1==this.popup&&(this.$emit("input",l),this.$emit("update:modelValue",l)),this[e]=l,l?this.$nextTick((()=>{this[t]=l,this.$emit(l?"open":"close")})):this.timer=setTimeout((()=>{this[t]=l,this.$emit(l?"open":"close")}),this.duration)}}},[["render",function(t,l,i,r,n,o){const c=a(e.resolveDynamicComponent("u-mask"),me),s=a(e.resolveDynamicComponent("u-icon"),se);return n.visibleSync?(e.openBlock(),e.createElementBlock("view",{key:0,style:e.normalizeStyle([i.customStyle,{zIndex:o.uZindex-1}]),class:"u-drawer","hover-stop-propagation":""},[e.createVNode(c,{blur:i.blur,duration:i.duration,"custom-style":i.maskCustomStyle,maskClickAble:i.maskCloseAble,"z-index":o.uZindex-2,show:n.showDrawer&&i.mask,onClick:o.maskClick},null,8,["blur","duration","custom-style","maskClickAble","z-index","show","onClick"]),e.createElementVNode("view",{class:e.normalizeClass(["u-drawer-content",[i.safeAreaInsetBottom?"safe-area-inset-bottom":"","u-drawer-"+i.mode,n.showDrawer?"u-drawer-content-visible":"",i.zoom&&"center"==i.mode?"u-animation-zoom":""]]),onClick:l[3]||(l[3]=e=>o.modeCenterClose(i.mode)),onTouchmove:l[4]||(l[4]=e.withModifiers((()=>{}),["stop","prevent"])),style:e.normalizeStyle([o.style])},["center"==i.mode?(e.openBlock(),e.createElementBlock("view",{key:0,class:"u-mode-center-box",onClick:l[0]||(l[0]=e.withModifiers((()=>{}),["stop","prevent"])),onTouchmove:l[1]||(l[1]=e.withModifiers((()=>{}),["stop","prevent"])),style:e.normalizeStyle([o.centerStyle])},[i.closeable?(e.openBlock(),e.createBlock(s,{key:0,onClick:o.close,class:e.normalizeClass(["u-close",["u-close--"+i.closeIconPos]]),name:i.closeIcon,color:i.closeIconColor,size:i.closeIconSize},null,8,["onClick","class","name","color","size"])):e.createCommentVNode("",!0),e.createElementVNode("scroll-view",{class:"u-drawer__scroll-view","scroll-y":"true"},[e.renderSlot(t.$slots,"default",{},void 0,!0)])],36)):(e.openBlock(),e.createElementBlock("scroll-view",{key:1,class:"u-drawer__scroll-view","scroll-y":"true"},[e.renderSlot(t.$slots,"default",{},void 0,!0)])),e.createElementVNode("view",{onClick:l[2]||(l[2]=(...e)=>o.close&&o.close(...e)),class:e.normalizeClass(["u-close",["u-close--"+i.closeIconPos]])},["center"!=i.mode&&i.closeable?(e.openBlock(),e.createBlock(s,{key:0,name:i.closeIcon,color:i.closeIconColor,size:i.closeIconSize},null,8,["name","color","size"])):e.createCommentVNode("",!0)],2)],38)],4)):e.createCommentVNode("",!0)}],["__scopeId","data-v-98075be7"]]);const ve=s({name:"u-calendar",emits:["update:modelValue","input","change"],props:{value:{type:Boolean,default:!1},modelValue:{type:Boolean,default:!1},safeAreaInsetBottom:{type:Boolean,default:!1},maskCloseAble:{type:Boolean,default:!0},zIndex:{type:[String,Number],default:0},changeYear:{type:Boolean,default:!0},changeMonth:{type:Boolean,default:!0},mode:{type:String,default:"date"},maxYear:{type:[Number,String],default:2050},minYear:{type:[Number,String],default:1950},minDate:{type:[Number,String],default:"1950-01-01"},maxDate:{type:[Number,String],default:""},borderRadius:{type:[String,Number],default:20},monthArrowColor:{type:String,default:"#606266"},yearArrowColor:{type:String,default:"#909399"},color:{type:String,default:"#303133"},activeBgColor:{type:String,default:"#2979ff"},activeColor:{type:String,default:"#ffffff"},rangeBgColor:{type:String,default:"rgba(41,121,255,0.13)"},rangeColor:{type:String,default:"#2979ff"},startText:{type:String,default:"开始"},endText:{type:String,default:"结束"},btnType:{type:String,default:"primary"},isActiveCurrent:{type:Boolean,default:!0},isChange:{type:Boolean,default:!1},closeable:{type:Boolean,default:!0},toolTip:{type:String,default:"选择日期"},blur:{type:[Number,String],default:0},confirmText:{type:String,default:"确定"},toText:{type:String,default:"至"},yearText:{type:String,default:"年"},monthText:{type:String,default:"月"}},data:()=>({popupValue:!1,weekday:1,weekdayArr:[],days:0,daysArr:[],showTitle:"",year:2020,month:0,day:0,startYear:0,startMonth:0,startDay:0,endYear:0,endMonth:0,endDay:0,today:"",activeDate:"",startDate:"",endDate:"",isStart:!0,min:null,max:null,weekDayZh:["日","一","二","三","四","五","六"]}),computed:{valueCom(){return this.modelValue},dataChange(){return`${this.mode}-${this.minDate}-${this.maxDate}`},uZIndex(){return this.zIndex?this.zIndex:this.$u.zIndex.popup}},watch:{dataChange(e){this.init()},valueCom:{immediate:!0,handler(e){this.popupValue=e}}},created(){this.init()},methods:{getColor(e,t){let l=1==t?"":this.color,a=e+1,i=`${this.year}-${this.month}-${a}`,r=new Date(i.replace(/\-/g,"/")).getTime(),n=this.startDate.replace(/\-/g,"/"),o=this.endDate.replace(/\-/g,"/");return this.isActiveCurrent&&this.activeDate==i||this.startDate==i||this.endDate==i?l=1==t?null:this.activeColor:this.endDate&&r>new Date(n).getTime()&&r=new Date(r).getTime()&&o<=new Date(n).getTime()&&(a=!1),a},generateArray:function(e,t){return Array.from(new Array(t+1).keys()).slice(e)},formatNum:function(e){return e<10?"0"+e:e+""},getMonthDay:(e,t)=>new Date(e,t,0).getDate(),getWeekday:(e,t)=>new Date(`${e}/${t}/01 00:00:00`).getDay(),checkRange(e){let t=!1;return(ethis.maxYear)&&(uni.showToast({title:"日期超出范围啦~",icon:"none"}),t=!0),t},changeMonthHandler(e){if(e){let e=this.month+1,t=e>12?this.year+1:this.year;this.checkRange(t)||(this.month=e>12?1:e,this.year=t,this.changeData())}else{let e=this.month-1,t=e<1?this.year-1:this.year;this.checkRange(t)||(this.month=e<1?12:e,this.year=t,this.changeData())}},changeYearHandler(e){let t=e?this.year+1:this.year-1;this.checkRange(t)||(this.year=t,this.changeData())},changeData(){this.days=this.getMonthDay(this.year,this.month),this.daysArr=this.generateArray(1,this.days),this.weekday=this.getWeekday(this.year,this.month),this.weekdayArr=this.generateArray(1,this.weekday),this.showTitle=`${this.year}${this.yearText}${this.month}${this.monthText}`,this.isChange&&"date"==this.mode&&this.btnFix(!0)},dateClick:function(e){if(e+=1,!this.openDisAbled(this.year,this.month,e)){this.day=e;let t=`${this.year}-${this.month}-${e}`;if("date"==this.mode)this.activeDate=t;else{let e=new Date(t.replace(/\-/g,"/")).getTime()"星期"+["日","一","二","三","四","五","六"][(e=new Date(`${e.replace(/\-/g,"/")} 00:00:00`)).getDay()],btnFix(e){if(e||this.close(),"date"==this.mode){let e=this.activeDate.split("-"),t=this.isChange?this.year:Number(e[0]),l=this.isChange?this.month:Number(e[1]),a=this.isChange?this.day:Number(e[2]),i=this.getMonthDay(t,l),r=`${t}-${this.formatNum(l)}-${this.formatNum(a)}`,n=this.getWeekText(r),o=!1;`${t}-${l}-${a}`==this.today&&(o=!0),this.$emit("change",{year:t,month:l,day:a,days:i,result:r,week:n,isToday:o})}else{if(!this.startDate||!this.endDate)return;let e=this.formatNum(this.startMonth),t=this.formatNum(this.startDay),l=`${this.startYear}-${e}-${t}`,a=this.getWeekText(l),i=this.formatNum(this.endMonth),r=this.formatNum(this.endDay),n=`${this.endYear}-${i}-${r}`,o=this.getWeekText(n);this.$emit("change",{startYear:this.startYear,startMonth:this.startMonth,startDay:this.startDay,startDate:l,startWeek:a,endYear:this.endYear,endMonth:this.endMonth,endDay:this.endDay,endDate:n,endWeek:o})}}}},[["render",function(t,l,i,r,n,o){const c=a(e.resolveDynamicComponent("u-icon"),se),s=a(e.resolveDynamicComponent("u-button"),de),d=a(e.resolveDynamicComponent("u-popup"),ue);return e.openBlock(),e.createBlock(d,{blur:i.blur,closeable:"",maskCloseAble:i.maskCloseAble,mode:"bottom",popup:!1,modelValue:n.popupValue,"onUpdate:modelValue":l[5]||(l[5]=e=>n.popupValue=e),length:"auto",safeAreaInsetBottom:i.safeAreaInsetBottom,onClose:o.close,"z-index":o.uZIndex,"border-radius":i.borderRadius},{default:e.withCtx((()=>[e.createElementVNode("view",{class:"u-calendar"},[e.createElementVNode("view",{class:"u-calendar__action u-flex u-row-center"},[e.createElementVNode("view",{class:"u-calendar__action__icon"},[i.changeYear?(e.openBlock(),e.createBlock(c,{key:0,name:"arrow-left-double",color:i.yearArrowColor,onClick:l[0]||(l[0]=e=>o.changeYearHandler(0))},null,8,["color"])):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"u-calendar__action__icon"},[i.changeMonth?(e.openBlock(),e.createBlock(c,{key:0,name:"arrow-left",color:i.monthArrowColor,onClick:l[1]||(l[1]=e=>o.changeMonthHandler(0))},null,8,["color"])):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"u-calendar__action__text"},e.toDisplayString(n.showTitle),1),e.createElementVNode("view",{class:"u-calendar__action__icon"},[i.changeMonth?(e.openBlock(),e.createBlock(c,{key:0,name:"arrow-right",color:i.monthArrowColor,onClick:l[2]||(l[2]=e=>o.changeMonthHandler(1))},null,8,["color"])):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"u-calendar__action__icon"},[i.changeYear?(e.openBlock(),e.createBlock(c,{key:0,name:"arrow-right-double",color:i.yearArrowColor,onClick:l[3]||(l[3]=e=>o.changeYearHandler(1))},null,8,["color"])):e.createCommentVNode("",!0)])]),e.createElementVNode("view",{class:"u-calendar__week-day"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.weekDayZh,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"u-calendar__week-day__text",key:l},e.toDisplayString(t),1)))),128))]),e.createElementVNode("view",{class:"u-calendar__content"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.weekdayArr,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"u-calendar__content__item"})))),128)),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.daysArr,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["u-calendar__content__item",{"u-hover-class":o.openDisAbled(n.year,n.month,l+1),"u-calendar__content--start-date":"range"==i.mode&&n.startDate==`${n.year}-${n.month}-${l+1}`||"date"==i.mode,"u-calendar__content--end-date":"range"==i.mode&&n.endDate==`${n.year}-${n.month}-${l+1}`||"date"==i.mode}]),style:e.normalizeStyle([o.getStyle(l),{"border-radius":"30rpx"}]),key:l,onClick:e=>o.dateClick(l)},[e.createElementVNode("view",{class:"u-calendar__content__item__inner",style:e.normalizeStyle({color:o.getColor(l,2)})},[e.createElementVNode("view",null,e.toDisplayString(l+1),1)],4),"range"==i.mode&&n.startDate==`${n.year}-${n.month}-${l+1}`&&n.startDate!=n.endDate?(e.openBlock(),e.createElementBlock("view",{key:0,class:"u-calendar__content__item__tips",style:e.normalizeStyle({color:i.activeColor})},e.toDisplayString(i.startText),5)):e.createCommentVNode("",!0),"range"==i.mode&&n.endDate==`${n.year}-${n.month}-${l+1}`?(e.openBlock(),e.createElementBlock("view",{key:1,class:"u-calendar__content__item__tips",style:e.normalizeStyle({color:i.activeColor})},e.toDisplayString(i.endText),5)):e.createCommentVNode("",!0)],14,["onClick"])))),128)),e.createElementVNode("view",{class:"u-calendar__content__bg-month"},e.toDisplayString(n.month),1)]),e.createElementVNode("view",{class:"u-calendar__bottom"},[e.createElementVNode("view",{class:"u-calendar__bottom__choose"},[e.createElementVNode("text",null,e.toDisplayString("date"==i.mode?n.activeDate:n.startDate),1),n.endDate?(e.openBlock(),e.createElementBlock("text",{key:0},e.toDisplayString(i.toText)+e.toDisplayString(n.endDate),1)):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"u-calendar__bottom__btn"},[e.createVNode(s,{type:i.btnType,shape:"circle",size:"default",onClick:l[4]||(l[4]=e=>o.btnFix(!1)),disabled:"range"==i.mode&&!n.endDate},{default:e.withCtx((()=>[e.createTextVNode(e.toDisplayString(i.confirmText),1)])),_:1},8,["type","disabled"])])])])])),_:1},8,["blur","maskCloseAble","modelValue","safeAreaInsetBottom","onClose","z-index","border-radius","closeable"])}],["__scopeId","data-v-d354e4bf"]]),pe=s(e.defineComponent({__name:"index",emits:["opendetail"],setup(t,{emit:l}){e.ref("");const i=e.ref(!1),r=e.ref(""),n=e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]),o=l,c=e=>{r.value=e.result},s=()=>{o("opendetail")};return(t,l)=>{const o=a(e.resolveDynamicComponent("u-calendar"),ve);return e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"index-right-height"}),e.createElementVNode("view",{class:"index-right-title"},[e.createElementVNode("view",{class:"index-right-name"}," 请购单号: "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入请购单号"}),e.createElementVNode("view",{class:"index-right-name"}," 请购人: "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入请购人"}),e.createElementVNode("view",{class:"index-right-name"}," 请购日期: "),e.createElementVNode("view",{onClick:l[0]||(l[0]=e.withModifiers((e=>i.value=!0),["stop"]))},[e.createElementVNode("view",{class:"index-right-input",style:e.normalizeStyle([{width:"300rpx",height:"66rpx"},r.value?{}:{color:"#999"}])},e.toDisplayString(r.value?r.value:"请输入请购日期"),5)]),e.createVNode(o,{style:{width:"40%","margin-left":"30%"},"border-radius":"40",modelValue:i.value,"onUpdate:modelValue":l[1]||(l[1]=e=>i.value=e),mode:"date",onChange:c},null,8,["modelValue"]),e.createElementVNode("view",{class:"index-right-button-all"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"index-right-button"},[e.createElementVNode("image",{class:"index-right-button-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{class:"index-right-button-font"},e.toDisplayString(t.name),1)])])))),128))])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"请购单号"),e.createElementVNode("view",{class:"blue-number"},"A0120250301001")]),e.createElementVNode("view",{class:"index-right-button-blue",onClick:s}," 详情 ")]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 请购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.01 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"40%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 请购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")])])])])])]))),64))])])])])])}}}),[["__scopeId","data-v-cb386bfb"]]),ge=s({__name:"ball",props:{isShow:{type:Boolean,required:!0}},emits:["clickBall"],setup(t,{emit:l}){const a=l,i=e.ref(1090),r=e.ref(120),n=e.ref(!1);let o=0,c=0,s=0,d=0,m=null,u=0,v=0;function p(e){const t=e.touches[0];o=t.clientX.toFixed(2),c=t.clientY.toFixed(2),s=i.value,d=r.value,m=setTimeout((()=>{n.value=!0}),300)}function g(e){if(!n.value){const t=e.touches[0],l=Math.abs(t.clientX.toFixed(2)-o),a=Math.abs(t.clientY.toFixed(2)-c);(l>5||a>5)&&(clearTimeout(m),n.value=!0)}if(n.value){const t=e.touches[0];let l=s+(t.clientX.toFixed(2)-o),a=d+(t.clientY.toFixed(2)-c);l=Math.max(0,Math.min(l,u-60)),a=Math.max(0,Math.min(a,v-60)),i.value=l,r.value=a}}function w(e){clearTimeout(m),n.value?n.value=!1:a("clickBall")}return e.onMounted((()=>{const e=uni.getSystemInfoSync();u=e.windowWidth,v=e.windowHeight})),(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"floating-ball",style:e.normalizeStyle({left:i.value+"px",top:r.value+"px"}),onTouchstart:p,onTouchmove:g,onTouchend:w,onTouchcancel:w},[e.createElementVNode("image",{class:"floating-ball-img",src:"/static/index/caigouqingdan.png"})],36)),[[e.vShow,t.isShow]])}},[["__scopeId","data-v-5147ae32"]]),we=s(e.defineComponent({__name:"info",emits:["qinggou","churuku"],setup(t,{emit:l}){const a=l,i=e=>{a(e)};return(t,l)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.createElementVNode("view",{class:"popup-detail-left"},[e.createElementVNode("view",{class:"popup-detail-left-white"},[e.createElementVNode("image",{class:"popup-detail-left-white-img",src:"/static/index/project3.png"},null,8,["src"])]),e.createElementVNode("view",{class:"popup-detail-left-bottom"},[e.createElementVNode("view",{class:"popup-small-card"},[e.createElementVNode("view",{class:"popup-small-circle"},[e.createElementVNode("image",{class:"popup-small-circle-img",src:"/static/index/saveUp.png"})]),e.createElementVNode("view",{class:"popup-small-number"},"1000"),e.createElementVNode("view",{class:"popup-small-font"},"库存上限")]),e.createElementVNode("view",{class:"popup-small-shu"}),e.createElementVNode("view",{class:"popup-small-card"},[e.createElementVNode("view",{class:"popup-small-circle"},[e.createElementVNode("image",{class:"popup-small-circle-img",src:"/static/index/saveDown.png"})]),e.createElementVNode("view",{class:"popup-small-number"},"10"),e.createElementVNode("view",{class:"popup-small-font"},"库存下限")]),e.createElementVNode("view",{class:"popup-small-shu"}),e.createElementVNode("view",{class:"popup-small-card"},[e.createElementVNode("view",{class:"popup-small-circle"},[e.createElementVNode("image",{class:"popup-small-circle-img",src:"/static/index/saveNumber.png"})]),e.createElementVNode("view",{class:"popup-small-number"},"50"),e.createElementVNode("view",{class:"popup-small-font"},"库存数量")])])]),e.createElementVNode("view",{class:"popup-detail-right"},[e.createElementVNode("view",{class:"popup-detail-title"},[e.createElementVNode("view",{class:"popup-detail-weight"}," 纸尿裤-拉拉裤 "),e.createElementVNode("view",{class:"popup-detail-gray"}," ZHYP044 ")]),e.createElementVNode("view",{class:"popup-weight"}," 物料分类 "),e.createElementVNode("view",{class:"popup-right-father"},[e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 物料类别: "),e.createElementVNode("view",{class:"popup-font-right"}," 生活用品 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 物料类型: "),e.createElementVNode("view",{class:"popup-font-right"}," 照护用品 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 物料类别: "),e.createElementVNode("view",{class:"popup-font-right"}," - ")])]),e.createElementVNode("view",{class:"popup-weight"}," 物料信息 "),e.createElementVNode("view",{class:"popup-right-father"},[e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 物料品牌: "),e.createElementVNode("view",{class:"popup-font-right"}," 洁奴 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 采购单位: "),e.createElementVNode("view",{class:"popup-font-right"}," 片 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 参考单价: "),e.createElementVNode("view",{class:"popup-font-right"}," 1.175 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 采购单价: "),e.createElementVNode("view",{class:"popup-font-right"}," 2 ")]),e.createElementVNode("view",{class:"popup-right-font-contain",style:{width:"100%"}},[e.createElementVNode("view",{class:"popup-font-left"}," 规格型号: "),e.createElementVNode("view",{class:"popup-font-right"}," 800mm*690mm ")]),e.createElementVNode("view",{class:"popup-right-font-contain",style:{width:"100%"}},[e.createElementVNode("view",{class:"popup-font-left"}," 供 应 商 : "),e.createElementVNode("view",{class:"popup-font-right"}," 山东恒发卫生用品有限公司 ")])]),e.createElementVNode("view",{class:"popup-weight"}," 优惠信息 "),e.createElementVNode("view",{class:"popup-right-father"},[e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 医保报销: "),e.createElementVNode("view",{class:"popup-font-right"}," 是 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 机构优惠: "),e.createElementVNode("view",{class:"popup-font-right"}," 否 ")])]),e.createElementVNode("view",{class:"swiper-left-buttons-big"},[e.createElementVNode("view",{class:"swiper-left-button-blue",onClick:l[0]||(l[0]=e=>i("qinggou"))}," 请购 "),e.createElementVNode("view",{class:"swiper-left-button",onClick:l[1]||(l[1]=e=>i("churuku"))}," 出入库 ")])])],64))}}),[["__scopeId","data-v-a77dd54e"]]),he=s(e.defineComponent({__name:"plsbuy",props:{saveIndex:{type:Number,required:!0},changeNumber:{type:Number,required:!0}},emits:["closeIt","openRight","closeRight"],setup(t,{emit:l}){const a=l,i=t;e.watch((()=>i.changeNumber),(()=>{o.value[i.saveIndex].many=i.changeNumber})),e.ref(50);const r=e.ref(0),n=e.ref({name:"长春市永佳利商贸有限公司",many:0,change:0}),o=e.ref([{name:"长春市永佳利商贸有限公司",many:9999,change:0},{name:"长春市永佳利商贸有限公司",many:0,change:0},{name:"长春市永佳利商贸有限公司",many:0,change:0}]),c=()=>{d(),m.value&&(o.value.push(JSON.parse(JSON.stringify(n.value))),r.value=998,e.nextTick((()=>{r.value=999})))},s=()=>{d(),a("closeIt")},d=()=>{a("closeRight")},m=e.ref(!0);return(l,i)=>(e.openBlock(),e.createElementBlock("view",{class:"plsbuy-contain"},[e.createElementVNode("view",{class:"plsbuy-title"},[e.createElementVNode("image",{class:"plsbuy-title-img",src:"/static/index/project3.png"},null,8,["src"]),e.createElementVNode("view",{class:"plsbuy-title-font"},[e.createElementVNode("view",{class:"plsbuy-title-weight"},"纸尿裤-拉拉裤"),e.createElementVNode("view",{class:"plsbuy-title-flex"},[e.createElementVNode("view",{class:"popup-right-font-contain",style:{width:"75%"}},[e.createElementVNode("view",{class:"popup-font-left"}," 规格型号: "),e.createElementVNode("view",{class:"popup-font-right"}," 800mm*690mm ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 采购单位: "),e.createElementVNode("view",{class:"popup-font-right"}," 片 ")])]),e.createElementVNode("view",{class:"plsbuy-title-flex"},[e.createElementVNode("view",{class:"popup-right-font-contain",style:{width:"75%"}},[e.createElementVNode("view",{class:"popup-font-left"}," 库存上限: "),e.createElementVNode("view",{class:"popup-font-right"}," 1000 ")]),e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 库存下限: "),e.createElementVNode("view",{class:"popup-font-right"}," 10 ")])]),e.createElementVNode("view",{class:"plsbuy-title-flex"},[e.createElementVNode("view",{class:"popup-right-font-contain"},[e.createElementVNode("view",{class:"popup-font-left"}," 库存数量: "),e.createElementVNode("view",{class:"popup-font-right"}," 50 ")])])])]),e.createElementVNode("view",{class:"plsbuy-card"},[e.createElementVNode("scroll-view",{"scroll-y":"","scroll-top":r.value,style:{height:"100%",width:"1150rpx"},"show-scrollbar":!0},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.value,((l,i)=>(e.openBlock(),e.createElementBlock("view",{key:i,class:e.normalizeClass(["plsbuy-card-heng",{"slide-out":l.sliding}])},[e.createElementVNode("view",{class:"card-flex"},[e.createElementVNode("image",{class:"plsbuy-card-img",src:"/static/index/subtract.png",onClick:e=>{return t=i,d(),void(m.value&&(m.value=!1,o.value[t].sliding=!0,setTimeout((()=>{o.value.splice(t,1),m.value=!0}),400)));var t}},null,8,["onClick"]),e.createElementVNode("view",{class:"plsbuy-weight"},"供应商:"),e.createElementVNode("view",{class:"plsbuy-font-right"},e.toDisplayString(l.name),1)]),e.createElementVNode("view",{class:"card-flex"},[e.createElementVNode("view",{class:"plsbuy-right-weight"},"采购数量"),e.createElementVNode("view",{class:e.normalizeClass(1===l.change?"plsbuy-jian-target":"plsbuy-jian"),onClick:e=>(e=>{d(),e.many&&e.many--,e.change=1,setTimeout((()=>{e.change=0}),300)})(l)}," -",10,["onClick"]),e.createElementVNode("view",{class:e.normalizeClass(t.saveIndex==i?"plsbuy-number-target":"plsbuy-number"),onClick:e=>((e,t)=>{a("openRight",e,t)})(l.many,i)},e.toDisplayString(l.many),11,["onClick"]),e.createElementVNode("view",{class:e.normalizeClass(2===l.change?"plsbuy-jia-target":"plsbuy-jia"),onClick:e=>(e=>{d(),e.many<9999&&e.many++,e.change=2,setTimeout((()=>{e.change=0}),300)})(l)},"+ ",10,["onClick"])])],2)))),128))],8,["scroll-top"])]),e.createElementVNode("view",{class:"plsbuy-amount"},[e.createElementVNode("view",{class:"plsbuy-amount-font"}," 合计: "),e.createElementVNode("view",{class:"plsbuy-amount-red"}," 100 ")]),e.createElementVNode("view",{class:"plsbuy-bottom"},[e.createElementVNode("view",{class:"plsbuy-bottom-blue",onClick:c}," 新增供应商 "),e.createElementVNode("view",{class:"plsbuy-bottom-blue",onClick:s}," 确认 "),e.createElementVNode("view",{class:"plsbuy-bottom-white",onClick:s}," 取消 ")])]))}}),[["__scopeId","data-v-5d6b5cea"]]),fe=s(e.defineComponent({__name:"calculator",props:{doOnce:{type:Number,required:!0},translateNumber:{type:Number,required:!0}},emits:["right"],setup(t,{emit:l}){const a=l,i=e.ref(-1),r=t;e.watch((()=>r.doOnce),(()=>{c.value=r.translateNumber,o.value=m(c.value)}));const n=[1,2,3,4,5,6,7,8,9,"AC",0,"CE"],o=e.ref("0000"),c=e.ref(0),s=(e,t)=>{return i.value=t,setTimeout((()=>{i.value=-1}),300),"AC"==e?(c.value=0,void(o.value="0000")):"CE"==e?(c.value=Math.trunc(c.value/10),void(o.value=m(c.value))):(l=c.value,void(Math.abs(l).toString().length>3||(c.value?c.value=10*c.value+e:c.value=e,o.value=m(c.value))));var l},d=()=>{a("right",c.value)};function m(e){const t=Math.floor(Math.abs(e));return String(t).padStart(4,"0")}return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"plsbuy-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"请购数量")])]),e.createElementVNode("view",{class:"calculator-father"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(n,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(i.value==l?"calculator-kuai-target":"calculator-kuai"),onClick:e=>s(t,l)},e.toDisplayString(t),11,["onClick"])]))),64))]),e.createElementVNode("view",{class:"qinggou-font"}," 请购数量 "),e.createElementVNode("view",{class:"stringShow-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"stringShow-kuai"},e.toDisplayString(t),1)])))),128))]),e.createElementVNode("view",{class:"plsbuy-bottom"},[e.createElementVNode("view",{class:"plsbuy-bottom-blue",onClick:d}," 确认 ")])]))}}),[["__scopeId","data-v-72274131"]]),Ne=s(e.defineComponent({__name:"index",props:{isShow:{type:Boolean,required:!0}},setup(t){const l=t,a=e.ref(!0),i=e.ref(null),r=e.ref(null),n=e.ref(null),o=e.ref(null),c=e.ref([{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2}]);e.watch((()=>l.isShow),((e,t)=>{!t&&e&&(a.value=!1,setTimeout((()=>{a.value=!0}),50))}));const s=e.ref(!1),d=e.ref(!1),m=e.ref(!1),u=e.ref(!1),v=e.ref(!1),p=e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]),g=()=>{s.value=!0,d.value=!1,setTimeout((()=>{d.value=!0}),100)},w=()=>{s.value=!1,m.value=!0,u.value=!1,setTimeout((()=>{u.value=!0}),100)},h=()=>{r.value.openDrawer()},f=()=>{o.value.openDrawer()},N=()=>{s.value=!1,n.value.openDrawer()},y=e.ref(-1),E=e.ref(0),V=e.ref(!1),b=e.ref(0),k=(e,t)=>{y.value=t,E.value=e,V.value=!0,b.value++},T=()=>{y.value=-1,E.value=0,V.value=!1},D=e.ref(0),C=e=>{V.value=!1,D.value=e};return(l,S)=>(e.openBlock(),e.createElementBlock(e.Fragment,null,[e.withDirectives(e.createElementVNode("view",{class:"index-content-other",style:e.normalizeStyle(a.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{class:"index-right-height"}),e.createElementVNode("view",{class:"index-right-title"},[e.createElementVNode("view",{class:"index-right-name"}," 货品名称 "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入货品名称"}),e.createElementVNode("view",{class:"index-right-name"}," 货品编码 "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入货品编码"}),e.createElementVNode("view",{class:"index-right-name"}," 拼音检索 "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入货品拼音"}),e.createElementVNode("view",{class:"index-right-button-all"},[e.createElementVNode("view",{class:"first-bgc"},[e.createElementVNode("image",{class:"bgc-img",src:"/static/index/Warehousing/firstbutton.png"})]),e.createElementVNode("view",{class:"second-bgc"},[e.createElementVNode("image",{class:"bgc-img",src:"/static/index/Warehousing/secondbutton.png"})]),e.createElementVNode("view",{class:e.normalizeClass(v.value?"bgc-white":"third-bgc"),onClick:S[0]||(S[0]=e=>v.value=!v.value)},[e.withDirectives(e.createElementVNode("view",{class:"red-pao"},e.toDisplayString("99+"),512),[[e.vShow,!v.value]]),e.createElementVNode("image",{class:"bgc-img",src:"/static/index/Warehousing/thirdbutton.png"})],2),e.createElementVNode("view",{class:"fourth-bgc",onClick:f},[e.createElementVNode("image",{class:"fourth-bgc-img",src:"/static/index/Warehousing/fourthbutton.png"}),e.createElementVNode("view",{class:"fourth-bgc-font"}," 请购单 ")]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(p.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"index-right-button"},[e.createElementVNode("image",{class:"index-right-button-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{class:"index-right-button-font"},e.toDisplayString(t.name),1)])])))),128))])]),e.createElementVNode("view",{class:"swiper-contain"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"98%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"swiper-card",style:e.normalizeStyle(1===t.type?{background:"#00D6A9 url(/static/index/warehouseCard/bgcgreen.png) center/cover"}:2===t.type?{background:"#BD9AF8 url(/static/index/warehouseCard/bgcpouple.png) center/cover"}:{})},[e.createElementVNode("view",{class:"swiper-card-left"},[e.createElementVNode("view",{class:"swiper-card-left-white"},[e.createElementVNode("image",{class:e.normalizeClass(0===t.type?"swiper-card-left-white-img-first":1===t.type?"swiper-card-left-white-img-second":"swiper-card-left-white-img-third"),src:"/static/index/project3.png",onClick:g},null,10,["src"])])]),e.createElementVNode("view",{class:"swiper-card-right"},[e.createElementVNode("view",{class:"swiper-right-title"},[e.createElementVNode("view",{class:"swiper-title-font"},e.toDisplayString(t.name),1),e.createElementVNode("view",{class:"swiper-title-font-button"},e.toDisplayString(0===t.type?"护理类":1===t.type?"医疗类":"行政类"),1)]),e.createElementVNode("view",{class:"swiper-heng"}),e.createElementVNode("view",{class:"swiper-font"}," 规格型号:800mm*690mm "),e.createElementVNode("view",{class:"swiper-double"},[e.createElementVNode("view",{class:"swiper-littlefont"}," 采购单位:片 "),e.withDirectives(e.createElementVNode("view",{class:"swiper-littlefont",style:{"margin-left":"10rpx"}},[e.createTextVNode(" 库存 "),e.createElementVNode("view",{style:{color:"rgb(18,169,51)"}},"↑"),e.createTextVNode(" :1000 ")],512),[[e.vShow,v.value]])]),e.createElementVNode("view",{class:"swiper-double"},[e.createElementVNode("view",{class:"swiper-littlefont"},[e.createTextVNode(" 库存数量: "),e.createElementVNode("view",{class:"blackfont"}," 50 ")]),e.withDirectives(e.createElementVNode("view",{class:"swiper-littlefont",style:{"margin-left":"10rpx"}},[e.createTextVNode(" 库存 "),e.createElementVNode("view",{style:{color:"rgb(248,122,85)"}},"↓"),e.createTextVNode(" :5 ")],512),[[e.vShow,v.value]])]),e.createElementVNode("view",{class:"swiper-left-buttons"},[e.createElementVNode("view",{class:e.normalizeClass(0===t.type?"swiper-left-button-blue":1===t.type?"swiper-left-button-green":"swiper-left-button-pouple"),onClick:w}," 请购 ",2),e.createElementVNode("view",{class:"swiper-left-button",onClick:N}," 出入库 ")])])],4)])))),128))]),e.createElementVNode("view",{class:"bug-bottom"})])])]),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 ")],4),[[e.vShow,t.isShow]]),e.withDirectives(e.createElementVNode("view",{class:"popup-detail",onClick:S[2]||(S[2]=e=>s.value=!1)},[e.createElementVNode("view",{class:"popup-detail-content",style:e.normalizeStyle({opacity:d.value?1:0}),onClick:S[1]||(S[1]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(we,{onQinggou:w,onChuruku:N})],4)],512),[[e.vShow,s.value&&t.isShow]]),e.withDirectives(e.createElementVNode("view",{class:"popup-detail-plsbuy",onClick:S[6]||(S[6]=e=>m.value=!1)},[e.createElementVNode("view",{class:"popup-detail-content-plsbuy",style:e.normalizeStyle({opacity:u.value?1:0}),onClick:S[4]||(S[4]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(he,{saveIndex:y.value,changeNumber:D.value,onCloseIt:S[3]||(S[3]=e=>m.value=!1),onOpenRight:k,onCloseRight:T},null,8,["saveIndex","changeNumber"])],4),e.withDirectives(e.createElementVNode("view",{class:"popup-detail-content-calculator",style:e.normalizeStyle({opacity:u.value?1:0}),onClick:S[5]||(S[5]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(fe,{doOnce:b.value,translateNumber:E.value,onRight:C},null,8,["doOnce","translateNumber"])],4),[[e.vShow,V.value]])],512),[[e.vShow,m.value&&t.isShow]]),e.createVNode(x,{ref_key:"drawer",ref:r},{default:e.withCtx((()=>[e.createVNode(ne)])),_:1},512),e.createVNode(x,{ref_key:"draweranther",ref:i,widNumber:45,style:{"z-index":"9999"}},{default:e.withCtx((()=>[e.createVNode(oe)])),_:1},512),e.createVNode(x,{ref_key:"goshopdrawer",ref:o},{default:e.withCtx((()=>[e.createVNode(pe,{onOpendetail:S[7]||(S[7]=e=>i.value.openDrawer())})])),_:1},512),e.createVNode(x,{ref_key:"gobackdrawer",ref:n,widNumber:45},{default:e.withCtx((()=>[e.createVNode(ce)])),_:1},512),e.createVNode(ge,{isShow:t.isShow&&!s.value&&!m.value,onClick:h},null,8,["isShow"])],64))}}),[["__scopeId","data-v-912c10f8"]]),ye="/static/index/guan.png",xe=s(e.defineComponent({__name:"index",props:{openType:{type:Number,required:!0}},emits:["closedetail","openDrawer"],setup(t,{emit:l}){const a=e.ref("");e.ref(!1),e.ref("");const i=["已作废","未确认","已确认","未完结","待结账","已结账"];e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const r=l,n=e=>{r("openDrawer",e)};return(l,r)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购单")]),e.createElementVNode("view",{class:e.normalizeClass(t.openType?"title-button":"title-button-red")},e.toDisplayString(i[t.openType]),3)]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"采购单号:"),e.createElementVNode("view",{class:"",style:{"font-weight":"700"}},"A0120250301001")]),e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"总金额:"),e.createElementVNode("view",{class:""},"100.00")])]),e.createElementVNode("view",{class:"weight-boom"},[e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"物料信息")]),3===t.openType?(e.openBlock(),e.createElementBlock("view",{key:0,class:"draw-flex",style:{"margin-top":"-10rpx"}},[e.createElementVNode("view",{class:"button-first",onClick:r[0]||(r[0]=e=>n(0))}," 入库单 "),e.createElementVNode("view",{class:"button-second",onClick:r[1]||(r[1]=e=>n(1))}," 挂账单 "),e.createElementVNode("view",{class:"button-third",onClick:r[2]||(r[2]=e=>n(2))}," 销账单 ")])):e.createCommentVNode("",!0)]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("image",{class:"card-img",src:ye})]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 货品名称: "),e.createElementVNode("view",{class:"title-black"}," 引流袋(医用透明) ")]),e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 采购数量: "),e.createElementVNode("view",{class:"title-black"}," 10 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 货品编码: "),e.createElementVNode("view",{class:"title-black"}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 规格型号: "),e.createElementVNode("view",{class:"title-black"}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单位: "),e.createElementVNode("view",{class:"title-black"}," 个 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 参考单价: "),e.createElementVNode("view",{class:"title-green"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单价: "),e.createElementVNode("view",{class:"title-black"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购金额: "),e.createElementVNode("view",{class:"title-black"}," 10.12 ")])])])])])])]))),64))])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"10rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},e.toDisplayString(t.openType?"备注":"作废原因"),1),t.openType?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"draw-red"},"*"))])]),e.createElementVNode("view",{class:"down-note"},[e.withDirectives(e.createElementVNode("textarea",{class:"down-note-title-input","onUpdate:modelValue":r[3]||(r[3]=e=>a.value=e),maxlength:"300","placeholder-style":"color:#999",placeholder:t.openType?"请输入备注":"不予采购"},null,8,["placeholder"]),[[e.vModelText,a.value]]),e.createElementVNode("text",{class:"char-count"},e.toDisplayString(a.value.length)+"/300",1)])])]))}}),[["__scopeId","data-v-7e25ad7e"]]),Ee=s(e.defineComponent({__name:"index",props:{},emits:["voidIt","closevoid"],setup(t,{emit:l}){const a=e.ref("");e.ref(!1),e.ref("");const i=l;e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购单")])]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"采购单号:"),e.createElementVNode("view",{class:"",style:{"font-weight":"700"}},"A0120250301001")]),e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"总金额:"),e.createElementVNode("view",{class:"",style:{color:"red"}},"100.00")])]),e.createElementVNode("view",{class:"weight-boom"},[e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"物料信息")])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("image",{class:"card-img",src:ye})]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 货品名称: "),e.createElementVNode("view",{class:"title-black"}," 引流袋(医用透明) ")]),e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 采购数量: "),e.createElementVNode("view",{class:"title-black"}," 10 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 货品编码: "),e.createElementVNode("view",{class:"title-black"}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 规格型号: "),e.createElementVNode("view",{class:"title-black"}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单位: "),e.createElementVNode("view",{class:"title-black"}," 个 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 参考单价: "),e.createElementVNode("view",{class:"title-green"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单价: "),e.createElementVNode("view",{class:"title-red"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购金额: "),e.createElementVNode("view",{class:"title-red"}," 10.12 ")])])])])])])]))),64))])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"作废原因"),e.createElementVNode("view",{class:"draw-red"},"*")])]),e.createElementVNode("view",{class:"down-note"},[e.withDirectives(e.createElementVNode("textarea",{class:"down-note-title-input","onUpdate:modelValue":l[0]||(l[0]=e=>a.value=e),maxlength:"300","placeholder-style":"color:#999",placeholder:"请输入作废原因"},null,512),[[e.vModelText,a.value]]),e.createElementVNode("text",{class:"char-count"},e.toDisplayString(a.value.length)+"/300",1)]),e.createElementVNode("view",{class:"button-card"},[e.createElementVNode("view",{class:"swiper-button-blue",onClick:l[1]||(l[1]=e=>{i("voidIt")})}," 作废 ")])])]))}}),[["__scopeId","data-v-034b4de7"]]),Ve="/static/index/Warehousing/goku.png",be="/static/index/Warehousing/guazhang.png",ke="/static/index/Warehousing/hexiao.png",Te="/static/index/Warehousing/zuo.png",De="/static/index/Warehousing/you.png",Ce=s(e.defineComponent({__name:"index",props:{dantype:{type:Number,required:!0}},emits:["opensuixing","closevoid"],setup(t,{emit:a}){e.ref(""),e.ref(!1),e.ref("");const i=a,r=e.ref(0);e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const n=()=>{i("opensuixing")},o=()=>{uni.previewImage({urls:["/static/index/Warehousing/photo.png"]}),l("log","at component/storeroom/drawer/storage/index.vue:294","????")};return(l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:e.normalizeClass(t.dantype?"pouple-font":"green-font")},"采购单号:",2),e.createElementVNode("view",{class:e.normalizeClass(t.dantype?"pouple-font":"green-font"),style:{"font-weight":"700"}},"A0120250301001",2)])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},e.toDisplayString(t.dantype?"挂账单":"入库单"),1)])]),e.createElementVNode("view",{class:"radio-circle-top-father"},[e.createElementVNode("scroll-view",{"scroll-x":"",style:{height:"100%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(r.value?"radio-circle":"radio-circle-target"),onClick:a[0]||(a[0]=e=>r.value=0)},null,2),e.createElementVNode("view",{class:"radio-font",onClick:a[1]||(a[1]=e=>r.value=0)},e.toDisplayString(`${t.dantype?"挂账":"入库"}单号:A0120250301001555${t.dantype?"G":"R"}01`),1)]),e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(1==r.value?"radio-circle-target":"radio-circle"),onClick:a[2]||(a[2]=e=>{r.value=1})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:a[3]||(a[3]=e=>r.value=1)},e.toDisplayString(`${t.dantype?"挂账":"入库"}单号:A0120250301001555${t.dantype?"G":"R"}02`),1)]),e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(2==r.value?"radio-circle-target":"radio-circle"),onClick:a[4]||(a[4]=e=>{r.value=2})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:a[5]||(a[5]=e=>r.value=2)},e.toDisplayString(`${t.dantype?"挂账":"入库"}单号:A0120250301001555${t.dantype?"G":"R"}03`),1)])])])]),e.createElementVNode("view",{class:"ruku-time"},[e.createElementVNode("view",{style:{display:"flex","margin-left":"50rpx"}},[e.createElementVNode("view",{class:"ruku-time-font"},e.toDisplayString((t.dantype?"挂账":"入库")+"时间:"),1),e.createElementVNode("view",{class:"ruku-time-font"}," 2025.03.02 10:10:10 ")]),e.createElementVNode("view",{class:"button-first",onClick:n}," 随行单 ")]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("view",{class:"card-img-bgc"},[e.createElementVNode("image",{class:"card-img",src:ye})])]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 采购数量: "),e.createElementVNode("view",{class:"title-black"}," 10 ")]),e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 总金额: "),e.createElementVNode("view",{class:"title-black"}," 1150 ")])]),e.createElementVNode("view",{class:"card-right-bgc"},[e.createElementVNode("view",{class:"card-boom"},[e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%","margin-left":"30rpx"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 货品编码: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 规格型号: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 采购单位: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," 个 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%","margin-left":"30rpx"}},[e.createElementVNode("view",{class:"title-gray"}," 参考单价: "),e.createElementVNode("view",{class:"title-green"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单价: "),e.createElementVNode("view",{class:"title-black"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购金额: "),e.createElementVNode("view",{class:"title-black"}," 10.12 ")])])]),e.createElementVNode("view",{class:"boom-other"},[e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:Ve}),e.createElementVNode("view",{class:"boom-other-font"},"入库数量"),e.createElementVNode("view",{class:"boom-other-weight"},"10")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:be}),e.createElementVNode("view",{class:"boom-other-font"},"挂账数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:ke}),e.createElementVNode("view",{class:"boom-other-font"},"核销数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")])])])])])])])]))),64))])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"30rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"拣货拍照")])]),e.createElementVNode("view",{class:"down-note"},[e.createElementVNode("image",{class:"down-note-img",style:{"margin-left":"40rpx"},src:Te}),e.createElementVNode("scroll-view",{"scroll-x":"",style:{height:"100%",width:"950rpx"},"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex"}},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l,onClick:o},[e.createElementVNode("image",{class:"down-note-photo",src:"/static/index/Warehousing/photo.png"})]))),64))])]),e.createElementVNode("image",{class:"down-note-img",src:De})])])]))}}),[["__scopeId","data-v-4605a6eb"]]),Se=s(e.defineComponent({__name:"index",props:{},emits:["opensuixing","closevoid"],setup(t,{emit:l}){e.ref(""),e.ref(!1),e.ref(""),e.ref(0);const a=e.ref(["https://img-s.msn.cn/tenant/amp/entityid/AA1ECZ6y.img?w=768&h=960&m=6&x=355&y=171&s=47&d=47","https://img-s.msn.cn/tenant/amp/entityid/AA1ECtEb.img?w=768&h=436&m=6&x=280&y=134&s=200&d=200","/static/index/addphoto.png"]);e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const i=e=>{e==a.value.length-1?uni.chooseImage({count:9,sizeType:["original","compressed"],sourceType:["album","camera"],success:e=>{a.value.pop(),a.value=[...a.value,...e.tempFilePaths],a.value.push("/static/index/addphoto.png")}}):uni.previewImage({urls:a.value.slice(0,-1),current:a.value[e]})};return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"入库单")])]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:"green-font"},"采购单号:"),e.createElementVNode("view",{class:"green-font",style:{"font-weight":"700"}},"A0120250301001")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"50rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"随行单")])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"100%"},"show-scrollbar":!1},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"card-father",onClick:e=>i(l)},[e.createElementVNode("view",{class:"card-white"},[e.createElementVNode("image",{class:"card-white-photo",src:t},null,8,["src"])]),l!==a.value.length-1?(e.openBlock(),e.createElementBlock("view",{key:0,class:"down-title"},[e.createElementVNode("view",{class:"down-title-flex"},[e.createElementVNode("image",{class:"down-title-photo",src:"/static/index/Warehousing/shangchuanpeople.png"}),e.createElementVNode("view",{style:{"margin-left":"10rpx"}},"上传人:"),e.createElementVNode("view",{style:{"font-weight":"700"}},"王法")]),e.createElementVNode("view",{class:"down-title-flex"},[e.createElementVNode("image",{class:"down-title-photo",src:"/static/index/Warehousing/shangchuantime.png"}),e.createElementVNode("view",{style:{"margin-left":"10rpx"}},"上传时间:"),e.createElementVNode("view",{style:{"font-weight":"500"}},"2025.03.01 10:00:00")])])):e.createCommentVNode("",!0)],8,["onClick"])])))),128))])]),e.createElementVNode("view",{class:"button-card"})])]))}}),[["__scopeId","data-v-1773957a"]]),Be=s(e.defineComponent({__name:"index",props:{},emits:["opensuixing","closehexiao"],setup(t,{emit:l}){e.ref(""),e.ref(!1),e.ref("");const a=e.ref(0);return e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]),(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:"green-font"},"采购单号:"),e.createElementVNode("view",{class:"green-font",style:{"font-weight":"700"}},"A0120250301001")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"销账单")])]),e.createElementVNode("view",{class:"radio-circle-top-father"},[e.createElementVNode("scroll-view",{"scroll-x":"",style:{height:"100%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(a.value?"radio-circle":"radio-circle-target"),onClick:l[0]||(l[0]=e=>a.value=0)},null,2),e.createElementVNode("view",{class:"radio-font",onClick:l[1]||(l[1]=e=>a.value=0)},"销账单号:A0120250301001555X01")]),e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(1==a.value?"radio-circle-target":"radio-circle"),onClick:l[2]||(l[2]=e=>{a.value=1})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:l[3]||(l[3]=e=>a.value=1)},"销账单号:A0120250301001555RX2")]),e.createElementVNode("view",{class:"radio-circle-top"},[e.createElementVNode("view",{class:e.normalizeClass(2==a.value?"radio-circle-target":"radio-circle"),onClick:l[4]||(l[4]=e=>{a.value=2})},null,2),e.createElementVNode("view",{class:"radio-font",onClick:l[5]||(l[5]=e=>a.value=2)},"销账单号:A0120250301001555X03")])])])]),e.createElementVNode("view",{class:"ruku-time"},[e.createElementVNode("view",{style:{display:"flex","margin-left":"50rpx"}},[e.createElementVNode("view",{class:"ruku-time-font"}," 销账时间: "),e.createElementVNode("view",{class:"ruku-time-font"}," 2025.03.02 10:10:10 ")])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList([1,1,1,1,1,1,1,1,1,1,1,1,1],((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("view",{class:"card-img-bgc"},[e.createElementVNode("image",{class:"card-img",src:ye})])]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 采购数量: "),e.createElementVNode("view",{class:"title-black"}," 10 ")]),e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 总金额: "),e.createElementVNode("view",{class:"title-black"}," 1150 ")])]),e.createElementVNode("view",{class:"card-right-bgc"},[e.createElementVNode("view",{class:"card-boom"},[e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%","margin-left":"30rpx"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 货品编码: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 规格型号: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray",style:{"margin-top":"15rpx"}}," 采购单位: "),e.createElementVNode("view",{class:"title-black",style:{"margin-top":"15rpx"}}," 个 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%","margin-left":"30rpx"}},[e.createElementVNode("view",{class:"title-gray"}," 参考单价: "),e.createElementVNode("view",{class:"title-green"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单价: "),e.createElementVNode("view",{class:"title-black"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购金额: "),e.createElementVNode("view",{class:"title-black"}," 10.12 ")])])]),e.createElementVNode("view",{class:"boom-other"},[e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:Ve}),e.createElementVNode("view",{class:"boom-other-font"},"入库数量"),e.createElementVNode("view",{class:"boom-other-weight"},"10")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:be}),e.createElementVNode("view",{class:"boom-other-font"},"挂账数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:ke}),e.createElementVNode("view",{class:"boom-other-font"},"核销数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")])])])])])])])]))),64))])])])])]))}}),[["__scopeId","data-v-ee45895e"]]),ze=s(e.defineComponent({__name:"index",emits:["closedetail","openDrawer"],setup(t,{emit:l}){e.ref(""),e.ref(!1),e.ref("");const a=e.ref(0),i=e.ref([{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"纸尿裤-拉拉裤",type:0},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"胃管(进口)",type:1},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2},{name:"洗护用品",type:2}]);e.onMounted((()=>{c.value=JSON.parse(JSON.stringify(i.value))})),e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const r=l,n=e=>{r("openDrawer",e)},o=e.ref([]),c=e.ref([]),s=()=>{c.value=[],a.value?i.value.forEach((e=>{e.type===a.value-1&&c.value.push(e)})):c.value=JSON.parse(JSON.stringify(i.value))};return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购单")]),e.createElementVNode("view",{class:"draw-title-money"},[e.createElementVNode("view",{class:"draw-title-mon-left"},"总金额:"),e.createElementVNode("view",{class:"draw-title-mon-right"},"921.50")])]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"采购单号:"),e.createElementVNode("view",{class:"",style:{"font-weight":"700"}},"A0120250301001")]),e.createElementVNode("view",{class:"weight-right"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"button-blue",style:{"margin-left":"80rpx"},onClick:l[0]||(l[0]=e=>n(3))}," 拣货 "),e.createElementVNode("view",{class:"button-blue",onClick:l[1]||(l[1]=e=>n(4))}," 随行单 ")])])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"0rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"物料信息")]),e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-target",style:e.normalizeStyle(0===a.value?{background:"#fff"}:{}),onClick:l[2]||(l[2]=e=>{a.value=0,s()})},[0===a.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"bad-circle-right"})):e.createCommentVNode("",!0),0===a.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"bad-circle-left"})):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"kuai-blue"}),e.createElementVNode("view",{class:"kuai-font"},"全部")],4),e.createElementVNode("view",{class:"draw-target",style:e.normalizeStyle(1===a.value?{background:"#fff"}:{}),onClick:l[3]||(l[3]=e=>{a.value=1,s()})},[1===a.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"bad-circle-right"})):e.createCommentVNode("",!0),1===a.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"bad-circle-left"})):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"kuai-pouple"}),e.createElementVNode("view",{class:"kuai-font"},"待入库")],4),e.createElementVNode("view",{class:"draw-target",style:e.normalizeStyle(2===a.value?{background:"#fff"}:{}),onClick:l[4]||(l[4]=e=>{a.value=2,s()})},[2===a.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"bad-circle-right"})):e.createCommentVNode("",!0),2===a.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"bad-circle-left"})):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"kuai-green"}),e.createElementVNode("view",{class:"kuai-font"},"已入库")],4),e.createElementVNode("view",{class:"draw-target",style:e.normalizeStyle([{"margin-right":"120rpx"},3===a.value?{background:"#fff"}:{}]),onClick:l[5]||(l[5]=e=>{a.value=3,s()})},[3===a.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"bad-circle-right"})):e.createCommentVNode("",!0),3===a.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"bad-circle-left"})):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"kuai-orange"}),e.createElementVNode("view",{class:"kuai-font"},"销账")],4)])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>(e=>{o.value.includes(e)?o.value=o.value.filter((t=>t!==e)):o.value.push(e)})(l)},[e.createElementVNode("view",{class:"swiper-card",style:e.normalizeStyle(1===t.type?{background:"#00D6A9 url(/static/index/warehouseCard/bgcgreengreen.png) center/cover"}:2===t.type?{background:"#FF6699 url(/static/index/warehouseCard/bgcorange.png) center/cover"}:{})},[e.createElementVNode("view",{class:"card-button",style:e.normalizeStyle(1===t.type?{background:"linear-gradient(to right, #E2FFFF, #83EBDC, #E2FFFF)"}:2===t.type?{background:"linear-gradient(to right, #FFFFFF , #FFCCC3, #FFE6FF )"}:{})},[e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:Ve}),e.createElementVNode("view",{class:"boom-other-font"},"入库数量"),e.createElementVNode("view",{class:"boom-other-weight"},"10")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:be}),e.createElementVNode("view",{class:"boom-other-font"},"挂账数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")]),e.createElementVNode("view",{class:"white-shu"}),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:ke}),e.createElementVNode("view",{class:"boom-other-font"},"销账数量"),e.createElementVNode("view",{class:"boom-other-weight"},"0")])],4),e.createElementVNode("view",{class:"swiper-card-title"},[o.value.includes(l)?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"swiper-card-img"},[e.createElementVNode("view",{class:"swiper-card-font-font"},"✓")])),o.value.includes(l)?(e.openBlock(),e.createElementBlock("view",{key:1,class:"swiper-card-img-target"},[e.createElementVNode("view",{class:"swiper-card-font-font"},"✓")])):e.createCommentVNode("",!0),e.createElementVNode("view",{class:"swiper-card-title-name"},[e.createElementVNode("view",{class:"swiper-card-font"}," 采购数量: "),e.createElementVNode("view",{class:"swiper-card-weight"}," 10 "),e.createElementVNode("view",{class:"swiper-card-shu"}," | "),e.createElementVNode("view",{class:"swiper-card-font"}," 总金额: "),e.createElementVNode("view",{class:"swiper-card-weight"}," 1150 ")]),e.createElementVNode("view",{class:"swiper-right-title"},[2!==t.type?(e.openBlock(),e.createElementBlock("view",{key:0,class:"swiper-title-font-button"},e.toDisplayString(0===t.type?"待入库":1===t.type?"已入库":""),1)):e.createCommentVNode("",!0),2===t.type?(e.openBlock(),e.createElementBlock("view",{key:1,class:"swiper-title-font-button",style:{"margin-right":"45rpx","margin-left":"5rpx"}}," 销账 ")):e.createCommentVNode("",!0)])]),e.createElementVNode("view",{style:{display:"flex"}},[e.createElementVNode("view",{class:"swiper-card-left"},[e.createElementVNode("view",{class:"swiper-card-left-white"},[e.createElementVNode("image",{class:e.normalizeClass(0===t.type?"swiper-card-left-white-img-first":1===t.type?"swiper-card-left-white-img-second":"swiper-card-left-white-img-third"),src:"/static/index/project3.png"},null,10,["src"])])]),e.createElementVNode("view",{class:"swiper-card-right"},[e.createElementVNode("view",{class:"swiper-font",style:{"margin-top":"30rpx"}},[e.createElementVNode("view",{class:"swiper-font-left"}," 物料名称: "),e.createElementVNode("view",{class:"swiper-font-right"}," 胃管(进口) ")]),e.createElementVNode("view",{class:"swiper-font",style:{"margin-top":"10rpx"}},[e.createElementVNode("view",{class:"swiper-font-left"}," 规格型号: "),e.createElementVNode("view",{class:"swiper-font-right"}," CH/FR15,100cm ")]),e.createElementVNode("view",{class:"swiper-font",style:{"margin-top":"10rpx"}},[e.createElementVNode("view",{class:"swiper-font-left"}," 物料编码: "),e.createElementVNode("view",{class:"swiper-font-right"}," QXYP016 ")]),e.createElementVNode("view",{class:"swiper-font",style:{"margin-top":"10rpx"}},[e.createElementVNode("view",{class:"swiper-font-left"}," 采购单位: "),e.createElementVNode("view",{class:"swiper-font-right"}," 根 ")]),e.createElementVNode("view",{class:"swiper-font",style:{"margin-top":"10rpx"}},[e.createElementVNode("view",{class:"swiper-font-left"}," 采购单价: "),e.createElementVNode("view",{class:"swiper-font-right",style:{"margin-right":"20rpx"}}," 115.00 "),e.createElementVNode("view",{class:"swiper-font-left"}," 到货单价: "),e.createElementVNode("view",{class:"swiper-font-right"}," 115.00 ")])])])],4)],8,["onClick"])))),128))])])])])]))}}),[["__scopeId","data-v-72acf113"]]),_e=s(e.defineComponent({__name:"index",props:{backnumber:{type:Number}},emits:["opensuixing","closehexiao","closepickingdrawer","openCal"],setup(t,{emit:l}){e.ref(""),e.ref(!1),e.ref("");const a=l,i=t;e.watch((()=>i.backnumber),(()=>{n.value[o.value].many=i.backnumber})),e.ref(0),e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const r=e.ref(["https://img-s.msn.cn/tenant/amp/entityid/AA1ECZ6y.img?w=768&h=960&m=6&x=355&y=171&s=47&d=47","https://img-s.msn.cn/tenant/amp/entityid/AA1ECtEb.img?w=768&h=436&m=6&x=280&y=134&s=200&d=200","/static/index/addphoto.png"]),n=e.ref([{name:"入库数量",many:9999,change:0},{name:"销账数量",many:0,change:0}]),o=e.ref(0),c=()=>{a("closepickingdrawer")},s=e=>{e==r.value.length-1?uni.chooseImage({count:9,sizeType:["original","compressed"],sourceType:["album","camera"],success:e=>{r.value.pop(),r.value=[...r.value,...e.tempFilePaths],r.value.push("/static/index/addphoto.png")}}):uni.previewImage({urls:r.value.slice(0,-1),current:r.value[e]})};return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"title-title"}," 留置针敷贴(医用透明敷料) "),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"10rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购单")])]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 货品名称: "),e.createElementVNode("view",{class:"swiper-black"}," 留置针敷贴(医用透明敷料) ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"45%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 货品编码: "),e.createElementVNode("view",{class:"swiper-black"}," FLYP001 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 规格型号: "),e.createElementVNode("view",{class:"swiper-black"}," 6cm*7cm ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"45%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购单位: "),e.createElementVNode("view",{class:"swiper-black"}," 个 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购单价: "),e.createElementVNode("view",{class:"swiper-black"}," 0.1 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 到货单价: "),e.createElementVNode("view",{class:"swiper-black"}," 0.12 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购金额: "),e.createElementVNode("view",{class:"swiper-black"}," 10.12 ")])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"10rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"入库信息")])]),e.createElementVNode("view",{class:"color-father"},[e.createElementVNode("view",{class:"color-pink",style:{"margin-left":"40rpx"}},[e.createElementVNode("view",{class:"color-weight"}," 10 "),e.createElementVNode("view",{class:"color-font"}," 采购数量 ")]),e.createElementVNode("view",{class:"color-green"},[e.createElementVNode("view",{class:"color-weight"}," 0 "),e.createElementVNode("view",{class:"color-font"}," 入库数量 ")]),e.createElementVNode("view",{class:"color-red"},[e.createElementVNode("view",{class:"color-weight"}," 0 "),e.createElementVNode("view",{class:"color-font"}," 销账数量 ")])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"10rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"拣货入库")])]),e.createElementVNode("view",{class:"swiper-card-once",style:{height:"240rpx"}},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx","flex-direction":"column"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"plsbuy-card-heng"},[e.createElementVNode("view",{class:"card-flex"},[e.createElementVNode("view",{class:"plsbuy-font-right"},e.toDisplayString(t.name),1)]),e.createElementVNode("view",{class:"card-flex"},[e.createElementVNode("view",{class:"plsbuy-right-weight"},e.toDisplayString(l?"销账数量":"入库数量"),1),e.createElementVNode("view",{class:e.normalizeClass(1===t.change?"plsbuy-jian-target":"plsbuy-jian"),onClick:e=>(e=>{e.many&&e.many--,e.change=1,setTimeout((()=>{e.change=0}),300)})(t)}," -",10,["onClick"]),e.createElementVNode("view",{class:"plsbuy-number",onClick:e=>((e,t)=>{o.value=e,a("openCal",t)})(l,t.many)},e.toDisplayString(t.many),9,["onClick"]),e.createElementVNode("view",{class:e.normalizeClass(2===t.change?"plsbuy-jia-target":"plsbuy-jia"),onClick:e=>(e=>{e.many<9999&&e.many++,e.change=2,setTimeout((()=>{e.change=0}),300)})(t)},"+ ",10,["onClick"])])])))),128))])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"35rpx","margin-bottom":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"拣货拍照")])]),e.createElementVNode("view",{class:"down-note"},[e.createElementVNode("image",{class:"down-note-img",style:{"margin-left":"40rpx"},src:Te}),e.createElementVNode("scroll-view",{"scroll-x":"",style:{height:"100%",width:"950rpx"},"show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("image",{class:"down-note-photo",src:t,onClick:e=>s(l)},null,8,["src","onClick"])])))),128))])]),e.createElementVNode("image",{class:"down-note-img",src:De})]),e.createElementVNode("view",{class:"button-card"},[e.createElementVNode("view",{class:"swiper-button-white",onClick:c}," 取消 "),e.createElementVNode("view",{class:"swiper-button-blue",onClick:c}," 确定 ")])])]))}}),[["__scopeId","data-v-ab4efe77"]]),Ie=s(e.defineComponent({__name:"index",props:{doOnce:{type:Number,required:!0},translateNumber:{type:Number,required:!0}},emits:["right","close"],setup(t,{emit:l}){const a=l,i=e.ref(-1),r=t;e.watch((()=>r.doOnce),(()=>{c.value=r.translateNumber,o.value=d(c.value)}));const n=[1,2,3,4,5,6,7,8,9,"AC",0,"CE"],o=e.ref("0000"),c=e.ref(0),s=(e,t)=>{return i.value=t,setTimeout((()=>{i.value=-1}),300),"AC"==e?(c.value=0,void(o.value="0000")):"CE"==e?(c.value=Math.trunc(c.value/10),void(o.value=d(c.value))):(l=c.value,void(Math.abs(l).toString().length>3||(c.value?c.value=10*c.value+e:c.value=e,o.value=d(c.value))));var l};function d(e){const t=Math.floor(Math.abs(e));return String(t).padStart(4,"0")}return(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{style:{"margin-left":"80rpx"}},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购数量")])]),e.createElementVNode("view",{class:"calculator-father"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(n,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(i.value==l?"calculator-kuai-target":"calculator-kuai"),onClick:e=>s(t,l)},e.toDisplayString(t),11,["onClick"])]))),64))]),e.createElementVNode("view",{class:"qinggou-font"}," 采购数量 "),e.createElementVNode("view",{class:"stringShow-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(o.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"stringShow-kuai"},e.toDisplayString(t),1)])))),128))])]),e.createElementVNode("view",{class:"button-card"},[e.createElementVNode("view",{class:"swiper-button-white",onClick:l[0]||(l[0]=e=>{a("close")})}," 关闭 "),e.createElementVNode("view",{class:"swiper-button-blue",onClick:l[1]||(l[1]=e=>{a("right",c.value)})}," 确定 ")])])]))}}),[["__scopeId","data-v-e7259b7d"]]),Ue=s(e.defineComponent({__name:"index",props:{savePrice:{type:Number,required:!0},changePrice:{type:Number,required:!0}},emits:["right","close","openCal","closeCal","rightclose"],setup(t,{emit:l}){const a=l;e.ref(-1);const i=t;return(l,r)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title-father"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-font"},"货品名称:"),e.createElementVNode("view",{class:"draw-weight"},"留置针敷贴(医用透明敷料)")])]),e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("image",{class:"card-img",src:ye})]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 货品名称: "),e.createElementVNode("view",{class:"title-black"}," 引流袋(医用透明) ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"300rpx"}},[e.createElementVNode("view",{class:"title-gray"}," 货品编码: "),e.createElementVNode("view",{class:"title-black"}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"300rpx"}},[e.createElementVNode("view",{class:"title-gray"}," 规格型号: "),e.createElementVNode("view",{class:"title-black"}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{}},[e.createElementVNode("view",{class:"title-gray"}," 采购单位: "),e.createElementVNode("view",{class:"title-black"}," 个 ")])])])])])]),e.createElementVNode("view",{class:"contant-mid"},[e.createElementVNode("view",{class:""},"改价前到货单价:"),e.createElementVNode("view",{class:"contant-mid-wight"},e.toDisplayString(t.savePrice),1)]),e.createElementVNode("view",{class:"contant-mid"},[e.createElementVNode("view",{class:""},"改价后到货单价:"),e.createElementVNode("view",{class:"contant-mid-wight-target",onClick:r[0]||(r[0]=e=>{return l=t.changePrice,void a("openCal",l);var l})},e.toDisplayString(t.changePrice),1)]),e.createElementVNode("view",{class:"button-card"},[e.createElementVNode("view",{class:"swiper-button-white",onClick:r[1]||(r[1]=e=>(a("close"),void a("closeCal")))}," 关闭 "),e.createElementVNode("view",{class:"swiper-button-blue",onClick:r[2]||(r[2]=e=>(a("close"),a("closeCal"),void a("rightclose",i.changePrice)))}," 确定 ")])])]))}}),[["__scopeId","data-v-2517b556"]]),Fe=s(e.defineComponent({__name:"index",props:{openType:{type:Number,required:!0},valueBack:{type:Number,required:!0}},emits:["closedetail","openDrawer","openPen"],setup(t,{emit:l}){e.ref(""),e.ref(!1),e.ref("");const a=t,i=[{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1},{name:"引流袋(医用透明)",price:.1}],r=["已作废","未确认","已确认","未完结","待结账","已结账"];e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]);const n=l,o=e.ref(0);return e.watch((()=>a.valueBack),(()=>{-1!=a.valueBack&&(i[o.value].price=a.valueBack)}),{immediate:!0}),(l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"draw-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"采购单")]),e.createElementVNode("view",{class:e.normalizeClass(t.openType?"title-button":"title-button-red")},e.toDisplayString(r[t.openType]),3)]),e.createElementVNode("view",{class:"swiper-card-once"},[e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"swiper-card-top-card-weight"},[e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"采购单号:"),e.createElementVNode("view",{class:"",style:{"font-weight":"700"}},"A0120250301001")]),e.createElementVNode("view",{class:"weight-left"},[e.createElementVNode("view",{class:""},"总金额:"),e.createElementVNode("view",{class:""},"100.00")])]),e.createElementVNode("view",{class:"weight-boom"},[e.createElementVNode("view",{class:"swiper-card-top-card-noral"},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 采购人: "),e.createElementVNode("view",{class:"swiper-black"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 采购日期: "),e.createElementVNode("view",{class:"swiper-black"}," 2025.03.02 ")])]),e.createElementVNode("view",{class:"swiper-card-top-card-noral",style:{"margin-top":"15rpx"}},[e.createElementVNode("view",{class:"swiper-all-flex"},[e.createElementVNode("view",{class:"swiper-gray"}," 付款方式: "),e.createElementVNode("view",{class:"swiper-black"}," 月结 ")]),e.createElementVNode("view",{class:"swiper-all-flex",style:{width:"55%"}},[e.createElementVNode("view",{class:"swiper-gray"}," 供应商: "),e.createElementVNode("view",{class:"swiper-black"}," 宽城区珂爱个人卫生用品店 ")])])])])])]),e.createElementVNode("view",{class:"draw-title",style:{"margin-top":"25rpx"}},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"物料信息")]),e.createElementVNode("view",{class:"draw-flex",style:{"margin-top":"-10rpx"}},[e.createElementVNode("view",{class:"button-blue",onClick:a[0]||(a[0]=e=>{n("openDrawer",4)})}," 随行单 ")])]),e.createElementVNode("view",{class:"scroll-view"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"93%","margin-top":"2%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(i,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-card-rightbox"},[e.createElementVNode("view",{class:"vertical-line"}),e.createElementVNode("view",{class:"rightbox-other"},[e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:Ve}),e.createElementVNode("view",{class:"boom-other-font"},"入库数量:"),e.createElementVNode("view",{class:"boom-other-weight"},"10")]),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:be}),e.createElementVNode("view",{class:"boom-other-font"},"入库数量:"),e.createElementVNode("view",{class:"boom-other-weight"},"0")]),e.createElementVNode("view",{class:"boom-other-card"},[e.createElementVNode("image",{class:"boom-other-img",src:ke}),e.createElementVNode("view",{class:"boom-other-font"},"销账数量:"),e.createElementVNode("view",{class:"boom-other-weight"},"0")])])]),e.createElementVNode("view",{class:"swiper-card-top"},[e.createElementVNode("view",{class:"swiper-card-top-card"},[e.createElementVNode("view",{class:"card-img-father"},[e.createElementVNode("image",{class:"card-img",src:ye})]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"card-right-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"title-gray"}," 货品名称: "),e.createElementVNode("view",{class:"title-black"},e.toDisplayString(t.name),1)])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 货品编码: "),e.createElementVNode("view",{class:"title-black"}," FLYPO01 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 规格型号: "),e.createElementVNode("view",{class:"title-black"}," 6cm*7cm ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单位: "),e.createElementVNode("view",{class:"title-black"}," 个 ")])]),e.createElementVNode("view",{class:"card-right-other"},[e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 参考单价: "),e.createElementVNode("view",{class:"title-green"}," 0.1 ")]),e.createElementVNode("view",{class:"draw-flex",style:{width:"35%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购单价: "),e.createElementVNode("view",{class:"title-black"},e.toDisplayString(t.price),1),e.createElementVNode("image",{class:"title-img",src:"/static/index/Warehousing/pen.png",onClick:e=>(e=>{o.value=e,n("openPen",i[e].price)})(l)},null,8,["onClick"])]),e.createElementVNode("view",{class:"draw-flex",style:{width:"30%"}},[e.createElementVNode("view",{class:"title-gray"}," 采购金额: "),e.createElementVNode("view",{class:"title-black"}," 10.12 ")])])])])])])]))),64))])])])])]))}}),[["__scopeId","data-v-d07b1c84"]]),$e=s(e.defineComponent({__name:"calculatorfly",props:{doOnce:{type:Number,required:!0},translateNumber:{type:[Number,String],required:!0}},emits:["right"],setup(t,{emit:l}){const a=l,i=t,r=e.ref(""),n=e.ref([]),o=e.ref(-1),c=[1,2,3,4,5,6,7,8,9,0,".","CE","AC"];function s(e,t){if(o.value=t,setTimeout((()=>{o.value=-1}),300),"AC"===e)r.value="";else if("CE"===e)r.value=r.value.slice(0,-1);else if("."===e)!r.value.includes(".")&&r.value.length<7&&(r.value=r.value||"0",r.value+=".");else{const t=e.toString();(function(e){const t=r.value+e,l=t.split(".");return!(l[1]&&l[1].length>2)&&t.length<=7})(t)&&(r.value+=t)}m()}function d(){const e=parseFloat(r.value)||0;a("right",e)}function m(){if("0"===r.value)return void(n.value=Array(7).fill(" "));if(!r.value)return void(n.value=Array(7).fill(" "));const e=function(e){let[t,l]=e.split(".");void 0!==l&&(l=l.slice(0,2));t=t.replace(/^0+/,""),""===t&&(t="0");let a=void 0!==l?`${t}.${l}`:t;a.length>7&&(a=a.slice(0,7));return a.padStart(7," ")}(r.value);n.value=e.split("")}return e.watch((()=>i.doOnce),(()=>{r.value=String(i.translateNumber),m()}),{immediate:!0}),(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"plsbuy-contain"},[e.createElementVNode("view",{class:"draw-title"},[e.createElementVNode("view",{class:"draw-flex"},[e.createElementVNode("view",{class:"draw-title-gun"}),e.createElementVNode("view",{class:"draw-title-font"},"货品价格")])]),e.createElementVNode("view",{class:"calculator-father"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(c,((t,l)=>e.createElementVNode("view",{key:l},[e.createElementVNode("view",{class:e.normalizeClass(o.value===l?"calculator-kuai-target":"calculator-kuai"),onClick:e=>s(t,l)},e.toDisplayString(t),11,["onClick"])]))),64))]),e.createElementVNode("view",{class:"qinggou-font"},"货品价格"),e.createElementVNode("view",{class:"stringShow-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"stringShow-kuai"},e.toDisplayString(t),1)])))),128))]),e.createElementVNode("view",{class:"plsbuy-bottom"},[e.createElementVNode("view",{class:"plsbuy-bottom-blue",onClick:d},"确认")])]))}}),[["__scopeId","data-v-86c43bb8"]]),Me=s(e.defineComponent({__name:"orders",props:{isShow:{type:Boolean,required:!0}},setup(t){const l=t,i=e.ref(!0),r=e=>{switch(e){case 0:return"ball-red-big";case 1:return"ball-yellow-big";default:return"ball-green"}},n=e=>{switch(e){case 0:case 1:return"ball-white";case 2:case 3:return"ball-yellow-big";case 4:case 5:return"ball-green"}},o=e=>{switch(e){case 4:return"ball-yellow-big";case 5:return"ball-green";default:return"ball-white"}};e.watch((()=>l.isShow),((e,t)=>{!t&&e&&(i.value=!1,setTimeout((()=>{i.value=!0}),50))}));const c=e.ref(null),s=e.ref(null),d=e.ref(null),m=e.ref(null),u=e.ref(!1),v=e.ref(0),p=e.ref(0),g=e.ref(0),w=e.ref(!1),h=e.ref(-1),f=e.ref(null),N=()=>{f.value.openDrawer()},y=e.ref(-1),E=e.ref(null),V=()=>{E.value.openDrawer()},b=e.ref(0),k=e.ref(null),T=e=>{e?1===e?(d.value.openDrawer(),b.value=1):2===e?(b.value=2,m.value.openDrawer()):3===e?k.value.openDrawer():4===e&&E.value.openDrawer():(d.value.openDrawer(),b.value=0)},D=e.ref(0),C=e.ref(0),S=e.ref(-1),B=e=>{S.value=e},z=e=>{M.value=!1,C.value=e},_=e=>{D.value=e,C.value=e,u.value=!0,X.value=!0},I=e.ref(0),U=e.ref(0),F=e.ref(!1),$=()=>{F.value=!1},M=e.ref(!1),A=e=>{M.value=!0,U.value++,I.value=e},L=e.ref(0),O=e=>{F.value=!1,L.value=e},P=e=>{I.value=e,F.value=!0,X.value=!1,setTimeout((()=>{X.value=!0}),100),U.value++},j=()=>{k.value.closeDrawer()},q=e.ref(null),R=()=>{if(p.value=0,g.value=0,v.value<3?v.value++:v.value=0,v.value){let e=[];switch(v.value){case 1:Q.value.forEach((t=>{1==t.cardType&&e.push(t)})),K.value=e;break;case 2:Q.value.forEach((t=>{t.cardType>2&&e.push(t)})),K.value=e;break;case 3:Q.value.forEach((t=>{0==t.cardType&&e.push(t)})),K.value=e}}else K.value=Q.value},W=()=>{if(v.value=0,g.value=0,p.value<2?p.value++:p.value=0,p.value){let e=[];switch(p.value){case 1:Q.value.forEach((t=>{2!=t.cardType&&3!=t.cardType||e.push(t)})),K.value=e;break;case 2:Q.value.forEach((t=>{t.cardType>3&&e.push(t)})),K.value=e}}else K.value=Q.value},Y=()=>{if(p.value=0,v.value=0,g.value<2?g.value++:g.value=0,g.value){let e=[];switch(g.value){case 1:Q.value.forEach((t=>{4==t.cardType&&e.push(t)})),K.value=e;break;case 2:Q.value.forEach((t=>{5==t.cardType&&e.push(t)})),K.value=e}}else K.value=Q.value},J=e.ref(!1),X=e.ref(!1),Z=e.ref([{url:"/static/index/Warehousing/sousuo.png",name:"查询"},{url:"/static/index/Warehousing/chongzhi.png",name:"重置"}]),H=e.ref(""),G=e.ref(["已作废","未确认","已确认","未完结","待结账","已结账"]),Q=e.ref(Array.from({length:6},((e,t)=>({cardType:t})))),K=e.ref([]),ee=e=>{switch(e){case 0:return"ball-white";case 1:return"ball-yellow";case 2:return"ball-green";case 3:return"ball-red"}},te=()=>{J.value=!0,X.value=!1,setTimeout((()=>{X.value=!0}),200)},le=()=>{c.value.closeDrawer()},ae=()=>{d.value.closeDrawer()},ie=()=>{s.value.closeDrawer()},re=()=>{m.value.closeDrawer()},ne=e=>{H.value=e.result};return e.onMounted((()=>{K.value=Q.value})),(l,oe)=>{const ce=a(e.resolveDynamicComponent("u-calendar"),ve);return e.openBlock(),e.createElementBlock(e.Fragment,null,[e.withDirectives(e.createElementVNode("view",{class:"index-content-other",style:e.normalizeStyle(i.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{class:"index-right-height"}),e.createElementVNode("view",{class:"index-right-title"},[e.createElementVNode("view",{class:"ball-bgc",style:{"box-shadow":"2rpx 2rpx 4rpx 0rpx rgba(0, 0, 0, 0.3)"},onClick:R},[e.createElementVNode("view",{class:e.normalizeClass(ee(v.value))}," 采购 ",2)]),e.createElementVNode("view",{class:"ball-bgc",style:{"box-shadow":"2rpx 2rpx 4rpx 0rpx rgba(0, 0, 0, 0.3)"},onClick:W},[e.createElementVNode("view",{class:e.normalizeClass(ee(p.value))}," 拣货 ",2)]),e.createElementVNode("view",{class:"ball-bgc",style:{"box-shadow":"2rpx 2rpx 4rpx 0rpx rgba(0, 0, 0, 0.3)"},onClick:Y},[e.createElementVNode("view",{class:e.normalizeClass(ee(g.value))}," 结账 ",2)]),e.createElementVNode("view",{class:"index-right-name"}," 采购单号 "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入采购单号"}),e.createElementVNode("view",{class:"index-right-name"}," 供应商 "),e.createElementVNode("input",{class:"index-right-input",placeholder:"请输入供应商"}),e.createElementVNode("view",{class:"index-right-name"}," 采购日期 "),e.createElementVNode("view",{onClick:oe[0]||(oe[0]=e.withModifiers((e=>w.value=!0),["stop"]))},[e.createElementVNode("view",{class:"index-right-input",style:e.normalizeStyle([{width:"200rpx",height:"66rpx"},H.value?{}:{color:"#999"}])},e.toDisplayString(H.value?H.value:"请输入采购日期"),5)]),e.createVNode(ce,{style:{width:"40%","margin-left":"30%"},"border-radius":"40",modelValue:w.value,"onUpdate:modelValue":oe[1]||(oe[1]=e=>w.value=e),mode:"date",onChange:ne},null,8,["modelValue"]),e.createElementVNode("view",{class:"index-right-button-all"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(Z.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:"",key:l},[e.createElementVNode("view",{class:"index-right-button"},[e.createElementVNode("image",{class:"index-right-button-img",src:t.url},null,8,["src"]),e.createElementVNode("view",{class:"index-right-button-font"},e.toDisplayString(t.name),1)])])))),128))])]),e.createElementVNode("view",{class:"swiper-contain"},[e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"98%"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"swiper-flex"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(K.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"swiper-card"},[e.createElementVNode("view",{class:"swiper-title-contect"},[e.createElementVNode("view",{class:"swiper-states"},[e.createElementVNode("view",{class:e.normalizeClass(t.cardType>1?"swiper-states-heng-one-green":"swiper-states-heng-one")},null,2),e.createElementVNode("view",{class:e.normalizeClass(t.cardType>3?"swiper-states-heng-two-green":"swiper-states-heng-two")},null,2),e.createElementVNode("view",{class:"ball-bgc",style:e.normalizeStyle(0!==t.cardType&&1!==t.cardType?{}:{boxShadow:"8rpx 8rpx 16rpx 0rpx rgba(0, 0, 0, 0.3)",width:"110rpx",height:"110rpx"})},[e.createElementVNode("view",{class:e.normalizeClass(r(t.cardType))}," 采购 ",2)],4),e.createElementVNode("view",{class:"ball-bgc",style:e.normalizeStyle(2!=t.cardType&&3!=t.cardType?{}:{boxShadow:"8rpx 8rpx 16rpx 0rpx rgba(0, 0, 0, 0.3)",width:"110rpx",height:"110rpx"})},[e.createElementVNode("view",{class:e.normalizeClass(n(t.cardType))}," 拣货 ",2)],4),e.createElementVNode("view",{class:"ball-bgc",style:e.normalizeStyle(4!=t.cardType?{}:{boxShadow:"8rpx 8rpx 16rpx 0rpx rgba(0, 0, 0, 0.3)",width:"110rpx",height:"110rpx"})},[e.createElementVNode("view",{class:e.normalizeClass(o(t.cardType))}," 结账 ",2)],4)]),e.createElementVNode("view",{class:e.normalizeClass(t.cardType?"title-button":"title-button-red")},e.toDisplayString(G.value[t.cardType]),3)]),e.createElementVNode("view",{class:"swiper-down"},[e.createElementVNode("view",{class:"swiper-flex"},[e.createElementVNode("view",{class:"swiper-down-title"},"采购单号:"),e.createElementVNode("view",{class:"swiper-down-number"},"A0120250301001555")]),e.createElementVNode("view",{class:"swiper-down-card"},[e.createElementVNode("view",{class:"swiper-down-text"},[e.createElementVNode("view",{class:"swiper-down-text-left"}," 采 购 人 : "),e.createElementVNode("view",{class:"swiper-down-text-right"}," 王法 ")]),e.createElementVNode("view",{class:"swiper-down-text"},[e.createElementVNode("view",{class:"swiper-down-text-left"}," 采购日期 : "),e.createElementVNode("view",{class:"swiper-down-text-right"}," 2025.03.02 ")]),e.createElementVNode("view",{class:"swiper-down-text"},[e.createElementVNode("view",{class:"swiper-down-text-left"}," 联 系 人 : "),e.createElementVNode("view",{class:"swiper-down-text-right"}," 李月 ")]),e.createElementVNode("view",{class:"swiper-down-text"},[e.createElementVNode("view",{class:"swiper-down-text-left"}," 联系电话 : "),e.createElementVNode("view",{class:"swiper-down-text-right"}," 13355653333 ")]),e.createElementVNode("view",{class:"swiper-down-text",style:{width:"100%"}},[e.createElementVNode("view",{class:"swiper-down-text-left"}," 供 应 商 : "),e.createElementVNode("view",{class:"swiper-down-text-right"}," 宽城区珂爱个人卫生用品店 ")])]),e.createElementVNode("view",{class:"swiper-button"},[e.createElementVNode("view",{class:"button-father"},[e.createElementVNode("view",{class:"swiper-button-white",onClick:e=>{return l=t.cardType,h.value=l,void c.value.openDrawer();var l}}," 详情 ",8,["onClick"]),e.withDirectives(e.createElementVNode("view",{class:"swiper-button-blue",onClick:e=>(e=>{h.value=e,q.value.openDrawer()})(t.cardType)}," 结账 ",8,["onClick"]),[[e.vShow,4==t.cardType]]),e.withDirectives(e.createElementVNode("view",{class:"swiper-button-blue",onClick:N}," 拣货 ",512),[[e.vShow,3==t.cardType||2==t.cardType]]),e.withDirectives(e.createElementVNode("view",{class:"swiper-button-white",onClick:e=>(e=>{v.value=0,p.value=0,g.value=0,Q.value[e].cardType--,K.value=Q.value})(l)}," 回退 ",8,["onClick"]),[[e.vShow,t.cardType>=2&&5!==t.cardType]]),e.withDirectives(e.createElementVNode("view",{class:"swiper-button-blue",onClick:e=>(e=>{v.value=0,p.value=0,g.value=0,Q.value[e].cardType++,K.value=Q.value})(l)}," 确认 ",8,["onClick"]),[[e.vShow,1==t.cardType]]),e.withDirectives(e.createElementVNode("view",{class:"swiper-button-red",onClick:e=>(e=>{y.value=e,s.value.openDrawer()})(l)}," 作废 ",8,["onClick"]),[[e.vShow,1==t.cardType]])])])])])])))),128))])])])]),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 ")],4),[[e.vShow,t.isShow]]),e.withDirectives(e.createElementVNode("view",{class:"popup-detail",onClick:oe[3]||(oe[3]=e=>J.value=!1)},[e.createElementVNode("view",{class:"popup-detail-content",style:e.normalizeStyle({opacity:X.value?1:0}),onClick:oe[2]||(oe[2]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-detail-left"},[e.createElementVNode("view",{class:"popup-detail-left-white"},[e.createElementVNode("image",{class:"popup-detail-left-white-img",src:"/static/index/project3.png",onClick:te},null,8,["src"])]),e.createElementVNode("view",{class:"popup-detail-left-bottom"},[e.createElementVNode("view",{class:"popup-small-card"})])]),e.createElementVNode("view",{class:"popup-detail-right"})],4)],512),[[e.vShow,J.value&&t.isShow]]),e.createVNode(x,{ref_key:"detaildrawer",ref:c,widNumber:60},{default:e.withCtx((()=>[e.createVNode(xe,{openType:h.value,onClosedetail:le,onOpenDrawer:T},null,8,["openType"])])),_:1},512),e.withDirectives(e.createElementVNode("view",{class:"popup-detail-finish",onClick:oe[8]||(oe[8]=e=>u.value=!1)},[e.createElementVNode("view",{class:"popup-detail-content",style:e.normalizeStyle({opacity:X.value?1:0}),onClick:oe[6]||(oe[6]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(Ue,{changePrice:C.value,savePrice:D.value,onRightclose:B,onClose:oe[4]||(oe[4]=e=>u.value=!1),onOpenCal:A,onCloseCal:oe[5]||(oe[5]=e=>M.value=!1)},null,8,["changePrice","savePrice"])],4),e.withDirectives(e.createElementVNode("view",{class:"popup-detail-content-calculator",style:e.normalizeStyle({opacity:X.value?1:0}),onClick:oe[7]||(oe[7]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode($e,{doOnce:U.value,translateNumber:I.value,onRight:z},null,8,["doOnce","translateNumber"])],4),[[e.vShow,M.value]])],512),[[e.vShow,u.value&&t.isShow]]),e.createVNode(x,{ref_key:"finishAccountdrawer",ref:q,widNumber:60},{default:e.withCtx((()=>[e.createVNode(Fe,{valueBack:S.value,openType:h.value,onClosedetail:le,onOpenDrawer:T,onOpenPen:_},null,8,["valueBack","openType"])])),_:1},512),e.createVNode(x,{ref_key:"storagedrawer",ref:d,widNumber:50,style:{"z-index":"1000"}},{default:e.withCtx((()=>[e.createVNode(Ce,{dantype:b.value,onOpensuixing:V,onClosevoid:ae},null,8,["dantype"])])),_:1},512),e.createVNode(x,{ref_key:"verificationdrawer",ref:m,widNumber:50,style:{"z-index":"1000"}},{default:e.withCtx((()=>[e.createVNode(Be,{onClosehexiao:re})])),_:1},512),e.createVNode(x,{ref_key:"suixingdrawer",ref:E,widNumber:40,style:{"z-index":"1001"}},{default:e.withCtx((()=>[e.createVNode(Se)])),_:1},512),e.withDirectives(e.createElementVNode("view",{class:"popup-detail-cal",onClick:oe[10]||(oe[10]=e=>F.value=!1)},[e.createElementVNode("view",{class:"popup-detail-content",style:e.normalizeStyle({opacity:X.value?1:0}),onClick:oe[9]||(oe[9]=e.withModifiers((()=>{}),["stop"]))},[e.createVNode(Ie,{doOnce:U.value,translateNumber:I.value,onClose:$,onRight:O},null,8,["doOnce","translateNumber"])],4)],512),[[e.vShow,F.value&&t.isShow]]),e.createVNode(x,{ref_key:"voiddrawer",ref:s,widNumber:60},{default:e.withCtx((()=>[e.createVNode(Ee,{onVoidIt:oe[11]||(oe[11]=e=>{return t=y.value,v.value=0,p.value=0,g.value=0,Q.value[t].cardType=0,K.value=Q.value,void s.value.closeDrawer();var t}),onClosevoid:ie})])),_:1},512),e.createVNode(x,{ref_key:"pickingGooddrawer",ref:f,widNumber:60,style:{"z-index":"998"}},{default:e.withCtx((()=>[e.createVNode(ze,{onOpenDrawer:T})])),_:1},512),e.createVNode(x,{ref_key:"pickingdrawer",ref:k,canclose:!1,widNumber:50,style:{"z-index":"998"}},{default:e.withCtx((()=>[e.createVNode(_e,{backnumber:L.value,onOpenCal:P,onClosepickingdrawer:j},null,8,["backnumber"])])),_:1},512)],64)}}}),[["__scopeId","data-v-4e891f28"]]),Ae=s(e.defineComponent({__name:"index",setup(t){const l=e.ref(!1),a=e.ref(0);e.ref(!1),e.ref(!1);const i=e.ref([{url:"/static/index/lefticon/index.png",targetUrl:"/static/index/lefticontarget/blueindex.png",name:"首页",pao:0},{url:"/static/index/Warehousing/dingdan.png",targetUrl:"/static/index/Warehousing/dingdanblue.png",name:"订单",pao:0},{url:"/static/index/Warehousing/chuku.png",targetUrl:"/static/index/Warehousing/chukublue.png",name:"出库",pao:5},{url:"/static/index/Warehousing/pandian.png",targetUrl:"/static/index/Warehousing/pandianblue.png",name:"盘点",pao:0},{url:"/static/index/Warehousing/jiankong.png",targetUrl:"/static/index/Warehousing/jiankongblue.png",name:"监控",pao:0},{url:"/static/index/lefticon/back.png",targetUrl:"/static/index/lefticontarget/blueback.png",name:"返回",pao:0}]),r=e=>{5!==e?a.value=e:uni.navigateBack()};return(t,n)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(l.value?"darkbackgroundContainer":"backgroundContainer")},[e.createElementVNode("view",{class:"index-title"},[e.createElementVNode("view",{class:"index-title-left"},[e.createElementVNode("image",{class:"index-title-left-img",src:y}),e.createElementVNode("view",{class:"index-title-left-font"}," 王金福 "),e.createElementVNode("view",{class:"index-title-left-wel"}," 欢迎 "),e.createElementVNode("view",{class:"index-title-left-weight"}," 张春凤 "),e.createElementVNode("view",{class:""}," 登录护理单元操作台 ")]),e.createElementVNode("view",{class:"index-title-right"},[e.createElementVNode("view",{class:"index-title-right-circle"},[e.createElementVNode("image",{class:"index-title-right-circle-img",src:"/static/index/Warehousing/house.png"})]),e.createElementVNode("view",{class:"index-title-right-font"}," 生活用品库 ")])]),e.createElementVNode("view",{class:"index-content"},[e.createElementVNode("view",{class:"index-content-leftMenus"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(i.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"blue-circle-pos"},[e.withDirectives(e.createElementVNode("view",{class:"blue-circle"},[e.createElementVNode("image",{class:"blue-circle-size",src:"/static/index/ray.png"},null,8,["src"])],512),[[e.vShow,l===a.value]]),t.pao?(e.openBlock(),e.createElementBlock("view",{key:0,class:"red-pao",onClick:e=>r(l)},e.toDisplayString(t.pao>99?"99+":t.pao),9,["onClick"])):e.createCommentVNode("",!0),e.createElementVNode("image",{class:"left-img",src:l===a.value?t.targetUrl:t.url,onClick:e=>r(l)},null,8,["src","onClick"]),e.createElementVNode("view",{class:e.normalizeClass(l===a.value?"left-img-font-target":"left-img-font"),onClick:e=>r(l)},e.toDisplayString(t.name),11,["onClick"])])))),128))]),e.createVNode(Ne,{isShow:!a.value},null,8,["isShow"]),e.createVNode(Me,{isShow:1===a.value},null,8,["isShow"])])],2))}}),[["__scopeId","data-v-77445644"]]),Le="/static/index/video/videoright/guang.png",Oe="/static/index/bed.png",Pe="/static/index/video/laba.png",je="/static/index/video/video.png",qe="/static/index/video/txt.png",Re="/static/index/cardicons/zhixing.png",We="/static/index/cardicons/zhifa.png",Ye=s(e.defineComponent({__name:"fuwu",props:{isShow:{type:Boolean,required:!0}},emits:["nav"],setup(t,{emit:l}){const a=t,i=e.ref(["清晰度","分屏","画面旋转"]),r=e.ref([{url:"/static/index/video/videotopright/0.png",name:"入住",bgc:"linear-gradient(to right,#008AFF,#01BCFF)"},{url:"/static/index/video/videotopright/1.png",name:"预警",bgc:"linear-gradient(to right,#FF585D ,#FF4F52)"},{url:"/static/index/video/videotopright/2.png",name:"外出",bgc:"linear-gradient(to right,#709EE2 ,#A0BFEC )"},{url:"/static/index/video/videotopright/3.png",name:"空闲",bgc:"linear-gradient(to right,#B7BCD0,#B7BCD0)"}]),n=e.ref([{url:"/static/index/video/kufang/00.png",targeturl:"/static/index/video/kufang/01.png",name:"盘点"},{url:"/static/index/video/kufang/10.png",targeturl:"/static/index/video/kufang/11.png",name:"请领"},{url:"/static/index/video/kufang/20.png",targeturl:"/static/index/video/kufang/21.png",name:"退货"},{url:"/static/index/video/kufang/30.png",targeturl:"/static/index/video/kufang/31.png",name:"采购"},{url:"/static/index/video/kufang/40.png",targeturl:"/static/index/video/kufang/41.png",name:"指令"}]),c=e.ref([{url:"/static/index/video/videotopright/4.png",name:"启用",bgc:"linear-gradient(to right,#008AFF,#01BCFF)"},{url:"/static/index/video/videotopright/5.png",name:"停用",bgc:"linear-gradient(to right,#B7BCD0,#B7BCD0)"}]),s=e.ref([{url:"/static/index/video/videoright/00.png",targeturl:"/static/index/video/videoright/01.png"},{url:"/static/index/video/videoright/10.png",targeturl:"/static/index/video/videoright/11.png"},{url:"/static/index/video/videoright/20.png",targeturl:"/static/index/video/videoright/21.png"},{url:"/static/index/video/videoright/30.png",targeturl:"/static/index/video/videoright/31.png"},{url:"/static/index/video/videoright/40.png",targeturl:"/static/index/video/videoright/41.png"}]),d=e.ref([{cardtype:0,states:0,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:0,states:1,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:0,states:2,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:0,states:3,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:0,states:0,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:1,states:0,movestates:0,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:1,states:1,movestates:1,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:1,states:0,movestates:2,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:1,states:0,movestates:3,buttontarget:[!1,!1,!1,!1,!1]},{cardtype:1,states:0,movestates:4,buttontarget:[!1,!1,!1,!1,!1]}]),m=e.ref([]),u=e.ref(!0);e.ref("");const v=e.ref(["全部"," 护理单元","配务室","库房"]);e.watch((()=>a.isShow),((e,t)=>{!t&&e&&(u.value=!1,setTimeout((()=>u.value=!0),50),g.value=0,m.value=JSON.parse(JSON.stringify(d.value)))}));const p=e.ref("");o((()=>{p.value=uni.getStorageSync("realname"),m.value=JSON.parse(JSON.stringify(d.value))}));const g=e.ref(0),w=()=>{uni.navigateTo({url:"/pages/NursingNew/index"})},h=()=>{uni.navigateTo({url:"/pages/Warehousing/index"})};return(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(u.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{style:{display:"flex",position:"relative","margin-left":"-30rpx"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(v.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"tab",onClick:e=>(e=>{if(g.value!==e)switch(g.value=e,e){case 0:m.value=JSON.parse(JSON.stringify(d.value));break;case 1:m.value=[],d.value.forEach((e=>{e.cardtype||m.value.push(e)}));break;case 2:m.value=[];break;case 3:m.value=[],d.value.forEach((e=>{1===e.cardtype&&m.value.push(e)}));break;default:return""}})(l)},[e.createElementVNode("view",{style:e.normalizeStyle([g.value===l?{fontWeight:800}:{},{"z-index":"1"}])},e.toDisplayString(t),5),e.withDirectives(e.createElementVNode("view",{class:"tab-heng"},null,512),[[e.vShow,g.value===l]])],8,["onClick"])))),128)),e.createElementVNode("view",{class:"right-title-father"},[e.createElementVNode("view",{style:{"margin-right":"20rpx"}}," 长春市朝阳区久泰开运养老服务有限公司 ")])]),e.createElementVNode("scroll-view",{"scroll-y":"",style:{height:"calc(100% - 10rpx)"},"show-scrollbar":!1},[e.createElementVNode("view",{class:"scroll-box"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[t.cardtype?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"card",style:e.normalizeStyle(1===t.states?{border:"2rpx solid red",boxShadow:"none"}:{})},[e.createElementVNode("view",{class:"card-left"},[e.createElementVNode("view",{class:"card-left-title"},[e.createElementVNode("view",{class:"left-view"},[e.createElementVNode("image",{class:"left-view-img",src:N}),e.createElementVNode("view",null,[e.createElementVNode("view",{class:"top-font-line"},[e.createElementVNode("view",{class:"line-weight"},"王金凤"),e.createElementVNode("view",{class:"line-margin"}," 女 "),e.createElementVNode("view",null," 80岁 "),e.createElementVNode("view",{style:{"margin-left":"20rpx"}}," 2025.01.01 ")]),e.createElementVNode("view",{class:"top-font-line"},[e.createElementVNode("view",{class:"font-gray"}," 省医保 | 重度失能 | 正常缴费 ")])])]),e.createElementVNode("view",{class:"right-spec"}," 护理单元 ")]),e.createElementVNode("view",{class:"bottom-balls"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(i.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"one-ball-father"},e.toDisplayString(t),1)))),128))]),e.createElementVNode("view",{class:"topright-ball"},[e.createElementVNode("image",{class:"ball-righttop",src:`/static/index/video/videobottom/${1===t.states?1:0}.png`},null,8,["src"])]),e.createElementVNode("view",{class:"right-balls"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,((t,a)=>{var i,r;return e.openBlock(),e.createElementBlock("view",{key:a,class:"blue-ball-father",onClick:e=>d.value[l].buttontarget[a]=!d.value[l].buttontarget[a]},[e.createElementVNode("image",{class:"blue-ball",src:(null==(i=d.value[l])?void 0:i.buttontarget[a])?t.targeturl:t.url},null,8,["src"]),e.withDirectives(e.createElementVNode("image",{style:{position:"absolute",bottom:"0",left:"50%",transform:"translateX(-50%)",width:"100%",height:"80%"},src:Le},null,512),[[e.vShow,null==(r=d.value[l])?void 0:r.buttontarget[a]]])],8,["onClick"])})),128))]),e.createElementVNode("image",{class:"video-img",src:Oe}),e.createElementVNode("view",{class:"video-bottom"},[e.createElementVNode("view",{class:"blue-button"}," 服务指令 "),e.createElementVNode("view",{class:""}," NUID:2506000001 "),e.createElementVNode("view",{class:"bottom-shu"},"|"),e.createElementVNode("view",{class:""}," 未命名01 ")])]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"split-line-white-sec"}),e.createElementVNode("view",{class:"right-title"},[e.createElementVNode("view",{class:"right-other",style:e.normalizeStyle(`background: ${r.value[t.states].bgc};`)},[e.createElementVNode("image",{class:"other-class",src:r.value[t.states].url},null,8,["src"]),e.createElementVNode("view",{class:"other-font"},e.toDisplayString(r.value[t.states].name),1)],4)]),1!=t.states&&t.states?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,style:{width:"100%",position:"relative"}},[e.createElementVNode("view",{class:"time"},[e.createElementVNode("view",{class:"time-left"},[e.createElementVNode("view",{class:""}," 10:00~10:10 ")])]),e.createElementVNode("view",{style:{width:"100%",display:"flex","align-items":"center","flex-direction":"column",position:"relative"}},[e.createElementVNode("view",{class:"time-right"}," 待执行 "),e.createElementVNode("image",{class:"time-img",src:E,onClick:w}),e.createElementVNode("view",{class:"small-button"},[e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:Pe})]),e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:je})]),e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:qe})])]),e.createElementVNode("view",{class:"time-weight"}," 准备洁具(口腔) ")]),e.createElementVNode("view",{class:"time-people-two",style:{"margin-top":"20rpx"}},[e.createElementVNode("image",{class:"time-people-img",src:Re}),e.createElementVNode("text",{class:"time-people-font"}," 单人执行 ")]),e.createElementVNode("view",{class:"time-people-two"},[e.createElementVNode("image",{class:"time-people-img",src:We}),e.createElementVNode("text",{class:"time-people-font"}," 王金福 / 李贵田 ")])])),2==t.states?(e.openBlock(),e.createElementBlock("view",{key:1,style:{width:"100%",height:"100%",display:"flex","justify-content":"center","align-items":"center","flex-direction":"column"}},[e.createElementVNode("image",{class:"fail-img",src:"/static/index/video/videotopright/goto.png",onClick:w}),e.createElementVNode("view",{class:"fail-text"}," 长者外出 ")])):e.createCommentVNode("",!0),3==t.states?(e.openBlock(),e.createElementBlock("view",{key:2,style:{width:"100%",height:"100%",display:"flex","justify-content":"center","align-items":"center","flex-direction":"column"}},[e.createElementVNode("image",{class:"fail-img-spec",src:"/static/index/video/videotopright/none.png",onClick:w}),e.createElementVNode("view",{class:"fail-text-spec"}," 暂无长者入住 ")])):e.createCommentVNode("",!0)])],4)),t.cardtype?(e.openBlock(),e.createElementBlock("view",{key:1,class:"card"},[e.createElementVNode("view",{class:"card-left"},[e.createElementVNode("view",{class:"card-left-title"},[e.createElementVNode("view",{class:"left-view"},[e.createElementVNode("image",{class:"left-view-img",src:"/static/index/badman.png",style:{width:"70rpx",height:"80rpx"}}),e.createElementVNode("view",{style:{"margin-left":"10rpx",width:"150rpx"}},[e.createElementVNode("view",{style:{"font-size":"35rpx","font-weight":"600","margin-top":"20rpx","margin-left":"10rpx"}}," 欧阳三四")]),e.createElementVNode("view",{style:{display:"flex","align-items":"center",position:"absolute",top:"50%",transform:"translateY(-50%)",right:"0"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(n.value,((l,a)=>(e.openBlock(),e.createElementBlock("view",{style:{margin:"0 15rpx",display:"flex","flex-direction":"column","align-items":"center",position:"relative"},key:a},[e.createElementVNode("image",{class:"kufang-img",src:t.movestates===a?l.targeturl:l.url},null,8,["src"]),e.createElementVNode("view",{style:e.normalizeStyle([{"font-size":"20rpx"},t.movestates===a?{color:"#0096ff"}:{}])},e.toDisplayString(l.name),5)])))),128))])])]),e.createElementVNode("view",{class:"bottom-balls"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(i.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"one-ball-father"},e.toDisplayString(t),1)))),128))]),e.createElementVNode("view",{class:"topright-ball"},[e.createElementVNode("image",{class:"ball-righttop",src:`/static/index/video/videobottom/${1===t.states?1:0}.png`},null,8,["src"])]),e.createElementVNode("view",{class:"right-balls"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,((t,a)=>{var i,r,n;return e.openBlock(),e.createElementBlock("view",{key:a,class:e.normalizeClass((null==(i=d.value[l])?void 0:i.buttontarget[a])?"blue-ball-father-target":"blue-ball-father"),onClick:e=>d.value[l].buttontarget[a]=!d.value[l].buttontarget[a]},[e.createElementVNode("image",{class:"blue-ball",src:(null==(r=d.value[l])?void 0:r.buttontarget[a])?t.targeturl:t.url},null,8,["src"]),e.withDirectives(e.createElementVNode("image",{style:{position:"absolute",bottom:"0",left:"50%",transform:"translateX(-50%)",width:"100%",height:"80%"},src:Le},null,512),[[e.vShow,null==(n=d.value[l])?void 0:n.buttontarget[a]]])],10,["onClick"])})),128))]),e.createElementVNode("image",{class:"video-img",src:Oe}),e.createElementVNode("view",{class:"video-bottom"},[e.createElementVNode("view",{class:"font-bottom-weight"}," 库房 "),e.createElementVNode("view",{class:"bottom-shu"},"|"),e.createElementVNode("view",{class:""}," NUID:2506000001 "),e.createElementVNode("view",{class:"bottom-shu"},"|"),e.createElementVNode("view",{class:""}," 库房01 ")])]),e.createElementVNode("view",{class:"card-right"},[e.createElementVNode("view",{class:"split-line-white-sec"}),e.createElementVNode("view",{class:"right-title"},[e.createElementVNode("view",{class:"right-other",style:e.normalizeStyle(`background: ${c.value[t.states].bgc};`)},[e.createElementVNode("image",{class:"other-class",src:c.value[t.states].url},null,8,["src"]),e.createElementVNode("view",{class:"other-font"},e.toDisplayString(c.value[t.states].name),1)],4)]),t.states?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,style:{width:"100%",position:"relative"}},[e.createElementVNode("view",{class:"time"},[e.createElementVNode("view",{class:"time-left"},[e.createElementVNode("view",{class:""}," 10:00~10:10 ")])]),e.createElementVNode("view",{style:{width:"100%",display:"flex","align-items":"center","flex-direction":"column",position:"relative"}},[e.createElementVNode("view",{class:"time-right"}," 待执行 "),e.createElementVNode("image",{class:"time-img",src:E,onClick:h}),e.createElementVNode("view",{class:"small-button"},[e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:Pe})]),e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:je})]),e.createElementVNode("view",{class:"gray-ball"},[e.createElementVNode("image",{class:"laba-img",src:qe})])]),e.createElementVNode("view",{class:"time-weight"}," 准备洁具(口腔) ")]),e.createElementVNode("view",{class:"time-people-two",style:{"margin-top":"20rpx"}},[e.createElementVNode("image",{class:"time-people-img",src:Re}),e.createElementVNode("text",{class:"time-people-font"}," 单人执行 ")]),e.createElementVNode("view",{class:"time-people-two"},[e.createElementVNode("image",{class:"time-people-img",src:We}),e.createElementVNode("text",{class:"time-people-font"}," 王金福 / 李贵田 ")])])),1==t.states?(e.openBlock(),e.createElementBlock("view",{key:1,style:{width:"100%",height:"100%",display:"flex","justify-content":"center","align-items":"center","flex-direction":"column"}},[e.createElementVNode("image",{class:"fail-img",style:{width:"150rpx",height:"180rpx"},src:"/static/index/video/videotopright/stop.png",onClick:h}),e.createElementVNode("view",{class:"fail-text"}," 库房已停用 ")])):e.createCommentVNode("",!0)])])):e.createCommentVNode("",!0)])))),128))])])])],4)),[[e.vShow,t.isShow]])}}),[["__scopeId","data-v-01c2b33c"]]),Je=s(e.defineComponent({__name:"settings",props:{isShow:{type:Boolean,required:!0}},emits:["jump"],setup(t,{emit:l}){const a=e.ref(null),i=e.ref(!1),r=e.ref(!1),n=e.ref(!1),o=e.ref(!1),s=e.ref(!1),v=l,p=t,g=e.ref(["雷达扫描","扫码添加","手动录入","修改密码","切换机构","检查更新","用户协议","隐私政策"]),w=e.ref(!0);e.ref(""),e.watch((()=>p.isShow),((e,t)=>{!t&&e&&(w.value=!1,setTimeout((()=>w.value=!0),50))}));const h=e.ref(!1),f=e=>{var t;switch(e){case 0:case 1:case 2:v("jump",e);break;case 3:s.value=!0;break;case 4:break;case 5:i.value=!0,null==(t=a.value)||t.check_update();break;case 6:r.value=!0,n.value=!0,h.value=!1,setTimeout((()=>{h.value=!0}),50);break;case 7:r.value=!0,n.value=!1,h.value=!1,setTimeout((()=>{h.value=!0}),50)}},N=()=>{p.isShow&&i.value&&uni.showToast({title:"已经是最新版了",icon:"none",duration:2e3})};return(l,i)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(w.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{style:{"margin-right":"40rpx"}},"长春市朝阳区久泰开运养老服务有限公司")]),e.createElementVNode("view",{class:"array-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value.slice(0,3),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>f(l)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"array-father",style:{margin:"30rpx 0"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value.slice(3,5),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>f(l+3)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l+3}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"array-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(g.value.slice(5,8),((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"item",onClick:e=>f(l+5)},[e.createElementVNode("view",{class:"left-item"},[e.createElementVNode("image",{class:"left-icon",src:`/static/index/settings/${l+5}.png`},null,8,["src"]),e.createElementVNode("view",{class:"left-font"},e.toDisplayString(t),1)]),e.createElementVNode("view",{class:"right-item"},[e.createElementVNode("image",{class:"right-icon",src:"/static/index/settings/00.png"},null,8,["src"])])],8,["onClick"])))),128))]),e.createElementVNode("view",{class:"bottom-button",onClick:i[0]||(i[0]=e=>o.value=!0)}," 注销登录 "),e.createVNode(R,{show:o.value,onClose:i[1]||(i[1]=e=>o.value=!1)},null,8,["show"]),e.createVNode(W,{show:s.value,onClose:i[2]||(i[2]=e=>s.value=!1)},null,8,["show"]),e.createVNode(d,{ref_key:"zyupgrade",ref:a,noticeflag:!0,theme:"blue",h5preview:!1,oldversion:"1.0.0",appstoreflag:!0,autocheckupdate:!0,onShowupdateTips:N},null,512),r.value?(e.openBlock(),e.createElementBlock("view",{key:0,class:"popup-any",style:e.normalizeStyle(h.value?{opacity:1}:{opacity:0})},[e.createElementVNode("view",{class:"mask",onClick:i[3]||(i[3]=e=>r.value=!1)}),e.createElementVNode("view",{class:"box-any"},[e.createElementVNode("view",{class:"title-left"},[e.createElementVNode("image",{class:"back-img",src:c,onClick:i[4]||(i[4]=e=>r.value=!1)}),n.value?e.createCommentVNode("",!0):(e.openBlock(),e.createElementBlock("view",{key:0,class:"back-font"},"NU护理单元隐私信息保护政策")),n.value?(e.openBlock(),e.createElementBlock("view",{key:1,class:"back-font"},"NU护理单元用户服务协议")):e.createCommentVNode("",!0)]),n.value?e.createCommentVNode("",!0):(e.openBlock(),e.createBlock(u,{key:0})),n.value?(e.openBlock(),e.createBlock(m,{key:1})):e.createCommentVNode("",!0)])],4)):e.createCommentVNode("",!0)],4)),[[e.vShow,t.isShow]])}}),[["__scopeId","data-v-db2cf42d"]]),Xe=s(e.defineComponent({__name:"leida",props:{isShow:{type:Boolean,required:!0}},emits:["nav"],setup(t,{emit:a}){const i=t,r=e.ref(""),n=e.ref(-1),o=e.ref(!0),c=e.ref(1),s=e.ref(0),d=e.ref(null),m=e.ref([{url:"/static/index/leida/00.png",targetUrl:"/static/index/leida/01.png",target:!1},{url:"/static/index/leida/10.png",targetUrl:"/static/index/leida/11.png",target:!1},{url:"/static/index/leida/20.png",targetUrl:"/static/index/leida/21.png",target:!1},{url:"/static/index/leida/30.png",targetUrl:"/static/index/leida/31.png",target:!1}]),u=e.ref([]),v=e.ref([]);function p(){if(1==c.value){n.value=-1,function(){const t=v.value.length;u.value=[];const l=Array.from({length:t},(()=>Math.random())),a=l.reduce(((e,t)=>e+t),0),i=l.map((e=>e/a*5e3));let r=0;for(let n=0;n{u.value.push(v.value[n]);const t=u.value.length;t>=5&&t%2==1&&(s.value=999,await e.nextTick(),s.value=99999)}),r)}(),c.value=0;const t=setInterval((()=>{c.value+=.01,c.value>=1&&(c.value=1,clearInterval(t))}),50)}}e.watch((()=>i.isShow),((e,t)=>{!t&&e&&(o.value=!1,setTimeout((()=>o.value=!0),50),Q().then((e=>{e.result.records.forEach((e=>{e.menu=JSON.parse(JSON.stringify(m.value)),e.isNew=!0})),v.value=e.result.records,l("log","at component/Initialization/leida.vue:123","????",v.value),p()})))}));return e.onMounted((()=>{})),(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(o.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{class:"index-content-title"},[e.createElementVNode("view",{class:"shu"}),e.createElementVNode("view",{class:"shu-font"},"长春市朝阳区久泰开运养老服务有限公司")]),e.createElementVNode("view",{class:"leida"},[e.createElementVNode("view",{class:"kutong-father"},[e.createElementVNode("image",{class:"kutong-img",src:"/static/index/leida/leidabgc.png"}),e.createElementVNode("image",{class:e.normalizeClass(["kutong-shan",c.value<1?"spin-anim":"no-anim"]),src:"/static/index/leida/shan.png"},null,2),e.createElementVNode("view",{class:"huan"},[e.createElementVNode("view",{class:e.normalizeClass(["quarter-ring",c.value<1?"spin-anim-spec":"no-anim-spec"])},null,2)])]),e.createElementVNode("view",{class:"jindutiao"},[e.createElementVNode("view",{class:"progress-fill",style:e.normalizeStyle({transform:`scaleX(${c.value})`})},null,4)]),e.createElementVNode("view",{class:"color-font",style:{"margin-top":"80rpx"}},e.toDisplayString(c.value>=1?"扫描完成。":"正在使用雷达区域扫描护理机构,"),1),e.createElementVNode("view",{class:"color-font"},e.toDisplayString(c.value>=1?"":"请稍后..."),1),e.createElementVNode("view",{class:"agagin-button",onClick:p},"重新扫描")]),e.createElementVNode("view",{class:"other"},[e.createElementVNode("scroll-view",{ref_key:"scrollViewRef",ref:d,"scroll-y":"",class:"other-father","scroll-top":s.value},[e.createElementVNode("view",{class:"card-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(u.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(["card",{"fade-in":t.isNew}]),key:l,onAnimationend:e=>{t.isNew=!1}},[e.createElementVNode("view",{class:"card-title"},[e.createElementVNode("view",{style:{"font-size":"25rpx"}},"NUID:"+e.toDisplayString(t.nuId),1),e.createElementVNode("view",{class:"right-box"},"护理单元")]),e.createElementVNode("view",{class:"card-middle"},[e.createElementVNode("view",{class:"video-box",onClick:a[0]||(a[0]=e=>n.value=-1)},[e.createElementVNode("image",{class:"video-box-img",src:"/static/index/leida/video.png"})]),e.createElementVNode("view",null,[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.menu,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,onClick:e=>{t.target=!t.target,n.value=-1}},[e.createElementVNode("view",{class:"small-menu"},[e.createElementVNode("image",{class:"small-img",src:t.target?t.targetUrl:t.url},null,8,["src"])])],8,["onClick"])))),128))])]),e.createElementVNode("view",{class:"card-bottom"},[e.createTextVNode(e.toDisplayString(t.nuName)+" ",1),e.createElementVNode("image",{class:"bottom-img",src:"/static/index/leida/rename.png",onClick:e=>{n.value=l,r.value=t.nuName}},null,8,["onClick"])]),n.value==l?(e.openBlock(),e.createElementBlock("view",{key:0,class:"rename-father"},[e.createElementVNode("view",{class:"rename-title"}," 重命名 "),e.createElementVNode("view",{class:"rename-gray"}," NUID:20241001001 "),e.createElementVNode("view",{class:"rename-input"},[e.createElementVNode("image",{class:"left-img",src:"/static/index/click.png"}),e.withDirectives(e.createElementVNode("input",{class:"uni-input",placeholder:"请重新命名","onUpdate:modelValue":a[1]||(a[1]=e=>r.value=e)},null,512),[[e.vModelText,r.value]]),e.withDirectives(e.createElementVNode("image",{class:"right-img",src:G,onClick:a[2]||(a[2]=e=>r.value="")},null,512),[[e.vShow,r.value]])]),e.createElementVNode("view",{class:"blue-button",onClick:e=>{return t=r.value,a=l,t&&(u.value[a].nuName=t),void(n.value=-1);var t,a}}," 确定 ",8,["onClick"])])):e.createCommentVNode("",!0)],42,["onAnimationend"])))),128))])],8,["scroll-top"])])])],4)),[[e.vShow,t.isShow]])}}),[["__scopeId","data-v-08e03fe2"]]),Ze=s(e.defineComponent({__name:"saoma",props:{isShow:{type:Boolean,required:!0}},emits:["nav"],setup(t,{emit:l}){const a=t,i=e.ref(!0);function r(){uni.scanCode({onlyFromCamera:!0,scanType:["qrCode","barCode"],success(e){},fail(e){uni.showToast({title:"扫码失败:"+e.errMsg,icon:"none"})}})}return e.watch((()=>a.isShow),((e,t)=>{!t&&e&&(i.value=!1,setTimeout((()=>i.value=!0),50))})),(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(i.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{class:"index-content-title"},[e.createElementVNode("view",{class:"shu"}),e.createElementVNode("view",{class:"shu-font"},"长春市朝阳区久泰开运养老服务有限公司")])]),e.createElementVNode("view",{class:"saomiao",onClick:r},[e.createElementVNode("view",{class:"saomiao-son"},[e.createElementVNode("view",{class:"saomiao-son-son"},[e.createElementVNode("view",{class:"saomiao-son-son-img"})])])])],4)),[[e.vShow,t.isShow]])}}),[["__scopeId","data-v-3c477a5f"]]),He=s(e.defineComponent({__name:"input",props:{isShow:{type:Boolean,required:!0}},emits:["nav"],setup(t,{emit:l}){const a=t,i=e.ref(!0),r=e.ref("");return e.watch((()=>a.isShow),((e,t)=>{!t&&e&&(i.value=!1,setTimeout((()=>i.value=!0),50))})),(l,a)=>e.withDirectives((e.openBlock(),e.createElementBlock("view",{class:"index-content-other",style:e.normalizeStyle(i.value?{opacity:"1"}:{opacity:"0"})},[e.createElementVNode("view",{class:"index-content-right"},[e.createElementVNode("view",{class:"index-content-title"},[e.createElementVNode("view",{class:"shu"}),e.createElementVNode("view",{class:"shu-font"},"长春市朝阳区久泰开运养老服务有限公司")])]),e.createElementVNode("view",{class:"saomiao"},[e.createElementVNode("view",{class:"big-ball"},[e.createElementVNode("view",{class:"ball"})]),e.createElementVNode("image",{class:"left-img",src:J}),e.withDirectives(e.createElementVNode("input",{class:"saoma-input",password:!1,"onUpdate:modelValue":a[0]||(a[0]=e=>r.value=e),placeholder:"请手动录入NUID"},null,512),[[e.vModelText,r.value]]),e.withDirectives(e.createElementVNode("image",{class:"right-img",src:X,onClick:a[1]||(a[1]=e=>r.value="")},null,512),[[e.vShow,r.value]]),e.createElementVNode("view",{class:"blue-button"}," 确定 ")]),e.createElementVNode("view",{class:"index-content-down"}," 长春市朝阳区久泰开运养老服务有限公司 ")],4)),[[e.vShow,t.isShow]])}}),[["__scopeId","data-v-5fc7e05c"]]),Ge=s(e.defineComponent({__name:"index",setup(t){const a=e.ref(!1),i=e.ref(0);e.ref(!1),e.ref(!1);const r=e.ref([{url:"/static/index/relindex/index.png",targetUrl:"/static/index/relindex/indexblue.png",name:"首页",pao:0},{url:"/static/index/relindex/fuwu.png",targetUrl:"/static/index/relindex/fuwublue.png",name:"服务考核",pao:0},{url:"/static/index/relindex/jigou.png",targetUrl:"/static/index/relindex/jigoublue.png",name:"机构功能1",pao:0},{url:"/static/index/relindex/jigou.png",targetUrl:"/static/index/relindex/jigoublue.png",name:"机构功能2",pao:0},{url:"/static/index/relindex/shezhi.png",targetUrl:"/static/index/relindex/shezhiblue.png",name:"设置",pao:0},{url:"/static/index/newindex/curve/return_8.png",targetUrl:"/static/index/newindex/curve/return_1.png",name:"返回",pao:0}]);e.ref([{url:"/static/index/topright/title/0.png",name:"切换机构"},{url:"/static/index/topright/title/1.png",name:"修改密码"},{url:"/static/index/topright/title/2.png",name:"注销账号"}]),e.ref([{url:"/static/index/topright/scan/00.png",targetUrl:"/static/index/topright/scan/01.png",name:"雷达扫描"},{url:"/static/index/topright/scan/10.png",targetUrl:"/static/index/topright/scan/11.png",name:"扫码添加"},{url:"/static/index/topright/scan/20.png",targetUrl:"/static/index/topright/scan/21.png",name:"手动录入"}]);const n=e=>{5===e&&uni.navigateBack(),i.value=e},c=e=>{switch(e){case 0:i.value=-2;break;case 1:i.value=-3;break;case 2:i.value=-4}},s=e=>{switch(e){case 0:i.value=-2;break;case 1:i.value=-3;break;case 2:i.value=-4}},d=e.ref("");return o((e=>{l("log","at pages/Initialization/index.vue:135","???",e.menu),e.menu?i.value=e.menu:i.value=0,d.value=uni.getStorageSync("realname")})),(t,l)=>(e.openBlock(),e.createElementBlock("view",{class:e.normalizeClass(a.value?"darkbackgroundContainer":"backgroundContainer")},[e.createElementVNode("view",{class:"index-content"},[e.createElementVNode("view",{class:"index-content-leftMenus"},[e.createElementVNode("view",{class:"index-title-title"},[e.createElementVNode("image",{class:"index-title-left-img",src:y}),e.createElementVNode("view",{class:"index-title-left-font"},e.toDisplayString(d.value),1)]),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(r.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l,class:"blue-circle-pos"},[e.withDirectives(e.createElementVNode("view",{class:"blue-circle"},[e.createElementVNode("image",{class:"blue-circle-size",src:"/static/index/ray.png"},null,8,["src"])],512),[[e.vShow,l===i.value]]),t.pao?(e.openBlock(),e.createElementBlock("view",{key:0,class:"red-pao",onClick:e=>n(l)},e.toDisplayString(t.pao>99?"99+":t.pao),9,["onClick"])):e.createCommentVNode("",!0),e.createElementVNode("image",{class:"left-img",src:l===i.value?t.targetUrl:t.url,onClick:e=>n(l)},null,8,["src","onClick"]),e.createElementVNode("view",{class:e.normalizeClass(l===i.value?"left-img-font-target":"left-img-font"),onClick:e=>n(l)},e.toDisplayString(t.name),11,["onClick"])])))),128))]),e.createVNode(Ye,{isShow:0==i.value},null,8,["isShow"]),e.createVNode(Je,{isShow:4==i.value,onJump:c},null,8,["isShow"]),e.createVNode(Ye,{isShow:-1==i.value,onNav:s},null,8,["isShow"]),e.createVNode(Xe,{isShow:-2==i.value},null,8,["isShow"]),e.createVNode(Ze,{isShow:-3==i.value},null,8,["isShow"]),e.createVNode(He,{isShow:-4==i.value},null,8,["isShow"])])],2))}}),[["__scopeId","data-v-aebf66be"]]);"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self&&self;function Qe(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var Ke={exports:{}};Ke.exports=function(e){function t(a){if(l[a])return l[a].exports;var i=l[a]={i:a,l:!1,exports:{}};return e[a].call(i.exports,i,i.exports,t),i.l=!0,i.exports}var l={};return t.m=e,t.c=l,t.d=function(e,l,a){t.o(e,l)||Object.defineProperty(e,l,{configurable:!1,enumerable:!0,get:a})},t.n=function(e){var l=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(l,"a",l),l},t.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},t.p="",t(t.s=0)}([function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0});var a,i=l(1),r=(a=i)&&a.__esModule?a:{default:a};t.default=r.default,e.exports=t.default},function(e,t,l){function a(e){return e&&e.__esModule?e:{default:e}}Object.defineProperty(t,"__esModule",{value:!0});var i=a(l(2)),r=a(l(3)),n=a(l(4)),o=a(l(5)),c=a(l(6)),s=a(l(7)),d=a(l(8)),m=a(l(9)),u=a(l(10)),v=a(l(11)),p=a(l(12)),g={lunarInfo:i.default,solarMonth:r.default,gan:n.default,zhi:o.default,animals:c.default,lunarTerm:s.default,lTermInfo:d.default,nStr1:m.default,nStr2:u.default,nStr3:v.default,nStr4:p.default,lYearDays:function(e){var t,l=348;for(t=32768;t>8;t>>=1)l+=g.lunarInfo[e-1900]&t?1:0;return l+g.leapDays(e)},leapMonth:function(e){return 15&g.lunarInfo[e-1900]},leapDays:function(e){return g.leapMonth(e)?65536&g.lunarInfo[e-1900]?30:29:0},monthDays:function(e,t){return t>12||t<1?-1:g.lunarInfo[e-1900]&65536>>t?30:29},solarDays:function(e,t){if(t>12||t<1)return-1;var l=t-1;return 1==l?e%4==0&&e%100!=0||e%400==0?29:28:g.solarMonth[l]},toGanZhi:function(e){return g.gan[e%10]+g.zhi[e%12]},getTerm:function(e,t){if(e<1900||e>2100)return-1;if(t<1||t>24)return-1;var l=g.lTermInfo[e-1900],a=[parseInt("0x"+l.substr(0,5)).toString(),parseInt("0x"+l.substr(5,5)).toString(),parseInt("0x"+l.substr(10,5)).toString(),parseInt("0x"+l.substr(15,5)).toString(),parseInt("0x"+l.substr(20,5)).toString(),parseInt("0x"+l.substr(25,5)).toString()],i=[a[0].substr(0,1),a[0].substr(1,2),a[0].substr(3,1),a[0].substr(4,2),a[1].substr(0,1),a[1].substr(1,2),a[1].substr(3,1),a[1].substr(4,2),a[2].substr(0,1),a[2].substr(1,2),a[2].substr(3,1),a[2].substr(4,2),a[3].substr(0,1),a[3].substr(1,2),a[3].substr(3,1),a[3].substr(4,2),a[4].substr(0,1),a[4].substr(1,2),a[4].substr(3,1),a[4].substr(4,2),a[5].substr(0,1),a[5].substr(1,2),a[5].substr(3,1),a[5].substr(4,2)];return parseInt(i[t-1])},toChinaYear:function(e){var t=parseInt(e/1e3),l=parseInt(e%1e3/100),a=parseInt(e%100/10),i=e%10;return g.nStr4[t]+g.nStr4[l]+g.nStr4[a]+g.nStr4[i]+"年"},toChinaMonth:function(e){return e>12||e<1?-1:g.nStr3[e-1]+"月"},toChinaDay:function(e){var t;switch(e){case 10:t="初十";break;case 20:t="二十";break;case 30:t="三十";break;default:t=g.nStr2[Math.floor(e/10)],t+=g.nStr1[e%10]}return t},getAnimal:function(e){return g.animals[(e-4)%12]},solar2lunar:function(e,t,l){if(e<1900||e>2100)return-1;if(1900==e&&1==t&&l<31)return-1;if(e)var a=new Date(e,parseInt(t)-1,l);else a=new Date;var i,r=0,n=0,o=(e=a.getFullYear(),t=a.getMonth()+1,l=a.getDate(),(Date.UTC(a.getFullYear(),a.getMonth(),a.getDate())-Date.UTC(1900,0,31))/864e5);for(i=1900;i<2101&&o>0;i++)o-=n=g.lYearDays(i);o<0&&(o+=n,i--);var c=new Date,s=!1;c.getFullYear()==e&&c.getMonth()+1==t&&c.getDate()==l&&(s=!0);var d=a.getDay(),m=g.nStr1[d];0==d&&(d=7);var u=i,v=(r=g.leapMonth(i),!1);for(i=1;i<13&&o>0;i++)r>0&&i==r+1&&0==v?(--i,v=!0,n=g.leapDays(u)):n=g.monthDays(u,i),1==v&&i==r+1&&(v=!1),o-=n;0==o&&r>0&&i==r+1&&(v?v=!1:(v=!0,--i)),o<0&&(o+=n,--i);var p=i,w=o+1,h=t-1,f=g.getTerm(e,3),N=g.toGanZhi(e-4),y=new Date(e,1,f).getTime();new Date(e,h,l).getTime()=x&&(V=g.toGanZhi(12*(e-1900)+t+12));var b=!1,k="";x==l&&(b=!0,k=g.lunarTerm[2*t-2]),E==l&&(b=!0,k=g.lunarTerm[2*t-1]);var T=Date.UTC(e,h,1,0,0,0,0)/864e5+25567+10,D=g.toGanZhi(T+l-1);return{lYear:u,lMonth:p,lDay:w,animal:g.getAnimal(u),yearCn:g.toChinaYear(u),monthCn:(v&&r===p?"闰":"")+g.toChinaMonth(p),dayCn:g.toChinaDay(w),cYear:e,cMonth:t,cDay:l,gzYear:N,gzMonth:V,gzDay:D,isToday:s,isLeap:v,nWeek:d,ncWeek:"星期"+m,isTerm:b,term:k}},lunar2solar:function(e,t,l,a){var i=g.leapMonth(e);if(g.leapDays(e),a&&i!=t)return-1;if(2100==e&&12==t&&l>1||1900==e&&1==t&&l<31)return-1;var r=g.monthDays(e,t);if(e<1900||e>2100||l>r)return-1;for(var n=0,o=1900;o0&&(n+=g.leapDays(e),s=!0),n+=g.monthDays(e,o);a&&(n+=r);var d=Date.UTC(1900,1,30,0,0,0),m=new Date(864e5*(n+l-31)+d),u=m.getUTCFullYear(),v=m.getUTCMonth()+1,p=m.getUTCDate();return g.solar2lunar(u,v,p)}};t.default=g,e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=[19416,19168,42352,21717,53856,55632,91476,22176,39632,21970,19168,42422,42192,53840,119381,46400,54944,44450,38320,84343,18800,42160,46261,27216,27968,109396,11104,38256,21234,18800,25958,54432,59984,28309,23248,11104,100067,37600,116951,51536,54432,120998,46416,22176,107956,9680,37584,53938,43344,46423,27808,46416,86869,19872,42416,83315,21168,43432,59728,27296,44710,43856,19296,43748,42352,21088,62051,55632,23383,22176,38608,19925,19152,42192,54484,53840,54616,46400,46752,103846,38320,18864,43380,42160,45690,27216,27968,44870,43872,38256,19189,18800,25776,29859,59984,27480,23232,43872,38613,37600,51552,55636,54432,55888,30034,22176,43959,9680,37584,51893,43344,46240,47780,44368,21977,19360,42416,86390,21168,43312,31060,27296,44368,23378,19296,42726,42208,53856,60005,54576,23200,30371,38608,19195,19152,42192,118966,53840,54560,56645,46496,22224,21938,18864,42359,42160,43600,111189,27936,44448,84835,37744,18936,18800,25776,92326,59984,27424,108228,43744,37600,53987,51552,54615,54432,55888,23893,22176,42704,21972,21200,43448,43344,46240,46758,44368,21920,43940,42416,21168,45683,26928,29495,27296,44368,84821,19296,42352,21732,53600,59752,54560,55968,92838,22224,19168,43476,42192,53584,62034,54560],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=[31,28,31,30,31,30,31,31,30,31,30,31],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["甲","乙","丙","丁","戊","己","庚","辛","壬","癸"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["子","丑","寅","卯","辰","巳","午","未","申","酉","戌","亥"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["鼠","牛","虎","兔","龙","蛇","马","羊","猴","鸡","狗","猪"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["小寒","大寒","立春","雨水","惊蛰","春分","清明","谷雨","立夏","小满","芒种","夏至","小暑","大暑","立秋","处暑","白露","秋分","寒露","霜降","立冬","小雪","大雪","冬至"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c3598082c95f8c965cc920f","97bd0b06bdb0722c965ce1cfcc920f","b027097bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c359801ec95f8c965cc920f","97bd0b06bdb0722c965ce1cfcc920f","b027097bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c359801ec95f8c965cc920f","97bd0b06bdb0722c965ce1cfcc920f","b027097bd097c36b0b6fc9274c91aa","9778397bd19801ec9210c965cc920e","97b6b97bd19801ec95f8c965cc920f","97bd09801d98082c95f8e1cfcc920f","97bd097bd097c36b0b6fc9210c8dc2","9778397bd197c36c9210c9274c91aa","97b6b97bd19801ec95f8c965cc920e","97bd09801d98082c95f8e1cfcc920f","97bd097bd097c36b0b6fc9210c8dc2","9778397bd097c36c9210c9274c91aa","97b6b97bd19801ec95f8c965cc920e","97bcf97c3598082c95f8e1cfcc920f","97bd097bd097c36b0b6fc9210c8dc2","9778397bd097c36c9210c9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c3598082c95f8c965cc920f","97bd097bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c3598082c95f8c965cc920f","97bd097bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c359801ec95f8c965cc920f","97bd097bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c359801ec95f8c965cc920f","97bd097bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf97c359801ec95f8c965cc920f","97bd097bd07f595b0b6fc920fb0722","9778397bd097c36b0b6fc9210c8dc2","9778397bd19801ec9210c9274c920e","97b6b97bd19801ec95f8c965cc920f","97bd07f5307f595b0b0bc920fb0722","7f0e397bd097c36b0b6fc9210c8dc2","9778397bd097c36c9210c9274c920e","97b6b97bd19801ec95f8c965cc920f","97bd07f5307f595b0b0bc920fb0722","7f0e397bd097c36b0b6fc9210c8dc2","9778397bd097c36c9210c9274c91aa","97b6b97bd19801ec9210c965cc920e","97bd07f1487f595b0b0bc920fb0722","7f0e397bd097c36b0b6fc9210c8dc2","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf7f1487f595b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf7f1487f595b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf7f1487f531b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c965cc920e","97bcf7f1487f531b0b0bb0b6fb0722","7f0e397bd07f595b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b97bd19801ec9210c9274c920e","97bcf7f0e47f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","9778397bd097c36b0b6fc9210c91aa","97b6b97bd197c36c9210c9274c920e","97bcf7f0e47f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","9778397bd097c36b0b6fc9210c8dc2","9778397bd097c36c9210c9274c920e","97b6b7f0e47f531b0723b0b6fb0722","7f0e37f5307f595b0b0bc920fb0722","7f0e397bd097c36b0b6fc9210c8dc2","9778397bd097c36b0b70c9274c91aa","97b6b7f0e47f531b0723b0b6fb0721","7f0e37f1487f595b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc9210c8dc2","9778397bd097c36b0b6fc9274c91aa","97b6b7f0e47f531b0723b0b6fb0721","7f0e27f1487f595b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","9778397bd097c36b0b6fc9274c91aa","97b6b7f0e47f531b0723b0787b0721","7f0e27f0e47f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","9778397bd097c36b0b6fc9210c91aa","97b6b7f0e47f149b0723b0787b0721","7f0e27f0e47f531b0723b0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","9778397bd097c36b0b6fc9210c8dc2","977837f0e37f149b0723b0787b0721","7f07e7f0e47f531b0723b0b6fb0722","7f0e37f5307f595b0b0bc920fb0722","7f0e397bd097c35b0b6fc9210c8dc2","977837f0e37f14998082b0787b0721","7f07e7f0e47f531b0723b0b6fb0721","7f0e37f1487f595b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc9210c8dc2","977837f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","977837f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd097c35b0b6fc920fb0722","977837f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","977837f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","977837f0e37f14998082b0787b06bd","7f07e7f0e47f149b0723b0787b0721","7f0e27f0e47f531b0b0bb0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","977837f0e37f14998082b0723b06bd","7f07e7f0e37f149b0723b0787b0721","7f0e27f0e47f531b0723b0b6fb0722","7f0e397bd07f595b0b0bc920fb0722","977837f0e37f14898082b0723b02d5","7ec967f0e37f14998082b0787b0721","7f07e7f0e47f531b0723b0b6fb0722","7f0e37f1487f595b0b0bb0b6fb0722","7f0e37f0e37f14898082b0723b02d5","7ec967f0e37f14998082b0787b0721","7f07e7f0e47f531b0723b0b6fb0722","7f0e37f1487f531b0b0bb0b6fb0722","7f0e37f0e37f14898082b0723b02d5","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e37f1487f531b0b0bb0b6fb0722","7f0e37f0e37f14898082b072297c35","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e37f0e37f14898082b072297c35","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e37f0e366aa89801eb072297c35","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f149b0723b0787b0721","7f0e27f1487f531b0b0bb0b6fb0722","7f0e37f0e366aa89801eb072297c35","7ec967f0e37f14998082b0723b06bd","7f07e7f0e47f149b0723b0787b0721","7f0e27f0e47f531b0723b0b6fb0722","7f0e37f0e366aa89801eb072297c35","7ec967f0e37f14998082b0723b06bd","7f07e7f0e37f14998083b0787b0721","7f0e27f0e47f531b0723b0b6fb0722","7f0e37f0e366aa89801eb072297c35","7ec967f0e37f14898082b0723b02d5","7f07e7f0e37f14998082b0787b0721","7f07e7f0e47f531b0723b0b6fb0722","7f0e36665b66aa89801e9808297c35","665f67f0e37f14898082b0723b02d5","7ec967f0e37f14998082b0787b0721","7f07e7f0e47f531b0723b0b6fb0722","7f0e36665b66a449801e9808297c35","665f67f0e37f14898082b0723b02d5","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e36665b66a449801e9808297c35","665f67f0e37f14898082b072297c35","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e26665b66a449801e9808297c35","665f67f0e37f1489801eb072297c35","7ec967f0e37f14998082b0787b06bd","7f07e7f0e47f531b0723b0b6fb0721","7f0e27f1487f531b0b0bb0b6fb0722"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["日","一","二","三","四","五","六","七","八","九","十"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["初","十","廿","卅"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["正","二","三","四","五","六","七","八","九","十","冬","腊"],e.exports=t.default},function(e,t,l){Object.defineProperty(t,"__esModule",{value:!0}),t.default=["零","一","二","三","四","五","六","七","八","九","十"],e.exports=t.default}]);const et=Qe(Ke.exports),tt=s({__name:"calendar",setup(t){const a=new Date,i=e.ref(a.getFullYear()),r=e.ref(a.getMonth()),n=e.ref(null),o=["一","二","三","四","五","六","日"],c=e.computed((()=>{const e=[],t=new Date(i.value,r.value,0),l=t.getFullYear(),a=t.getMonth(),n=t.getDate(),o=(c=i.value,s=r.value,(new Date(c,s,1).getDay()+6)%7);var c,s;for(let i=0;i(e.openBlock(),e.createElementBlock("view",{class:"calendar"},[e.createElementVNode("view",{class:"header"},[e.createElementVNode("view",{class:"header-title"},[e.createElementVNode("view",{class:"year-month"},e.toDisplayString(i.value)+"年"+e.toDisplayString(r.value+1)+"月",1),e.createElementVNode("view",{class:"botton-father"},[e.createElementVNode("view",{class:"click-button",onClick:s},"上个月"),e.createElementVNode("view",{class:"click-button",onClick:d},"下个月")])]),e.createElementVNode("view",{class:"weekdays"},[(e.openBlock(),e.createElementBlock(e.Fragment,null,e.renderList(o,((t,l)=>e.createElementVNode("view",{key:l,class:"weekday"},e.toDisplayString(t),1))),64))])]),e.createElementVNode("view",{class:"days"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(c.value,(t=>{return e.openBlock(),e.createElementBlock("view",{key:t.key,class:e.normalizeClass(["day-cell",{"prev-month":t.prev,"next-month":t.next,selected:(a=t.key,n.value===a)}]),onClick:e=>function(e){e.prev||(n.value=e.key,l("log","at component/public/calendar.vue:91","Selected date:",e.key))}(t)},[e.createElementVNode("view",{class:"gregorian"},e.toDisplayString(t.dateText),1),t.lunarText?(e.openBlock(),e.createElementBlock("view",{key:0,class:"lunar"},e.toDisplayString(t.lunarText),1)):e.createCommentVNode("",!0)],10,["onClick"]);var a})),128))])]))}},[["__scopeId","data-v-0bf11501"]]),lt=s(e.defineComponent({__name:"index",setup(t){const l=e.ref(!1),a=e.ref(null),i=e=>{uni.navigateBack()};return o((e=>{})),r((()=>{var e;null==(e=a.value)||e.check_update()})),(t,a)=>(e.openBlock(),e.createElementBlock("view",{class:"backgroundContainer"},[e.createElementVNode("view",{class:"assess-title"},[e.createElementVNode("view",{class:"left-icons"},[e.createElementVNode("image",{class:"left-icons-img",src:"/static/index/undericons/doublekuai.png"},null,8,["src"]),e.createElementVNode("view",{class:"right-icons-font"},"服务考核-"),e.createElementVNode("view",{class:"right-icons-text"},"批量考核")]),e.createElementVNode("view",{class:"right-icons"},[e.createElementVNode("image",{class:"right-icons-img",src:"/static/index/undericons/man.png"},null,8,["src"]),e.createElementVNode("view",{class:e.normalizeClass(l.value?"right-icons-font-dark":"right-icons-font")},"王金福",2),e.createElementVNode("image",{class:"right-icons-img-icon",src:l.value?"/static/index/undericons/face.png":"/static/index/undericons/facelight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",src:l.value?"/static/index/undericons/hand.png":"/static/index/undericons/handlight.png"},null,8,["src"]),e.createElementVNode("image",{class:"right-icons-img-icon",onClick:i,src:l.value?"/static/index/undericons/out.png":"/static/index/undericons/outlight.png"},null,8,["src"])])]),e.createElementVNode("view",{class:"assess-another"},[e.createElementVNode("view",{class:"left-contain"},[e.createElementVNode("view",{class:"calendar"},[e.createVNode(tt)])])])]))}}),[["__scopeId","data-v-65a124ce"]]),at=s(e.defineComponent({__name:"index",setup(t){e.ref(!1);const l=e.ref([]),a=e.ref(["全部","日常","周期"]),i=e.ref(0),r=e.ref(0);function n(e){let t=e.detail.scrollTop,l=parseFloat(t.toFixed(2));r.value=l}const c=e=>{if(i.value!==e)return"titlebutton";switch(e){case 0:return"titlebutton-target";case 1:return"titlebutton-target-yellow";case 2:return"titlebutton-target-pouple"}};function s(e){if(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}return[]}const d=e.ref(0),m=e.ref([]);o((e=>{let t=uni.getStorageSync("myArray");l.value=t,l.value[0].children.length<8&&l.value.forEach((e=>{for(;e.children.length<8;)e.children.push({directiveName:""})})),m.value=JSON.parse(JSON.stringify(l.value)),e.currentNumber&&(d.value=745*e.currentNumber)}));const u=e.ref(0),v=e.ref(0),p=e.ref(!1),g=e.ref(!1),w=e.ref(-1),h=e.ref(-1),f=()=>{uni.navigateBack()},N=()=>{let e=[];m.value.forEach(((t,l)=>{e=[],t.children.forEach(((t,l)=>{if(null===t.directiveName||""===t.directiveName||void 0===t.directiveName){m.value.every((e=>""===e.children[l].directiveName))&&e.push(l)}}))}));const t=[...e].sort(((e,t)=>t-e));m.value.forEach((e=>{t.forEach((t=>{e.children.splice(t,1)}))})),m.value[0].children.length<8&&m.value.forEach((e=>{for(;e.children.length<8;)e.children.push({directiveName:""})}))},y=e.ref(0),x=e.ref(null);function E(t,l,a,i){const r=Date.now();null!=x.value&&clearTimeout(x.value),r-y.value<250?(((e,t)=>{uni.navigateBack({delta:1,success:()=>{uni.$emit("where",{index0:e,index1:t})}})})(l,a),y.value=0):(x.value=setTimeout((()=>{((t,l,a,i)=>{t.directiveName&&(w.value=l,h.value=a,uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((t=>{t.forEach((async t=>{t.dataset.index0==l&&t.dataset.index1==a&&(t.left<500?u.value=Math.floor(t.left)+510:u.value=Math.floor(t.left)-10,t.top<300?v.value=Math.floor(t.top)+250:v.value=Math.floor(t.top),await e.nextTick(),p.value=!0,g.value=!1,setTimeout((()=>{g.value=!0}),100))}))})).exec())})(t,l,a)}),250),y.value=r)}return(t,o)=>{var y,x,V;return e.openBlock(),e.createElementBlock("view",{class:"doctorsay-container-container"},[e.createElementVNode("view",{class:"doctorsay-container-title"},[e.createElementVNode("view",{class:"doctorsay-container-left"},[e.createElementVNode("view",{class:"doctorsay-container-left-gun"}),e.createElementVNode("view",{class:"doctorsay-container-left-font"},"时间矩阵")]),e.createElementVNode("view",{class:"doctorsay-container-right"},[e.createElementVNode("view",{class:"titlebutton-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.value,((t,a)=>(e.openBlock(),e.createElementBlock("view",{key:a},[e.createElementVNode("view",{class:e.normalizeClass(c(a)),onClick:e=>(e=>{if(i.value!==e)switch(m.value=[],i.value=e,e){case 0:m.value=JSON.parse(JSON.stringify(l.value));break;case 1:m.value=JSON.parse(JSON.stringify(l.value)),m.value.forEach((e=>{e.children.forEach((e=>{e.directiveName&&"日常"!==e.cycleType&&(e.directiveName="",e.cycleType="",e.startTime="")}))})),N();break;case 2:m.value=JSON.parse(JSON.stringify(l.value)),m.value.forEach((e=>{e.children.forEach((e=>{e.directiveName&&"日常"===e.cycleType&&(e.directiveName="",e.cycleType="",e.startTime="")}))})),N()}})(a)},e.toDisplayString(t),11,["onClick"])])))),128))]),e.createElementVNode("view",{class:"doctorsay-container-right-kuai-cheng"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"日常"),e.createElementVNode("view",{class:"doctorsay-container-right-kuai-zi"}),e.createElementVNode("view",{class:"doctorsay-container-kuai-font"},"周期"),e.createElementVNode("view",{class:"doctorsay-container-juzhen",onClick:f}," 返回 ")])]),e.createElementVNode("view",{class:"super-card"},[e.createElementVNode("view",{class:"super-card-container"},[e.createElementVNode("view",{class:"boom"},[e.createElementVNode("view",{style:e.normalizeStyle({marginTop:`-${2*r.value}rpx`})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(null==(y=m.value[0])?void 0:y.children,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.withDirectives(e.createElementVNode("view",{class:e.normalizeClass(h.value===l?"boom-son-target":"boom-son")},e.toDisplayString(t.typeName),3),[[e.vShow,t.typeName]])])))),128))],4)]),e.createElementVNode("scroll-view",{style:{height:"100%",width:"100%"},"scroll-left":d.value,"scroll-x":"","show-scrollbar":!1},[e.createElementVNode("view",{style:{display:"flex",width:"5945rpx","box-shadow":"10rpx 10rpx 20rpx rgba(0, 0, 0, 0.1)",background:"linear-gradient(to right, #c4dbf4,#c9c2ef, #c6dcf3)"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time"},e.toDisplayString((1==t.positioning.length?"0"+t.positioning:t.positioning)+":00"),1)])))),128))]),e.createElementVNode("view",{style:{display:"flex",height:"calc(100% - 80rpx)",width:"5945rpx"}},[e.createElementVNode("scroll-view",{"scroll-y":"","show-scrollbar":!1,onScroll:n},[e.createElementVNode("view",{style:{display:"flex",height:"100%"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(m.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time-und"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.children,((t,a)=>{return e.openBlock(),e.createElementBlock("view",{style:{width:"100%"},key:a},[e.createElementVNode("view",{class:e.normalizeClass([w.value===l&&h.value===a?"title-time-border-blue":"","super-card-time-card"]),style:{position:"relative"},onTouchend:e=>E(t,l,a),"data-index0":l,"data-index1":a},[e.createElementVNode("view",{class:e.normalizeClass((i=t,"日常"===i.cycleType?"title-time-border-yellow":i.cycleType?"title-time-border-pouple":"title-time-border")),style:{"font-size":"30rpx",overflow:"hidden"}},[t.startTime?(e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time",style:{"margin-top":"0rpx"}},[e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"25rpx"}},e.toDisplayString(t.startTime+"-"+t.endTime),1),e.createElementVNode("image",{class:"title-time-button",src:"日常"==t.cycleType?"/static/index/yellowbian.png":"/static/index/puoplebian.png"},null,8,["src"]),e.createElementVNode("view",{class:"title-time-font"},e.toDisplayString(t.cycleType),1)])):e.createCommentVNode("",!0),e.createElementVNode("view",{style:e.normalizeStyle([s(t.directiveName)[1]?{}:{marginTop:"20rpx"},{"font-weight":"700","font-size":"24rpx"}])},e.toDisplayString(s(t.directiveName)[0]),5),s(t.directiveName)[1]?(e.openBlock(),e.createElementBlock("view",{key:1,class:"down-icons",style:e.normalizeStyle("日常"!=t.cycleType?{backgroundColor:"rgb(212,203,255)"}:{})},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s(t.directiveName).slice(1),((l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"",key:a},[e.createElementVNode("view",{class:"icon",style:e.normalizeStyle("日常"!=t.cycleType?{backgroundColor:"rgb(123,97,255)"}:{})},e.toDisplayString(s(t.directiveName)[a+1]),5)])))),128))],4)):e.createCommentVNode("",!0)],2)],42,["onTouchend","data-index0","data-index1"])]);var i})),128))])])))),128))])],32)])],8,["scroll-left"])])]),e.withDirectives(e.createElementVNode("view",{class:"popup-overlay",onClick:o[1]||(o[1]=e=>p.value=!1)},[e.createElementVNode("view",{class:"popup-overlay-content",style:e.normalizeStyle({top:2*v.value-350+"rpx",left:2*u.value-780+"rpx",opacity:g.value?1:0,backgroundColor:"日常"===(null==(V=null==(x=l.value[h.value])?void 0:x.children[w.value])?void 0:V.type)?"#fffcf6":"rgb(246, 244, 254)"}),onClick:o[0]||(o[0]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-overlay-content-left"},[e.createElementVNode("image",{class:"popup-overlay-content-left-img",src:"/static/index/teeth.png"},null,8,["src"]),e.createElementVNode("text",{class:"popup-overlay-content-left-font"}," 占个位置 ")]),e.createElementVNode("view",{class:"popup-overlay-content-right"},[e.createElementVNode("view",{class:"time-font"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"time-text"}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ")])],4)],512),[[e.vShow,p.value]])])}}}),[["__scopeId","data-v-70d077f4"]]),it=s({__name:"specialDrawer",props:{widNumber:{type:Number,default:17}},setup(t,{expose:l}){const a=e.ref(!1),i=t,r=e.ref(0);e.onMounted((()=>{const e=uni.getSystemInfoSync();r.value=e.screenWidth})),e.ref(0);const n=e.ref(!0),o=e.ref(0),c=e.computed((()=>{const e=`${i.widNumber}%`;if(n.value){return{width:e,transform:`translateX(${o.value}px)`,transition:"none"}}return{width:e}}));function s(e){}function d(e){}function m(){}l({openDrawer:function(){a.value=!0},closeDrawer:function(){a.value=!0}});const u=e.ref(0);return e.computed((()=>({transform:`rotate(${u.value}deg)`,transition:"transform 0.6s ease"}))),(t,l)=>(e.openBlock(),e.createElementBlock("view",null,[e.createElementVNode("view",{class:e.normalizeClass(["drawer",{"drawer-open":a.value}]),style:e.normalizeStyle(c.value)},[e.createElementVNode("view",{class:"drawer-content",onTouchstartPassive:s,onTouchmovePassive:d,onTouchend:m,onTouchcancel:m},[e.renderSlot(t.$slots,"default",{},void 0,!0)],32)],6)]))}},[["__scopeId","data-v-7979ddf3"]]),rt=s(e.defineComponent({__name:"index",props:{changerightbottom:{type:String,default:"标准"}},emits:["clickball"],setup(t,{emit:l}){const a=e.ref([{name:"周期",url:""},{name:"放大",url:"/static/index/getbig.png"},{name:"日常",url:""},{name:"缩小",url:"/static/index/getsmall.png"},{name:"全部",url:""},{name:"标准",url:""}]),i=l;return(l,r)=>(e.openBlock(),e.createElementBlock("view",{class:"draw-all"},[e.createElementVNode("view",{class:"button-father"},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(a.value,((l,a)=>(e.openBlock(),e.createElementBlock("view",{key:a,class:"white-ball",onClick:e=>(e=>{i("clickball",e)})(a)},[l.url?(e.openBlock(),e.createElementBlock("image",{key:0,style:{width:"50%",height:"50%"},src:l.url},null,8,["src"])):(e.openBlock(),e.createElementBlock("view",{key:1},e.toDisplayString(5===a?t.changerightbottom:l.name),1))],8,["onClick"])))),128))])]))}}),[["__scopeId","data-v-a6bada18"]]),nt=s(e.defineComponent({__name:"indexnew",setup(t){e.ref(!1);const l=e.ref([]);e.ref(["全部","日常","周期"]),e.ref(["放大","缩小"]);const a=e.ref(0);uni.getSystemInfoSync().windowWidth;const i=e=>{switch(e){case 0:b(2);break;case 1:v(0);break;case 2:b(1);break;case 3:v(1);break;case 4:b(0);break;case 5:7===d.value?T(!1):T(!0)}};function r(e){if(e){let t=[],l=e,a=/([^((]*)[((]([^))]+)[))]/;for(;a.test(l);){let e=l.match(a);e&&(e[1].trim()&&t.push(e[1].trim()),e[2].trim()&&t.push(e[2].trim()),l=l.replace(e[0],"").trim())}return l.trim()&&t.push(l.trim()),t}return[]}const n=e.ref(0),c=e.ref(0),s=e.ref([]),d=e.ref(0),m=e.ref(247),u=e.ref(180);e.ref(0),e.ref(0),o((e=>{let t=uni.getStorageSync("myArray");l.value=t,l.value[0].children.length<8&&l.value.forEach((e=>{for(;e.children.length<8;)e.children.push({directiveName:""})})),s.value=JSON.parse(JSON.stringify(l.value)),d.value=7,p()}));const v=e=>{e?d.value<24&&d.value++:d.value>7&&d.value--};function p(){if(g.value>=0&&g.value<=24&&w.value>=0&&w.value<=11){const e=(g.value+.5)*m.value,t=(w.value-.5)*u.value;n.value=e-1110,c.value=t-281.25;const l=24*m.value,a=11*u.value;n.value=Math.max(0,Math.min(n.value,l-2220))/2,c.value=Math.max(0,Math.min(c.value,a-562.5))/2}}const g=e.ref(10),w=e.ref(0);e.watch([g,w],(()=>{p()})),e.watch(d,((e,t)=>{if(t===e);else{switch(e){case 24:m.value=92.5,u.value=107;break;case 23:m.value=96.5,u.value=107;break;case 22:m.value=101,u.value=107;break;case 21:m.value=106,u.value=116;break;case 20:m.value=112,u.value=116;break;case 19:m.value=117,u.value=116;break;case 18:m.value=124,u.value=121;break;case 17:m.value=131,u.value=128;break;case 16:m.value=139,u.value=133;break;case 15:m.value=148,u.value=142;break;case 14:m.value=159,u.value=150;break;case 13:m.value=171,u.value=160;break;case 12:m.value=185,u.value=170;break;case 11:m.value=202,u.value=183;break;case 10:m.value=222,u.value=195;break;case 9:m.value=247,u.value=213;break;case 8:m.value=280,u.value=235;break;case 7:m.value=320,u.value=256}p()}}));const h=e.ref(0),f=e.ref(null);const N=e.ref(0),y=e.ref(0),x=e.ref(!1),E=e.ref(!1);e.ref(null);const V=(e,t)=>{uni.navigateBack({delta:1,success:()=>{uni.$emit("where",{index0:e,index1:t})}})},b=e=>{if(a.value!==e)switch(s.value=[],a.value=e,e){case 0:s.value=JSON.parse(JSON.stringify(l.value));break;case 1:s.value=JSON.parse(JSON.stringify(l.value)),s.value.forEach((e=>{e.children.forEach((e=>{e.directiveName&&"日常"!==e.cycleType&&(e.directiveName="",e.cycleType="",e.startTime="")}))}));break;case 2:s.value=JSON.parse(JSON.stringify(l.value)),s.value.forEach((e=>{e.children.forEach((e=>{e.directiveName&&"日常"===e.cycleType&&(e.directiveName="",e.cycleType="",e.startTime="")}))}))}},k=t=>{switch(x.value=!1,t){case 0:w.value>0&&w.value--;break;case 1:g.value<23&&g.value++;break;case 2:w.value<11&&w.value++;break;case 3:g.value>0&&g.value--;break;case 4:l=s.value[g.value].children[w.value],a=g.value,i=w.value,l.directiveName&&e.nextTick((()=>{uni.createSelectorQuery().selectAll(".super-card-time-card").boundingClientRect((t=>{t.forEach((async t=>{t.dataset.index0==a&&t.dataset.index1==i&&(t.left<500?N.value=Math.floor(t.left)+510:N.value=Math.floor(t.left)-10,t.top<300?y.value=Math.floor(t.top)+250:y.value=Math.floor(t.top),await e.nextTick(),x.value=!0,E.value=!1,setTimeout((()=>{E.value=!0}),100))}))})).exec()}));break;case 5:uni.navigateBack()}var l,a,i};function T(e){d.value=e?7:24}return(t,a)=>{var o,v;const p=e.resolveComponent("arrowkeys");return e.openBlock(),e.createElementBlock("view",{class:"doctorsay-container-container"},[e.createElementVNode("view",{class:"super-card"},[e.createElementVNode("view",{class:"super-card-container"},[e.createElementVNode("scroll-view",{style:{height:"100%",width:"100%"},"scroll-left":n.value,"scroll-x":"","show-scrollbar":!1},[e.createElementVNode("view",{style:e.normalizeStyle([{width:24*m.value+"rpx"},{display:"flex"}])},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time",style:e.normalizeStyle({width:m.value+"rpx"})},e.toDisplayString((1==t.positioning.length?"0"+t.positioning:t.positioning)+":00"),5)])))),128))],4),e.createElementVNode("view",{style:e.normalizeStyle([{display:"flex",height:"calc(100% - 80rpx)",position:"relative"},{width:24*m.value+"rpx"}])},[e.createElementVNode("view",{class:"xian-bian"}),e.createElementVNode("scroll-view",{"scroll-y":"","show-scrollbar":!1,"scroll-top":c.value},[e.createElementVNode("view",{style:{display:"flex",height:"100%"}},[(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(s.value,((t,l)=>(e.openBlock(),e.createElementBlock("view",{key:l},[e.createElementVNode("view",{class:"super-card-time-und",style:e.normalizeStyle({width:m.value+"rpx"})},[e.createElementVNode("view",{class:"bottom-bian"}),(e.openBlock(!0),e.createElementBlock(e.Fragment,null,e.renderList(t.children,((t,a)=>{return e.openBlock(),e.createElementBlock("view",{style:{width:"100%"},key:a},[e.createElementVNode("view",{style:e.normalizeStyle({height:u.value+"rpx"}),class:"super-card-time-card",onTouchend:e=>function(e,t,l){const a=Date.now();null!=f.value&&clearTimeout(f.value),a-h.value<250?(e.startTime&&V(t,l),h.value=0):(e.directiveName&&(g.value=t,w.value=l),h.value=a)}(t,l,a),"data-index0":l,"data-index1":a},[e.createElementVNode("view",{class:e.normalizeClass((i=t,"日常"===i.cycleType?"title-time-border-yellow":i.cycleType?"title-time-border-pouple":"title-time-border")),style:e.normalizeStyle([d.value>=11&&"日常"!==t.cycleType&&t.startTime?{backgroundColor:"#c5e5ff"}:{},{"font-size":"30rpx",position:"relative"}])},[e.withDirectives(e.createElementVNode("view",{class:"title-time-blue"},null,512),[[e.vShow,g.value==l&&w.value==a]]),t.startTime?(e.openBlock(),e.createElementBlock("view",{key:0,class:"title-time",style:{"flex-direction":"column",overflow:"hidden"}},[e.withDirectives(e.createElementVNode("image",{style:{width:"50rpx",height:"50rpx",margin:"0 auto"},src:_},null,512),[[e.vShow,t.startTime]]),e.withDirectives(e.createElementVNode("view",{class:"title-time-time",style:{"font-size":"30rpx"}},e.toDisplayString(t.startTime+"-"+t.endTime),513),[[e.vShow,d.value<10]]),"日常"!=t.cycleType?e.withDirectives((e.openBlock(),e.createElementBlock("image",{key:0,class:"title-time-button",style:{width:"80rpx",height:"48rpx"},src:te},null,512)),[[e.vShow,d.value<11]]):e.createCommentVNode("",!0),"日常"!=t.cycleType?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:1,class:"title-time-font",style:{right:"10rpx",top:"5rpx","font-size":"20rpx"}},e.toDisplayString(t.cycleType),513)),[[e.vShow,d.value<11]]):e.createCommentVNode("",!0)])):e.createCommentVNode("",!0),t.startTime?e.withDirectives((e.openBlock(),e.createElementBlock("view",{key:1,class:"title-time-font-rel"},e.toDisplayString(r(t.directiveName)[0]),513)),[[e.vShow,d.value<11]]):e.createCommentVNode("",!0)],6)],44,["onTouchend","data-index0","data-index1"])]);var i})),128))],4)])))),128))])],8,["scroll-top"])],4)],8,["scroll-left"])])]),e.createVNode(it,{ref:"gobackdrawer"},{default:e.withCtx((()=>[e.createVNode(rt,{onClickball:i,changerightbottom:7===d.value?"缩略图":"标准"},null,8,["changerightbottom"])])),_:1},512),e.createVNode(p,{onMovecard:k}),e.withDirectives(e.createElementVNode("view",{class:"popup-overlay-content",style:e.normalizeStyle({top:2*y.value-350+"rpx",left:2*N.value-780+"rpx",opacity:E.value?1:0,backgroundColor:"日常"===(null==(v=null==(o=l.value[w.value])?void 0:o.children[g.value])?void 0:v.type)?"#fffcf6":"rgb(246, 244, 254)"}),onClick:a[0]||(a[0]=e.withModifiers((()=>{}),["stop"]))},[e.createElementVNode("view",{class:"popup-overlay-content-left"},[e.createElementVNode("image",{class:"popup-overlay-content-left-img",src:"/static/index/teeth.png"},null,8,["src"]),e.createElementVNode("text",{class:"popup-overlay-content-left-font"}," 占个位置 ")]),e.createElementVNode("view",{class:"popup-overlay-content-right"},[e.createElementVNode("view",{class:"time-font"}," 10:00 - 10:10 "),e.createElementVNode("view",{class:"time-text"}," 为老人提供口腔清洁器具,牙膏、牙刷及水杯,看护完成 ")])],4),[[e.vShow,x.value]])])}}}),[["__scopeId","data-v-7e3cfa67"]]);__definePage("pages/login/login",w),__definePage("pages/denglu",h),__definePage("pages/index/index",f),__definePage("pages/Nursing/index",$),__definePage("pages/watch/index",q),__definePage("pages/watch/settings/settings",Y),__definePage("pages/watch/settings/input",Z),__definePage("pages/watch/settings/saoma",H),__definePage("pages/watch/settings/leida",K),__definePage("pages/NursingNew/index",re),__definePage("pages/Warehousing/index",Ae),__definePage("pages/Initialization/index",Ge),__definePage("pages/assess/index",lt),__definePage("pages/timeMatrix/index",at),__definePage("pages/timeMatrix/indexnew",nt);const ot={onLaunch:function(){l("log","at App.vue:4","App Launch")},onShow:function(){l("log","at App.vue:7","App Show")},onHide:function(){l("log","at App.vue:10","App Hide")}},ct={data:()=>({}),onLoad(){this.$u.getRect=this.$uGetRect},methods:{$uGetRect(e,t){return new Promise((l=>{uni.createSelectorQuery().in(this)[t?"selectAll":"select"](e).boundingClientRect((e=>{t&&Array.isArray(e)&&e.length&&l(e),!t&&e&&l(e)})).exec()}))},getParentData(e=""){this.parent||(this.parent=!1),this.parent=this.$u.$parent.call(this,e),this.parent&&(Object.keys(this.parentData).map((e=>{this.parentData[e]=this.parent[e]})),this.parentData.value=this.parent.modelValue)},preventEvent(e){e&&e.stopPropagation&&e.stopPropagation()}},onReachBottom(){uni.$emit("uOnReachBottom")},beforeUnmount(){if(this.parent&&uni.$u.test.array(this.parent.children)){const e=this.parent.children;e.map(((t,l)=>{t===this&&e.splice(l,1)}))}}};function st(e){if([null,void 0,NaN,!1].includes(e))return e;if("object"!=typeof e&&"function"!=typeof e)return e;var t,l=(t=e,"[object Array]"===Object.prototype.toString.call(t)?[]:{});for(let a in e)e.hasOwnProperty(a)&&(l[a]="object"==typeof e[a]?st(e[a]):e[a]);return l}function dt(e={},t={}){if("object"!=typeof(e=st(e))||"object"!=typeof t)return!1;for(var l in t)t.hasOwnProperty(l)&&(l in e?"object"!=typeof e[l]||"object"!=typeof t[l]?e[l]=t[l]:e[l].concat&&t[l].concat?e[l]=e[l].concat(t[l]):e[l]=dt(e[l],t[l]):e[l]=t[l]);return e}function mt(e){return/^(?:-?\d+|-?\d{1,3}(?:,\d{3})+)?(?:\.\d+)?$/.test(e)}function ut(e){switch(typeof e){case"undefined":return!0;case"string":if(0==e.replace(/(^[ \t\n\r]*)|([ \t\n\r]*$)/g,"").length)return!0;break;case"boolean":if(!e)return!0;break;case"number":if(0===e||isNaN(e))return!0;break;case"object":if(null===e||0===e.length)return!0;for(var t in e)return!1;return!0}return!1}function vt(e){return"[object Object]"===Object.prototype.toString.call(e)}function pt(e){return"function"==typeof e}const gt={email:function(e){return/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/.test(e)},mobile:function(e){return/^1[23456789]\d{9}$/.test(e)},url:function(e){return/http(s)?:\/\/([\w-]+\.)+[\w-]+(\/[\w-.\/?%&=]*)?/.test(e)},date:function(e){return!!e&&(mt(e)&&(e=+e),!/Invalid|NaN/.test(new Date(e).toString()))},dateISO:function(e){return/^\d{4}[\/\-](0?[1-9]|1[012])[\/\-](0?[1-9]|[12][0-9]|3[01])$/.test(e)},number:mt,digits:function(e){return/^\d+$/.test(e)},idCard:function(e){return/^[1-9]\d{5}[1-9]\d{3}((0\d)|(1[0-2]))(([0|1|2]\d)|3[0-1])\d{3}([0-9]|X)$/.test(e)},carNo:function(e){const t=/^[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-Z]{1}(([0-9]{5}[DF]$)|([DF][A-HJ-NP-Z0-9][0-9]{4}$))/,l=/^[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-Z]{1}[A-HJ-NP-Z0-9]{4}[A-HJ-NP-Z0-9挂学警港澳]{1}$/;return 7===e.length?l.test(e):8===e.length&&t.test(e)},amount:function(e){return/^[1-9]\d*(,\d{3})*(\.\d{1,2})?$|^0\.\d{1,2}$/.test(e)},chinese:function(e){return/^[\u4e00-\u9fa5]+$/gi.test(e)},letter:function(e){return/^[a-zA-Z]*$/.test(e)},enOrNum:function(e){return/^[0-9a-zA-Z]*$/g.test(e)},contains:function(e,t){return e.indexOf(t)>=0},range:function(e,t){return e>=t[0]&&e<=t[1]},rangeLength:function(e,t){return e.length>=t[0]&&e.length<=t[1]},empty:ut,isEmpty:ut,jsonString:function(e){if("string"==typeof e)try{var t=JSON.parse(e);return!("object"!=typeof t||!t)}catch(l){return!1}return!1},landline:function(e){return/^\d{3,4}-\d{7,8}(-\d{3,4})?$/.test(e)},object:vt,array:function(e){return"function"==typeof Array.isArray?Array.isArray(e):"[object Array]"===Object.prototype.toString.call(e)},code:function(e,t=6){return new RegExp(`^\\d{${t}}$`).test(e)},func:pt,promise:function(e){return vt(e)&&pt(e.then)&&pt(e.catch)},video:function(e){const t=e.split("?")[0];return new RegExp(/\.(mp4|mpg|mpeg|dat|asf|avi|rm|rmvb|mov|wmv|flv|mkv|m3u8|3gp)$/).test(t)},image:function(e){const t=e.split("?")[0];return new RegExp(/\.(jpeg|jpg|gif|png|svg|webp|jfif|bmp|dpg)$/).test(t)},regExp:function(e){return e&&"[object RegExp]"===Object.prototype.toString.call(e)},string:function(e){return"string"==typeof e}};const wt=new class{setConfig(e){this.config=dt(this.config,e)}request(e={}){if(this.interceptor.request&&"function"==typeof this.interceptor.request){let t=this.interceptor.request(e);if(!1===t)return new Promise((()=>{}));this.options=t}return e.dataType=e.dataType||this.config.dataType,e.responseType=e.responseType||this.config.responseType,e.url=e.url||"",e.params=e.params||{},e.header=Object.assign({},this.config.header,e.header),e.method=e.method||this.config.method,new Promise(((t,l)=>{e.complete=e=>{if(uni.hideLoading(),clearTimeout(this.config.timer),this.config.timer=null,this.config.originalData)if(this.interceptor.response&&"function"==typeof this.interceptor.response){let a=this.interceptor.response(e);!1!==a?t(a):l(e)}else t(e);else if(200==e.statusCode)if(this.interceptor.response&&"function"==typeof this.interceptor.response){let a=this.interceptor.response(e.data);!1!==a?t(a):l(e.data)}else t(e.data);else l(e)},e.url=gt.url(e.url)?e.url:this.config.baseUrl+(0==e.url.indexOf("/")?e.url:"/"+e.url),this.config.showLoading&&!this.config.timer&&(this.config.timer=setTimeout((()=>{uni.showLoading({title:this.config.loadingText,mask:this.config.loadingMask}),this.config.timer=null}),this.config.loadingTime)),uni.request(e)}))}constructor(){this.config={baseUrl:"",header:{},method:"POST",dataType:"json",responseType:"text",showLoading:!0,loadingText:"请求中...",loadingTime:800,timer:null,originalData:!1,loadingMask:!0},this.interceptor={request:null,response:null},this.get=(e,t={},l={})=>this.request({method:"GET",url:e,header:l,data:t}),this.post=(e,t={},l={})=>this.request({url:e,method:"POST",header:l,data:t}),this.put=(e,t={},l={})=>this.request({url:e,method:"PUT",header:l,data:t}),this.delete=(e,t={},l={})=>this.request({url:e,method:"DELETE",header:l,data:t})}};const ht=(new class{constructor(){this.config={type:"navigateTo",url:"",delta:1,params:{},animationType:"pop-in",animationDuration:300,intercept:!1},this.route=this.route.bind(this)}addRootPath(e){return"/"===e[0]?e:`/${e}`}mixinParam(e,t){e=e&&this.addRootPath(e);let l="";return/.*\/.*\?.*=.*/.test(e)?(l=uni.$u.queryParams(t,!1),e+"&"+l):(l=uni.$u.queryParams(t),e+l)}async route(e={},t={}){let l={};if("string"==typeof e?(l.url=this.mixinParam(e,t),l.type="navigateTo"):(l=uni.$u.deepClone(e,this.config),l.url=this.mixinParam(e.url,e.params)),t.intercept&&(this.config.intercept=t.intercept),l.params=t,l=uni.$u.deepMerge(this.config,l),"function"==typeof uni.$u.routeIntercept){await new Promise(((e,t)=>{uni.$u.routeIntercept(l,e)}))&&this.openPage(l)}else this.openPage(l)}openPage(e){const{url:t,type:l,delta:a,animationType:i,animationDuration:r}=e;"navigateTo"!=e.type&&"to"!=e.type||uni.navigateTo({url:t,animationType:i,animationDuration:r}),"redirectTo"!=e.type&&"redirect"!=e.type||uni.redirectTo({url:t}),"switchTab"!=e.type&&"tab"!=e.type||uni.switchTab({url:t}),"reLaunch"!=e.type&&"launch"!=e.type||uni.reLaunch({url:t}),"navigateBack"!=e.type&&"back"!=e.type||uni.navigateBack({delta:a})}}).route;function ft(e=null,t="yyyy-mm-dd"){e||(e=Number(new Date)),10==e.toString().length&&(e*=1e3);let l,a=new Date(e),i={"y+":a.getFullYear().toString(),"m+":(a.getMonth()+1).toString(),"d+":a.getDate().toString(),"h+":a.getHours().toString(),"M+":a.getMinutes().toString(),"s+":a.getSeconds().toString()};for(let r in i)l=new RegExp("("+r+")").exec(t),l&&(t=t.replace(l[1],1==l[1].length?i[r]:i[r].padStart(l[1].length,"0")));return t}function Nt(e,t=!0){if((e=e.toLowerCase())&&/^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/.test(e)){if(4===e.length){let t="#";for(let l=1;l<4;l+=1)t+=e.slice(l,l+1).concat(e.slice(l,l+1));e=t}let l=[];for(let t=1;t<7;t+=2)l.push(parseInt("0x"+e.slice(t,t+2)));return t?`rgb(${l[0]},${l[1]},${l[2]})`:l}if(/^(rgb|RGB)/.test(e)){return e.replace(/(?:\(|\)|rgb|RGB)*/g,"").split(",").map((e=>Number(e)))}return e}function yt(e){let t=e;if(/^(rgb|RGB)/.test(t)){let e=t.replace(/(?:\(|\)|rgb|RGB)*/g,"").split(","),l="#";for(let t=0;t=e)return String(l);let a=e-l.length,i=Math.ceil(a/t.length);for(;i>>=1;)t+=t,1===i&&(t+=t);return t.slice(0,a)+l});const xt={colorGradient:function(e="rgb(0, 0, 0)",t="rgb(255, 255, 255)",l=10){let a=Nt(e,!1),i=a[0],r=a[1],n=a[2],o=Nt(t,!1),c=(o[0]-i)/l,s=(o[1]-r)/l,d=(o[2]-n)/l,m=[];for(let u=0;u=0))if(t.constructor===Array)switch(l){case"indices":for(let l=0;l{i.push(r+"[]="+e)}));break;case"repeat":t.forEach((e=>{i.push(r+"="+e)}));break;case"comma":let e="";t.forEach((t=>{e+=(e?",":"")+t})),i.push(r+"="+e)}else i.push(r+"="+t)}return i.length?a+i.join("&"):""},route:ht,timeFormat:ft,date:ft,timeFrom:function(e=null,t="yyyy-mm-dd"){e||(e=Number(new Date)),10==e.toString().length&&(e*=1e3);let l=+new Date(Number(e)),a=(Number(new Date)-l)/1e3,i="";switch(!0){case a<300:i="刚刚";break;case a>=300&&a<3600:i=parseInt(a/60)+"分钟前";break;case a>=3600&&a<86400:i=parseInt(a/3600)+"小时前";break;case a>=86400&&a<2592e3:i=parseInt(a/86400)+"天前";break;default:i=!1===t?a>=2592e3&&a<31536e3?parseInt(a/2592e3)+"个月前":parseInt(a/31536e3)+"年前":ft(l,t)}return i},colorGradient:xt.colorGradient,colorToRgba:xt.colorToRgba,guid:function(e=32,t=!0,l=null){let a="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz".split(""),i=[];if(l=l||a.length,e)for(let r=0;rMath.random()-.5))},wranning:function(e){},get:wt.get,post:wt.post,put:wt.put,delete:wt.delete,hexToRgb:xt.hexToRgb,rgbToHex:xt.rgbToHex,test:gt,random:function(e,t){if(e>=0&&t>0&&t>=e){let l=t-e+1;return Math.floor(Math.random()*l+e)}return 0},deepClone:st,deepMerge:dt,getParent:function(e,t){let l=this.$parent;for(;l;){if(l.$options.name===e){let e={};if(Array.isArray(t))t.map((t=>{e[t]=l[t]?l[t]:""}));else for(let a in t)Array.isArray(t[a])?t[a].length?e[a]=t[a]:e[a]=l[a]:t[a].constructor===Object?Object.keys(t[a]).length?e[a]=t[a]:e[a]=l[a]:e[a]=t[a]||!1===t[a]?t[a]:l[a];return e}l=l.$parent}return{}},$parent:function(e){let t=this.$parent;for(;t;){if(!t.$options||t.$options.name===e)return t;t=t.$parent}return!1},addUnit:function(e="auto",t="rpx"){return e=String(e),gt.number(e)?`${e}${t}`:e},trim:function(e,t="both"){return"both"==t?e.replace(/^\s+|\s+$/g,""):"left"==t?e.replace(/^\s*/,""):"right"==t?e.replace(/(\s*$)/g,""):"all"==t?e.replace(/\s+/g,""):e},type:["primary","success","error","warning","info"],http:wt,toast:function(e,t=1500){uni.showToast({title:e,icon:"none",duration:t})},config:Dt,zIndex:{toast:10090,noNetwork:10080,popup:10075,mask:10070,navbar:980,topTips:975,sticky:970,indexListSticky:965},debounce:function(e,t=500,l=!1){if(null!==Et&&clearTimeout(Et),l){var a=!Et;Et=setTimeout((function(){Et=null}),t),a&&"function"==typeof e&&e()}else Et=setTimeout((function(){"function"==typeof e&&e()}),t)},throttle:function(e,t=500,l=!0,a="default"){Vt[a]||(Vt[a]=null),l?bt[a]||(bt[a]=!0,"function"==typeof e&&e(),Vt[a]=setTimeout((()=>{bt[a]=!1}),t)):bt[a]||(bt[a]=!0,Vt[a]=setTimeout((()=>{bt[a]=!1,"function"==typeof e&&e()}),t))},addStyle:function(e,t="object"){if(gt.empty(e)||"object"==typeof e&&"object"===t||"string"===t&&"string"==typeof e)return e;if("object"===t){const t=(e=kt(e)).split(";"),l={};for(let e=0;e{e.mixin(ct),e.config.globalProperties.$u=Ct}},Bt={__name:"donghua",props:{links:{type:Array,default:()=>[]},width:{type:String,default:"65rpx"},height:{type:String,default:"65rpx"},objectFit:{type:String,default:"aspectFill"},defaultImage:{type:String,default:""},interval:{type:Number,default:80},playing:{type:Boolean,default:!1},showButton:{type:Boolean,default:!1},loop:{type:Boolean,default:!1}},emits:["update:playing"],setup(t,{emit:l}){const a=t,i=e.ref(0),r=e.ref(!1),n=e.ref(!1);let o=null;const c=()=>{r.value=!1,clearInterval(o)};return e.watch((()=>a.playing),(e=>{i.value=0,e?r.value||(r.value=!0,o=setInterval((()=>{a.loop?(i.value=(i.value+1)%a.links.length,n.value=!1):i.valuei.value=0),50))})),e.watch((()=>a.links),(()=>{i.value=0,n.value=!1,r.value&&c()}),{deep:!0}),e.onUnmounted((()=>{c()})),(l,a)=>(e.openBlock(),e.createElementBlock("view",null,[e.createElementVNode("image",{src:n.value?t.defaultImage:t.links[i.value],style:e.normalizeStyle({width:t.width,height:t.height}),mode:t.objectFit,onError:a[0]||(a[0]=e=>n.value=!0),onLoad:a[1]||(a[1]=e=>n.value=!1)},null,44,["src","mode"]),t.showButton?(e.openBlock(),e.createElementBlock("button",{key:0,onClick:a[2]||(a[2]=e=>l.$emit("update:playing",!t.playing))},e.toDisplayString(t.playing?"停止播放":"开始播放"),1)):e.createCommentVNode("",!0)]))}},zt=s(e.defineComponent({__name:"arrowkeys",props:{movebottom:{type:Number,default:30},moveleft:{type:Number,default:10},leftbuttonname:{type:String,default:"返回"},rightbuttonname:{type:String,default:"确定"}},emits:["movecard"],setup(t,{emit:l}){const a=l;let i=null,r=null,n=!1;const o=e.ref(-1);let c=null;function s(){i&&(clearTimeout(i),i=null)}function d(){r&&(clearTimeout(r),r=null),n=!1,c=null}function m(e){d(),s(),o.value=e,a("movecard",e),i=setTimeout((()=>{o.value=-1,i=null}),500)}function u(e){s(),d(),o.value=e,a("movecard",e),c=e,n=!0,r=setTimeout((function e(){n&&null!==c&&(r=setTimeout(e,500))}),500)}function v(){n&&(d(),s(),i=setTimeout((()=>{o.value=-1,i=null}),500))}return e.onBeforeUnmount((()=>{s(),d()})),(l,a)=>(e.openBlock(),e.createElementBlock("view",{class:"move-circle",style:e.normalizeStyle({bottom:`${t.movebottom}rpx`,left:`${t.moveleft}rpx`})},[e.createElementVNode("view",{class:e.normalizeClass(5===o.value?"click-box-target":"click-box"),onClick:a[0]||(a[0]=e=>m(5)),onLongpress:a[1]||(a[1]=()=>u(5)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${5===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("span",{style:{"z-index":"1","font-size":"30rpx"},class:e.normalizeClass(5===o.value?"grad-text":"")},e.toDisplayString(t.leftbuttonname),3)],34),e.createElementVNode("view",{class:e.normalizeClass(0===o.value?"click-box-target":"click-box"),onClick:a[2]||(a[2]=e=>m(0)),onLongpress:a[3]||(a[3]=()=>u(0)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${0===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("image",{src:`/static/index/newruler/fangxiang${0===o.value?"target":""}.png`,class:"image-photo"},null,8,["src"])],34),e.createElementVNode("view",{class:e.normalizeClass(4===o.value?"click-box-target":"click-box"),onClick:a[4]||(a[4]=e=>m(4)),onLongpress:a[5]||(a[5]=()=>u(4)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${4===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("span",{style:{"z-index":"1","font-size":"30rpx"},class:e.normalizeClass(4===o.value?"grad-text":"")},e.toDisplayString(t.rightbuttonname),3)],34),e.createElementVNode("view",{class:e.normalizeClass(3===o.value?"click-box-target":"click-box"),onClick:a[6]||(a[6]=e=>m(3)),onLongpress:a[7]||(a[7]=()=>u(3)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${3===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("image",{style:{transform:"rotate(270deg)","transform-origin":"center"},src:`/static/index/newruler/fangxiang${3===o.value?"target":""}.png`,class:"image-photo"},null,8,["src"])],34),e.createElementVNode("view",{class:e.normalizeClass(2===o.value?"click-box-target":"click-box"),onClick:a[8]||(a[8]=e=>m(2)),onLongpress:a[9]||(a[9]=()=>u(2)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${2===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("image",{style:{transform:"rotate(180deg)","transform-origin":"center"},src:`/static/index/newruler/fangxiang${2===o.value?"target":""}.png`,class:"image-photo"},null,8,["src"])],34),e.createElementVNode("view",{class:e.normalizeClass(1===o.value?"click-box-target":"click-box"),onClick:a[10]||(a[10]=e=>m(1)),onLongpress:a[11]||(a[11]=()=>u(1)),onTouchend:v,onTouchcancel:v,style:{position:"relative"}},[e.createElementVNode("image",{src:`/static/index/newruler/${1===o.value?1:0}.png`,style:{position:"absolute",width:"100%",height:"100%"}},null,8,["src"]),e.createElementVNode("image",{style:{transform:"rotate(90deg)","transform-origin":"center"},src:`/static/index/newruler/fangxiang${1===o.value?"target":""}.png`,class:"image-photo"},null,8,["src"])],34)],4))}}),[["__scopeId","data-v-4057d511"]]);const{app:_t,Vuex:It,Pinia:Ut}=function(){const t=e.createVueApp(ot);return t.use(St),t.component("donghua",Bt),t.component("arrowkeys",zt),{app:t}}();uni.Vuex=It,uni.Pinia=Ut,_t.provide("__globalStyles",__uniConfig.styles),_t._component.mpType="app",_t._component.render=()=>{},_t.mount("#app")}(Vue); diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/app.css b/app/src/main/assets/apps/__UNI__FB2D473/www/app.css new file mode 100644 index 0000000..ecc6c6a --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/app.css @@ -0,0 +1,3 @@ +*{margin:0;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight-color:transparent}html,body{-webkit-user-select:none;user-select:none;width:100%}html{height:100%;height:100vh;width:100%;width:100vw}body{overflow-x:hidden;background-color:#fff;height:100%}#app{height:100%}input[type=search]::-webkit-search-cancel-button{display:none}.uni-loading,uni-button[loading]:before{background:transparent url(data:image/svg+xml;base64,\ PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgxMDB2MTAwSDB6Ii8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTlFOUU5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTMwKSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iIzk4OTY5NyIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgzMCAxMDUuOTggNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjOUI5OTlBIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDYwIDc1Ljk4IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0EzQTFBMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSg5MCA2NSA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNBQkE5QUEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoMTIwIDU4LjY2IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0IyQjJCMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgxNTAgNTQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjQkFCOEI5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDE4MCA1MCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDMkMwQzEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTE1MCA0NS45OCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDQkNCQ0IiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTEyMCA0MS4zNCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNEMkQyRDIiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTkwIDM1IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0RBREFEQSIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgtNjAgMjQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTJFMkUyIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKC0zMCAtNS45OCA2NSkiLz48L3N2Zz4=) no-repeat}.uni-loading{width:20px;height:20px;display:inline-block;vertical-align:middle;animation:uni-loading 1s steps(12,end) infinite;background-size:100%}@keyframes uni-loading{0%{transform:rotate3d(0,0,1,0)}to{transform:rotate3d(0,0,1,360deg)}}@media (prefers-color-scheme: dark){html{--UI-BG-COLOR-ACTIVE: #373737;--UI-BORDER-COLOR-1: #373737;--UI-BG: #000;--UI-BG-0: #191919;--UI-BG-1: #1f1f1f;--UI-BG-2: #232323;--UI-BG-3: #2f2f2f;--UI-BG-4: #606060;--UI-BG-5: #2c2c2c;--UI-FG: #fff;--UI-FG-0: hsla(0, 0%, 100%, .8);--UI-FG-HALF: hsla(0, 0%, 100%, .6);--UI-FG-1: hsla(0, 0%, 100%, .5);--UI-FG-2: hsla(0, 0%, 100%, .3);--UI-FG-3: hsla(0, 0%, 100%, .05)}body{background-color:var(--UI-BG-0);color:var(--UI-FG-0)}}[nvue] uni-view,[nvue] uni-label,[nvue] uni-swiper-item,[nvue] uni-scroll-view{display:flex;flex-shrink:0;flex-grow:0;flex-basis:auto;align-items:stretch;align-content:flex-start}[nvue] uni-button{margin:0}[nvue-dir-row] uni-view,[nvue-dir-row] uni-label,[nvue-dir-row] uni-swiper-item{flex-direction:row}[nvue-dir-column] uni-view,[nvue-dir-column] uni-label,[nvue-dir-column] uni-swiper-item{flex-direction:column}[nvue-dir-row-reverse] uni-view,[nvue-dir-row-reverse] uni-label,[nvue-dir-row-reverse] uni-swiper-item{flex-direction:row-reverse}[nvue-dir-column-reverse] uni-view,[nvue-dir-column-reverse] uni-label,[nvue-dir-column-reverse] uni-swiper-item{flex-direction:column-reverse}[nvue] uni-view,[nvue] uni-image,[nvue] uni-input,[nvue] uni-scroll-view,[nvue] uni-swiper,[nvue] uni-swiper-item,[nvue] uni-text,[nvue] uni-textarea,[nvue] uni-video{position:relative;border:0px solid #000000;box-sizing:border-box}[nvue] uni-swiper-item{position:absolute}@keyframes once-show{0%{top:0}}uni-resize-sensor,uni-resize-sensor>div{position:absolute;left:0;top:0;right:0;bottom:0;overflow:hidden}uni-resize-sensor{display:block;z-index:-1;visibility:hidden;animation:once-show 1ms}uni-resize-sensor>div>div{position:absolute;left:0;top:0}uni-resize-sensor>div:first-child>div{width:100000px;height:100000px}uni-resize-sensor>div:last-child>div{width:200%;height:200%}uni-text[selectable]{cursor:auto;-webkit-user-select:text;user-select:text}uni-text{white-space:pre-line}uni-view{display:block}uni-view[hidden]{display:none}uni-button{position:relative;display:block;margin-left:auto;margin-right:auto;padding-left:14px;padding-right:14px;box-sizing:border-box;font-size:18px;text-align:center;text-decoration:none;line-height:2.55555556;border-radius:5px;-webkit-tap-highlight-color:transparent;overflow:hidden;color:#000;background-color:#f8f8f8;cursor:pointer}uni-button[hidden]{display:none!important}uni-button:after{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;border:1px solid rgba(0,0,0,.2);transform:scale(.5);transform-origin:0 0;box-sizing:border-box;border-radius:10px}uni-button[native]{padding-left:0;padding-right:0}uni-button[native] .uni-button-cover-view-wrapper{border:inherit;border-color:inherit;border-radius:inherit;background-color:inherit}uni-button[native] .uni-button-cover-view-inner{padding-left:14px;padding-right:14px}uni-button uni-cover-view{line-height:inherit;white-space:inherit}uni-button[type=default]{color:#000;background-color:#f8f8f8}uni-button[type=primary]{color:#fff;background-color:#007aff}uni-button[type=warn]{color:#fff;background-color:#e64340}uni-button[disabled]{color:rgba(255,255,255,.6);cursor:not-allowed}uni-button[disabled][type=default],uni-button[disabled]:not([type]){color:rgba(0,0,0,.3);background-color:#f7f7f7}uni-button[disabled][type=primary]{background-color:rgba(0,122,255,.6)}uni-button[disabled][type=warn]{background-color:#ec8b89}uni-button[type=primary][plain]{color:#007aff;border:1px solid #007aff;background-color:transparent}uni-button[type=primary][plain][disabled]{color:rgba(0,0,0,.2);border-color:rgba(0,0,0,.2)}uni-button[type=primary][plain]:after{border-width:0}uni-button[type=default][plain]{color:#353535;border:1px solid #353535;background-color:transparent}uni-button[type=default][plain][disabled]{color:rgba(0,0,0,.2);border-color:rgba(0,0,0,.2)}uni-button[type=default][plain]:after{border-width:0}uni-button[plain]{color:#353535;border:1px solid #353535;background-color:transparent}uni-button[plain][disabled]{color:rgba(0,0,0,.2);border-color:rgba(0,0,0,.2)}uni-button[plain]:after{border-width:0}uni-button[plain][native] .uni-button-cover-view-inner{padding:0}uni-button[type=warn][plain]{color:#e64340;border:1px solid #e64340;background-color:transparent}uni-button[type=warn][plain][disabled]{color:rgba(0,0,0,.2);border-color:rgba(0,0,0,.2)}uni-button[type=warn][plain]:after{border-width:0}uni-button[size=mini]{display:inline-block;line-height:2.3;font-size:13px;padding:0 1.34em}uni-button[size=mini][native]{padding:0}uni-button[size=mini][native] .uni-button-cover-view-inner{padding:0 1.34em}uni-button[loading]:not([disabled]){cursor:progress}uni-button[loading]:before{content:" ";display:inline-block;width:18px;height:18px;vertical-align:middle;animation:uni-loading 1s steps(12,end) infinite;background-size:100%}uni-button[loading][type=primary]{color:rgba(255,255,255,.6);background-color:#0062cc}uni-button[loading][type=primary][plain]{color:#007aff;background-color:transparent}uni-button[loading][type=default]{color:rgba(0,0,0,.6);background-color:#dedede}uni-button[loading][type=default][plain]{color:#353535;background-color:transparent}uni-button[loading][type=warn]{color:rgba(255,255,255,.6);background-color:#ce3c39}uni-button[loading][type=warn][plain]{color:#e64340;background-color:transparent}uni-button[loading][native]:before{content:none}.button-hover{color:rgba(0,0,0,.6);background-color:#dedede}.button-hover[plain]{color:rgba(53,53,53,.6);border-color:rgba(53,53,53,.6);background-color:transparent}.button-hover[type=primary]{color:rgba(255,255,255,.6);background-color:#0062cc}.button-hover[type=primary][plain]{color:rgba(0,122,255,.6);border-color:rgba(0,122,255,.6);background-color:transparent}.button-hover[type=default]{color:rgba(0,0,0,.6);background-color:#dedede}.button-hover[type=default][plain]{color:rgba(53,53,53,.6);border-color:rgba(53,53,53,.6);background-color:transparent}.button-hover[type=warn]{color:rgba(255,255,255,.6);background-color:#ce3c39}.button-hover[type=warn][plain]{color:rgba(230,67,64,.6);border-color:rgba(230,67,64,.6);background-color:transparent}@media (prefers-color-scheme: dark){uni-button,uni-button[type=default]{color:#d6d6d6;background-color:#343434}.button-hover,.button-hover[type=default]{color:#d6d6d6;background-color:rgba(255,255,255,.1)}uni-button[disabled][type=default],uni-button[disabled]:not([type]){color:rgba(255,255,255,.2);background-color:rgba(255,255,255,.08)}uni-button[type=primary][plain][disabled]{color:rgba(255,255,255,.2);border-color:rgba(255,255,255,.2)}uni-button[type=default][plain]{color:#d6d6d6;border:1px solid #d6d6d6}.button-hover[type=default][plain]{color:rgba(150,150,150,.6);border-color:rgba(150,150,150,.6);background-color:rgba(50,50,50,.2)}uni-button[type=default][plain][disabled]{border-color:rgba(255,255,255,.2);color:rgba(255,255,255,.2)}}uni-canvas{width:300px;height:150px;display:block;position:relative}uni-canvas>.uni-canvas-canvas{position:absolute;top:0;left:0;width:100%;height:100%}uni-checkbox{-webkit-tap-highlight-color:transparent;display:inline-block;cursor:pointer}uni-checkbox[hidden]{display:none}uni-checkbox[disabled]{cursor:not-allowed}.uni-checkbox-wrapper{display:inline-flex;align-items:center;vertical-align:middle}.uni-checkbox-input{margin-right:5px;-webkit-appearance:none;appearance:none;outline:0;border:1px solid #d1d1d1;background-color:#fff;border-radius:3px;width:22px;height:22px;position:relative}.uni-checkbox-input svg{color:#007aff;font-size:22px;position:absolute;top:50%;left:50%;transform:translate(-50%,-48%) scale(.73)}@media (hover: hover){uni-checkbox:not([disabled]) .uni-checkbox-input:hover{border-color:var(--HOVER-BD-COLOR, #007aff)!important}}uni-checkbox-group{display:block}uni-checkbox-group[hidden]{display:none}uni-cover-image{display:block;line-height:1.2;overflow:hidden;height:100%;width:100%;pointer-events:auto}uni-cover-image[hidden]{display:none}uni-cover-image .uni-cover-image{width:100%;height:100%}uni-cover-view{display:block;line-height:1.2;overflow:hidden;white-space:nowrap;pointer-events:auto}uni-cover-view[hidden]{display:none}uni-cover-view .uni-cover-view{width:100%;height:100%;visibility:hidden;text-overflow:inherit;white-space:inherit;align-items:inherit;justify-content:inherit;flex-direction:inherit;flex-wrap:inherit;display:inherit;overflow:inherit}.ql-container{display:block;position:relative;box-sizing:border-box;-webkit-user-select:text;user-select:text;outline:none;overflow:hidden;width:100%;height:200px;min-height:200px}.ql-container[hidden]{display:none}.ql-container .ql-editor{position:relative;font-size:inherit;line-height:inherit;font-family:inherit;min-height:inherit;width:100%;height:100%;padding:0;overflow-x:hidden;overflow-y:auto;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-overflow-scrolling:touch}.ql-container .ql-editor::-webkit-scrollbar{width:0!important}.ql-container .ql-editor.scroll-disabled{overflow:hidden}.ql-container .ql-image-overlay{display:flex;position:absolute;box-sizing:border-box;border:1px dashed #ccc;justify-content:center;align-items:center;-webkit-user-select:none;user-select:none}.ql-container .ql-image-overlay .ql-image-size{position:absolute;padding:4px 8px;text-align:center;background-color:#fff;color:#888;border:1px solid #ccc;box-sizing:border-box;opacity:.8;right:4px;top:4px;font-size:12px;display:inline-block;width:auto}.ql-container .ql-image-overlay .ql-image-toolbar{position:relative;text-align:center;box-sizing:border-box;background:#000;border-radius:5px;color:#fff;font-size:0;min-height:24px;z-index:100}.ql-container .ql-image-overlay .ql-image-toolbar span{display:inline-block;cursor:pointer;padding:5px;font-size:12px;border-right:1px solid #fff}.ql-container .ql-image-overlay .ql-image-toolbar span:last-child{border-right:0}.ql-container .ql-image-overlay .ql-image-toolbar span.triangle-up{padding:0;position:absolute;top:-12px;left:50%;transform:translate(-50%);width:0;height:0;border-width:6px;border-style:solid;border-color:transparent transparent black transparent}.ql-container .ql-image-overlay .ql-image-handle{position:absolute;height:12px;width:12px;border-radius:50%;border:1px solid #ccc;box-sizing:border-box;background:#fff}.ql-container img{display:inline-block;max-width:100%}.ql-clipboard p{margin:0;padding:0}.ql-editor{box-sizing:border-box;height:100%;outline:none;overflow-y:auto;tab-size:4;-moz-tab-size:4;text-align:left;white-space:pre-wrap;word-wrap:break-word}.ql-editor>*{cursor:text}.ql-editor p,.ql-editor ol,.ql-editor ul,.ql-editor pre,.ql-editor blockquote,.ql-editor h1,.ql-editor h2,.ql-editor h3,.ql-editor h4,.ql-editor h5,.ql-editor h6{margin:0;padding:0;counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol>li,.ql-editor ul>li{list-style-type:none}.ql-editor ul>li:before{content:"•"}.ql-editor ul[data-checked=true],.ql-editor ul[data-checked=false]{pointer-events:none}.ql-editor ul[data-checked=true]>li *,.ql-editor ul[data-checked=false]>li *{pointer-events:all}.ql-editor ul[data-checked=true]>li:before,.ql-editor ul[data-checked=false]>li:before{color:#777;cursor:pointer;pointer-events:all}.ql-editor ul[data-checked=true]>li:before{content:"☑"}.ql-editor ul[data-checked=false]>li:before{content:"☐"}.ql-editor ol,.ql-editor ul{padding-left:1.5em}.ql-editor li:not(.ql-direction-rtl):before{margin-left:-1.5em}.ql-editor li.ql-direction-rtl:before{margin-right:-1.5em}.ql-editor li:before{display:inline-block;white-space:nowrap;width:2em}.ql-editor ol li{counter-reset:list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;counter-increment:list-0}.ql-editor ol li:before{content:counter(list-0,decimal) ". "}.ql-editor ol li.ql-indent-1{counter-increment:list-1}.ql-editor ol li.ql-indent-1:before{content:counter(list-1,lower-alpha) ". "}.ql-editor ol li.ql-indent-1{counter-reset:list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-2{counter-increment:list-2}.ql-editor ol li.ql-indent-2:before{content:counter(list-2,lower-roman) ". "}.ql-editor ol li.ql-indent-2{counter-reset:list-3 list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-3{counter-increment:list-3}.ql-editor ol li.ql-indent-3:before{content:counter(list-3,decimal) ". "}.ql-editor ol li.ql-indent-3{counter-reset:list-4 list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-4{counter-increment:list-4}.ql-editor ol li.ql-indent-4:before{content:counter(list-4,lower-alpha) ". "}.ql-editor ol li.ql-indent-4{counter-reset:list-5 list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-5{counter-increment:list-5}.ql-editor ol li.ql-indent-5:before{content:counter(list-5,lower-roman) ". "}.ql-editor ol li.ql-indent-5{counter-reset:list-6 list-7 list-8 list-9}.ql-editor ol li.ql-indent-6{counter-increment:list-6}.ql-editor ol li.ql-indent-6:before{content:counter(list-6,decimal) ". "}.ql-editor ol li.ql-indent-6{counter-reset:list-7 list-8 list-9}.ql-editor ol li.ql-indent-7{counter-increment:list-7}.ql-editor ol li.ql-indent-7:before{content:counter(list-7,lower-alpha) ". "}.ql-editor ol li.ql-indent-7{counter-reset:list-8 list-9}.ql-editor ol li.ql-indent-8{counter-increment:list-8}.ql-editor ol li.ql-indent-8:before{content:counter(list-8,lower-roman) ". "}.ql-editor ol li.ql-indent-8{counter-reset:list-9}.ql-editor ol li.ql-indent-9{counter-increment:list-9}.ql-editor ol li.ql-indent-9:before{content:counter(list-9,decimal) ". "}.ql-editor .ql-indent-1:not(.ql-direction-rtl){padding-left:2em}.ql-editor li.ql-indent-1:not(.ql-direction-rtl){padding-left:2em}.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right{padding-right:2em}.ql-editor .ql-indent-2:not(.ql-direction-rtl){padding-left:4em}.ql-editor li.ql-indent-2:not(.ql-direction-rtl){padding-left:4em}.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right{padding-right:4em}.ql-editor .ql-indent-3:not(.ql-direction-rtl){padding-left:6em}.ql-editor li.ql-indent-3:not(.ql-direction-rtl){padding-left:6em}.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right{padding-right:6em}.ql-editor .ql-indent-4:not(.ql-direction-rtl){padding-left:8em}.ql-editor li.ql-indent-4:not(.ql-direction-rtl){padding-left:8em}.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right{padding-right:8em}.ql-editor .ql-indent-5:not(.ql-direction-rtl){padding-left:10em}.ql-editor li.ql-indent-5:not(.ql-direction-rtl){padding-left:10em}.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right{padding-right:10em}.ql-editor .ql-indent-6:not(.ql-direction-rtl){padding-left:12em}.ql-editor li.ql-indent-6:not(.ql-direction-rtl){padding-left:12em}.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right{padding-right:12em}.ql-editor .ql-indent-7:not(.ql-direction-rtl){padding-left:14em}.ql-editor li.ql-indent-7:not(.ql-direction-rtl){padding-left:14em}.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right{padding-right:14em}.ql-editor .ql-indent-8:not(.ql-direction-rtl){padding-left:16em}.ql-editor li.ql-indent-8:not(.ql-direction-rtl){padding-left:16em}.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right{padding-right:16em}.ql-editor .ql-indent-9:not(.ql-direction-rtl){padding-left:18em}.ql-editor li.ql-indent-9:not(.ql-direction-rtl){padding-left:18em}.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right,.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right{padding-right:18em}.ql-editor .ql-direction-rtl{direction:rtl;text-align:inherit}.ql-editor .ql-align-center{text-align:center}.ql-editor .ql-align-justify{text-align:justify}.ql-editor .ql-align-right{text-align:right}.ql-editor.ql-blank:before{color:rgba(0,0,0,.6);content:attr(data-placeholder);font-style:italic;pointer-events:none;position:absolute}.ql-container.ql-disabled .ql-editor ul[data-checked]>li:before{pointer-events:none}.ql-clipboard{left:-100000px;height:1px;overflow-y:hidden;position:absolute;top:50%}uni-icon{display:inline-block;font-size:0;box-sizing:border-box}uni-icon[hidden]{display:none}uni-image{width:320px;height:240px;display:inline-block;overflow:hidden;position:relative}uni-image[hidden]{display:none}uni-image>div{width:100%;height:100%;background-repeat:no-repeat}uni-image>img{-webkit-touch-callout:none;-webkit-user-select:none;user-select:none;display:block;position:absolute;top:0;left:0;width:100%;height:100%;opacity:0}uni-image>.uni-image-will-change{will-change:transform}uni-input{display:block;font-size:16px;line-height:1.4em;height:1.4em;min-height:1.4em;overflow:hidden}uni-input[hidden]{display:none}.uni-input-wrapper,.uni-input-placeholder,.uni-input-form,.uni-input-input{outline:none;border:none;padding:0;margin:0;text-decoration:inherit}.uni-input-wrapper,.uni-input-form{display:flex;position:relative;width:100%;height:100%;flex-direction:column;justify-content:center}.uni-input-placeholder,.uni-input-input{width:100%}.uni-input-placeholder{position:absolute;top:auto!important;left:0;color:gray;overflow:hidden;text-overflow:clip;white-space:pre;word-break:keep-all;pointer-events:none;line-height:inherit}.uni-input-input{position:relative;display:block;height:100%;background:none;color:inherit;opacity:1;font:inherit;line-height:inherit;letter-spacing:inherit;text-align:inherit;text-indent:inherit;text-transform:inherit;text-shadow:inherit}.uni-input-input[type=search]::-webkit-search-cancel-button,.uni-input-input[type=search]::-webkit-search-decoration{display:none}.uni-input-input::-webkit-outer-spin-button,.uni-input-input::-webkit-inner-spin-button{-webkit-appearance:none;appearance:none;margin:0}.uni-input-input[type=number]{-moz-appearance:textfield}.uni-input-input:disabled{-webkit-text-fill-color:currentcolor}.uni-label-pointer{cursor:pointer}uni-live-pusher{width:320px;height:240px;display:inline-block;line-height:0;overflow:hidden;position:relative}uni-live-pusher[hidden]{display:none}.uni-live-pusher-container{width:100%;height:100%;position:absolute;top:0;left:0;overflow:hidden;background-color:#000}.uni-live-pusher-slot{position:absolute;top:0;width:100%;height:100%;overflow:hidden;pointer-events:none}uni-map{width:300px;height:225px;display:inline-block;line-height:0;overflow:hidden;position:relative}uni-map[hidden]{display:none}.uni-map-container{width:100%;height:100%;position:absolute;top:0;left:0;overflow:hidden;background-color:transparent}.uni-map-slot{position:absolute;top:0;width:100%;height:100%;overflow:hidden;pointer-events:none}uni-map.web{position:relative;width:300px;height:150px;display:block}uni-map.web[hidden]{display:none}uni-map.web .amap-marker-label{padding:0;border:none;background-color:transparent}uni-map.web .amap-marker>.amap-icon>img{left:0!important;top:0!important}uni-map.web .uni-map-control{position:absolute;width:0;height:0;top:0;left:0;z-index:999}uni-map.web .uni-map-control-icon{position:absolute;max-width:initial}.uni-system-choose-location{display:block;position:fixed;left:0;top:0;width:100%;height:100%;background:#f8f8f8;z-index:999}.uni-system-choose-location .map{position:absolute;top:0;left:0;width:100%;height:300px}.uni-system-choose-location .map-location{position:absolute;left:50%;bottom:50%;width:32px;height:52px;margin-left:-16px;cursor:pointer;background-size:100%}.uni-system-choose-location .map-move{position:absolute;bottom:50px;right:10px;width:40px;height:40px;box-sizing:border-box;line-height:40px;background-color:#fff;border-radius:50%;pointer-events:auto;cursor:pointer;box-shadow:0 0 5px 1px rgba(0,0,0,.3)}.uni-system-choose-location .map-move>svg{display:block;width:100%;height:100%;box-sizing:border-box;padding:8px}.uni-system-choose-location .nav{position:absolute;top:0;left:0;width:100%;height:calc(44px + var(--status-bar-height));background-color:transparent;background-image:linear-gradient(to bottom,rgba(0,0,0,.3),rgba(0,0,0,0))}.uni-system-choose-location .nav-btn{position:absolute;box-sizing:border-box;top:var(--status-bar-height);left:0;width:60px;height:44px;padding:6px;line-height:32px;font-size:26px;color:#fff;text-align:center;cursor:pointer}.uni-system-choose-location .nav-btn.confirm{left:auto;right:0}.uni-system-choose-location .nav-btn.disable{opacity:.4}.uni-system-choose-location .nav-btn>svg{display:block;width:100%;height:100%;border-radius:2px;box-sizing:border-box;padding:3px}.uni-system-choose-location .nav-btn.confirm>svg{background-color:#007aff;padding:5px}.uni-system-choose-location .menu{position:absolute;top:300px;left:0;width:100%;bottom:0;background-color:#fff}.uni-system-choose-location .search{display:flex;flex-direction:row;height:50px;padding:8px;line-height:34px;box-sizing:border-box;background-color:#fff}.uni-system-choose-location .search-input{flex:1;height:100%;border-radius:5px;padding:0 5px;background:#ebebeb}.uni-system-choose-location .search-btn{margin-left:5px;color:#007aff;font-size:17px;text-align:center}.uni-system-choose-location .list{position:absolute;top:50px;left:0;width:100%;bottom:0;padding-bottom:10px}.uni-system-choose-location .list-loading{display:flex;height:50px;justify-content:center;align-items:center}.uni-system-choose-location .list-item{position:relative;padding:10px 40px 10px 10px;cursor:pointer}.uni-system-choose-location .list-item>svg{display:none;position:absolute;top:50%;right:10px;width:30px;height:30px;margin-top:-15px;box-sizing:border-box;padding:5px}.uni-system-choose-location .list-item.selected>svg{display:block}.uni-system-choose-location .list-item:not(:last-child):after{position:absolute;content:"";height:1px;left:10px;bottom:0;width:100%;background-color:#d3d3d3}.uni-system-choose-location .list-item-title{font-size:14px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.uni-system-choose-location .list-item-detail{font-size:12px;color:gray;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}@media screen and (min-width: 800px){.uni-system-choose-location .map{top:0;height:100%}.uni-system-choose-location .map-move{bottom:10px;right:320px}.uni-system-choose-location .menu{top:calc(54px + var(--status-bar-height));left:auto;right:10px;width:300px;bottom:10px;max-height:600px;box-shadow:0 0 20px 5px rgba(0,0,0,.3)}}.uni-system-open-location{display:block;position:fixed;left:0;top:0;width:100%;height:100%;background:#f8f8f8;z-index:999}.uni-system-open-location .map{position:absolute;top:0;left:0;width:100%;bottom:80px;height:auto}.uni-system-open-location .info{position:absolute;bottom:0;left:0;width:100%;height:80px;background-color:#fff;padding:15px;box-sizing:border-box;line-height:1.5}.uni-system-open-location .info>.name{font-size:17px;color:#111}.uni-system-open-location .info>.address{font-size:14px;color:#666}.uni-system-open-location .info>.nav{position:absolute;top:50%;right:15px;width:50px;height:50px;border-radius:50%;margin-top:-25px;background-color:#007aff}.uni-system-open-location .info>.nav>svg{display:block;width:100%;height:100%;padding:10px;box-sizing:border-box}.uni-system-open-location .map-move{position:absolute;bottom:50px;right:10px;width:40px;height:40px;box-sizing:border-box;line-height:40px;background-color:#fff;border-radius:50%;pointer-events:auto;cursor:pointer;box-shadow:0 0 5px 1px rgba(0,0,0,.3)}.uni-system-open-location .map-move>svg{display:block;width:100%;height:100%;box-sizing:border-box;padding:8px}.uni-system-open-location .nav-btn-back{position:absolute;box-sizing:border-box;top:var(--status-bar-height);left:0;width:44px;height:44px;padding:6px;cursor:pointer}.uni-system-open-location .nav-btn-back>svg{display:block;width:100%;height:100%;border-radius:50%;background-color:rgba(0,0,0,.5);padding:3px;box-sizing:border-box}.uni-system-open-location .map-content{position:absolute;left:0;top:0;width:100%;bottom:0;overflow:hidden}.uni-system-open-location .map-content.fix-position{top:-74px;bottom:-44px}.uni-system-open-location .map-content>iframe{width:100%;height:100%;border:none}.uni-system-open-location .actTonav{position:absolute;right:16px;bottom:56px;width:60px;height:60px;border-radius:60px}.uni-system-open-location .nav-view{position:absolute;left:0;top:0;width:100%;height:100%;display:flex;flex-direction:column}.uni-system-open-location .nav-view-top-placeholder{width:100%;height:var(--status-bar-height);background-color:#fff}.uni-system-open-location .nav-view-frame{width:100%;flex:1}uni-movable-area{display:block;position:relative;width:10px;height:10px}uni-movable-area[hidden]{display:none}uni-movable-view{display:inline-block;width:10px;height:10px;top:0;left:0;position:absolute;cursor:grab}uni-movable-view[hidden]{display:none}uni-navigator{height:auto;width:auto;display:block;cursor:pointer}uni-navigator[hidden]{display:none}.navigator-hover{background-color:rgba(0,0,0,.1);opacity:.7}.navigator-wrap,.navigator-wrap:link,.navigator-wrap:visited,.navigator-wrap:hover,.navigator-wrap:active{text-decoration:none;color:inherit;cursor:pointer}uni-picker-view{display:block}.uni-picker-view-wrapper{display:flex;position:relative;overflow:hidden;height:100%}uni-picker-view[hidden]{display:none}uni-picker-view-column{flex:1;position:relative;height:100%;overflow:hidden}uni-picker-view-column[hidden]{display:none}.uni-picker-view-group{height:100%;overflow:hidden}.uni-picker-view-mask{transform:translateZ(0)}.uni-picker-view-indicator,.uni-picker-view-mask{position:absolute;left:0;width:100%;z-index:3;pointer-events:none}.uni-picker-view-mask{top:0;height:100%;margin:0 auto;background-image:linear-gradient(180deg,rgba(255,255,255,.95),rgba(255,255,255,.6)),linear-gradient(0deg,rgba(255,255,255,.95),rgba(255,255,255,.6));background-position:top,bottom;background-size:100% 102px;background-repeat:no-repeat;transform:translateZ(0)}.uni-picker-view-indicator{height:34px;top:50%;transform:translateY(-50%)}.uni-picker-view-content{position:absolute;top:0;left:0;width:100%;will-change:transform;padding:102px 0;cursor:pointer}.uni-picker-view-content>*{height:var(--picker-view-column-indicator-height);overflow:hidden}.uni-picker-view-indicator:before{top:0;border-top:1px solid #e5e5e5;transform-origin:0 0;transform:scaleY(.5)}.uni-picker-view-indicator:after{bottom:0;border-bottom:1px solid #e5e5e5;transform-origin:0 100%;transform:scaleY(.5)}.uni-picker-view-indicator:after,.uni-picker-view-indicator:before{content:" ";position:absolute;left:0;right:0;height:1px;color:#e5e5e5}@media (prefers-color-scheme: dark){.uni-picker-view-indicator:before{border-top-color:var(--UI-FG-3)}.uni-picker-view-indicator:after{border-bottom-color:var(--UI-FG-3)}.uni-picker-view-mask{background-image:linear-gradient(180deg,rgba(35,35,35,.95),rgba(35,35,35,.6)),linear-gradient(0deg,rgba(35,35,35,.95),rgba(35,35,35,.6))}}uni-progress{display:flex;align-items:center}uni-progress[hidden]{display:none}.uni-progress-bar{flex:1}.uni-progress-inner-bar{width:0;height:100%}.uni-progress-info{margin-top:0;margin-bottom:0;min-width:2em;margin-left:15px;font-size:16px}uni-radio{-webkit-tap-highlight-color:transparent;display:inline-block;cursor:pointer}uni-radio[hidden]{display:none}uni-radio[disabled]{cursor:not-allowed}.uni-radio-wrapper{display:inline-flex;align-items:center;vertical-align:middle}.uni-radio-input{-webkit-appearance:none;appearance:none;margin-right:5px;outline:0;border:1px solid #d1d1d1;background-color:#fff;border-radius:50%;width:22px;height:22px;position:relative}@media (hover: hover){uni-radio:not([disabled]) .uni-radio-input:hover{border-color:var(--HOVER-BD-COLOR, #007aff)!important}}.uni-radio-input svg{color:#fff;font-size:18px;position:absolute;top:50%;left:50%;transform:translate(-50%,-48%) scale(.73)}.uni-radio-input.uni-radio-input-disabled{background-color:#e1e1e1;border-color:#d1d1d1}.uni-radio-input.uni-radio-input-disabled svg{color:#adadad}uni-radio-group{display:block}uni-radio-group[hidden]{display:none}uni-scroll-view{display:block;width:100%}uni-scroll-view[hidden]{display:none}.uni-scroll-view{position:relative;-webkit-overflow-scrolling:touch;width:100%;height:100%;max-height:inherit}.uni-scroll-view-scrollbar-hidden::-webkit-scrollbar{display:none}.uni-scroll-view-scrollbar-hidden{-moz-scrollbars:none;scrollbar-width:none}.uni-scroll-view-content{width:100%;height:100%}.uni-scroll-view-refresher{position:relative;overflow:hidden;flex-shrink:0}.uni-scroll-view-refresher-container{position:absolute;width:100%;bottom:0;display:flex;flex-direction:column-reverse}.uni-scroll-view-refresh{position:absolute;top:0;left:0;right:0;bottom:0;display:flex;flex-direction:row;justify-content:center;align-items:center}.uni-scroll-view-refresh-inner{display:flex;align-items:center;justify-content:center;line-height:0;width:40px;height:40px;border-radius:50%;background-color:#fff;box-shadow:0 1px 6px rgba(0,0,0,.118),0 1px 4px rgba(0,0,0,.118)}.uni-scroll-view-refresh__spinner{transform-origin:center center;animation:uni-scroll-view-refresh-rotate 2s linear infinite}.uni-scroll-view-refresh__spinner>circle{stroke:currentColor;stroke-linecap:round;animation:uni-scroll-view-refresh-dash 2s linear infinite}@keyframes uni-scroll-view-refresh-rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes uni-scroll-view-refresh-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}to{stroke-dasharray:89,200;stroke-dashoffset:-124px}}uni-slider{margin:10px 18px;padding:0;display:block}uni-slider[hidden]{display:none}uni-slider .uni-slider-wrapper{display:flex;align-items:center;min-height:16px}uni-slider .uni-slider-tap-area{flex:1;padding:8px 0}uni-slider .uni-slider-handle-wrapper{position:relative;height:2px;border-radius:5px;background-color:#e9e9e9;cursor:pointer;transition:background-color .3s ease;-webkit-tap-highlight-color:transparent}uni-slider .uni-slider-track{height:100%;border-radius:6px;background-color:#007aff;transition:background-color .3s ease}uni-slider .uni-slider-handle,uni-slider .uni-slider-thumb{position:absolute;left:50%;top:50%;cursor:pointer;border-radius:50%;transition:border-color .3s ease}uni-slider .uni-slider-handle{width:28px;height:28px;margin-top:-14px;margin-left:-14px;background-color:transparent;z-index:3;cursor:grab}uni-slider .uni-slider-thumb{z-index:2;box-shadow:0 0 4px rgba(0,0,0,.2)}uni-slider .uni-slider-step{position:absolute;width:100%;height:2px;background:transparent;z-index:1}uni-slider .uni-slider-value{width:3ch;color:#888;font-size:14px;margin-left:1em}uni-slider .uni-slider-disabled .uni-slider-track{background-color:#ccc}uni-slider .uni-slider-disabled .uni-slider-thumb{background-color:#fff;border-color:#ccc}uni-swiper{display:block;height:150px}uni-swiper[hidden]{display:none}.uni-swiper-wrapper{overflow:hidden;position:relative;width:100%;height:100%;transform:translateZ(0)}.uni-swiper-slides{position:absolute;left:0;top:0;right:0;bottom:0}.uni-swiper-slide-frame{position:absolute;left:0;top:0;width:100%;height:100%;will-change:transform}.uni-swiper-dots{position:absolute;font-size:0}.uni-swiper-dots-horizontal{left:50%;bottom:10px;text-align:center;white-space:nowrap;transform:translate(-50%)}.uni-swiper-dots-horizontal .uni-swiper-dot{margin-right:8px}.uni-swiper-dots-horizontal .uni-swiper-dot:last-child{margin-right:0}.uni-swiper-dots-vertical{right:10px;top:50%;text-align:right;transform:translateY(-50%)}.uni-swiper-dots-vertical .uni-swiper-dot{display:block;margin-bottom:9px}.uni-swiper-dots-vertical .uni-swiper-dot:last-child{margin-bottom:0}.uni-swiper-dot{display:inline-block;width:8px;height:8px;cursor:pointer;transition-property:background-color;transition-timing-function:ease;background:rgba(0,0,0,.3);border-radius:50%}.uni-swiper-dot-active{background-color:#000}.uni-swiper-navigation{width:26px;height:26px;cursor:pointer;position:absolute;top:50%;margin-top:-13px;display:flex;align-items:center;transition:all .2s;border-radius:50%;opacity:1}.uni-swiper-navigation-disabled{opacity:.35;cursor:not-allowed}.uni-swiper-navigation-hide{opacity:0;cursor:auto;pointer-events:none}.uni-swiper-navigation-prev{left:10px}.uni-swiper-navigation-prev svg{margin-left:-1px;left:10px}.uni-swiper-navigation-prev.uni-swiper-navigation-vertical{top:18px;left:50%;margin-left:-13px}.uni-swiper-navigation-prev.uni-swiper-navigation-vertical svg{transform:rotate(90deg);margin-left:auto;margin-top:-2px}.uni-swiper-navigation-next{right:10px}.uni-swiper-navigation-next svg{transform:rotate(180deg)}.uni-swiper-navigation-next.uni-swiper-navigation-vertical{top:auto;bottom:5px;left:50%;margin-left:-13px}.uni-swiper-navigation-next.uni-swiper-navigation-vertical svg{margin-top:2px;transform:rotate(270deg)}uni-swiper-item{display:block;overflow:hidden;will-change:transform;position:absolute;width:100%;height:100%;cursor:grab}uni-swiper-item[hidden]{display:none}uni-switch{-webkit-tap-highlight-color:transparent;display:inline-block;cursor:pointer}uni-switch[hidden]{display:none}uni-switch[disabled]{cursor:not-allowed}uni-switch[disabled] .uni-switch-input{opacity:.7}.uni-switch-wrapper{display:inline-flex;align-items:center;vertical-align:middle}.uni-switch-input{-webkit-appearance:none;appearance:none;position:relative;width:52px;height:32px;margin-right:5px;border:1px solid #dfdfdf;outline:0;border-radius:16px;box-sizing:border-box;background-color:#dfdfdf;transition:background-color .1s,border .1s}.uni-switch-input:before{content:" ";position:absolute;top:0;left:0;width:50px;height:30px;border-radius:15px;background-color:#fdfdfd;transition:transform .3s}.uni-switch-input:after{content:" ";position:absolute;top:0;left:0;width:30px;height:30px;border-radius:15px;background-color:#fff;box-shadow:0 1px 3px rgba(0,0,0,.4);transition:transform .3s}.uni-switch-input.uni-switch-input-checked{border-color:#007aff;background-color:#007aff}.uni-switch-input.uni-switch-input-checked:before{transform:scale(0)}.uni-switch-input.uni-switch-input-checked:after{transform:translate(20px)}uni-switch .uni-checkbox-input{margin-right:5px;-webkit-appearance:none;appearance:none;outline:0;border:1px solid #d1d1d1;background-color:#fff;border-radius:3px;width:22px;height:22px;position:relative;color:#007aff}uni-switch:not([disabled]) .uni-checkbox-input:hover{border-color:#007aff}uni-switch .uni-checkbox-input svg{fill:#007aff;font-size:22px;position:absolute;top:50%;left:50%;transform:translate(-50%,-48%) scale(.73)}.uni-checkbox-input.uni-checkbox-input-disabled{background-color:#e1e1e1}.uni-checkbox-input.uni-checkbox-input-disabled:before{color:#adadad}@media (prefers-color-scheme: dark){uni-switch .uni-switch-input{border-color:#3b3b3f}uni-switch .uni-switch-input,uni-switch .uni-switch-input:before{background-color:#3b3b3f}uni-switch .uni-switch-input:after{background-color:#fff;box-shadow:0 1px 3px rgba(0,0,0,.4)}uni-switch .uni-checkbox-input{background-color:#2c2c2c;border:1px solid #656565}}uni-textarea{width:300px;height:150px;display:block;position:relative;font-size:16px;line-height:normal;white-space:pre-wrap;word-break:break-all}uni-textarea[hidden]{display:none}uni-textarea[auto-height=true]{height:-webkit-fit-content!important;height:fit-content!important}.uni-textarea-wrapper,.uni-textarea-placeholder,.uni-textarea-line,.uni-textarea-compute,.uni-textarea-textarea{outline:none;border:none;padding:0;margin:0;text-decoration:inherit}.uni-textarea-wrapper{display:block;position:relative;width:100%;height:100%;min-height:inherit;overflow-y:hidden}.uni-textarea-placeholder,.uni-textarea-line,.uni-textarea-compute,.uni-textarea-textarea{position:absolute;width:100%;height:100%;left:0;top:0;white-space:inherit;word-break:inherit}.uni-textarea-placeholder{color:gray;overflow:hidden}.uni-textarea-line,.uni-textarea-compute{visibility:hidden;height:auto}.uni-textarea-line{width:1em}.uni-textarea-textarea{resize:none;background:none;color:inherit;opacity:1;font:inherit;line-height:inherit;letter-spacing:inherit;text-align:inherit;text-indent:inherit;text-transform:inherit;text-shadow:inherit}.uni-textarea-textarea-fix-margin{width:auto;right:0;margin:0 -3px}.uni-textarea-textarea:disabled{-webkit-text-fill-color:currentcolor}uni-video{width:300px;height:225px;display:inline-block;line-height:0;overflow:hidden;position:relative}uni-video[hidden]{display:none}.uni-video-container{width:100%;height:100%;position:absolute;top:0;left:0;overflow:hidden;background-color:#000}.uni-video-slot{position:absolute;top:0;width:100%;height:100%;overflow:hidden;pointer-events:none}uni-web-view{display:inline-block;position:absolute;left:0;right:0;top:0;bottom:0} + +.u-relative,.u-rela{position:relative}.u-absolute,.u-abso{position:absolute}uni-image{display:inline-block}uni-view,uni-text{box-sizing:border-box}.u-font-xs{font-size:.6875rem}.u-font-sm{font-size:.8125rem}.u-font-md{font-size:.875rem}.u-font-lg{font-size:.9375rem}.u-font-xl{font-size:1.0625rem}.u-flex{display:flex;flex-direction:row;align-items:center}.u-flex-wrap{flex-wrap:wrap}.u-flex-nowrap{flex-wrap:nowrap}.u-col-center{align-items:center}.u-col-top{align-items:flex-start}.u-col-bottom{align-items:flex-end}.u-row-center{justify-content:center}.u-row-left{justify-content:flex-start}.u-row-right{justify-content:flex-end}.u-row-between{justify-content:space-between}.u-row-around{justify-content:space-around}.u-text-left{text-align:left}.u-text-center{text-align:center}.u-text-right{text-align:right}.u-flex-col{display:flex;flex-direction:column}.u-flex-0{flex:0}.u-flex-1{flex:1}.u-flex-2{flex:2}.u-flex-3{flex:3}.u-flex-4{flex:4}.u-flex-5{flex:5}.u-flex-6{flex:6}.u-flex-7{flex:7}.u-flex-8{flex:8}.u-flex-9{flex:9}.u-flex-10{flex:10}.u-flex-11{flex:11}.u-flex-12{flex:12}.u-font-9{font-size:9px}.u-font-10{font-size:10px}.u-font-11{font-size:11px}.u-font-12{font-size:12px}.u-font-13{font-size:13px}.u-font-14{font-size:14px}.u-font-15{font-size:15px}.u-font-16{font-size:16px}.u-font-17{font-size:17px}.u-font-18{font-size:18px}.u-font-19{font-size:19px}.u-font-20{font-size:.625rem}.u-font-21{font-size:.65625rem}.u-font-22{font-size:.6875rem}.u-font-23{font-size:.71875rem}.u-font-24{font-size:.75rem}.u-font-25{font-size:.78125rem}.u-font-26{font-size:.8125rem}.u-font-27{font-size:.84375rem}.u-font-28{font-size:.875rem}.u-font-29{font-size:.90625rem}.u-font-30{font-size:.9375rem}.u-font-31{font-size:.96875rem}.u-font-32{font-size:1rem}.u-font-33{font-size:1.03125rem}.u-font-34{font-size:1.0625rem}.u-font-35{font-size:1.09375rem}.u-font-36{font-size:1.125rem}.u-font-37{font-size:1.15625rem}.u-font-38{font-size:1.1875rem}.u-font-39{font-size:1.21875rem}.u-font-40{font-size:1.25rem}.u-margin-0,.u-m-0{margin:0!important}.u-padding-0,.u-p-0{padding:0!important}.u-m-l-0{margin-left:0!important}.u-p-l-0{padding-left:0!important}.u-margin-left-0{margin-left:0!important}.u-padding-left-0{padding-left:0!important}.u-m-t-0{margin-top:0!important}.u-p-t-0{padding-top:0!important}.u-margin-top-0{margin-top:0!important}.u-padding-top-0{padding-top:0!important}.u-m-r-0{margin-right:0!important}.u-p-r-0{padding-right:0!important}.u-margin-right-0{margin-right:0!important}.u-padding-right-0{padding-right:0!important}.u-m-b-0{margin-bottom:0!important}.u-p-b-0{padding-bottom:0!important}.u-margin-bottom-0{margin-bottom:0!important}.u-padding-bottom-0{padding-bottom:0!important}.u-margin-2,.u-m-2{margin:.0625rem!important}.u-padding-2,.u-p-2{padding:.0625rem!important}.u-m-l-2{margin-left:.0625rem!important}.u-p-l-2{padding-left:.0625rem!important}.u-margin-left-2{margin-left:.0625rem!important}.u-padding-left-2{padding-left:.0625rem!important}.u-m-t-2{margin-top:.0625rem!important}.u-p-t-2{padding-top:.0625rem!important}.u-margin-top-2{margin-top:.0625rem!important}.u-padding-top-2{padding-top:.0625rem!important}.u-m-r-2{margin-right:.0625rem!important}.u-p-r-2{padding-right:.0625rem!important}.u-margin-right-2{margin-right:.0625rem!important}.u-padding-right-2{padding-right:.0625rem!important}.u-m-b-2{margin-bottom:.0625rem!important}.u-p-b-2{padding-bottom:.0625rem!important}.u-margin-bottom-2{margin-bottom:.0625rem!important}.u-padding-bottom-2{padding-bottom:.0625rem!important}.u-margin-4,.u-m-4{margin:.125rem!important}.u-padding-4,.u-p-4{padding:.125rem!important}.u-m-l-4{margin-left:.125rem!important}.u-p-l-4{padding-left:.125rem!important}.u-margin-left-4{margin-left:.125rem!important}.u-padding-left-4{padding-left:.125rem!important}.u-m-t-4{margin-top:.125rem!important}.u-p-t-4{padding-top:.125rem!important}.u-margin-top-4{margin-top:.125rem!important}.u-padding-top-4{padding-top:.125rem!important}.u-m-r-4{margin-right:.125rem!important}.u-p-r-4{padding-right:.125rem!important}.u-margin-right-4{margin-right:.125rem!important}.u-padding-right-4{padding-right:.125rem!important}.u-m-b-4{margin-bottom:.125rem!important}.u-p-b-4{padding-bottom:.125rem!important}.u-margin-bottom-4{margin-bottom:.125rem!important}.u-padding-bottom-4{padding-bottom:.125rem!important}.u-margin-5,.u-m-5{margin:.15625rem!important}.u-padding-5,.u-p-5{padding:.15625rem!important}.u-m-l-5{margin-left:.15625rem!important}.u-p-l-5{padding-left:.15625rem!important}.u-margin-left-5{margin-left:.15625rem!important}.u-padding-left-5{padding-left:.15625rem!important}.u-m-t-5{margin-top:.15625rem!important}.u-p-t-5{padding-top:.15625rem!important}.u-margin-top-5{margin-top:.15625rem!important}.u-padding-top-5{padding-top:.15625rem!important}.u-m-r-5{margin-right:.15625rem!important}.u-p-r-5{padding-right:.15625rem!important}.u-margin-right-5{margin-right:.15625rem!important}.u-padding-right-5{padding-right:.15625rem!important}.u-m-b-5{margin-bottom:.15625rem!important}.u-p-b-5{padding-bottom:.15625rem!important}.u-margin-bottom-5{margin-bottom:.15625rem!important}.u-padding-bottom-5{padding-bottom:.15625rem!important}.u-margin-6,.u-m-6{margin:.1875rem!important}.u-padding-6,.u-p-6{padding:.1875rem!important}.u-m-l-6{margin-left:.1875rem!important}.u-p-l-6{padding-left:.1875rem!important}.u-margin-left-6{margin-left:.1875rem!important}.u-padding-left-6{padding-left:.1875rem!important}.u-m-t-6{margin-top:.1875rem!important}.u-p-t-6{padding-top:.1875rem!important}.u-margin-top-6{margin-top:.1875rem!important}.u-padding-top-6{padding-top:.1875rem!important}.u-m-r-6{margin-right:.1875rem!important}.u-p-r-6{padding-right:.1875rem!important}.u-margin-right-6{margin-right:.1875rem!important}.u-padding-right-6{padding-right:.1875rem!important}.u-m-b-6{margin-bottom:.1875rem!important}.u-p-b-6{padding-bottom:.1875rem!important}.u-margin-bottom-6{margin-bottom:.1875rem!important}.u-padding-bottom-6{padding-bottom:.1875rem!important}.u-margin-8,.u-m-8{margin:.25rem!important}.u-padding-8,.u-p-8{padding:.25rem!important}.u-m-l-8{margin-left:.25rem!important}.u-p-l-8{padding-left:.25rem!important}.u-margin-left-8{margin-left:.25rem!important}.u-padding-left-8{padding-left:.25rem!important}.u-m-t-8{margin-top:.25rem!important}.u-p-t-8{padding-top:.25rem!important}.u-margin-top-8{margin-top:.25rem!important}.u-padding-top-8{padding-top:.25rem!important}.u-m-r-8{margin-right:.25rem!important}.u-p-r-8{padding-right:.25rem!important}.u-margin-right-8{margin-right:.25rem!important}.u-padding-right-8{padding-right:.25rem!important}.u-m-b-8{margin-bottom:.25rem!important}.u-p-b-8{padding-bottom:.25rem!important}.u-margin-bottom-8{margin-bottom:.25rem!important}.u-padding-bottom-8{padding-bottom:.25rem!important}.u-margin-10,.u-m-10{margin:.3125rem!important}.u-padding-10,.u-p-10{padding:.3125rem!important}.u-m-l-10{margin-left:.3125rem!important}.u-p-l-10{padding-left:.3125rem!important}.u-margin-left-10{margin-left:.3125rem!important}.u-padding-left-10{padding-left:.3125rem!important}.u-m-t-10{margin-top:.3125rem!important}.u-p-t-10{padding-top:.3125rem!important}.u-margin-top-10{margin-top:.3125rem!important}.u-padding-top-10{padding-top:.3125rem!important}.u-m-r-10{margin-right:.3125rem!important}.u-p-r-10{padding-right:.3125rem!important}.u-margin-right-10{margin-right:.3125rem!important}.u-padding-right-10{padding-right:.3125rem!important}.u-m-b-10{margin-bottom:.3125rem!important}.u-p-b-10{padding-bottom:.3125rem!important}.u-margin-bottom-10{margin-bottom:.3125rem!important}.u-padding-bottom-10{padding-bottom:.3125rem!important}.u-margin-12,.u-m-12{margin:.375rem!important}.u-padding-12,.u-p-12{padding:.375rem!important}.u-m-l-12{margin-left:.375rem!important}.u-p-l-12{padding-left:.375rem!important}.u-margin-left-12{margin-left:.375rem!important}.u-padding-left-12{padding-left:.375rem!important}.u-m-t-12{margin-top:.375rem!important}.u-p-t-12{padding-top:.375rem!important}.u-margin-top-12{margin-top:.375rem!important}.u-padding-top-12{padding-top:.375rem!important}.u-m-r-12{margin-right:.375rem!important}.u-p-r-12{padding-right:.375rem!important}.u-margin-right-12{margin-right:.375rem!important}.u-padding-right-12{padding-right:.375rem!important}.u-m-b-12{margin-bottom:.375rem!important}.u-p-b-12{padding-bottom:.375rem!important}.u-margin-bottom-12{margin-bottom:.375rem!important}.u-padding-bottom-12{padding-bottom:.375rem!important}.u-margin-14,.u-m-14{margin:.4375rem!important}.u-padding-14,.u-p-14{padding:.4375rem!important}.u-m-l-14{margin-left:.4375rem!important}.u-p-l-14{padding-left:.4375rem!important}.u-margin-left-14{margin-left:.4375rem!important}.u-padding-left-14{padding-left:.4375rem!important}.u-m-t-14{margin-top:.4375rem!important}.u-p-t-14{padding-top:.4375rem!important}.u-margin-top-14{margin-top:.4375rem!important}.u-padding-top-14{padding-top:.4375rem!important}.u-m-r-14{margin-right:.4375rem!important}.u-p-r-14{padding-right:.4375rem!important}.u-margin-right-14{margin-right:.4375rem!important}.u-padding-right-14{padding-right:.4375rem!important}.u-m-b-14{margin-bottom:.4375rem!important}.u-p-b-14{padding-bottom:.4375rem!important}.u-margin-bottom-14{margin-bottom:.4375rem!important}.u-padding-bottom-14{padding-bottom:.4375rem!important}.u-margin-15,.u-m-15{margin:.46875rem!important}.u-padding-15,.u-p-15{padding:.46875rem!important}.u-m-l-15{margin-left:.46875rem!important}.u-p-l-15{padding-left:.46875rem!important}.u-margin-left-15{margin-left:.46875rem!important}.u-padding-left-15{padding-left:.46875rem!important}.u-m-t-15{margin-top:.46875rem!important}.u-p-t-15{padding-top:.46875rem!important}.u-margin-top-15{margin-top:.46875rem!important}.u-padding-top-15{padding-top:.46875rem!important}.u-m-r-15{margin-right:.46875rem!important}.u-p-r-15{padding-right:.46875rem!important}.u-margin-right-15{margin-right:.46875rem!important}.u-padding-right-15{padding-right:.46875rem!important}.u-m-b-15{margin-bottom:.46875rem!important}.u-p-b-15{padding-bottom:.46875rem!important}.u-margin-bottom-15{margin-bottom:.46875rem!important}.u-padding-bottom-15{padding-bottom:.46875rem!important}.u-margin-16,.u-m-16{margin:.5rem!important}.u-padding-16,.u-p-16{padding:.5rem!important}.u-m-l-16{margin-left:.5rem!important}.u-p-l-16{padding-left:.5rem!important}.u-margin-left-16{margin-left:.5rem!important}.u-padding-left-16{padding-left:.5rem!important}.u-m-t-16{margin-top:.5rem!important}.u-p-t-16{padding-top:.5rem!important}.u-margin-top-16{margin-top:.5rem!important}.u-padding-top-16{padding-top:.5rem!important}.u-m-r-16{margin-right:.5rem!important}.u-p-r-16{padding-right:.5rem!important}.u-margin-right-16{margin-right:.5rem!important}.u-padding-right-16{padding-right:.5rem!important}.u-m-b-16{margin-bottom:.5rem!important}.u-p-b-16{padding-bottom:.5rem!important}.u-margin-bottom-16{margin-bottom:.5rem!important}.u-padding-bottom-16{padding-bottom:.5rem!important}.u-margin-18,.u-m-18{margin:.5625rem!important}.u-padding-18,.u-p-18{padding:.5625rem!important}.u-m-l-18{margin-left:.5625rem!important}.u-p-l-18{padding-left:.5625rem!important}.u-margin-left-18{margin-left:.5625rem!important}.u-padding-left-18{padding-left:.5625rem!important}.u-m-t-18{margin-top:.5625rem!important}.u-p-t-18{padding-top:.5625rem!important}.u-margin-top-18{margin-top:.5625rem!important}.u-padding-top-18{padding-top:.5625rem!important}.u-m-r-18{margin-right:.5625rem!important}.u-p-r-18{padding-right:.5625rem!important}.u-margin-right-18{margin-right:.5625rem!important}.u-padding-right-18{padding-right:.5625rem!important}.u-m-b-18{margin-bottom:.5625rem!important}.u-p-b-18{padding-bottom:.5625rem!important}.u-margin-bottom-18{margin-bottom:.5625rem!important}.u-padding-bottom-18{padding-bottom:.5625rem!important}.u-margin-20,.u-m-20{margin:.625rem!important}.u-padding-20,.u-p-20{padding:.625rem!important}.u-m-l-20{margin-left:.625rem!important}.u-p-l-20{padding-left:.625rem!important}.u-margin-left-20{margin-left:.625rem!important}.u-padding-left-20{padding-left:.625rem!important}.u-m-t-20{margin-top:.625rem!important}.u-p-t-20{padding-top:.625rem!important}.u-margin-top-20{margin-top:.625rem!important}.u-padding-top-20{padding-top:.625rem!important}.u-m-r-20{margin-right:.625rem!important}.u-p-r-20{padding-right:.625rem!important}.u-margin-right-20{margin-right:.625rem!important}.u-padding-right-20{padding-right:.625rem!important}.u-m-b-20{margin-bottom:.625rem!important}.u-p-b-20{padding-bottom:.625rem!important}.u-margin-bottom-20{margin-bottom:.625rem!important}.u-padding-bottom-20{padding-bottom:.625rem!important}.u-margin-22,.u-m-22{margin:.6875rem!important}.u-padding-22,.u-p-22{padding:.6875rem!important}.u-m-l-22{margin-left:.6875rem!important}.u-p-l-22{padding-left:.6875rem!important}.u-margin-left-22{margin-left:.6875rem!important}.u-padding-left-22{padding-left:.6875rem!important}.u-m-t-22{margin-top:.6875rem!important}.u-p-t-22{padding-top:.6875rem!important}.u-margin-top-22{margin-top:.6875rem!important}.u-padding-top-22{padding-top:.6875rem!important}.u-m-r-22{margin-right:.6875rem!important}.u-p-r-22{padding-right:.6875rem!important}.u-margin-right-22{margin-right:.6875rem!important}.u-padding-right-22{padding-right:.6875rem!important}.u-m-b-22{margin-bottom:.6875rem!important}.u-p-b-22{padding-bottom:.6875rem!important}.u-margin-bottom-22{margin-bottom:.6875rem!important}.u-padding-bottom-22{padding-bottom:.6875rem!important}.u-margin-24,.u-m-24{margin:.75rem!important}.u-padding-24,.u-p-24{padding:.75rem!important}.u-m-l-24{margin-left:.75rem!important}.u-p-l-24{padding-left:.75rem!important}.u-margin-left-24{margin-left:.75rem!important}.u-padding-left-24{padding-left:.75rem!important}.u-m-t-24{margin-top:.75rem!important}.u-p-t-24{padding-top:.75rem!important}.u-margin-top-24{margin-top:.75rem!important}.u-padding-top-24{padding-top:.75rem!important}.u-m-r-24{margin-right:.75rem!important}.u-p-r-24{padding-right:.75rem!important}.u-margin-right-24{margin-right:.75rem!important}.u-padding-right-24{padding-right:.75rem!important}.u-m-b-24{margin-bottom:.75rem!important}.u-p-b-24{padding-bottom:.75rem!important}.u-margin-bottom-24{margin-bottom:.75rem!important}.u-padding-bottom-24{padding-bottom:.75rem!important}.u-margin-25,.u-m-25{margin:.78125rem!important}.u-padding-25,.u-p-25{padding:.78125rem!important}.u-m-l-25{margin-left:.78125rem!important}.u-p-l-25{padding-left:.78125rem!important}.u-margin-left-25{margin-left:.78125rem!important}.u-padding-left-25{padding-left:.78125rem!important}.u-m-t-25{margin-top:.78125rem!important}.u-p-t-25{padding-top:.78125rem!important}.u-margin-top-25{margin-top:.78125rem!important}.u-padding-top-25{padding-top:.78125rem!important}.u-m-r-25{margin-right:.78125rem!important}.u-p-r-25{padding-right:.78125rem!important}.u-margin-right-25{margin-right:.78125rem!important}.u-padding-right-25{padding-right:.78125rem!important}.u-m-b-25{margin-bottom:.78125rem!important}.u-p-b-25{padding-bottom:.78125rem!important}.u-margin-bottom-25{margin-bottom:.78125rem!important}.u-padding-bottom-25{padding-bottom:.78125rem!important}.u-margin-26,.u-m-26{margin:.8125rem!important}.u-padding-26,.u-p-26{padding:.8125rem!important}.u-m-l-26{margin-left:.8125rem!important}.u-p-l-26{padding-left:.8125rem!important}.u-margin-left-26{margin-left:.8125rem!important}.u-padding-left-26{padding-left:.8125rem!important}.u-m-t-26{margin-top:.8125rem!important}.u-p-t-26{padding-top:.8125rem!important}.u-margin-top-26{margin-top:.8125rem!important}.u-padding-top-26{padding-top:.8125rem!important}.u-m-r-26{margin-right:.8125rem!important}.u-p-r-26{padding-right:.8125rem!important}.u-margin-right-26{margin-right:.8125rem!important}.u-padding-right-26{padding-right:.8125rem!important}.u-m-b-26{margin-bottom:.8125rem!important}.u-p-b-26{padding-bottom:.8125rem!important}.u-margin-bottom-26{margin-bottom:.8125rem!important}.u-padding-bottom-26{padding-bottom:.8125rem!important}.u-margin-28,.u-m-28{margin:.875rem!important}.u-padding-28,.u-p-28{padding:.875rem!important}.u-m-l-28{margin-left:.875rem!important}.u-p-l-28{padding-left:.875rem!important}.u-margin-left-28{margin-left:.875rem!important}.u-padding-left-28{padding-left:.875rem!important}.u-m-t-28{margin-top:.875rem!important}.u-p-t-28{padding-top:.875rem!important}.u-margin-top-28{margin-top:.875rem!important}.u-padding-top-28{padding-top:.875rem!important}.u-m-r-28{margin-right:.875rem!important}.u-p-r-28{padding-right:.875rem!important}.u-margin-right-28{margin-right:.875rem!important}.u-padding-right-28{padding-right:.875rem!important}.u-m-b-28{margin-bottom:.875rem!important}.u-p-b-28{padding-bottom:.875rem!important}.u-margin-bottom-28{margin-bottom:.875rem!important}.u-padding-bottom-28{padding-bottom:.875rem!important}.u-margin-30,.u-m-30{margin:.9375rem!important}.u-padding-30,.u-p-30{padding:.9375rem!important}.u-m-l-30{margin-left:.9375rem!important}.u-p-l-30{padding-left:.9375rem!important}.u-margin-left-30{margin-left:.9375rem!important}.u-padding-left-30{padding-left:.9375rem!important}.u-m-t-30{margin-top:.9375rem!important}.u-p-t-30{padding-top:.9375rem!important}.u-margin-top-30{margin-top:.9375rem!important}.u-padding-top-30{padding-top:.9375rem!important}.u-m-r-30{margin-right:.9375rem!important}.u-p-r-30{padding-right:.9375rem!important}.u-margin-right-30{margin-right:.9375rem!important}.u-padding-right-30{padding-right:.9375rem!important}.u-m-b-30{margin-bottom:.9375rem!important}.u-p-b-30{padding-bottom:.9375rem!important}.u-margin-bottom-30{margin-bottom:.9375rem!important}.u-padding-bottom-30{padding-bottom:.9375rem!important}.u-margin-32,.u-m-32{margin:1rem!important}.u-padding-32,.u-p-32{padding:1rem!important}.u-m-l-32{margin-left:1rem!important}.u-p-l-32{padding-left:1rem!important}.u-margin-left-32{margin-left:1rem!important}.u-padding-left-32{padding-left:1rem!important}.u-m-t-32{margin-top:1rem!important}.u-p-t-32{padding-top:1rem!important}.u-margin-top-32{margin-top:1rem!important}.u-padding-top-32{padding-top:1rem!important}.u-m-r-32{margin-right:1rem!important}.u-p-r-32{padding-right:1rem!important}.u-margin-right-32{margin-right:1rem!important}.u-padding-right-32{padding-right:1rem!important}.u-m-b-32{margin-bottom:1rem!important}.u-p-b-32{padding-bottom:1rem!important}.u-margin-bottom-32{margin-bottom:1rem!important}.u-padding-bottom-32{padding-bottom:1rem!important}.u-margin-34,.u-m-34{margin:1.0625rem!important}.u-padding-34,.u-p-34{padding:1.0625rem!important}.u-m-l-34{margin-left:1.0625rem!important}.u-p-l-34{padding-left:1.0625rem!important}.u-margin-left-34{margin-left:1.0625rem!important}.u-padding-left-34{padding-left:1.0625rem!important}.u-m-t-34{margin-top:1.0625rem!important}.u-p-t-34{padding-top:1.0625rem!important}.u-margin-top-34{margin-top:1.0625rem!important}.u-padding-top-34{padding-top:1.0625rem!important}.u-m-r-34{margin-right:1.0625rem!important}.u-p-r-34{padding-right:1.0625rem!important}.u-margin-right-34{margin-right:1.0625rem!important}.u-padding-right-34{padding-right:1.0625rem!important}.u-m-b-34{margin-bottom:1.0625rem!important}.u-p-b-34{padding-bottom:1.0625rem!important}.u-margin-bottom-34{margin-bottom:1.0625rem!important}.u-padding-bottom-34{padding-bottom:1.0625rem!important}.u-margin-35,.u-m-35{margin:1.09375rem!important}.u-padding-35,.u-p-35{padding:1.09375rem!important}.u-m-l-35{margin-left:1.09375rem!important}.u-p-l-35{padding-left:1.09375rem!important}.u-margin-left-35{margin-left:1.09375rem!important}.u-padding-left-35{padding-left:1.09375rem!important}.u-m-t-35{margin-top:1.09375rem!important}.u-p-t-35{padding-top:1.09375rem!important}.u-margin-top-35{margin-top:1.09375rem!important}.u-padding-top-35{padding-top:1.09375rem!important}.u-m-r-35{margin-right:1.09375rem!important}.u-p-r-35{padding-right:1.09375rem!important}.u-margin-right-35{margin-right:1.09375rem!important}.u-padding-right-35{padding-right:1.09375rem!important}.u-m-b-35{margin-bottom:1.09375rem!important}.u-p-b-35{padding-bottom:1.09375rem!important}.u-margin-bottom-35{margin-bottom:1.09375rem!important}.u-padding-bottom-35{padding-bottom:1.09375rem!important}.u-margin-36,.u-m-36{margin:1.125rem!important}.u-padding-36,.u-p-36{padding:1.125rem!important}.u-m-l-36{margin-left:1.125rem!important}.u-p-l-36{padding-left:1.125rem!important}.u-margin-left-36{margin-left:1.125rem!important}.u-padding-left-36{padding-left:1.125rem!important}.u-m-t-36{margin-top:1.125rem!important}.u-p-t-36{padding-top:1.125rem!important}.u-margin-top-36{margin-top:1.125rem!important}.u-padding-top-36{padding-top:1.125rem!important}.u-m-r-36{margin-right:1.125rem!important}.u-p-r-36{padding-right:1.125rem!important}.u-margin-right-36{margin-right:1.125rem!important}.u-padding-right-36{padding-right:1.125rem!important}.u-m-b-36{margin-bottom:1.125rem!important}.u-p-b-36{padding-bottom:1.125rem!important}.u-margin-bottom-36{margin-bottom:1.125rem!important}.u-padding-bottom-36{padding-bottom:1.125rem!important}.u-margin-38,.u-m-38{margin:1.1875rem!important}.u-padding-38,.u-p-38{padding:1.1875rem!important}.u-m-l-38{margin-left:1.1875rem!important}.u-p-l-38{padding-left:1.1875rem!important}.u-margin-left-38{margin-left:1.1875rem!important}.u-padding-left-38{padding-left:1.1875rem!important}.u-m-t-38{margin-top:1.1875rem!important}.u-p-t-38{padding-top:1.1875rem!important}.u-margin-top-38{margin-top:1.1875rem!important}.u-padding-top-38{padding-top:1.1875rem!important}.u-m-r-38{margin-right:1.1875rem!important}.u-p-r-38{padding-right:1.1875rem!important}.u-margin-right-38{margin-right:1.1875rem!important}.u-padding-right-38{padding-right:1.1875rem!important}.u-m-b-38{margin-bottom:1.1875rem!important}.u-p-b-38{padding-bottom:1.1875rem!important}.u-margin-bottom-38{margin-bottom:1.1875rem!important}.u-padding-bottom-38{padding-bottom:1.1875rem!important}.u-margin-40,.u-m-40{margin:1.25rem!important}.u-padding-40,.u-p-40{padding:1.25rem!important}.u-m-l-40{margin-left:1.25rem!important}.u-p-l-40{padding-left:1.25rem!important}.u-margin-left-40{margin-left:1.25rem!important}.u-padding-left-40{padding-left:1.25rem!important}.u-m-t-40{margin-top:1.25rem!important}.u-p-t-40{padding-top:1.25rem!important}.u-margin-top-40{margin-top:1.25rem!important}.u-padding-top-40{padding-top:1.25rem!important}.u-m-r-40{margin-right:1.25rem!important}.u-p-r-40{padding-right:1.25rem!important}.u-margin-right-40{margin-right:1.25rem!important}.u-padding-right-40{padding-right:1.25rem!important}.u-m-b-40{margin-bottom:1.25rem!important}.u-p-b-40{padding-bottom:1.25rem!important}.u-margin-bottom-40{margin-bottom:1.25rem!important}.u-padding-bottom-40{padding-bottom:1.25rem!important}.u-margin-42,.u-m-42{margin:1.3125rem!important}.u-padding-42,.u-p-42{padding:1.3125rem!important}.u-m-l-42{margin-left:1.3125rem!important}.u-p-l-42{padding-left:1.3125rem!important}.u-margin-left-42{margin-left:1.3125rem!important}.u-padding-left-42{padding-left:1.3125rem!important}.u-m-t-42{margin-top:1.3125rem!important}.u-p-t-42{padding-top:1.3125rem!important}.u-margin-top-42{margin-top:1.3125rem!important}.u-padding-top-42{padding-top:1.3125rem!important}.u-m-r-42{margin-right:1.3125rem!important}.u-p-r-42{padding-right:1.3125rem!important}.u-margin-right-42{margin-right:1.3125rem!important}.u-padding-right-42{padding-right:1.3125rem!important}.u-m-b-42{margin-bottom:1.3125rem!important}.u-p-b-42{padding-bottom:1.3125rem!important}.u-margin-bottom-42{margin-bottom:1.3125rem!important}.u-padding-bottom-42{padding-bottom:1.3125rem!important}.u-margin-44,.u-m-44{margin:1.375rem!important}.u-padding-44,.u-p-44{padding:1.375rem!important}.u-m-l-44{margin-left:1.375rem!important}.u-p-l-44{padding-left:1.375rem!important}.u-margin-left-44{margin-left:1.375rem!important}.u-padding-left-44{padding-left:1.375rem!important}.u-m-t-44{margin-top:1.375rem!important}.u-p-t-44{padding-top:1.375rem!important}.u-margin-top-44{margin-top:1.375rem!important}.u-padding-top-44{padding-top:1.375rem!important}.u-m-r-44{margin-right:1.375rem!important}.u-p-r-44{padding-right:1.375rem!important}.u-margin-right-44{margin-right:1.375rem!important}.u-padding-right-44{padding-right:1.375rem!important}.u-m-b-44{margin-bottom:1.375rem!important}.u-p-b-44{padding-bottom:1.375rem!important}.u-margin-bottom-44{margin-bottom:1.375rem!important}.u-padding-bottom-44{padding-bottom:1.375rem!important}.u-margin-45,.u-m-45{margin:1.40625rem!important}.u-padding-45,.u-p-45{padding:1.40625rem!important}.u-m-l-45{margin-left:1.40625rem!important}.u-p-l-45{padding-left:1.40625rem!important}.u-margin-left-45{margin-left:1.40625rem!important}.u-padding-left-45{padding-left:1.40625rem!important}.u-m-t-45{margin-top:1.40625rem!important}.u-p-t-45{padding-top:1.40625rem!important}.u-margin-top-45{margin-top:1.40625rem!important}.u-padding-top-45{padding-top:1.40625rem!important}.u-m-r-45{margin-right:1.40625rem!important}.u-p-r-45{padding-right:1.40625rem!important}.u-margin-right-45{margin-right:1.40625rem!important}.u-padding-right-45{padding-right:1.40625rem!important}.u-m-b-45{margin-bottom:1.40625rem!important}.u-p-b-45{padding-bottom:1.40625rem!important}.u-margin-bottom-45{margin-bottom:1.40625rem!important}.u-padding-bottom-45{padding-bottom:1.40625rem!important}.u-margin-46,.u-m-46{margin:1.4375rem!important}.u-padding-46,.u-p-46{padding:1.4375rem!important}.u-m-l-46{margin-left:1.4375rem!important}.u-p-l-46{padding-left:1.4375rem!important}.u-margin-left-46{margin-left:1.4375rem!important}.u-padding-left-46{padding-left:1.4375rem!important}.u-m-t-46{margin-top:1.4375rem!important}.u-p-t-46{padding-top:1.4375rem!important}.u-margin-top-46{margin-top:1.4375rem!important}.u-padding-top-46{padding-top:1.4375rem!important}.u-m-r-46{margin-right:1.4375rem!important}.u-p-r-46{padding-right:1.4375rem!important}.u-margin-right-46{margin-right:1.4375rem!important}.u-padding-right-46{padding-right:1.4375rem!important}.u-m-b-46{margin-bottom:1.4375rem!important}.u-p-b-46{padding-bottom:1.4375rem!important}.u-margin-bottom-46{margin-bottom:1.4375rem!important}.u-padding-bottom-46{padding-bottom:1.4375rem!important}.u-margin-48,.u-m-48{margin:1.5rem!important}.u-padding-48,.u-p-48{padding:1.5rem!important}.u-m-l-48{margin-left:1.5rem!important}.u-p-l-48{padding-left:1.5rem!important}.u-margin-left-48{margin-left:1.5rem!important}.u-padding-left-48{padding-left:1.5rem!important}.u-m-t-48{margin-top:1.5rem!important}.u-p-t-48{padding-top:1.5rem!important}.u-margin-top-48{margin-top:1.5rem!important}.u-padding-top-48{padding-top:1.5rem!important}.u-m-r-48{margin-right:1.5rem!important}.u-p-r-48{padding-right:1.5rem!important}.u-margin-right-48{margin-right:1.5rem!important}.u-padding-right-48{padding-right:1.5rem!important}.u-m-b-48{margin-bottom:1.5rem!important}.u-p-b-48{padding-bottom:1.5rem!important}.u-margin-bottom-48{margin-bottom:1.5rem!important}.u-padding-bottom-48{padding-bottom:1.5rem!important}.u-margin-50,.u-m-50{margin:1.5625rem!important}.u-padding-50,.u-p-50{padding:1.5625rem!important}.u-m-l-50{margin-left:1.5625rem!important}.u-p-l-50{padding-left:1.5625rem!important}.u-margin-left-50{margin-left:1.5625rem!important}.u-padding-left-50{padding-left:1.5625rem!important}.u-m-t-50{margin-top:1.5625rem!important}.u-p-t-50{padding-top:1.5625rem!important}.u-margin-top-50{margin-top:1.5625rem!important}.u-padding-top-50{padding-top:1.5625rem!important}.u-m-r-50{margin-right:1.5625rem!important}.u-p-r-50{padding-right:1.5625rem!important}.u-margin-right-50{margin-right:1.5625rem!important}.u-padding-right-50{padding-right:1.5625rem!important}.u-m-b-50{margin-bottom:1.5625rem!important}.u-p-b-50{padding-bottom:1.5625rem!important}.u-margin-bottom-50{margin-bottom:1.5625rem!important}.u-padding-bottom-50{padding-bottom:1.5625rem!important}.u-margin-52,.u-m-52{margin:1.625rem!important}.u-padding-52,.u-p-52{padding:1.625rem!important}.u-m-l-52{margin-left:1.625rem!important}.u-p-l-52{padding-left:1.625rem!important}.u-margin-left-52{margin-left:1.625rem!important}.u-padding-left-52{padding-left:1.625rem!important}.u-m-t-52{margin-top:1.625rem!important}.u-p-t-52{padding-top:1.625rem!important}.u-margin-top-52{margin-top:1.625rem!important}.u-padding-top-52{padding-top:1.625rem!important}.u-m-r-52{margin-right:1.625rem!important}.u-p-r-52{padding-right:1.625rem!important}.u-margin-right-52{margin-right:1.625rem!important}.u-padding-right-52{padding-right:1.625rem!important}.u-m-b-52{margin-bottom:1.625rem!important}.u-p-b-52{padding-bottom:1.625rem!important}.u-margin-bottom-52{margin-bottom:1.625rem!important}.u-padding-bottom-52{padding-bottom:1.625rem!important}.u-margin-54,.u-m-54{margin:1.6875rem!important}.u-padding-54,.u-p-54{padding:1.6875rem!important}.u-m-l-54{margin-left:1.6875rem!important}.u-p-l-54{padding-left:1.6875rem!important}.u-margin-left-54{margin-left:1.6875rem!important}.u-padding-left-54{padding-left:1.6875rem!important}.u-m-t-54{margin-top:1.6875rem!important}.u-p-t-54{padding-top:1.6875rem!important}.u-margin-top-54{margin-top:1.6875rem!important}.u-padding-top-54{padding-top:1.6875rem!important}.u-m-r-54{margin-right:1.6875rem!important}.u-p-r-54{padding-right:1.6875rem!important}.u-margin-right-54{margin-right:1.6875rem!important}.u-padding-right-54{padding-right:1.6875rem!important}.u-m-b-54{margin-bottom:1.6875rem!important}.u-p-b-54{padding-bottom:1.6875rem!important}.u-margin-bottom-54{margin-bottom:1.6875rem!important}.u-padding-bottom-54{padding-bottom:1.6875rem!important}.u-margin-55,.u-m-55{margin:1.71875rem!important}.u-padding-55,.u-p-55{padding:1.71875rem!important}.u-m-l-55{margin-left:1.71875rem!important}.u-p-l-55{padding-left:1.71875rem!important}.u-margin-left-55{margin-left:1.71875rem!important}.u-padding-left-55{padding-left:1.71875rem!important}.u-m-t-55{margin-top:1.71875rem!important}.u-p-t-55{padding-top:1.71875rem!important}.u-margin-top-55{margin-top:1.71875rem!important}.u-padding-top-55{padding-top:1.71875rem!important}.u-m-r-55{margin-right:1.71875rem!important}.u-p-r-55{padding-right:1.71875rem!important}.u-margin-right-55{margin-right:1.71875rem!important}.u-padding-right-55{padding-right:1.71875rem!important}.u-m-b-55{margin-bottom:1.71875rem!important}.u-p-b-55{padding-bottom:1.71875rem!important}.u-margin-bottom-55{margin-bottom:1.71875rem!important}.u-padding-bottom-55{padding-bottom:1.71875rem!important}.u-margin-56,.u-m-56{margin:1.75rem!important}.u-padding-56,.u-p-56{padding:1.75rem!important}.u-m-l-56{margin-left:1.75rem!important}.u-p-l-56{padding-left:1.75rem!important}.u-margin-left-56{margin-left:1.75rem!important}.u-padding-left-56{padding-left:1.75rem!important}.u-m-t-56{margin-top:1.75rem!important}.u-p-t-56{padding-top:1.75rem!important}.u-margin-top-56{margin-top:1.75rem!important}.u-padding-top-56{padding-top:1.75rem!important}.u-m-r-56{margin-right:1.75rem!important}.u-p-r-56{padding-right:1.75rem!important}.u-margin-right-56{margin-right:1.75rem!important}.u-padding-right-56{padding-right:1.75rem!important}.u-m-b-56{margin-bottom:1.75rem!important}.u-p-b-56{padding-bottom:1.75rem!important}.u-margin-bottom-56{margin-bottom:1.75rem!important}.u-padding-bottom-56{padding-bottom:1.75rem!important}.u-margin-58,.u-m-58{margin:1.8125rem!important}.u-padding-58,.u-p-58{padding:1.8125rem!important}.u-m-l-58{margin-left:1.8125rem!important}.u-p-l-58{padding-left:1.8125rem!important}.u-margin-left-58{margin-left:1.8125rem!important}.u-padding-left-58{padding-left:1.8125rem!important}.u-m-t-58{margin-top:1.8125rem!important}.u-p-t-58{padding-top:1.8125rem!important}.u-margin-top-58{margin-top:1.8125rem!important}.u-padding-top-58{padding-top:1.8125rem!important}.u-m-r-58{margin-right:1.8125rem!important}.u-p-r-58{padding-right:1.8125rem!important}.u-margin-right-58{margin-right:1.8125rem!important}.u-padding-right-58{padding-right:1.8125rem!important}.u-m-b-58{margin-bottom:1.8125rem!important}.u-p-b-58{padding-bottom:1.8125rem!important}.u-margin-bottom-58{margin-bottom:1.8125rem!important}.u-padding-bottom-58{padding-bottom:1.8125rem!important}.u-margin-60,.u-m-60{margin:1.875rem!important}.u-padding-60,.u-p-60{padding:1.875rem!important}.u-m-l-60{margin-left:1.875rem!important}.u-p-l-60{padding-left:1.875rem!important}.u-margin-left-60{margin-left:1.875rem!important}.u-padding-left-60{padding-left:1.875rem!important}.u-m-t-60{margin-top:1.875rem!important}.u-p-t-60{padding-top:1.875rem!important}.u-margin-top-60{margin-top:1.875rem!important}.u-padding-top-60{padding-top:1.875rem!important}.u-m-r-60{margin-right:1.875rem!important}.u-p-r-60{padding-right:1.875rem!important}.u-margin-right-60{margin-right:1.875rem!important}.u-padding-right-60{padding-right:1.875rem!important}.u-m-b-60{margin-bottom:1.875rem!important}.u-p-b-60{padding-bottom:1.875rem!important}.u-margin-bottom-60{margin-bottom:1.875rem!important}.u-padding-bottom-60{padding-bottom:1.875rem!important}.u-margin-62,.u-m-62{margin:1.9375rem!important}.u-padding-62,.u-p-62{padding:1.9375rem!important}.u-m-l-62{margin-left:1.9375rem!important}.u-p-l-62{padding-left:1.9375rem!important}.u-margin-left-62{margin-left:1.9375rem!important}.u-padding-left-62{padding-left:1.9375rem!important}.u-m-t-62{margin-top:1.9375rem!important}.u-p-t-62{padding-top:1.9375rem!important}.u-margin-top-62{margin-top:1.9375rem!important}.u-padding-top-62{padding-top:1.9375rem!important}.u-m-r-62{margin-right:1.9375rem!important}.u-p-r-62{padding-right:1.9375rem!important}.u-margin-right-62{margin-right:1.9375rem!important}.u-padding-right-62{padding-right:1.9375rem!important}.u-m-b-62{margin-bottom:1.9375rem!important}.u-p-b-62{padding-bottom:1.9375rem!important}.u-margin-bottom-62{margin-bottom:1.9375rem!important}.u-padding-bottom-62{padding-bottom:1.9375rem!important}.u-margin-64,.u-m-64{margin:2rem!important}.u-padding-64,.u-p-64{padding:2rem!important}.u-m-l-64{margin-left:2rem!important}.u-p-l-64{padding-left:2rem!important}.u-margin-left-64{margin-left:2rem!important}.u-padding-left-64{padding-left:2rem!important}.u-m-t-64{margin-top:2rem!important}.u-p-t-64{padding-top:2rem!important}.u-margin-top-64{margin-top:2rem!important}.u-padding-top-64{padding-top:2rem!important}.u-m-r-64{margin-right:2rem!important}.u-p-r-64{padding-right:2rem!important}.u-margin-right-64{margin-right:2rem!important}.u-padding-right-64{padding-right:2rem!important}.u-m-b-64{margin-bottom:2rem!important}.u-p-b-64{padding-bottom:2rem!important}.u-margin-bottom-64{margin-bottom:2rem!important}.u-padding-bottom-64{padding-bottom:2rem!important}.u-margin-65,.u-m-65{margin:2.03125rem!important}.u-padding-65,.u-p-65{padding:2.03125rem!important}.u-m-l-65{margin-left:2.03125rem!important}.u-p-l-65{padding-left:2.03125rem!important}.u-margin-left-65{margin-left:2.03125rem!important}.u-padding-left-65{padding-left:2.03125rem!important}.u-m-t-65{margin-top:2.03125rem!important}.u-p-t-65{padding-top:2.03125rem!important}.u-margin-top-65{margin-top:2.03125rem!important}.u-padding-top-65{padding-top:2.03125rem!important}.u-m-r-65{margin-right:2.03125rem!important}.u-p-r-65{padding-right:2.03125rem!important}.u-margin-right-65{margin-right:2.03125rem!important}.u-padding-right-65{padding-right:2.03125rem!important}.u-m-b-65{margin-bottom:2.03125rem!important}.u-p-b-65{padding-bottom:2.03125rem!important}.u-margin-bottom-65{margin-bottom:2.03125rem!important}.u-padding-bottom-65{padding-bottom:2.03125rem!important}.u-margin-66,.u-m-66{margin:2.0625rem!important}.u-padding-66,.u-p-66{padding:2.0625rem!important}.u-m-l-66{margin-left:2.0625rem!important}.u-p-l-66{padding-left:2.0625rem!important}.u-margin-left-66{margin-left:2.0625rem!important}.u-padding-left-66{padding-left:2.0625rem!important}.u-m-t-66{margin-top:2.0625rem!important}.u-p-t-66{padding-top:2.0625rem!important}.u-margin-top-66{margin-top:2.0625rem!important}.u-padding-top-66{padding-top:2.0625rem!important}.u-m-r-66{margin-right:2.0625rem!important}.u-p-r-66{padding-right:2.0625rem!important}.u-margin-right-66{margin-right:2.0625rem!important}.u-padding-right-66{padding-right:2.0625rem!important}.u-m-b-66{margin-bottom:2.0625rem!important}.u-p-b-66{padding-bottom:2.0625rem!important}.u-margin-bottom-66{margin-bottom:2.0625rem!important}.u-padding-bottom-66{padding-bottom:2.0625rem!important}.u-margin-68,.u-m-68{margin:2.125rem!important}.u-padding-68,.u-p-68{padding:2.125rem!important}.u-m-l-68{margin-left:2.125rem!important}.u-p-l-68{padding-left:2.125rem!important}.u-margin-left-68{margin-left:2.125rem!important}.u-padding-left-68{padding-left:2.125rem!important}.u-m-t-68{margin-top:2.125rem!important}.u-p-t-68{padding-top:2.125rem!important}.u-margin-top-68{margin-top:2.125rem!important}.u-padding-top-68{padding-top:2.125rem!important}.u-m-r-68{margin-right:2.125rem!important}.u-p-r-68{padding-right:2.125rem!important}.u-margin-right-68{margin-right:2.125rem!important}.u-padding-right-68{padding-right:2.125rem!important}.u-m-b-68{margin-bottom:2.125rem!important}.u-p-b-68{padding-bottom:2.125rem!important}.u-margin-bottom-68{margin-bottom:2.125rem!important}.u-padding-bottom-68{padding-bottom:2.125rem!important}.u-margin-70,.u-m-70{margin:2.1875rem!important}.u-padding-70,.u-p-70{padding:2.1875rem!important}.u-m-l-70{margin-left:2.1875rem!important}.u-p-l-70{padding-left:2.1875rem!important}.u-margin-left-70{margin-left:2.1875rem!important}.u-padding-left-70{padding-left:2.1875rem!important}.u-m-t-70{margin-top:2.1875rem!important}.u-p-t-70{padding-top:2.1875rem!important}.u-margin-top-70{margin-top:2.1875rem!important}.u-padding-top-70{padding-top:2.1875rem!important}.u-m-r-70{margin-right:2.1875rem!important}.u-p-r-70{padding-right:2.1875rem!important}.u-margin-right-70{margin-right:2.1875rem!important}.u-padding-right-70{padding-right:2.1875rem!important}.u-m-b-70{margin-bottom:2.1875rem!important}.u-p-b-70{padding-bottom:2.1875rem!important}.u-margin-bottom-70{margin-bottom:2.1875rem!important}.u-padding-bottom-70{padding-bottom:2.1875rem!important}.u-margin-72,.u-m-72{margin:2.25rem!important}.u-padding-72,.u-p-72{padding:2.25rem!important}.u-m-l-72{margin-left:2.25rem!important}.u-p-l-72{padding-left:2.25rem!important}.u-margin-left-72{margin-left:2.25rem!important}.u-padding-left-72{padding-left:2.25rem!important}.u-m-t-72{margin-top:2.25rem!important}.u-p-t-72{padding-top:2.25rem!important}.u-margin-top-72{margin-top:2.25rem!important}.u-padding-top-72{padding-top:2.25rem!important}.u-m-r-72{margin-right:2.25rem!important}.u-p-r-72{padding-right:2.25rem!important}.u-margin-right-72{margin-right:2.25rem!important}.u-padding-right-72{padding-right:2.25rem!important}.u-m-b-72{margin-bottom:2.25rem!important}.u-p-b-72{padding-bottom:2.25rem!important}.u-margin-bottom-72{margin-bottom:2.25rem!important}.u-padding-bottom-72{padding-bottom:2.25rem!important}.u-margin-74,.u-m-74{margin:2.3125rem!important}.u-padding-74,.u-p-74{padding:2.3125rem!important}.u-m-l-74{margin-left:2.3125rem!important}.u-p-l-74{padding-left:2.3125rem!important}.u-margin-left-74{margin-left:2.3125rem!important}.u-padding-left-74{padding-left:2.3125rem!important}.u-m-t-74{margin-top:2.3125rem!important}.u-p-t-74{padding-top:2.3125rem!important}.u-margin-top-74{margin-top:2.3125rem!important}.u-padding-top-74{padding-top:2.3125rem!important}.u-m-r-74{margin-right:2.3125rem!important}.u-p-r-74{padding-right:2.3125rem!important}.u-margin-right-74{margin-right:2.3125rem!important}.u-padding-right-74{padding-right:2.3125rem!important}.u-m-b-74{margin-bottom:2.3125rem!important}.u-p-b-74{padding-bottom:2.3125rem!important}.u-margin-bottom-74{margin-bottom:2.3125rem!important}.u-padding-bottom-74{padding-bottom:2.3125rem!important}.u-margin-75,.u-m-75{margin:2.34375rem!important}.u-padding-75,.u-p-75{padding:2.34375rem!important}.u-m-l-75{margin-left:2.34375rem!important}.u-p-l-75{padding-left:2.34375rem!important}.u-margin-left-75{margin-left:2.34375rem!important}.u-padding-left-75{padding-left:2.34375rem!important}.u-m-t-75{margin-top:2.34375rem!important}.u-p-t-75{padding-top:2.34375rem!important}.u-margin-top-75{margin-top:2.34375rem!important}.u-padding-top-75{padding-top:2.34375rem!important}.u-m-r-75{margin-right:2.34375rem!important}.u-p-r-75{padding-right:2.34375rem!important}.u-margin-right-75{margin-right:2.34375rem!important}.u-padding-right-75{padding-right:2.34375rem!important}.u-m-b-75{margin-bottom:2.34375rem!important}.u-p-b-75{padding-bottom:2.34375rem!important}.u-margin-bottom-75{margin-bottom:2.34375rem!important}.u-padding-bottom-75{padding-bottom:2.34375rem!important}.u-margin-76,.u-m-76{margin:2.375rem!important}.u-padding-76,.u-p-76{padding:2.375rem!important}.u-m-l-76{margin-left:2.375rem!important}.u-p-l-76{padding-left:2.375rem!important}.u-margin-left-76{margin-left:2.375rem!important}.u-padding-left-76{padding-left:2.375rem!important}.u-m-t-76{margin-top:2.375rem!important}.u-p-t-76{padding-top:2.375rem!important}.u-margin-top-76{margin-top:2.375rem!important}.u-padding-top-76{padding-top:2.375rem!important}.u-m-r-76{margin-right:2.375rem!important}.u-p-r-76{padding-right:2.375rem!important}.u-margin-right-76{margin-right:2.375rem!important}.u-padding-right-76{padding-right:2.375rem!important}.u-m-b-76{margin-bottom:2.375rem!important}.u-p-b-76{padding-bottom:2.375rem!important}.u-margin-bottom-76{margin-bottom:2.375rem!important}.u-padding-bottom-76{padding-bottom:2.375rem!important}.u-margin-78,.u-m-78{margin:2.4375rem!important}.u-padding-78,.u-p-78{padding:2.4375rem!important}.u-m-l-78{margin-left:2.4375rem!important}.u-p-l-78{padding-left:2.4375rem!important}.u-margin-left-78{margin-left:2.4375rem!important}.u-padding-left-78{padding-left:2.4375rem!important}.u-m-t-78{margin-top:2.4375rem!important}.u-p-t-78{padding-top:2.4375rem!important}.u-margin-top-78{margin-top:2.4375rem!important}.u-padding-top-78{padding-top:2.4375rem!important}.u-m-r-78{margin-right:2.4375rem!important}.u-p-r-78{padding-right:2.4375rem!important}.u-margin-right-78{margin-right:2.4375rem!important}.u-padding-right-78{padding-right:2.4375rem!important}.u-m-b-78{margin-bottom:2.4375rem!important}.u-p-b-78{padding-bottom:2.4375rem!important}.u-margin-bottom-78{margin-bottom:2.4375rem!important}.u-padding-bottom-78{padding-bottom:2.4375rem!important}.u-margin-80,.u-m-80{margin:2.5rem!important}.u-padding-80,.u-p-80{padding:2.5rem!important}.u-m-l-80{margin-left:2.5rem!important}.u-p-l-80{padding-left:2.5rem!important}.u-margin-left-80{margin-left:2.5rem!important}.u-padding-left-80{padding-left:2.5rem!important}.u-m-t-80{margin-top:2.5rem!important}.u-p-t-80{padding-top:2.5rem!important}.u-margin-top-80{margin-top:2.5rem!important}.u-padding-top-80{padding-top:2.5rem!important}.u-m-r-80{margin-right:2.5rem!important}.u-p-r-80{padding-right:2.5rem!important}.u-margin-right-80{margin-right:2.5rem!important}.u-padding-right-80{padding-right:2.5rem!important}.u-m-b-80{margin-bottom:2.5rem!important}.u-p-b-80{padding-bottom:2.5rem!important}.u-margin-bottom-80{margin-bottom:2.5rem!important}.u-padding-bottom-80{padding-bottom:2.5rem!important}.u-reset-nvue{flex-direction:row;align-items:center}.u-type-primary-light{color:#ecf5ff}.u-type-warning-light{color:#fdf6ec}.u-type-success-light{color:#dbf1e1}.u-type-error-light{color:#fef0f0}.u-type-info-light{color:#f4f4f5}.u-type-primary-light-bg{background-color:#ecf5ff}.u-type-warning-light-bg{background-color:#fdf6ec}.u-type-success-light-bg{background-color:#dbf1e1}.u-type-error-light-bg{background-color:#fef0f0}.u-type-info-light-bg{background-color:#f4f4f5}.u-type-primary-dark{color:#2b85e4}.u-type-warning-dark{color:#f29100}.u-type-success-dark{color:#18b566}.u-type-error-dark{color:#dd6161}.u-type-info-dark{color:#82848a}.u-type-primary-dark-bg{background-color:#2b85e4}.u-type-warning-dark-bg{background-color:#f29100}.u-type-success-dark-bg{background-color:#18b566}.u-type-error-dark-bg{background-color:#dd6161}.u-type-info-dark-bg{background-color:#82848a}.u-type-primary-disabled{color:#a0cfff}.u-type-warning-disabled{color:#fcbd71}.u-type-success-disabled{color:#71d5a1}.u-type-error-disabled{color:#fab6b6}.u-type-info-disabled{color:#c8c9cc}.u-type-primary{color:#2979ff}.u-type-warning{color:#f90}.u-type-success{color:#19be6b}.u-type-error{color:#fa3534}.u-type-info{color:#909399}.u-type-primary-bg{background-color:#2979ff}.u-type-warning-bg{background-color:#f90}.u-type-success-bg{background-color:#19be6b}.u-type-error-bg{background-color:#fa3534}.u-type-info-bg{background-color:#909399}.u-main-color{color:#303133}.u-content-color{color:#606266}.u-tips-color{color:#909399}.u-light-color{color:#c0c4cc}body{color:#303133;font-size:.875rem}.u-fix-ios-appearance{-webkit-appearance:none}.u-icon-wrap{display:flex;align-items:center}.safe-area-inset-bottom{padding-bottom:0;padding-bottom:constant(safe-area-inset-bottom);padding-bottom:env(safe-area-inset-bottom)}.u-hover-class{opacity:.6}.u-cell-hover{background-color:#f7f8f9!important}.u-line-1{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.u-line-2{-webkit-line-clamp:2}.u-line-3{-webkit-line-clamp:3}.u-line-4{-webkit-line-clamp:4}.u-line-5{-webkit-line-clamp:5}.u-line-2,.u-line-3,.u-line-4,.u-line-5{overflow:hidden;word-break:break-all;text-overflow:ellipsis;display:-webkit-box!important;-webkit-box-orient:vertical}.u-border,.u-border-bottom,.u-border-left,.u-border-right,.u-border-top,.u-border-top-bottom{position:relative}.u-border-bottom:after,.u-border-left:after,.u-border-right:after,.u-border-top-bottom:after,.u-border-top:after,.u-border:after{content:" ";position:absolute;left:0;top:0;pointer-events:none;box-sizing:border-box;transform-origin:0 0;width:199.8%;height:199.7%;transform:scale(.5);border:0 solid #e4e7ed;z-index:2}.u-border-top:after{border-top-width:1px}.u-border-left:after{border-left-width:1px}.u-border-right:after{border-right-width:1px}.u-border-bottom:after{border-bottom-width:1px}.u-border-top-bottom:after{border-width:1px 0}.u-border:after{border-width:1px}.u-clearfix:after,.clearfix:after{content:"";display:table;clear:both}.u-blur-effect-inset{width:23.4375rem;height:var(--window-bottom);background-color:#fff}.u-reset-button{padding:0;font-size:inherit;line-height:inherit;background-color:transparent;color:inherit}.u-reset-button:after{border:none}.move-circle[data-v-4057d511]{position:absolute;bottom:0;left:0;width:15.625rem;display:flex;flex-wrap:wrap;z-index:99;touch-action:none}.click-box[data-v-4057d511],.click-box-target[data-v-4057d511]{width:4.6875rem;height:4.28125rem;display:flex;justify-content:center;align-items:center;font-size:.875rem;transition:transform .18s ease,box-shadow .18s ease,background .25s ease;-webkit-tap-highlight-color:transparent;margin-bottom:.3125rem}.click-box[data-v-4057d511]{color:#888d99}.click-box-target[data-v-4057d511]{color:transparent;animation:scalePulse-4057d511 .36s cubic-bezier(.2,.8,.2,1);transform-origin:center center}@keyframes scalePulse-4057d511{0%{transform:scale(1)}25%{transform:scale(.94)}65%{transform:scale(1.08)}to{transform:scale(1)}}.grad-text[data-v-4057d511]{background-image:linear-gradient(90deg,#5b8bb3,#87a1bd);background-size:200% 100%;background-position:0% 50%;-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;transition:background-position .8s linear}.click-box-target .grad-text[data-v-4057d511]{background-position:100% 50%}.image-photo[data-v-4057d511]{width:25%;height:25%;transition:transform .18s ease,filter .18s ease}.click-box-target .image-photo[data-v-4057d511]{transform:none;transition:transform .18s ease,filter .18s ease;filter:none} diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/assets/green.20d5f80a.png b/app/src/main/assets/apps/__UNI__FB2D473/www/assets/green.20d5f80a.png new file mode 100644 index 0000000..59ec437 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/assets/green.20d5f80a.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/assets/pink.78f243a3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/assets/pink.78f243a3.png new file mode 100644 index 0000000..734d04e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/assets/pink.78f243a3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/assets/red.8267d3cf.png b/app/src/main/assets/apps/__UNI__FB2D473/www/assets/red.8267d3cf.png new file mode 100644 index 0000000..cd8780c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/assets/red.8267d3cf.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/assets/yellow.4438648c.png b/app/src/main/assets/apps/__UNI__FB2D473/www/assets/yellow.4438648c.png new file mode 100644 index 0000000..8643e19 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/assets/yellow.4438648c.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/manifest.json b/app/src/main/assets/apps/__UNI__FB2D473/www/manifest.json new file mode 100644 index 0000000..c0a93cc --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/manifest.json @@ -0,0 +1 @@ +{"@platforms":["android","iPhone","iPad"],"id":"__UNI__FB2D473","name":"护理单元","version":{"name":"1.6.1","code":161},"description":"护理单元","developer":{"name":"","email":"","url":""},"permissions":{"Share":{},"Camera":{},"VideoPlayer":{},"UniNView":{"description":"UniNView原生渲染"}},"plus":{"useragent":{"value":"uni-app","concatenate":true},"splashscreen":{"target":"id:1","autoclose":true,"waiting":true,"delay":0},"popGesture":"close","launchwebview":{"render":"always","id":"1","kernel":"WKWebview"},"usingComponents":true,"nvueStyleCompiler":"uni-app","compilerVersion":3,"nativePlugins":{"MonitorModule":{"__plugin_info__":{"name":"MonitorModule","description":"bugly升级","platforms":"Android","url":"","android_package_name":"","ios_bundle_id":"","isCloud":false,"bought":-1,"pid":"","parameters":{}}}},"statusbar":{"immersed":"supportedDevice","style":"dark","background":"#F8F8F8"},"uniStatistics":{"enable":false},"allowsInlineMediaPlayback":true,"uni-app":{"control":"uni-v3","vueVersion":"3","compilerVersion":"4.76","nvueCompiler":"uni-app","renderer":"auto","nvue":{"flex-direction":"column"},"nvueLaunchMode":"normal","webView":{"minUserAgentVersion":"49.0"}}},"app-harmony":{"useragent":{"value":"uni-app","concatenate":true},"uniStatistics":{"enable":false}},"screenOrientation":["landscape-primary","landscape-secondary"],"launch_path":"__uniappview.html"} \ No newline at end of file diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/pages/Initialization/index.css b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/Initialization/index.css new file mode 100644 index 0000000..15b61e7 --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/Initialization/index.css @@ -0,0 +1 @@ +.index-content-other[data-v-01c2b33c]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-down[data-v-01c2b33c]{width:calc(100% - 1.875rem);height:3.125rem;display:flex;justify-content:flex-end;align-items:center}.index-content-right[data-v-01c2b33c]{height:calc(100% - .9375rem);width:100%;display:flex;flex-direction:column;position:relative}.big-ball[data-v-01c2b33c]{width:6.25rem;height:6.25rem;position:absolute;top:50%;left:-1.71875rem;transform:translateY(-50%);border-radius:50%;background-color:#dbe4f6}.big-ball .ball[data-v-01c2b33c]{width:4.6875rem;height:4.6875rem;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);border-radius:50%;background-color:#cfddf1}.tab[data-v-01c2b33c]{width:6.25rem;height:3.75rem;font-size:1rem;display:flex;justify-content:center;align-items:center;position:relative}.tab .tab-heng[data-v-01c2b33c]{position:absolute;left:50%;bottom:1.09375rem;transform:translate(-50%);width:1.5625rem;height:.375rem;border-radius:.3125rem;background-color:#00b4ff}.scroll-box[data-v-01c2b33c]{display:flex;flex-wrap:wrap}.scroll-box .card[data-v-01c2b33c]{margin-right:.9375rem;margin-bottom:.9375rem;border:.0625rem solid #fff;background-image:url(../../static/index/mountain.png);background-color:rgba(255,255,255,.6);background-position:60% 50%;width:32.65625rem;height:20.3125rem;border-radius:1.5625rem 1.25rem 1.5625rem 1.5625rem;display:flex}.scroll-box .card .card-left[data-v-01c2b33c]{height:100%;width:68%;position:relative}.scroll-box .card .card-left .card-left-title[data-v-01c2b33c]{height:23%;width:100%;padding:0 .625rem;display:flex;justify-content:space-between;align-items:center}.scroll-box .card .card-left .card-left-title .left-view[data-v-01c2b33c]{display:flex;margin-top:.625rem;position:relative;width:100%}.scroll-box .card .card-left .card-left-title .left-view .left-view-img[data-v-01c2b33c]{width:2.65625rem;height:2.65625rem}.scroll-box .card .card-right[data-v-01c2b33c]{height:100%;width:32%;background-color:rgba(244,235,249,.3);border-top-right-radius:1.1875rem;border-bottom-right-radius:1.1875rem;position:relative}.top-font-line[data-v-01c2b33c]{display:flex;align-items:center;font-size:.71875rem}.top-font-line .line-weight[data-v-01c2b33c]{font-size:1.09375rem;font-weight:600;margin-left:.625rem}.top-font-line .line-margin[data-v-01c2b33c]{margin-left:.625rem;margin-right:.625rem}.top-font-line .font-gray[data-v-01c2b33c]{margin-left:.625rem;font-size:.875rem;color:#555}.blue-button[data-v-01c2b33c]{position:absolute;right:.625rem;top:-.09375rem;width:4.0625rem;height:1.5625rem;color:#fff;font-size:.78125rem;background:linear-gradient(to bottom,#00c9ff,#0076ff);border-radius:.46875rem;display:flex;justify-content:center;align-items:center;margin:.625rem .3125rem 0 0}.font-gray-right[data-v-01c2b33c]{margin-top:.3125rem;font-size:.78125rem;color:#858585;margin-right:.25rem}.right-spec[data-v-01c2b33c]{margin-top:2.125rem;font-weight:600;margin-right:.3125rem;width:4.6875rem}.video-img[data-v-01c2b33c]{margin-left:3.4375rem;width:17.8125rem;height:12.5rem;border-radius:.9375rem}.video-bottom[data-v-01c2b33c]{width:100%;overflow:hidden;height:2.65625rem;display:flex;align-items:center;padding-left:3.4375rem;color:#858585;font-size:.75rem;position:relative}.video-bottom .font-bottom-weight[data-v-01c2b33c]{font-size:.875rem;font-weight:600;color:#000}.video-bottom .bottom-shu[data-v-01c2b33c]{margin:0 .46875rem}.bottom-balls[data-v-01c2b33c]{position:absolute;bottom:3.75rem;left:38%;transform:translate(-35%);z-index:999;display:flex}.bottom-balls .one-ball-father[data-v-01c2b33c]{width:3.75rem;height:1.5625rem;display:flex;justify-content:center;align-items:center;border:.0625rem solid #fff;margin:0 .15625rem;color:#fff;font-size:.78125rem;border-radius:.3125rem}.right-balls[data-v-01c2b33c]{position:absolute;left:.78125rem;top:4.375rem;padding-top:.3125rem;z-index:999}.right-balls .blue-ball[data-v-01c2b33c]{width:1.09375rem;height:1.09375rem}.right-balls .blue-ball-father[data-v-01c2b33c]{width:2.1875rem;height:2.1875rem;display:flex;justify-content:center;align-items:center;background-color:#dbe8f9;border-radius:.78125rem;margin-right:.625rem;margin-bottom:.5625rem;position:relative;overflow:hidden}.right-balls .blue-ball-father-target[data-v-01c2b33c]{width:2.1875rem;height:2.1875rem;display:flex;justify-content:center;align-items:center;background-color:#dbe8f9;border-radius:.78125rem;margin-right:.625rem;margin-bottom:.5625rem;position:relative;overflow:auto}.right-title[data-v-01c2b33c]{position:absolute;right:-1.5625rem;top:.3125rem;width:7.8125rem;height:3.75rem;z-index:1}.right-other[data-v-01c2b33c]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);display:flex;align-items:center;justify-content:center;border-top-left-radius:.9375rem;border-bottom-left-radius:.9375rem;width:4.6875rem;height:1.875rem}.right-other .other-class[data-v-01c2b33c]{width:1.09375rem;height:1.09375rem;margin-right:.15625rem;margin-left:.15625rem}.right-other .other-font[data-v-01c2b33c]{color:#fff}.time[data-v-01c2b33c]{display:flex;margin-top:3.75rem;align-items:center;justify-content:center}.time .time-left[data-v-01c2b33c]{background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent;font-size:1.40625rem;font-weight:600}.time-img[data-v-01c2b33c]{width:7.5rem;height:5.625rem;margin-bottom:.46875rem}.time-weight[data-v-01c2b33c]{font-weight:600;font-size:1rem;margin-top:.78125rem}.time-small[data-v-01c2b33c]{padding:.3125rem .9375rem;font-size:.625rem;color:#666}.time-people-two[data-v-01c2b33c]{display:flex;margin-left:.625rem;align-items:center;margin-bottom:.15625rem}.time-people-two .time-people-img[data-v-01c2b33c]{width:1.25rem;height:1.25rem;margin-right:.3125rem;margin-left:.15625rem}.time-people-two .time-people-font[data-v-01c2b33c]{font-size:.84375rem}.right-time[data-v-01c2b33c]{position:absolute;top:40%;right:0;transform:translateY(-40%)}.right-time .right-laba[data-v-01c2b33c]{width:1.875rem;height:1.875rem;margin-right:.15625rem;border-top-left-radius:.9375rem;border-bottom-left-radius:.9375rem;background-color:#fff;display:flex;justify-content:center;align-items:center;margin-bottom:.3125rem}.fail-img[data-v-01c2b33c]{width:7.8125rem;height:7.8125rem}.fail-img-spec[data-v-01c2b33c]{width:12.5rem;height:10.9375rem;margin-left:-2.1875rem}.fail-text[data-v-01c2b33c]{margin-top:.46875rem;color:#333}.fail-text-spec[data-v-01c2b33c]{margin-top:-3.125rem;color:#333}.kufang-img[data-v-01c2b33c]{width:1.34375rem;height:1.34375rem}.tab-heng[data-v-01c2b33c]{position:absolute;left:50%;bottom:-.46875rem;transform:translate(-50%);width:1.25rem;height:.3125rem;border-radius:.3125rem}.right-title-father[data-v-01c2b33c]{position:absolute;right:.625rem;height:100%;top:0;display:flex;align-items:center}.split-line-white-sec[data-v-01c2b33c]{position:absolute;left:0;top:50%;transform:translateY(-50%);width:.0625rem;height:18.75rem;z-index:999;background:linear-gradient(to top,rgba(0,0,0,0),#fff,rgba(0,0,0,0))}.topright-ball[data-v-01c2b33c]{position:absolute;top:5.3125rem;right:1.5625rem;width:2.34375rem;height:2.34375rem;border-radius:50%;background-color:rgba(255,255,255,.3);z-index:999;display:flex;justify-content:center;align-items:center}.topright-ball .ball-righttop[data-v-01c2b33c]{width:1.40625rem;height:1.40625rem;margin-top:-.3125rem}.small-button[data-v-01c2b33c]{width:70%;height:2.1875rem;display:flex;justify-content:space-between}.small-button .gray-ball[data-v-01c2b33c]{display:flex;justify-content:center;align-items:center;background-color:#d8e1f2;width:1.875rem;height:1.875rem;border-radius:50%}.laba-img[data-v-01c2b33c]{width:.9375rem;height:.9375rem}.time-right[data-v-01c2b33c]{position:absolute;right:.3125rem;top:.15625rem;width:2.8125rem;height:1.09375rem;display:flex;justify-content:center;align-items:center;background-color:#ffd5ac;color:#ff5834;border:.0625rem solid #FF5834;margin-left:.15625rem;border-radius:.3125rem;font-size:.625rem}.neuro-wrapper[data-v-9117e9d1]{position:fixed;top:0;right:0;bottom:0;left:0;display:flex;justify-content:center;align-items:center;z-index:999;opacity:0;pointer-events:none;transition:opacity .3s ease}.neuro-wrapper.is-active[data-v-9117e9d1]{opacity:1;pointer-events:auto}.neuro-mask[data-v-9117e9d1]{position:absolute;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.3)}.neuro-box[data-v-9117e9d1]{position:relative;width:18.75rem;height:14.0625rem;border-radius:.9375rem;background-color:#fff;display:flex;flex-direction:column;align-items:center;z-index:1;padding:0 10%}.button[data-v-9117e9d1]{width:47%;background-color:#ddf0ff;display:flex;justify-content:center;align-items:center;color:#007cff;border:.03125rem solid #007CFF;font-size:.78125rem;border-radius:.9375rem}.title[data-v-9117e9d1]{margin-top:2.1875rem}.card-font[data-v-9117e9d1]{margin-top:2.1875rem;width:18.75rem;justify-content:center;display:flex}.button-white[data-v-9117e9d1]{width:47%;border:.0625rem solid #c3cacd;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:.78125rem;border-radius:.9375rem}.button-father[data-v-9117e9d1]{position:absolute;bottom:1.875rem;left:50%;transform:translate(-50%);width:100%;height:2.1875rem;display:flex;justify-content:space-between;padding:0 1.5625rem}.neuro-wrapper[data-v-8de7e110]{position:fixed;top:0;right:0;bottom:0;left:0;display:flex;justify-content:center;align-items:center;z-index:999;opacity:0;pointer-events:none;transition:opacity .3s ease}.neuro-wrapper.is-active[data-v-8de7e110]{opacity:1;pointer-events:auto}.neuro-mask[data-v-8de7e110]{position:absolute;top:0;right:0;bottom:0;left:0;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(236,237,241,.4)}.neuro-box[data-v-8de7e110]{position:relative;width:23.4375rem;height:21.875rem;border-radius:.9375rem;background-color:#fff;display:flex;flex-direction:column;align-items:center;z-index:1;padding:0 10%}.button[data-v-8de7e110]{width:100%;display:flex;justify-content:center;align-items:center;color:#fff;font-size:.78125rem;border-radius:1.09375rem;margin-left:.625rem;color:#007cff;font-size:.9375rem;background-color:#ddf0ff;border:.03125rem solid #007CFF}.title[data-v-8de7e110]{margin-top:2.1875rem;font-weight:600;font-size:1.09375rem}.card-font[data-v-8de7e110]{margin-top:2.1875rem;width:18.75rem;justify-content:center;display:flex}.button-white[data-v-8de7e110]{width:47%;border:.0625rem solid #c3cacd;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:.78125rem;border-radius:.9375rem}.button-father[data-v-8de7e110]{position:absolute;bottom:2.1875rem;left:50%;transform:translate(-50%);width:100%;height:2.5rem;display:flex;justify-content:center;padding:0 3.4375rem}.password-father[data-v-8de7e110]{margin-top:.9375rem;width:23.4375rem;padding:0 3.75rem;height:2.5rem}.password-father .password[data-v-8de7e110]{width:100%;background-color:rgba(239,240,244,.5);border-radius:.71875rem;height:2.5rem;padding-left:.625rem;font-size:.84375rem}.zy-modal[data-v-cd70e807]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1110;opacity:0;outline:0;text-align:center;transform:scale(1.185);-webkit-backface-visibility:hidden;backface-visibility:hidden;perspective:62.5rem;background:rgba(0,0,0,.6);transition:all .3s ease-in-out 0s;pointer-events:none}.zy-modal[data-v-cd70e807]:before{content:"\200b";display:inline-block;height:100%;vertical-align:middle}.zy-modal.show[data-v-cd70e807]{opacity:1;transition-duration:.3s;transform:scale(1);overflow-x:hidden;overflow-y:auto;pointer-events:auto}.zy-dialog[data-v-cd70e807]{position:relative;display:inline-block;vertical-align:middle;margin-left:auto;margin-right:auto;width:21.25rem;max-width:100%;background-color:#f8f8f8;border-radius:.3125rem;overflow:hidden}.zy-modal.bottom-modal[data-v-cd70e807]:before{vertical-align:bottom}.zy-modal.bottom-modal .zy-dialog[data-v-cd70e807]{width:100%;border-radius:0}.zy-modal.bottom-modal[data-v-cd70e807]{margin-bottom:-31.25rem}.zy-modal.bottom-modal.show[data-v-cd70e807]{margin-bottom:0}.zy-modal.drawer-modal[data-v-cd70e807]{transform:scale(1);display:flex}.zy-modal.drawer-modal .zy-dialog[data-v-cd70e807]{height:100%;min-width:6.25rem;border-radius:0;margin:initial;transition-duration:.3s}.zy-modal.drawer-modal.justify-start .zy-dialog[data-v-cd70e807]{transform:translate(-100%)}.zy-modal.drawer-modal.justify-end .zy-dialog[data-v-cd70e807]{transform:translate(100%)}.zy-modal.drawer-modal.show .zy-dialog[data-v-cd70e807]{transform:translate(0)}.zy-modal .zy-dialog>.zy-bar:first-child .action[data-v-cd70e807]{min-width:3.125rem;margin-right:0;min-height:3.125rem}.zy-progress[data-v-cd70e807]{overflow:hidden;height:.875rem;background-color:#ebeef5;display:inline-flex;align-items:center;width:100%}.zy-progress+uni-view[data-v-cd70e807],.zy-progress+uni-text[data-v-cd70e807]{line-height:1}.zy-progress.xs[data-v-cd70e807]{height:.3125rem}.zy-progress.sm[data-v-cd70e807]{height:.625rem}.zy-progress uni-view[data-v-cd70e807]{width:0;height:100%;align-items:center;display:flex;justify-items:flex-end;justify-content:space-around;font-size:.625rem;color:#fff;transition:width .6s ease}.zy-progress uni-text[data-v-cd70e807]{align-items:center;display:flex;font-size:.625rem;color:#333;text-indent:.3125rem}.zy-progress.text-progress[data-v-cd70e807]{padding-right:1.875rem}.zy-progress.striped uni-view[data-v-cd70e807]{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:2.25rem 2.25rem}.zy-progress.active uni-view[data-v-cd70e807]{animation:progress-stripes-cd70e807 2s linear infinite}@keyframes progress-stripes-cd70e807{0%{background-position:2.25rem 0}to{background-position:0 0}}.zy-btn[data-v-cd70e807]{height:2.8125rem;width:17.1875rem;background:linear-gradient(to right,#00c9ff,#0076ff);border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem}.zy-btn[data-v-cd70e807]:after{display:none}.zy-btn[data-v-cd70e807]:not([class*=bg-]){background-color:#f0f0f0}.zy-btn[class*=line][data-v-cd70e807]{background-color:transparent}.zy-btn[class*=line][data-v-cd70e807]:after{content:" ";display:block;width:200%;height:200%;position:absolute;top:0;left:0;border:.03125rem solid currentColor;transform:scale(.5);transform-origin:0 0;box-sizing:border-box;border-radius:.375rem;z-index:1;pointer-events:none}.zy-btn.round[class*=line][data-v-cd70e807]:after{border-radius:31.25rem}.zy-btn[class*=lines][data-v-cd70e807]:after{border:.1875rem solid currentColor}.zy-btn[class*=bg-][data-v-cd70e807]:after{display:none}.zy-btn.sm[data-v-cd70e807]{padding:0 .625rem;font-size:.625rem;height:1.5rem}.zy-btn.lg[data-v-cd70e807]{padding:0 1.25rem;font-size:1rem;height:2.5rem}.zy-btn.cuIcon.sm[data-v-cd70e807]{width:1.5rem;height:1.5rem}.zy-btn.cuIcon[data-v-cd70e807]{width:2rem;height:2rem;border-radius:15.625rem;padding:0}uni-button.cuIcon.lg[data-v-cd70e807]{width:2.5rem;height:2.5rem}.zy-btn.shadow-blur[data-v-cd70e807]:before{top:.125rem;left:.125rem;filter:blur(.1875rem);opacity:.6}.zy-btn.button-hover[data-v-cd70e807]{transform:translate(.03125rem,.03125rem)}.block[data-v-cd70e807]{display:block}.zy-btn.block[data-v-cd70e807]{display:flex}.zy-btn[disabled][data-v-cd70e807]{opacity:.6;color:#fff}.margin-0[data-v-cd70e807]{margin:0}.margin-xs[data-v-cd70e807]{margin:.3125rem}.margin-sm[data-v-cd70e807]{margin:.625rem}.margin[data-v-cd70e807]{margin:.9375rem}.margin-lg[data-v-cd70e807]{margin:1.25rem}.margin-xl[data-v-cd70e807]{margin:1.5625rem}.margin-top-xs[data-v-cd70e807]{margin-top:.3125rem}.margin-top-sm[data-v-cd70e807]{margin-top:.625rem}.margin-top[data-v-cd70e807]{margin-top:.9375rem}.margin-top-lg[data-v-cd70e807]{margin-top:1.25rem}.margin-top-xl[data-v-cd70e807]{margin-top:1.5625rem}.margin-right-xs[data-v-cd70e807]{margin-right:.3125rem}.margin-right-sm[data-v-cd70e807]{margin-right:.625rem}.margin-right[data-v-cd70e807]{margin-right:.9375rem}.margin-right-lg[data-v-cd70e807]{margin-right:1.25rem}.margin-right-xl[data-v-cd70e807]{margin-right:1.5625rem}.margin-bottom-xs[data-v-cd70e807]{margin-bottom:.3125rem}.margin-bottom-sm[data-v-cd70e807]{margin-bottom:.625rem}.margin-bottom[data-v-cd70e807]{margin-bottom:.9375rem}.margin-bottom-lg[data-v-cd70e807]{margin-bottom:1.25rem}.margin-bottom-xl[data-v-cd70e807]{margin-bottom:1.5625rem}.margin-left-xs[data-v-cd70e807]{margin-left:.3125rem}.margin-left-sm[data-v-cd70e807]{margin-left:.625rem}.margin-left[data-v-cd70e807]{margin-left:.9375rem}.margin-left-lg[data-v-cd70e807]{margin-left:1.25rem}.margin-left-xl[data-v-cd70e807]{margin-left:1.5625rem}.margin-lr-xs[data-v-cd70e807]{margin-left:.3125rem;margin-right:.3125rem}.margin-lr-sm[data-v-cd70e807]{margin-left:.625rem;margin-right:.625rem}.margin-lr[data-v-cd70e807]{margin-left:.9375rem;margin-right:.9375rem}.margin-lr-lg[data-v-cd70e807]{margin-left:1.25rem;margin-right:1.25rem}.margin-lr-xl[data-v-cd70e807]{margin-left:1.5625rem;margin-right:1.5625rem}.margin-tb-xs[data-v-cd70e807]{margin-top:.3125rem;margin-bottom:.3125rem}.margin-tb-sm[data-v-cd70e807]{margin-top:.625rem;margin-bottom:.625rem}.margin-tb[data-v-cd70e807]{margin-top:.9375rem;margin-bottom:.9375rem}.margin-tb-lg[data-v-cd70e807]{margin-top:1.25rem;margin-bottom:1.25rem}.margin-tb-xl[data-v-cd70e807]{margin-top:1.5625rem;margin-bottom:1.5625rem}.padding-0[data-v-cd70e807]{padding:0}.padding-xs[data-v-cd70e807]{padding:.3125rem}.padding-sm[data-v-cd70e807]{padding:.625rem}.padding[data-v-cd70e807]{padding:.9375rem}.padding-lg[data-v-cd70e807]{padding:1.25rem}.padding-xl[data-v-cd70e807]{padding:1.5625rem}.padding-top-xs[data-v-cd70e807]{padding-top:.3125rem}.padding-top-sm[data-v-cd70e807]{padding-top:.625rem}.padding-top[data-v-cd70e807]{padding-top:.9375rem}.padding-top-lg[data-v-cd70e807]{padding-top:1.25rem}.padding-top-xl[data-v-cd70e807]{padding-top:1.5625rem}.padding-right-xs[data-v-cd70e807]{padding-right:.3125rem}.padding-right-sm[data-v-cd70e807]{padding-right:.625rem}.padding-right[data-v-cd70e807]{padding-right:.9375rem}.padding-right-lg[data-v-cd70e807]{padding-right:1.25rem}.padding-right-xl[data-v-cd70e807]{padding-right:1.5625rem}.padding-bottom-xs[data-v-cd70e807]{padding-bottom:.3125rem}.padding-bottom-sm[data-v-cd70e807]{padding-bottom:.625rem}.padding-bottom[data-v-cd70e807]{padding-bottom:.9375rem}.padding-bottom-lg[data-v-cd70e807]{padding-bottom:1.25rem}.padding-bottom-xl[data-v-cd70e807]{padding-bottom:1.5625rem}.padding-left-xs[data-v-cd70e807]{padding-left:.3125rem}.padding-left-sm[data-v-cd70e807]{padding-left:.625rem}.padding-left[data-v-cd70e807]{padding-left:.9375rem}.padding-left-lg[data-v-cd70e807]{padding-left:1.25rem}.padding-left-xl[data-v-cd70e807]{padding-left:1.5625rem}.padding-lr-xs[data-v-cd70e807]{padding-left:.3125rem;padding-right:.3125rem}.padding-lr-sm[data-v-cd70e807]{padding-left:.625rem;padding-right:.625rem}.padding-lr[data-v-cd70e807]{padding-left:.9375rem;padding-right:.9375rem}.padding-lr-lg[data-v-cd70e807]{padding-left:1.25rem;padding-right:1.25rem}.padding-lr-xl[data-v-cd70e807]{padding-left:1.5625rem;padding-right:1.5625rem}.padding-tb-xs[data-v-cd70e807]{padding-top:.3125rem;padding-bottom:.3125rem}.padding-tb-sm[data-v-cd70e807]{padding-top:.625rem;padding-bottom:.625rem}.padding-tb[data-v-cd70e807]{padding-top:.9375rem;padding-bottom:.9375rem}.padding-tb-lg[data-v-cd70e807]{padding-top:1.25rem;padding-bottom:1.25rem}.padding-tb-xl[data-v-cd70e807]{padding-top:1.5625rem;padding-bottom:1.5625rem}.zy-bar[data-v-cd70e807]{display:flex;position:relative;align-items:center;min-height:3.125rem;justify-content:space-between}.zy-bar .action[data-v-cd70e807]{display:flex;align-items:center;height:100%;justify-content:center;max-width:100%}.zy-bar .action.border-title[data-v-cd70e807]{position:relative;top:-.3125rem}.zy-bar .action.border-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;bottom:-.5rem;min-width:2rem;height:.1875rem;left:0}.zy-bar .action.sub-title[data-v-cd70e807]{position:relative;top:-.2rem}.zy-bar .action.sub-title uni-text[data-v-cd70e807]{position:relative;z-index:1}.zy-bar .action.sub-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.2rem;border-radius:.1875rem;width:100%;height:.6rem;left:.6rem;opacity:.3;z-index:0}.zy-bar .action.sub-title uni-text[class*=text-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.7rem;left:.5rem;opacity:.2;z-index:0;text-align:right;font-weight:900;font-size:1.125rem}.zy-bar.justify-center .action.border-title uni-text[data-v-cd70e807]:last-child,.zy-bar.justify-center .action.sub-title uni-text[data-v-cd70e807]:last-child{left:0;right:0;margin:auto;text-align:center}.zy-bar .action[data-v-cd70e807]:first-child{margin-left:.9375rem;font-size:.9375rem}.zy-bar .action uni-text.text-cut[data-v-cd70e807]{text-align:left;width:100%}.zy-bar .zy-avatar[data-v-cd70e807]:first-child{margin-left:.625rem}.zy-bar .action:first-child>uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:-.3em;margin-right:.3em}.zy-bar .action[data-v-cd70e807]:last-child{margin-right:.9375rem}.zy-bar .action>uni-text[class*=cuIcon-][data-v-cd70e807],.zy-bar .action>uni-view[class*=cuIcon-][data-v-cd70e807]{font-size:1.125rem}.zy-bar .action>uni-text[class*=cuIcon-]+uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:.5em}.zy-bar .content[data-v-cd70e807]{position:absolute;text-align:center;width:calc(100% - 10.625rem);left:0;right:0;bottom:0;top:0;margin:auto;height:1.875rem;font-size:1rem;line-height:1.875rem;cursor:none;pointer-events:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.zy-bar.ios .content[data-v-cd70e807]{bottom:7px;height:30px;font-size:1rem;line-height:30px}.zy-bar.btn-group[data-v-cd70e807]{justify-content:space-around}.zy-bar.btn-group uni-button[data-v-cd70e807]{padding:.625rem 1rem}.zy-bar.btn-group uni-button[data-v-cd70e807]{flex:1;margin:0 .625rem;max-width:50%}.zy-bar .search-form[data-v-cd70e807]{background-color:#f5f5f5;line-height:2rem;height:2rem;font-size:.75rem;color:#333;flex:1;display:flex;align-items:center;margin:0 .9375rem}.zy-bar .search-form+.action[data-v-cd70e807]{margin-right:.9375rem}.zy-bar .search-form uni-input[data-v-cd70e807]{flex:1;padding-right:.9375rem;height:2rem;line-height:2rem;font-size:.8125rem;background-color:transparent}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]{margin:0 .5em 0 .8em}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]:before{top:0}.zy-bar.fixed[data-v-cd70e807],.nav.fixed[data-v-cd70e807]{position:fixed;width:100%;top:0;z-index:1024;box-shadow:0 .03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.foot[data-v-cd70e807]{position:fixed;width:100%;bottom:0;z-index:1024;box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar[data-v-cd70e807]{padding:0;height:calc(3.125rem + env(safe-area-inset-bottom)/2);padding-bottom:calc(env(safe-area-inset-bottom)/2)}.zy-tabbar-height[data-v-cd70e807]{min-height:3.125rem;height:calc(3.125rem + env(safe-area-inset-bottom)/2)}.zy-bar.tabbar.shadow[data-v-cd70e807]{box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar .action[data-v-cd70e807]{font-size:.6875rem;position:relative;flex:1;text-align:center;padding:0;display:block;height:auto;line-height:1;margin:0;background-color:inherit;overflow:initial}.zy-bar.tabbar.shop .action[data-v-cd70e807]{width:4.375rem;flex:initial}.zy-bar.tabbar .action.add-action[data-v-cd70e807]{position:relative;z-index:2;padding-top:1.5625rem}.zy-bar.tabbar .action.add-action [class*=cuIcon-][data-v-cd70e807]{position:absolute;width:2.1875rem;z-index:2;height:2.1875rem;border-radius:50%;line-height:2.1875rem;font-size:1.5625rem;top:-1.09375rem;left:0;right:0;margin:auto;padding:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:after{content:"";position:absolute;width:3.125rem;height:3.125rem;top:-1.5625rem;left:0;right:0;margin:auto;box-shadow:0 -.09375rem .25rem rgba(0,0,0,.08);border-radius:1.5625rem;background-color:inherit;z-index:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:before{content:"";position:absolute;width:3.125rem;height:.9375rem;bottom:.9375rem;left:0;right:0;margin:auto;background-color:inherit;z-index:1}.zy-bar.tabbar .btn-group[data-v-cd70e807]{flex:1;display:flex;justify-content:space-around;align-items:center;padding:0 .3125rem}.zy-bar.tabbar uni-button.action[data-v-cd70e807]:after{border:0}.zy-bar.tabbar .action [class*=cuIcon-][data-v-cd70e807]{width:3.125rem;position:relative;display:block;height:auto;margin:0 auto .3125rem;text-align:center;font-size:1.25rem}.zy-bar.tabbar .action .cuIcon-zy-image[data-v-cd70e807]{margin:0 auto}.zy-bar.tabbar .action .cuIcon-zy-image uni-image[data-v-cd70e807]{width:1.5625rem;height:1.5625rem;display:inline-block}.zy-bar.tabbar .submit[data-v-cd70e807]{align-items:center;display:flex;justify-content:center;text-align:center;position:relative;flex:2;align-self:stretch}.zy-bar.tabbar .submit[data-v-cd70e807]:last-child{flex:2.6}.zy-bar.tabbar .submit+.submit[data-v-cd70e807]{flex:2}.zy-bar.tabbar.border .action[data-v-cd70e807]:before{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;transform:scale(.5);transform-origin:0 0;border-right:.03125rem solid rgba(0,0,0,.1);z-index:3}.zy-bar.tabbar.border .action[data-v-cd70e807]:last-child:before{display:none}.zy-bar.input[data-v-cd70e807]{padding-right:.625rem;background-color:#fff}.zy-bar.input uni-input[data-v-cd70e807]{overflow:initial;line-height:2rem;height:2rem;min-height:2rem;flex:1;font-size:.9375rem;margin:0 .625rem}.zy-bar.input .action[data-v-cd70e807]{margin-left:.625rem}.zy-bar.input .action [class*=cuIcon-][data-v-cd70e807]{font-size:1.5rem}.zy-bar.input uni-input+.action[data-v-cd70e807]{margin-right:.625rem;margin-left:0}.zy-bar.input .action:first-child [class*=cuIcon-][data-v-cd70e807]{margin-left:0}.zy-custom[data-v-cd70e807]{display:block;position:relative}.zy-custom .zy-bar .content[data-v-cd70e807]{width:calc(100% - 13.75rem)}.zy-custom .zy-bar .content uni-image[data-v-cd70e807]{height:1.875rem;width:7.5rem}.zy-custom .zy-bar[data-v-cd70e807]{min-height:0px;box-shadow:0 0;z-index:9999}.zy-custom .zy-bar .border-custom[data-v-cd70e807]{position:relative;background:rgba(0,0,0,.15);border-radius:31.25rem;height:30px}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:after{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;border-radius:inherit;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;border:.03125rem solid #ffffff;opacity:.5}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:before{content:" ";width:.03125rem;height:110%;position:absolute;top:22.5%;left:0;right:0;margin:auto;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;opacity:.6;background-color:#fff}.zy-custom .zy-bar .border-custom uni-text[data-v-cd70e807]{display:block;flex:1;margin:auto!important;text-align:center;font-size:1.0625rem}.flex[data-v-cd70e807]{display:flex}.basis-xs[data-v-cd70e807]{flex-basis:20%}.basis-sm[data-v-cd70e807]{flex-basis:40%}.basis-df[data-v-cd70e807]{flex-basis:50%}.basis-lg[data-v-cd70e807]{flex-basis:60%}.basis-xl[data-v-cd70e807]{flex-basis:80%}.flex-sub[data-v-cd70e807]{flex:1}.flex-twice[data-v-cd70e807]{flex:2}.flex-treble[data-v-cd70e807]{flex:3}.flex-direction[data-v-cd70e807]{flex-direction:column}.flex-wrap[data-v-cd70e807]{flex-wrap:wrap}.align-start[data-v-cd70e807]{align-items:flex-start}.align-end[data-v-cd70e807]{align-items:flex-end}.align-center[data-v-cd70e807]{align-items:center}.self-start[data-v-cd70e807]{align-self:flex-start}.self-center[data-v-cd70e807]{align-self:flex-center}.self-end[data-v-cd70e807]{align-self:flex-end}.self-stretch[data-v-cd70e807]{align-self:stretch}.align-stretch[data-v-cd70e807]{align-items:stretch}.justify-start[data-v-cd70e807]{justify-content:flex-start}.justify-end[data-v-cd70e807]{justify-content:flex-end}.justify-center[data-v-cd70e807]{justify-content:center}.justify-between[data-v-cd70e807]{justify-content:space-between}.justify-around[data-v-cd70e807]{justify-content:space-around}.line-red[data-v-cd70e807]:after,.lines-red[data-v-cd70e807]:after{border-color:#e54d42}.line-orange[data-v-cd70e807]:after,.lines-orange[data-v-cd70e807]:after{border-color:#f37b1d}.line-yellow[data-v-cd70e807]:after,.lines-yellow[data-v-cd70e807]:after{border-color:#fbbd08}.line-olive[data-v-cd70e807]:after,.lines-olive[data-v-cd70e807]:after{border-color:#8dc63f}.line-green[data-v-cd70e807]:after,.lines-green[data-v-cd70e807]:after{border-color:#39b54a}.line-cyan[data-v-cd70e807]:after,.lines-cyan[data-v-cd70e807]:after{border-color:#1cbbb4}.line-blue[data-v-cd70e807]:after,.lines-blue[data-v-cd70e807]:after{border-color:#0081ff}.line-purple[data-v-cd70e807]:after,.lines-purple[data-v-cd70e807]:after{border-color:#6739b6}.line-mauve[data-v-cd70e807]:after,.lines-mauve[data-v-cd70e807]:after{border-color:#9c26b0}.line-pink[data-v-cd70e807]:after,.lines-pink[data-v-cd70e807]:after{border-color:#e03997}.line-brown[data-v-cd70e807]:after,.lines-brown[data-v-cd70e807]:after{border-color:#a5673f}.line-grey[data-v-cd70e807]:after,.lines-grey[data-v-cd70e807]:after{border-color:#8799a3}.line-gray[data-v-cd70e807]:after,.lines-gray[data-v-cd70e807]:after{border-color:#aaa}.line-black[data-v-cd70e807]:after,.lines-black[data-v-cd70e807]:after{border-color:#333}.line-white[data-v-cd70e807]:after,.lines-white[data-v-cd70e807]:after{border-color:#fff}.bg-red[data-v-cd70e807]{background-color:#e54d42;color:#fff}.bg-orange[data-v-cd70e807]{background-color:#f37b1d;color:#fff}.bg-yellow[data-v-cd70e807]{background-color:#fbbd08;color:#333}.bg-olive[data-v-cd70e807]{background-color:#8dc63f;color:#fff}.bg-green[data-v-cd70e807]{background-color:#39b54a;color:#fff}.bg-cyan[data-v-cd70e807]{background-color:#1cbbb4;color:#fff}.bg-blue[data-v-cd70e807]{background-color:#0081ff;color:#fff}.bg-purple[data-v-cd70e807]{background-color:#6739b6;color:#fff}.bg-mauve[data-v-cd70e807]{background-color:#9c26b0;color:#fff}.bg-pink[data-v-cd70e807]{background-color:#e03997;color:#fff}.bg-brown[data-v-cd70e807]{background-color:#a5673f;color:#fff}.bg-grey[data-v-cd70e807]{background-color:#8799a3;color:#fff}.bg-gray[data-v-cd70e807]{background-color:#f0f0f0;color:#333}.bg-black[data-v-cd70e807]{background-color:#333;color:#fff}.bg-white[data-v-cd70e807]{background-color:#fff;color:#666}.bg-shadeTop[data-v-cd70e807]{background-image:linear-gradient(#000,rgba(0,0,0,.01));color:#fff}.bg-shadeBottom[data-v-cd70e807]{background-image:linear-gradient(rgba(0,0,0,.01),#000);color:#fff}.bg-red.light[data-v-cd70e807]{color:#e54d42;background-color:#fadbd9}.bg-orange.light[data-v-cd70e807]{color:#f37b1d;background-color:#fde6d2}.bg-yellow.light[data-v-cd70e807]{color:#fbbd08;background-color:rgba(254,242,206,.824)}.bg-olive.light[data-v-cd70e807]{color:#8dc63f;background-color:#e8f4d9}.bg-green.light[data-v-cd70e807]{color:#39b54a;background-color:#d7f0db}.bg-cyan.light[data-v-cd70e807]{color:#1cbbb4;background-color:#d2f1f0}.bg-blue.light[data-v-cd70e807]{color:#0081ff;background-color:#cce6ff}.bg-purple.light[data-v-cd70e807]{color:#6739b6;background-color:#e1d7f0}.bg-mauve.light[data-v-cd70e807]{color:#9c26b0;background-color:#ebd4ef}.bg-pink.light[data-v-cd70e807]{color:#e03997;background-color:#f9d7ea}.bg-brown.light[data-v-cd70e807]{color:#a5673f;background-color:#ede1d9}.bg-grey.light[data-v-cd70e807]{color:#8799a3;background-color:#e7ebed}.bg-gradual-red[data-v-cd70e807]{background-image:linear-gradient(45deg,#f43f3b,#ec008c);color:#fff}.bg-gradual-orange[data-v-cd70e807]{background-image:linear-gradient(45deg,#ff9700,#ed1c24);color:#fff}.bg-gradual-green[data-v-cd70e807]{background-image:linear-gradient(45deg,#39b54a,#8dc63f);color:#fff}.bg-gradual-purple[data-v-cd70e807]{background-image:linear-gradient(45deg,#9000ff,#5e00ff);color:#fff}.bg-gradual-pink[data-v-cd70e807]{background-image:linear-gradient(45deg,#ec008c,#6739b6);color:#fff}.bg-gradual-blue[data-v-cd70e807]{background-image:linear-gradient(45deg,#0081ff,#1cbbb4);color:#fff}.shadow[class*=-red][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.shadow[class*=-orange][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.shadow[class*=-yellow][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.shadow[class*=-olive][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.shadow[class*=-green][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.shadow[class*=-cyan][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.shadow[class*=-blue][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.shadow[class*=-purple][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.shadow[class*=-mauve][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.shadow[class*=-pink][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.shadow[class*=-brown][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.shadow[class*=-grey][data-v-cd70e807],.shadow[class*=-gray][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.shadow[class*=-black][data-v-cd70e807],.shadow[class*=-white][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.text-shadow[class*=-red][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.text-shadow[class*=-orange][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.text-shadow[class*=-yellow][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.text-shadow[class*=-olive][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.text-shadow[class*=-green][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.text-shadow[class*=-cyan][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.text-shadow[class*=-blue][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.text-shadow[class*=-purple][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.text-shadow[class*=-mauve][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.text-shadow[class*=-pink][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.text-shadow[class*=-brown][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.text-shadow[class*=-grey][data-v-cd70e807],.text-shadow[class*=-gray][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.text-shadow[class*=-black][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.bg-img[data-v-cd70e807]{background-size:cover;background-position:center;background-repeat:no-repeat}.bg-mask[data-v-cd70e807]{background-color:#333;position:relative}.bg-mask[data-v-cd70e807]:after{content:"";border-radius:inherit;width:100%;height:100%;display:block;background-color:rgba(0,0,0,.4);position:absolute;left:0;right:0;bottom:0;top:0}.bg-mask uni-view[data-v-cd70e807],.bg-mask uni-cover-view[data-v-cd70e807]{z-index:5;position:relative}.bg-video[data-v-cd70e807]{position:relative}.bg-video uni-video[data-v-cd70e807]{display:block;height:100%;width:100%;object-fit:cover;position:absolute;top:0;z-index:0;pointer-events:none}.text-xs[data-v-cd70e807]{font-size:.625rem}.text-sm[data-v-cd70e807]{font-size:.75rem}.text-df[data-v-cd70e807]{font-size:.875rem}.text-lg[data-v-cd70e807]{font-size:1rem}.text-xl[data-v-cd70e807]{font-size:1.125rem}.text-xxl[data-v-cd70e807]{font-size:1.375rem}.text-sl[data-v-cd70e807]{font-size:2.5rem}.text-xsl[data-v-cd70e807]{font-size:3.75rem}.text-Abc[data-v-cd70e807]{text-transform:Capitalize}.text-ABC[data-v-cd70e807]{text-transform:Uppercase}.text-abc[data-v-cd70e807]{text-transform:Lowercase}.text-price[data-v-cd70e807]:before{content:"\a5";font-size:80%;margin-right:.125rem}.text-cut[data-v-cd70e807]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.text-bold[data-v-cd70e807]{font-weight:700}.text-center[data-v-cd70e807]{text-align:center}.text-content[data-v-cd70e807]{line-height:1.6}.text-left[data-v-cd70e807]{text-align:left}.text-right[data-v-cd70e807]{text-align:right}.text-red[data-v-cd70e807],.line-red[data-v-cd70e807],.lines-red[data-v-cd70e807]{color:#e54d42}.text-orange[data-v-cd70e807],.line-orange[data-v-cd70e807],.lines-orange[data-v-cd70e807]{color:#f37b1d}.text-yellow[data-v-cd70e807],.line-yellow[data-v-cd70e807],.lines-yellow[data-v-cd70e807]{color:#fbbd08}.text-olive[data-v-cd70e807],.line-olive[data-v-cd70e807],.lines-olive[data-v-cd70e807]{color:#8dc63f}.text-green[data-v-cd70e807],.line-green[data-v-cd70e807],.lines-green[data-v-cd70e807]{color:#39b54a}.text-cyan[data-v-cd70e807],.line-cyan[data-v-cd70e807],.lines-cyan[data-v-cd70e807]{color:#1cbbb4}.text-blue[data-v-cd70e807],.line-blue[data-v-cd70e807],.lines-blue[data-v-cd70e807]{color:#0081ff}.text-purple[data-v-cd70e807],.line-purple[data-v-cd70e807],.lines-purple[data-v-cd70e807]{color:#6739b6}.text-mauve[data-v-cd70e807],.line-mauve[data-v-cd70e807],.lines-mauve[data-v-cd70e807]{color:#9c26b0}.text-pink[data-v-cd70e807],.line-pink[data-v-cd70e807],.lines-pink[data-v-cd70e807]{color:#e03997}.text-brown[data-v-cd70e807],.line-brown[data-v-cd70e807],.lines-brown[data-v-cd70e807]{color:#a5673f}.text-grey[data-v-cd70e807],.line-grey[data-v-cd70e807],.lines-grey[data-v-cd70e807]{color:#8799a3}.text-gray[data-v-cd70e807],.line-gray[data-v-cd70e807],.lines-gray[data-v-cd70e807]{color:#aaa}.text-black[data-v-cd70e807],.line-black[data-v-cd70e807],.lines-black[data-v-cd70e807]{color:#333}.text-white[data-v-cd70e807],.line-white[data-v-cd70e807],.lines-white[data-v-cd70e807]{color:#fff}.zy-upgrade-topbg-green[data-v-cd70e807]{background-image:url(../../assets/green.20d5f80a.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-red[data-v-cd70e807]{background-image:url(../../assets/red.8267d3cf.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-pink[data-v-cd70e807]{background-image:url(../../assets/pink.78f243a3.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-yellow[data-v-cd70e807]{background-image:url(../../assets/yellow.4438648c.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-blue[data-v-cd70e807]{background-size:100% 100%;background-repeat:no-repeat}.zy-upgrade-title[data-v-cd70e807]{font-size:1.09375rem;font-weight:600}.all[data-v-8b11c490]{margin-top:1.40625rem}.all .all-content[data-v-8b11c490]{width:100%;height:40.625rem}.all[data-v-842c1160]{margin-top:1.40625rem}.all .all-content[data-v-842c1160]{width:100%;height:40.625rem}.index-content-other[data-v-db2cf42d]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-right[data-v-db2cf42d]{width:100%;border-radius:1.5625rem;display:flex;justify-content:flex-end;height:3.75rem;align-items:center}.item[data-v-db2cf42d]{display:flex;align-items:center;justify-content:space-between;width:100%;height:4.0625rem}.item .left-item[data-v-db2cf42d]{display:flex;align-items:center;margin-left:.625rem}.item .left-item .left-icon[data-v-db2cf42d]{margin:0 .625rem;width:1.25rem;height:1.25rem}.item .right-item[data-v-db2cf42d]{display:flex;align-items:center;margin-right:1.5625rem}.item .right-item .right-icon[data-v-db2cf42d]{width:.46875rem;height:.9375rem}.array-father[data-v-db2cf42d]{background-color:rgba(255,255,255,.6);width:98.2%;border-radius:.9375rem}.bottom-button[data-v-db2cf42d]{margin-top:.9375rem;background-color:rgba(255,255,255,.6);width:98.2%;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;font-size:.9375rem;height:3.125rem;color:#0174d3}.popup-any[data-v-db2cf42d]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:999;opacity:0;transition:opacity .5s ease;background-color:rgba(0,0,0,.3)}.mask[data-v-db2cf42d]{position:absolute;top:0;right:0;bottom:0;left:0}.box-any[data-v-db2cf42d]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:31.25rem;height:46.875rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;padding:2.03125rem 1.25rem}.title-left[data-v-db2cf42d]{display:flex;align-items:center}.title-left .back-img[data-v-db2cf42d]{width:1.875rem;height:1.875rem;margin-right:.9375rem}.title-left .back-font[data-v-db2cf42d]{font-size:1.09375rem;font-weight:600}.index-content-other[data-v-08e03fe2]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-down[data-v-08e03fe2]{width:calc(100% - 1.875rem);height:3.125rem;display:flex;justify-content:flex-end;align-items:center}.index-content-right[data-v-08e03fe2]{height:calc(100% - .9375rem);width:calc(100% - 1.875rem);background-color:rgba(255,255,255,.8);background-image:url(../../static/index/leida/bgc.png);background-position:30% 70%;border-radius:1.5625rem;display:flex;position:relative}.leida[data-v-08e03fe2]{margin-top:.9375rem;height:100%;width:35%;display:flex;justify-content:center;align-items:center;flex-direction:column;position:relative}.kutong-father[data-v-08e03fe2]{width:9.375rem;height:14.0625rem;position:relative}.kutong-img[data-v-08e03fe2]{position:absolute;top:0;left:0;width:9.375rem;height:9.375rem}.kutong-shan[data-v-08e03fe2]{position:absolute;top:0;left:0;width:4.6875rem;height:6.4375rem;transform-origin:100% 73%}.spin-anim[data-v-08e03fe2]{animation:spin-08e03fe2 2s linear infinite;animation-play-state:running}.no-anim[data-v-08e03fe2]{animation:spin-08e03fe2 2s linear infinite;animation-play-state:paused}.spin-anim-spec[data-v-08e03fe2]{animation:spinx-08e03fe2 2s linear infinite;animation-play-state:running}.no-anim-spec[data-v-08e03fe2]{animation:spinx-08e03fe2 2s linear infinite;animation-play-state:paused}.huan[data-v-08e03fe2]{position:absolute;top:-2.03125rem;left:-2.03125rem;width:13.4375rem;height:13.4375rem;border:.625rem solid #cedcf5;border-radius:50%}.quarter-ring[data-v-08e03fe2]{position:absolute;top:-5%;left:-5%;width:110%;height:110%;box-sizing:border-box;border:.625rem solid transparent;border-top-color:#03a9ff;border-radius:50%;transform:rotate(0);transform-origin:center center}.jindutiao[data-v-08e03fe2]{width:12.5rem;border-radius:.625rem;height:.625rem;background-color:#a6c9fa;overflow:hidden}.progress-fill[data-v-08e03fe2]{width:100%;height:100%;background:linear-gradient(to bottom,#00c9ff,#0076ff);transform-origin:left center;will-change:transform;transition:transform .05s linear}.color-font[data-v-08e03fe2]{color:#415273;margin-top:.625rem;height:.625rem}.agagin-button[data-v-08e03fe2]{width:7.5rem;height:2.8125rem;margin-top:2.5rem;border-radius:1.09375rem;background:linear-gradient(to bottom,#00c9ff,#0076ff);display:flex;justify-content:center;align-items:center;color:#fff}.other[data-v-08e03fe2]{width:50%;height:100%}.other-father[data-v-08e03fe2]{margin-top:4.6875rem;height:calc(100% - 4.6875rem);width:100%}.card-father[data-v-08e03fe2]{width:100%;display:flex;flex-wrap:wrap}.card[data-v-08e03fe2]{width:45%;margin-left:3%;height:16.5625rem;box-shadow:.0625rem .125rem .25rem .0625rem rgba(0,0,0,.3);background-color:#fff;border-radius:.9375rem;margin-bottom:1.09375rem;padding:0 .78125rem;position:relative}.card .rename-father[data-v-08e03fe2]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:17.1875rem;height:10.9375rem;border-radius:.9375rem;box-shadow:.0625rem .125rem .25rem .0625rem rgba(0,0,0,.3);background-color:#fff;display:flex;flex-direction:column;align-items:center;padding:0 .9375rem}.card .rename-father .rename-title[data-v-08e03fe2]{width:100%;height:2.5rem;border-bottom:.0625rem solid #f5f5f5;display:flex;justify-content:center;align-items:center}.card .rename-father .rename-gray[data-v-08e03fe2]{width:100%;height:2.5rem;display:flex;color:#a7a7a7;align-items:center}.card .rename-father .rename-input[data-v-08e03fe2]{width:100%;height:2.5rem;display:flex;background-color:#f5f6fa;border-radius:.625rem;color:#a7a7a7;align-items:center;padding:0 .625rem;position:relative}.card .rename-father .rename-input .uni-input[data-v-08e03fe2]{font-size:.78125rem}.card .rename-father .rename-input .left-img[data-v-08e03fe2]{width:1.5625rem;height:1.5625rem;margin-right:.46875rem}.card .rename-father .rename-input .right-img[data-v-08e03fe2]{position:absolute;right:.9375rem;top:50%;transform:translateY(-50%);width:.9375rem;height:.9375rem}.card-title[data-v-08e03fe2]{width:100%;height:4.0625rem;display:flex;align-items:center;justify-content:space-between}.card-middle[data-v-08e03fe2]{width:100%;height:10rem;display:flex;justify-content:space-between}.video-box[data-v-08e03fe2]{width:82%;height:10rem;background-color:#e5ecfa;display:flex;justify-content:center;align-items:center;border-radius:.625rem}.video-box-img[data-v-08e03fe2]{width:2.5rem;height:2.5rem}@keyframes spin-08e03fe2{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes spinx-08e03fe2{0%{transform:rotate(-70deg)}to{transform:rotate(290deg)}}@keyframes fadeIn-08e03fe2{0%{opacity:0;transform:translateY(.3125rem)}to{opacity:1;transform:translateY(0)}}.fade-in[data-v-08e03fe2]{animation:fadeIn-08e03fe2 .4s ease-out forwards}.index-content-title[data-v-08e03fe2]{position:absolute;top:1.875rem;left:1.875rem;display:flex;align-items:center}.index-content-title .shu[data-v-08e03fe2]{width:.625rem;height:1.5625rem;background:linear-gradient(to right,#0052c2,#00b4ff);border-radius:.625rem;margin-right:.9375rem}.index-content-title .shu-font[data-v-08e03fe2]{color:#415273;font-size:1.09375rem}.right-box[data-v-08e03fe2]{background:#00abff;width:5rem;height:2.03125rem;border-radius:.625rem;display:flex;justify-content:center;align-items:center;color:#fff}.small-menu[data-v-08e03fe2]{width:2.34375rem;height:2.28125rem;border-radius:.625rem;background-color:#e7ecfa;display:flex;justify-content:center;align-items:center;margin-bottom:.3125rem}.small-menu .small-img[data-v-08e03fe2]{height:1.5625rem;width:1.5625rem}.card-bottom[data-v-08e03fe2]{margin-top:.53125rem;margin-left:.3125rem;display:flex}.card-bottom .bottom-img[data-v-08e03fe2]{width:1.1875rem;height:1.1875rem;margin-left:.9375rem}.blue-button[data-v-08e03fe2]{margin-top:.625rem;width:5.625rem;height:2.1875rem;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;background:linear-gradient(to bottom,#00c9ff,#0076ff)}.index-content-other[data-v-3c477a5f]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-down[data-v-3c477a5f]{width:calc(100% - 1.875rem);height:3.125rem;display:flex;justify-content:flex-end;align-items:center}.index-content-right[data-v-3c477a5f]{height:calc(100% - .9375rem);width:calc(100% - 1.875rem);background-color:rgba(255,255,255,.8);background-image:url(../../static/index/leida/bgc.png);background-position:30% 70%;border-radius:1.5625rem;display:flex;position:relative}.index-content-right .index-content-title[data-v-3c477a5f]{position:absolute;top:1.875rem;left:1.875rem;display:flex;align-items:center}.index-content-right .index-content-title .shu[data-v-3c477a5f]{width:.625rem;height:1.5625rem;background:linear-gradient(to right,#0052c2,#00b4ff);border-radius:.625rem;margin-right:.9375rem}.index-content-right .index-content-title .shu-font[data-v-3c477a5f]{color:#415273;font-size:1.09375rem}.saomiao[data-v-3c477a5f]{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);width:12.5rem;height:12.5rem;background-image:url(../../static/index/leida/fourjiao.png);background-repeat:no-repeat;background-attachment:fixed;background-size:cover}.saomiao[data-v-3c477a5f]:before{content:"";position:absolute;top:0;left:0;width:100%;animation:scanMove-3c477a5f 1.3s ease-in-out infinite;z-index:1001;height:2.5rem;background:linear-gradient(to bottom,rgba(5,170,254,.6),rgba(5,170,254,.1),transparent);will-change:transform}.saomiao .saomiao-son[data-v-3c477a5f]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:11.25rem;height:11.25rem;border-radius:1.5625rem;background-color:#dae4f8}.saomiao .saomiao-son .saomiao-son-son[data-v-3c477a5f]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:10rem;height:10rem;border-radius:1.5625rem;background-color:#d0e0f6}.saomiao .saomiao-son .saomiao-son-son .saomiao-son-son-img[data-v-3c477a5f]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:7.8125rem;height:7.8125rem;border-radius:.9375rem;background-image:url(../../static/index/leida/QR.png);background-repeat:no-repeat;background-attachment:fixed;background-size:cover}@keyframes scanMove-3c477a5f{0%{top:10%}to{top:80%}}.index-content-other[data-v-5fc7e05c]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-down[data-v-5fc7e05c]{width:calc(100% - 1.875rem);height:3.125rem;display:flex;justify-content:flex-end;align-items:center}.index-content-right[data-v-5fc7e05c]{height:calc(100% - .9375rem);width:calc(100% - 1.875rem);background-color:rgba(255,255,255,.8);background-image:url(../../static/index/leida/bgc.png);background-position:30% 70%;border-radius:1.5625rem;display:flex;position:relative}.index-content-right .index-content-title[data-v-5fc7e05c]{position:absolute;top:1.875rem;left:1.875rem;display:flex;align-items:center}.index-content-right .index-content-title .shu[data-v-5fc7e05c]{width:.625rem;height:1.5625rem;background:linear-gradient(to right,#0052c2,#00b4ff);border-radius:.625rem;margin-right:.9375rem}.index-content-right .index-content-title .shu-font[data-v-5fc7e05c]{color:#415273;font-size:1.09375rem}.saomiao[data-v-5fc7e05c]{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);display:flex}.saomiao .saoma-input[data-v-5fc7e05c]{background-color:#fff;width:17.1875rem;height:2.8125rem;border-radius:.9375rem;padding-left:3.125rem;z-index:1}.saomiao .left-img[data-v-5fc7e05c]{width:1.5625rem;height:1.5625rem;position:absolute;top:50%;left:.9375rem;transform:translateY(-50%);z-index:2}.saomiao .right-img[data-v-5fc7e05c]{width:1.5625rem;height:1.5625rem;position:absolute;top:50%;right:6.875rem;transform:translateY(-50%);z-index:2}.blue-button[data-v-5fc7e05c]{margin-left:.9375rem;width:5.3125rem;height:2.8125rem;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:.9375rem;background:linear-gradient(to bottom,#00c9ff,#0076ff)}.big-ball[data-v-5fc7e05c]{width:6.25rem;height:6.25rem;position:absolute;top:50%;left:-1.71875rem;transform:translateY(-50%);border-radius:50%;background-color:#dbe4f6}.big-ball .ball[data-v-5fc7e05c]{width:4.6875rem;height:4.6875rem;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);border-radius:50%;background-color:#cfddf1}.backgroundContainer[data-v-aebf66be]{display:flex;flex-direction:column;position:relative;width:100%;height:100vh;background-image:url(../../static/index/lightbgcnew.png);background-size:cover;background-position:center center;overflow:hidden}.darkbackgroundContainer[data-v-aebf66be]{display:flex;flex-direction:column;position:relative;width:100%;height:100vh;background-image:url(../../static/index/background.png);background-size:cover;background-position:center center;overflow:hidden}.index-title[data-v-aebf66be]{display:flex;width:calc(100% - 3.4375rem);height:4.0625rem;justify-content:space-between;margin:.625rem 1.5625rem 0 1.875rem}.index-title .index-title-left[data-v-aebf66be]{display:flex;height:100%;align-items:center;margin-top:.625rem}.index-title .index-title-left .index-title-left-wel[data-v-aebf66be]{margin-left:1.25rem}.index-title .index-title-left .index-title-left-weight[data-v-aebf66be]{font-weight:700;margin:0 .3125rem}.index-title .index-title-right[data-v-aebf66be]{display:flex;height:100%;align-items:center;margin-top:.625rem;margin-right:.3125rem}.index-title .index-title-right .top-card[data-v-aebf66be]{width:5.625rem;height:1.71875rem;border-radius:.9375rem;background-color:#e2e7ff;display:flex;align-items:center;margin-right:.625rem}.index-title .index-title-right .top-card .top-card-img[data-v-aebf66be]{width:1.09375rem;height:1.09375rem;margin-right:.15625rem;margin-left:.625rem}.index-title .index-title-right .top-card .top-card-font[data-v-aebf66be]{font-size:.78125rem}.index-content[data-v-aebf66be]{width:100%;height:calc(100vh - 4.6875rem);display:flex;margin-top:1.71875rem}.index-content .index-content-leftMenus[data-v-aebf66be]{height:100%;width:5.3125rem;display:flex;align-items:center;flex-direction:column;margin-top:.625rem;position:relative}.index-content .index-content-leftMenus .left-img[data-v-aebf66be]{width:2.8125rem;height:2.8125rem;z-index:100}.index-content .index-content-leftMenus .left-img-font[data-v-aebf66be]{margin-top:.3125rem;color:#fff;font-size:.78125rem}.index-content .index-content-leftMenus .left-img-font-target[data-v-aebf66be]{margin-top:.3125rem;color:#0174d3;font-size:.78125rem}.index-content .index-content-leftMenus .blue-circle-pos[data-v-aebf66be]{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;height:25rem}.index-content .index-content-leftMenus .blue-circle-pos .blue-circle[data-v-aebf66be]{position:absolute;top:-1.5625rem;left:-2.125rem}.index-content .index-content-leftMenus .blue-circle-pos .blue-circle .blue-circle-size[data-v-aebf66be]{width:5.3125rem;height:7.8125rem}.red-pao[data-v-aebf66be]{position:absolute;top:1.25rem;left:1.875rem;padding:.09375rem .3125rem;background-color:#ff4c4e;color:#fff;font-size:.625rem;border-radius:.625rem;z-index:101}.ball-bgc[data-v-aebf66be]{width:1.8125rem;height:1.8125rem;border-radius:50%;background-color:#e2e7ff;display:flex;align-items:center;justify-content:center;margin-right:.78125rem}.ball-bgc .ball-img[data-v-aebf66be]{width:1.1875rem;height:1.1875rem}.index-title-title[data-v-aebf66be]{height:6.25rem}.index-title-left-img[data-v-aebf66be]{width:2.34375rem;height:2.34375rem} diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/pages/Nursing/index.css b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/Nursing/index.css new file mode 100644 index 0000000..0d08afe --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/Nursing/index.css @@ -0,0 +1 @@ +.overlay[data-v-8cdafce2]{position:fixed;top:0;left:0;width:100%;height:100vh;background:rgba(0,0,0,.5);z-index:999;will-change:opacity;transition:opacity .3s ease;opacity:0;display:block}.overlay-show[data-v-8cdafce2]{opacity:1}.drawer[data-v-8cdafce2]{position:fixed;top:0;right:0;height:100vh;background:#fff;z-index:1000;border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem;transform:translate(100%);transition:transform .4s ease;will-change:transform}.drawer-open[data-v-8cdafce2]{transform:translate(0)}.drawer-content[data-v-8cdafce2]{position:relative;width:100%;height:100%}.drawer-content-circle[data-v-8cdafce2]{position:absolute;top:calc(50% - 1.71875rem);left:-1.25rem;width:3.125rem;height:3.4375rem;border-radius:50%;z-index:-1;background:linear-gradient(to bottom,#dfecfa,#c9dbee);display:flex;align-items:center;-webkit-clip-path:inset(0 60% 0 0);clip-path:inset(0 60% 0 0)}.drawer-img[data-v-8cdafce2]{width:.78125rem;height:.78125rem;margin-left:.3125rem;transform:rotate(180deg)}.draw-all[data-v-6070efba]{width:100%;height:100%;display:flex;flex-direction:column;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem;overflow:hidden}.draw-all .draw-title[data-v-6070efba]{width:100%;height:4.375rem;display:flex}.draw-all .draw-title .draw-title-gun[data-v-6070efba]{margin-top:2.1875rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.5625rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.draw-all .draw-title .draw-title-font[data-v-6070efba]{margin-top:2.125rem;font-size:1.25rem;font-weight:700}.draw-all .draw-contain[data-v-6070efba]{width:100%;height:calc(100vh - 4.375rem)}.draw-all .draw-contain .draw-contain-jindu[data-v-6070efba]{width:100%;height:7.8125rem;display:flex;justify-content:center;align-items:center}.downitems-father[data-v-6070efba]{width:100%;height:calc(100% - 6.40625rem);display:flex}.downitems-father .downitems-left[data-v-6070efba]{height:100%;width:17.1875rem}.downitems-father .downitems-left .downitems-left-mar[data-v-6070efba]{margin-left:2.03125rem}.downitems-father .downitems-left .downitems-left-mar .downitems-left-img[data-v-6070efba]{width:13.125rem;height:9.375rem;margin-top:2.5rem}.downitems-father .downitems-left .downitems-left-father[data-v-6070efba]{display:flex;margin-top:.625rem}.downitems-father .downitems-left .downitems-left-father .downitems-father-img[data-v-6070efba]{width:1.1875rem;height:1.1875rem;margin:.1875rem .40625rem 0 .625rem}.downitems-father .downitems-left .downitems-left-father .downitems-father-img-laba[data-v-6070efba]{width:1.1875rem;height:1.1875rem;margin-top:.1875rem}.downitems-father .downitems-left .downitems-left-father .downitems-father-font[data-v-6070efba]{font-size:1.25rem;width:9.375rem}.downitems-father .downitems-left .downitems-left-father .downitems-father-font-laba[data-v-6070efba]{font-size:1.25rem}.downitems-father .downitems-left .downitems-left-father .downitems-father-font-small[data-v-6070efba]{font-size:1.09375rem;width:12.5rem}.downitems-father .downitems-left .downitems-kuai[data-v-6070efba]{margin-left:1.15625rem;background-color:rgba(236,240,251,.4);border-radius:.625rem;width:10.9375rem;height:7.1875rem;margin-top:.9375rem;display:flex;justify-content:center;align-items:center}.downitems-father .downitems-left .downitems-kuai .downitems-kuai-img[data-v-6070efba]{width:3.75rem;height:3.75rem}.downitems-father .downitems-left .downitems-says[data-v-6070efba]{color:#6f7fa3;font-size:1.09375rem;margin-left:4.4375rem;margin-top:.625rem}.downitems-father .downitems-right[data-v-6070efba]{height:100%;width:20.3125rem}.downitems-father .downitems-right .downitems-all[data-v-6070efba]{margin-left:1.875rem}.downitems-father .downitems-right .downitems-all .downitems-all-font[data-v-6070efba]{margin-top:.9375rem;font-size:1.25rem}.downitems-father .downitems-center[data-v-6070efba]{height:100%;width:18.75rem;position:relative}.downitems-father .downitems-center .downitems-button[data-v-6070efba]{position:absolute;left:30%;bottom:2.5rem;background:linear-gradient(to right,#00c9ff,#0076ff);width:8.4375rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1.25rem}.downitems-center-title[data-v-6070efba]{width:100%;display:flex}.downitems-center-title .downitems-center-title-gun[data-v-6070efba]{margin-top:1.5625rem;margin-left:0;margin-right:.5625rem;width:.40625rem;height:1.5625rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.downitems-center-title .downitems-center-title-font[data-v-6070efba]{margin-top:1.5625rem;font-size:1.25rem;font-weight:700}.downitems-center-title .downitems-center-says[data-v-6070efba]{display:flex;margin-top:1.5625rem;margin-left:5.625rem;text-align:right;color:#6f7fa3;font-size:1.125rem}.downitems-center-title .downitems-center-father[data-v-6070efba]{display:flex;justify-content:center;align-items:center;width:1.5625rem;height:1.5625rem;border-radius:50%;background-color:#bac5de;margin-right:.3125rem;margin-top:0}.downitems-center-title .downitems-center-father .downitems-center-says-maike[data-v-6070efba]{width:1.25rem;height:1.25rem}.downitems-shu[data-v-6070efba]{width:2.1875rem;height:100%;margin-top:.125rem}.downitems-textarea[data-v-6070efba]{margin-top:.625rem}.custom-textarea[data-v-6070efba]{color:#6f7fa3;background-color:rgba(255,255,255,.3);width:17.8125rem;height:7.5rem;border-radius:.625rem;font-size:1.25rem;padding-left:.9375rem;padding-top:.625rem}.radio-circle-top-father[data-v-6070efba]{margin-left:.9375rem}.radio-circle-top-father .radio-circle-top[data-v-6070efba]{margin-top:.9375rem;display:flex}.radio-circle[data-v-6070efba],.radio-circle-target[data-v-6070efba]{position:relative;margin-top:.0625rem;width:1.25rem;height:1.25rem;border-radius:50%;border:.0625rem solid #02abfe;background-color:transparent}.radio-circle-target[data-v-6070efba]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.9375rem;height:.9375rem;background-color:#02abfe;border-radius:50%}.radio-font[data-v-6070efba]{margin-left:.46875rem;margin-right:1.875rem;font-size:1.125rem}.downitems-card-all[data-v-6070efba]{width:100%;display:flex;flex-wrap:wrap;margin-top:.625rem}.downitems-card-all .downitems-card-one[data-v-6070efba]{width:8.4375rem;height:4.6875rem;margin-right:.625rem;margin-bottom:.9375rem;border-radius:.625rem;background-color:#f3f8fd;border:.03125rem solid #52668C;box-shadow:0 .125rem .125rem rgba(0,0,0,.2);display:flex;justify-content:center;align-items:center}.downitems-card-all .downitems-card-one-target[data-v-6070efba]{width:8.4375rem;height:4.6875rem;margin-right:.625rem;margin-bottom:.9375rem;border-radius:.625rem;background:linear-gradient(to bottom,#b8e5ff,#f7d0ef);border:.03125rem solid #fff;box-shadow:0 .125rem .125rem rgba(0,0,0,.2);display:flex;justify-content:center;align-items:center}.downitems-card-all .downitems-card[data-v-6070efba]{display:flex;justify-content:center;align-items:center}.downitems-card-all .downitems-card .downitems-card-font[data-v-6070efba]{font-weight:700;margin-left:.3125rem;margin-right:.3125rem;font-size:1.25rem}.downitems-card-all .downitems-card .downitems-card-father[data-v-6070efba]{width:2.8125rem;height:2.8125rem;border-radius:1.5625rem;border:.03125rem solid #94B0C3;background-color:#fff;display:flex;justify-content:center;overflow:hidden}.downitems-card-all .downitems-card .downitems-card-father .downitems-card-img[data-v-6070efba]{width:2.5rem;height:2.5rem;margin-top:.3125rem}.container[data-v-6070efba]{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100vh}.modal[data-v-6070efba]{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.5);display:flex;align-items:center;justify-content:center}.modal-content[data-v-6070efba]{width:80vw;height:80vh;background:#fff;border-radius:8px;overflow:hidden}.right-container[data-v-6d6a66c6]{width:calc(100% - 7.34375rem);height:100vh;transition:opacity 1s ease}.right-container .right-container-sec[data-v-6d6a66c6]{width:100%;display:flex;position:relative}.right-container .right-container-sec .right-container-left-font-spec[data-v-6d6a66c6]{position:absolute;top:5.625rem;left:18.125rem;width:3.125rem;height:1.25rem;font-size:.78125rem;border-radius:.15625rem;color:#fff;z-index:10;background-color:#34c678;display:flex;justify-content:center;align-items:center}.right-container .right-container-sec .right-container-fir-left-carousel[data-v-6d6a66c6]{position:absolute;right:7.65625rem;top:.53125rem}.right-container .right-container-sec .right-container-fir-left-carousel .carousel[data-v-6d6a66c6]{position:relative;width:.9375rem;height:2.5rem}.right-container .right-container-sec .right-container-fir-left-carousel .carousel .dots[data-v-6d6a66c6]{position:absolute;top:50%;right:.3125rem;transform:translateY(-50%);display:flex;flex-direction:column;gap:.21875rem}.right-container .right-container-sec .right-container-fir-left-carousel .carousel .dots .dot[data-v-6d6a66c6]{width:.3125rem;height:.3125rem;border-radius:50%;background-color:#657494;cursor:pointer;transition:background-color .3s ease}.right-container .right-container-sec .right-container-fir-left-carousel .carousel .dots .dot-dark[data-v-6d6a66c6]{width:.3125rem;height:.3125rem;border-radius:50%;background-color:#fff;cursor:pointer;transition:background-color .3s ease}.right-container .right-container-sec .right-container-fir-left-carousel .carousel .dots .dot.active[data-v-6d6a66c6]{background-color:#01a0fe}.right-container .right-container-sec .right-container-right-father-dark[data-v-6d6a66c6]{height:19.6875rem;border-radius:1.5625rem;background-color:#16304c;border:.0625rem solid transparent;background:url(../../static/index/cardbgc/bgcdark.png) padding-box,linear-gradient(45deg,#9bc4f8,#285399,#9bc4f8,#285399,#9bc4f8) border-box;background-clip:padding-box,border-box;background-color:rgba(12,25,47,.1);position:relative;display:flex;flex-direction:column;box-shadow:0 .25rem .5rem rgba(105,129,178,.8);overflow:hidden}.right-container .right-container-sec .right-container-right-father-dark .uni-margin-wrap[data-v-6d6a66c6]{margin-top:6.25rem;width:37.5rem}.right-container .right-container-sec .right-container-right-father-dark .uni-margin-wrap .swiper[data-v-6d6a66c6]{height:28.125rem}.right-container .right-container-sec .right-container-right-father-dark .uni-margin-wrap .swiper .swiper-item-flex[data-v-6d6a66c6]{display:flex}.right-container .right-container-sec .right-container-right-father-dark .uni-margin-wrap .swiper .swiper-item[data-v-6d6a66c6]{display:block;height:9.375rem;line-height:9.375rem;text-align:center}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next[data-v-6d6a66c6]{height:100%;width:21.875rem}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-people[data-v-6d6a66c6]{display:flex;margin-bottom:.625rem}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-people .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.15625rem}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-people .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:2.8125rem}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-people .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:2.8125rem}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-font[data-v-6d6a66c6]{font-size:2.03125rem;margin-top:1.5625rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-font-dark[data-v-6d6a66c6]{font-size:2.03125rem;margin-top:1.5625rem;margin-bottom:.3125rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;font-weight:700}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-text[data-v-6d6a66c6]{margin-left:.3125rem;font-size:2.1875rem;font-weight:700;width:25rem;margin-bottom:1.5625rem;line-height:2.1875rem;position:relative}.right-container .right-container-sec .right-container-right-father-dark .time-tra-next .time-text .time-text-img[data-v-6d6a66c6]{position:absolute;top:0;left:9.375rem;width:2.5rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father[data-v-6d6a66c6]{width:100%;height:17.5rem;display:flex;justify-content:center;align-items:center}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-left[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-top:-4.6875rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark[data-v-6d6a66c6]{margin-left:1.5625rem;margin-top:1.875rem;width:23.84375rem;height:13.4375rem;border-radius:1.25rem;position:relative;display:flex;box-shadow:.0625rem 0 0 .0625rem;background-color:#16304c;border:.0625rem solid #fff}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-line[data-v-6d6a66c6]{width:1px;height:6.25rem;background:linear-gradient(to top,rgba(0,0,0,0),gray,rgba(0,0,0,0));margin-left:-.625rem;margin-right:.9375rem;margin-top:3.125rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:14.0625rem;position:relative}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-type[data-v-6d6a66c6]{position:absolute;top:0;left:-.78125rem;width:7.8125rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-font[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#414f6e}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-font-dark[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#fff}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-img[data-v-6d6a66c6]{width:7.1875rem;height:6.25rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-font[data-v-6d6a66c6]{font-size:1.09375rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-font-dark[data-v-6d6a66c6]{font-size:1.09375rem;color:#fff;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card[data-v-6d6a66c6]{margin-left:1.5625rem;margin-top:1.875rem;width:23.84375rem;height:13.4375rem;border-radius:1.25rem;position:relative;display:flex;border:.03125rem solid black;box-shadow:0 .25rem .5rem rgba(0,0,0,.3)}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-line[data-v-6d6a66c6]{width:1px;height:6.25rem;background:linear-gradient(to top,rgba(0,0,0,0),gray,rgba(0,0,0,0));margin-left:-.625rem;margin-right:.9375rem;margin-top:3.125rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:14.0625rem;position:relative}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-card-type[data-v-6d6a66c6]{position:absolute;top:0;left:-.78125rem;width:7.8125rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-card-font[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#414f6e}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-img[data-v-6d6a66c6]{width:7.1875rem;height:6.25rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-font[data-v-6d6a66c6]{font-size:1.09375rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-font-dark[data-v-6d6a66c6]{font-size:1.5625rem;color:#fff;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-down-father .right-container-right-down-right[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-top:-4.6875rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-title[data-v-6d6a66c6]{width:100%;height:5.3125rem;position:relative}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-title .right-container-right-text[data-v-6d6a66c6]{line-height:4.0625rem;font-size:1.25rem;font-weight:600;margin-left:1.875rem}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-title .right-container-right-text-dark[data-v-6d6a66c6]{line-height:4.0625rem;font-size:1.25rem;font-weight:600;margin-left:1.875rem;color:#fff}.right-container .right-container-sec .right-container-right-father-dark .right-container-right-title .right-container-right-img[data-v-6d6a66c6]{position:absolute;top:1.875rem;right:1.5625rem;width:1.5625rem;height:.46875rem}.right-container .right-container-sec .right-container-right-father[data-v-6d6a66c6]{width:100%;height:19.6875rem;border-radius:1.5625rem;border:.0625rem solid #fff;background-image:url(../../static/index/mountain.png);background-color:rgba(200,216,238,.8);background-position:60% 50%;position:relative;display:flex;flex-direction:column;box-shadow:0 .25rem .5rem rgba(105,129,178,.8);overflow:hidden}.right-container .right-container-sec .right-container-right-father .uni-margin-wrap[data-v-6d6a66c6]{margin-top:6.25rem;width:37.5rem}.right-container .right-container-sec .right-container-right-father .uni-margin-wrap .swiper[data-v-6d6a66c6]{height:28.125rem}.right-container .right-container-sec .right-container-right-father .uni-margin-wrap .swiper .swiper-item-flex[data-v-6d6a66c6]{display:flex}.right-container .right-container-sec .right-container-right-father .uni-margin-wrap .swiper .swiper-item[data-v-6d6a66c6]{display:block;height:9.375rem;line-height:9.375rem;text-align:center}.right-container .right-container-sec .right-container-right-father .time-tra-next[data-v-6d6a66c6]{height:100%;width:21.875rem}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-people[data-v-6d6a66c6]{display:flex;margin-bottom:.625rem}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-people .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.15625rem}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-people .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:2.8125rem}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-people .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:2.8125rem}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-font[data-v-6d6a66c6]{font-size:2.03125rem;margin-top:1.5625rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-font-dark[data-v-6d6a66c6]{font-size:2.03125rem;margin-top:1.5625rem;margin-bottom:.3125rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;font-weight:700}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-text[data-v-6d6a66c6]{margin-left:.3125rem;font-size:2.1875rem;font-weight:700;width:25rem;margin-bottom:1.5625rem;line-height:2.1875rem;position:relative}.right-container .right-container-sec .right-container-right-father .time-tra-next .time-text .time-text-img[data-v-6d6a66c6]{position:absolute;top:0;left:9.375rem;width:2.5rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father[data-v-6d6a66c6]{width:100%;height:17.5rem;display:flex;justify-content:center;align-items:center}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-left[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-top:-4.6875rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark[data-v-6d6a66c6]{margin-left:1.5625rem;margin-top:1.875rem;width:23.84375rem;height:13.4375rem;border-radius:1.25rem;position:relative;display:flex;box-shadow:.0625rem 0 0 .0625rem;background-color:#16304c;border:.0625rem solid #fff}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-line[data-v-6d6a66c6]{width:1px;height:6.25rem;background:linear-gradient(to top,rgba(0,0,0,0),gray,rgba(0,0,0,0));margin-left:-.625rem;margin-right:.9375rem;margin-top:3.125rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:14.0625rem;position:relative}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-type[data-v-6d6a66c6]{position:absolute;top:0;left:-.78125rem;width:7.8125rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-font[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#414f6e}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-card-font-dark[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#fff}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-img[data-v-6d6a66c6]{width:7.1875rem;height:6.25rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-font[data-v-6d6a66c6]{font-size:1.09375rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card-dark .right-container-right-down-card-card .right-container-right-down-card-font-dark[data-v-6d6a66c6]{font-size:1.09375rem;color:#fff;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card[data-v-6d6a66c6]{margin-left:1.5625rem;margin-top:1.875rem;width:23.84375rem;height:13.4375rem;border-radius:1.25rem;position:relative;display:flex;border:.03125rem solid black;box-shadow:0 .25rem .5rem rgba(0,0,0,.3)}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-line[data-v-6d6a66c6]{width:1px;height:6.25rem;background:linear-gradient(to top,rgba(0,0,0,0),gray,rgba(0,0,0,0));margin-left:-.625rem;margin-right:.9375rem;margin-top:3.125rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:14.0625rem;position:relative}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-card-type[data-v-6d6a66c6]{position:absolute;top:0;left:-.78125rem;width:7.8125rem;height:2.5rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-card-font[data-v-6d6a66c6]{position:absolute;top:.46875rem;left:2.03125rem;font-size:1.09375rem;color:#414f6e}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-img[data-v-6d6a66c6]{width:7.1875rem;height:6.25rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-font[data-v-6d6a66c6]{font-size:1.09375rem;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-card .right-container-right-down-card-card .right-container-right-down-card-font-dark[data-v-6d6a66c6]{font-size:1.5625rem;color:#fff;margin-top:.9375rem}.right-container .right-container-sec .right-container-right-father .right-container-right-down-father .right-container-right-down-right[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-top:-4.6875rem}.right-container .right-container-sec .right-container-right-father .right-container-right-title[data-v-6d6a66c6]{width:100%;height:5.3125rem;position:relative}.right-container .right-container-sec .right-container-right-father .right-container-right-title .right-container-right-text[data-v-6d6a66c6]{line-height:4.0625rem;font-size:1.25rem;font-weight:600;margin-left:1.875rem}.right-container .right-container-sec .right-container-right-father .right-container-right-title .right-container-right-text-dark[data-v-6d6a66c6]{line-height:4.0625rem;font-size:1.25rem;font-weight:600;margin-left:1.875rem;color:#fff}.right-container .right-container-sec .right-container-right-father .right-container-right-title .right-container-right-img[data-v-6d6a66c6]{position:absolute;top:1.875rem;right:1.5625rem;width:1.5625rem;height:.46875rem}.right-container .right-container-sec .right-container-left[data-v-6d6a66c6]{height:19.6875rem;border-radius:1.5625rem;border:.03125rem solid #fff;position:relative;display:flex;justify-content:center;align-items:center;background-color:rgba(255,255,255,.5);background-image:url(../../static/index/mountain.png);background-position:70% 45%;overflow:hidden;box-shadow:0 .25rem .5rem rgba(105,129,178,.8)}.right-container .right-container-sec .right-container-left-dark[data-v-6d6a66c6]{height:19.6875rem;border-radius:1.5625rem;background-color:#16304c;border:.0625rem solid transparent;background:url(../../static/index/cardbgc/bgcdark.png) padding-box,linear-gradient(45deg,#9bc4f8,#285399,#9bc4f8,#285399,#9bc4f8) border-box;background-clip:padding-box,border-box;background-color:rgba(12,25,47,.1);position:relative;display:flex;justify-content:center;align-items:center;overflow:hidden;box-shadow:0 .25rem .5rem rgba(105,129,178,.8)}.right-container .right-container-sec .uni-margin-wrap[data-v-6d6a66c6]{width:31.25rem}.right-container .right-container-sec .uni-margin-wrap .swiper[data-v-6d6a66c6]{height:21.875rem}.right-container .right-container-sec .uni-margin-wrap .swiper .swiper-item-flex[data-v-6d6a66c6]{display:flex;position:relative}.right-container .right-container-sec .uni-margin-wrap .swiper .swiper-item[data-v-6d6a66c6]{display:block;height:7.8125rem;line-height:9.375rem;text-align:center}.right-container .right-container-sec .right-container-fir-left-card-main-right[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-right:.3125rem;z-index:11}.right-container .right-container-sec .right-huli-fir[data-v-6d6a66c6]{width:7.8125rem;height:100%;margin-top:0;display:flex;justify-content:center;align-items:center;flex-direction:column}.right-container .right-container-sec .right-huli-fir .right-huli-view[data-v-6d6a66c6]{margin-left:.25rem;height:23.4375rem;overflow:auto;display:flex;justify-content:center;align-items:center;flex-direction:column;box-sizing:border-box}.right-container .right-container-sec .right-huli-fir .right-huli-view .right-huli-view-dis[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:100%;height:5.3125rem}.right-container .right-container-sec .right-huli-fir .right-huli-view .right-huli-view-dis .right-huli-img[data-v-6d6a66c6]{width:2.5rem;height:2.5rem}.right-container .right-container-sec .right-huli-fir .right-huli-view .right-huli-view-dis .right-huli-text[data-v-6d6a66c6]{width:100%;height:.3125rem;font-size:1.09375rem;text-align:center;margin-bottom:.15625rem}.right-container .right-container-sec .right-huli-fir .right-huli-view .right-huli-view-dis .right-huli-text-dark[data-v-6d6a66c6]{width:100%;height:.3125rem;font-size:1.09375rem;text-align:center;margin-bottom:.15625rem;color:#fff}.right-container .right-container-sec .right-huli-fir .right-huli-shang[data-v-6d6a66c6]{margin-top:1.25rem;width:.9375rem;height:.9375rem}.right-container .right-container-sec .right-huli-fir .right-huli-xia[data-v-6d6a66c6]{margin-bottom:1.25rem;width:.9375rem;height:.9375rem}.right-container .right-container-sec .right-container-photo[data-v-6d6a66c6]{display:flex;flex-direction:column;justify-content:center;align-items:center;margin-left:1.5625rem}.right-container .right-container-sec .right-container-photo .right-container-photo-img[data-v-6d6a66c6]{width:9.6875rem;height:10.9375rem;margin-bottom:.3125rem}.right-container .right-container-sec .right-container-photo .right-container-photo-text[data-v-6d6a66c6]{font-size:.9375rem;color:#324160}.right-container .right-container-sec .right-container-photo .right-container-photo-text-dark[data-v-6d6a66c6]{font-size:.9375rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-sec .right-container-fir-left-card-main-left[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-left:.9375rem}.right-container .right-container-sec .right-container-left-type[data-v-6d6a66c6]{position:absolute;top:1.3125rem;left:-.46875rem;width:7.34375rem;height:2.28125rem;z-index:10}.right-container .right-container-sec .right-container-left-font[data-v-6d6a66c6]{position:absolute;top:1.59375rem;left:1.5625rem;font-size:1.125rem;color:#fff;z-index:10}.right-container .right-container-sec .time-tra-thi[data-v-6d6a66c6]{margin-left:2.5rem;margin-top:2.1875rem;height:100%;width:17.1875rem;position:relative}.right-container .right-container-sec .time-tra-thi .time-text[data-v-6d6a66c6]{margin-left:.3125rem;font-size:1.09375rem;width:14.0625rem;margin-bottom:1.25rem;line-height:1.25rem}.right-container .right-container-sec .time-tra-thi .time-text-dark[data-v-6d6a66c6]{margin-left:.3125rem;color:#cdd6ea;font-size:1.09375rem;width:14.0625rem;margin-bottom:1.25rem;line-height:1.25rem}.right-container .right-container-sec .time-tra-thi .time-tra-thi-zhixing[data-v-6d6a66c6]{position:absolute;top:2.34375rem;left:14.0625rem}.right-container .right-container-sec .time-tra-thi .time-tra-thi-zhixing-font[data-v-6d6a66c6]{position:absolute;top:1.875rem;left:.3125rem;width:3.125rem;height:1.25rem;font-size:.78125rem;border-radius:.15625rem;color:#fff;z-index:10;background-color:#f37b5b;display:flex;justify-content:center;align-items:center}.right-container .right-container-sec .time-tra-thi .time-people-two[data-v-6d6a66c6]{display:flex;margin-top:1.25rem;margin-bottom:1.25rem}.right-container .right-container-sec .time-tra-thi .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.3125rem}.right-container .right-container-sec .time-tra-thi .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:.625rem}.right-container .right-container-sec .time-tra-thi .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:.625rem}.right-container .right-container-sec .time-tra-thi .time-people-thi[data-v-6d6a66c6]{display:flex}.right-container .right-container-sec .time-tra-thi .time-people-thi .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.15625rem;margin-left:.15625rem}.right-container .right-container-sec .time-tra-thi .time-people-thi .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:.625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.right-container .right-container-sec .time-tra-thi .time-people-thi .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:.625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.right-container .right-container-sec .time-tra-thi .time-button-view[data-v-6d6a66c6]{display:flex;margin-left:0;transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-thi .time-button-view .time-button-start[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to bottom,#af8ed7,#4d3e9b);border-left:.0625rem solid #fff;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem;margin-right:.78125rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-thi .time-button-view .time-button-end[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-thi .time-button-view .time-button-end-dark[data-v-6d6a66c6]{width:7.1875rem;height:2.5rem;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(0,0,0,.3);background:linear-gradient(to top,#6b87ba,#fff);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-thi .time-font[data-v-6d6a66c6]{font-size:2.1875rem;margin-top:3.75rem;margin-bottom:1.25rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.right-container .right-container-sec .time-tra-thi .time-font-dark[data-v-6d6a66c6]{font-size:2.1875rem;margin-top:3.75rem;margin-bottom:1.25rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;font-weight:700}.right-container .right-container-sec .time-tra-thi .time-text-img[data-v-6d6a66c6]{position:absolute;top:0;left:9.375rem;width:2.5rem;height:2.5rem}.right-container .right-container-sec .time-tra-sec[data-v-6d6a66c6]{margin-left:2.5rem;margin-top:3.4375rem;height:100%;width:15.625rem;overflow:hidden}.right-container .right-container-sec .time-tra-sec .time-people-thi[data-v-6d6a66c6]{display:flex;margin-bottom:.46875rem}.right-container .right-container-sec .time-tra-sec .time-people-thi .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.15625rem;margin-left:.15625rem}.right-container .right-container-sec .time-tra-sec .time-people-thi .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:.625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.right-container .right-container-sec .time-tra-sec .time-people-thi .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:.625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.right-container .right-container-sec .time-tra-sec .time-button-view[data-v-6d6a66c6]{display:flex;margin-top:.9375rem;margin-left:0}.right-container .right-container-sec .time-tra-sec .time-button-view .time-button-start[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to top,#0da0b1,#04d3af);border-left:.0625rem solid #fff;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem;margin-right:.78125rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-sec .time-button-view .time-button-end[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-sec .time-button-view .time-button-end-dark[data-v-6d6a66c6]{width:7.1875rem;height:2.5rem;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(0,0,0,.3);background:linear-gradient(to top,#6b87ba,#fff);transition:all .4s ease-in-out}.right-container .right-container-sec .time-tra-sec .time-font[data-v-6d6a66c6]{font-size:2.34375rem;margin-top:.9375rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.right-container .right-container-sec .time-tra-sec .time-font-dark[data-v-6d6a66c6]{font-size:2.34375rem;margin-top:.9375rem;margin-bottom:.3125rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;font-weight:700}.right-container .right-container-sec .time-tra-sec .time-text-img[data-v-6d6a66c6]{position:absolute;top:0;left:9.375rem;width:2.5rem;height:2.5rem}.right-container .time-people-sec[data-v-6d6a66c6]{display:flex;margin-bottom:.3125rem}.right-container .time-people-sec .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.3125rem;margin-left:.15625rem;transition:all .4s ease-in-out}.right-container .time-people-sec .time-people-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:2.8125rem;transition:all .4s ease-in-out}.right-container .time-people-sec .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:2.8125rem;transition:all .4s ease-in-out}.right-container .right-container-fir[data-v-6d6a66c6]{width:100%;height:18.125rem;display:flex}.right-container .right-container-fir .right-container-fir-left-nav[data-v-6d6a66c6]{width:63%;height:17.125rem;position:relative;box-shadow:0 .25rem .5rem rgba(105,129,178,.8)}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel[data-v-6d6a66c6]{position:absolute;left:29.0625rem;margin-top:.3125rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel .carousel[data-v-6d6a66c6]{position:relative;width:4.6875rem;height:3.125rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel .carousel .dots[data-v-6d6a66c6]{position:absolute;top:50%;right:.3125rem;transform:translateY(-50%);display:flex;flex-direction:column;gap:.21875rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel .carousel .dots .dot[data-v-6d6a66c6]{width:.3125rem;height:.3125rem;border-radius:50%;background-color:#657494;cursor:pointer;transition:background-color .3s ease}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel .carousel .dots .dot-dark[data-v-6d6a66c6]{width:.3125rem;height:.3125rem;border-radius:50%;background-color:#fff;cursor:pointer;transition:background-color .3s ease}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-carousel .carousel .dots .dot.active[data-v-6d6a66c6]{background-color:#01a0fe}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card[data-v-6d6a66c6]{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:1.5625rem;border:.03125rem solid #fff;background-color:rgba(99,115,157,.1);background-image:url(../../static/index/mountain.png);background-position:60% 50%}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-dark[data-v-6d6a66c6]{position:absolute;top:0;left:0;width:100%;height:100%;border:.0625rem solid transparent;border-radius:1.5625rem;background:url(../../static/index/cardbgc/bgcdark.png) padding-box,linear-gradient(45deg,#9bc4f8,#285399,#9bc4f8,#285399,#9bc4f8) border-box;background-clip:padding-box,border-box;background-color:rgba(12,25,47,.1)}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;width:100%;height:100%}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .split-line-white-right-left[data-v-6d6a66c6]{width:.0625rem;height:25rem;background:linear-gradient(to top,rgba(0,0,0,0),#fff,rgba(0,0,0,0));margin-right:.625rem;position:relative}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .split-line-white-right-left .split-line-white-img[data-v-6d6a66c6]{position:absolute;top:0;left:-9.375rem;height:25rem;width:9.375rem;z-index:-1}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .uni-margin-wrap-fir[data-v-6d6a66c6]{width:100%}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .uni-margin-wrap-fir .swiper[data-v-6d6a66c6]{height:14.6875rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .uni-margin-wrap-fir .swiper .swiper-item-flex[data-v-6d6a66c6]{display:flex;margin-top:.9375rem;z-index:10}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .uni-margin-wrap-fir .swiper .swiper-item[data-v-6d6a66c6]{display:block;height:6.25rem;line-height:9.375rem;text-align:center}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-main-right[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-right:.78125rem;z-index:1}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir[data-v-6d6a66c6]{margin-top:1.25rem;margin-left:.9375rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-people-two[data-v-6d6a66c6]{display:flex}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-button-view[data-v-6d6a66c6]{display:flex;margin-top:.3125rem;margin-left:0}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-button-view .time-button-start[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to top,#047adb,#0ea7dd);border-left:.0625rem solid #fff;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem;margin-right:.78125rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-button-view .time-button-end[data-v-6d6a66c6]{width:7.1875rem;height:2.625rem;border-radius:.9375rem;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(105,129,178,.2);transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-button-view .time-button-end-dark[data-v-6d6a66c6]{width:7.1875rem;height:2.5rem;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;font-size:1rem;box-shadow:.09375rem .09375rem .3125rem rgba(0,0,0,.3);background:linear-gradient(to top,#6b87ba,#fff);transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-people-fir[data-v-6d6a66c6]{display:flex;margin-right:.625rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-people-fir .time-people-img[data-v-6d6a66c6]{width:1.3125rem;height:1.3125rem;margin-right:.3125rem;margin-left:.15625rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-people-fir .time-people-font[data-v-6d6a66c6]{font-size:.9375rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-people-fir .time-people-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-font[data-v-6d6a66c6]{font-size:2.1875rem;margin-bottom:.9375rem;background:linear-gradient(to top,#334160,#687898);-webkit-background-clip:text;color:transparent;font-weight:700;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-font-dark[data-v-6d6a66c6]{font-size:2.1875rem;margin-bottom:.9375rem;background:linear-gradient(to right,#ebf4ff,#adc4e0);-webkit-background-clip:text;color:transparent;font-weight:700;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-text[data-v-6d6a66c6]{margin-left:.3125rem;font-size:1.09375rem;width:16.5625rem;margin-bottom:1.25rem;line-height:1.25rem;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .time-tra-fir .time-text-dark[data-v-6d6a66c6]{margin-left:.3125rem;color:#cdd6ea;font-size:1.09375rem;width:16.5625rem;margin-bottom:1.25rem;line-height:1.25rem;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;position:relative;margin-left:1.5625rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-zhixing[data-v-6d6a66c6]{position:absolute;top:.3125rem;left:27.1875rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-zhixing-font[data-v-6d6a66c6]{position:absolute;top:1.875rem;left:.3125rem;width:3.125rem;height:1.25rem;font-size:.78125rem;border-radius:.15625rem;color:#fff;z-index:10;background-color:#f37b5b;display:flex;justify-content:center;align-items:center}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-main-font[data-v-6d6a66c6]{font-size:1.0625rem;font-weight:350;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-main-font-dark[data-v-6d6a66c6]{font-size:1.0625rem;font-weight:350;transition:all .4s ease-in-out;color:#fff}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-main-laba-video[data-v-6d6a66c6]{width:100%;display:flex;justify-content:center;align-items:center;margin-top:.3125rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-main-laba-video .right-container-fir-left-card-main-laba[data-v-6d6a66c6]{width:1.40625rem;height:1.40625rem;margin-right:.15625rem;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-main-laba-video .right-container-fir-left-card-main-video[data-v-6d6a66c6]{width:1.40625rem;height:1.40625rem;transition:all .4s ease-in-out}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-card .right-container-fir-left-card-img[data-v-6d6a66c6]{width:11.25rem;height:8.4375rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-main .right-container-fir-left-card-main-left-up[data-v-6d6a66c6]{height:1.5625rem;width:1.5625rem;margin-right:0;margin-left:.625rem}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-hulilei[data-v-6d6a66c6]{position:absolute;top:1.3125rem;left:-.3125rem;width:6.875rem;height:2.28125rem;z-index:10}.right-container .right-container-fir .right-container-fir-left-nav .right-container-fir-left-card-hulilei-font[data-v-6d6a66c6]{position:absolute;top:1.59375rem;left:1.40625rem;font-size:1.125rem;color:#fff;z-index:10}.right-container .right-container-fir .right-container-fir-right[data-v-6d6a66c6]{margin-left:2%;margin-right:2%;width:21.875rem;height:17.125rem;border-radius:1.5625rem;border:.03125rem solid #fff;background:url(../../static/index/rightbgi.png);background-size:cover;background-color:rgba(99,115,157,.1);box-shadow:0 .25rem .5rem rgba(105,129,178,.8)}.right-container .right-container-fir .right-container-fir-right-dark[data-v-6d6a66c6]{margin-left:2%;margin-right:2%;width:21.875rem;height:17.125rem;border-radius:1.5625rem;border:.03125rem solid #fff;background-color:#16304c;border:.0625rem solid transparent;background:url(../../static/index/cardbgc/bgcdark.png) padding-box,linear-gradient(45deg,#9bc4f8,#285399,#9bc4f8,#285399,#9bc4f8) border-box;background-clip:padding-box,border-box;background-color:rgba(12,25,47,.1);box-shadow:0 .25rem .5rem rgba(105,129,178,.8)}.right-container .right-container-fir .right-container-card[data-v-6d6a66c6]{margin-top:.78125rem;margin-left:1.25rem;position:relative}.right-container .right-container-fir .right-container-card .right-container-card-right[data-v-6d6a66c6]{position:absolute;right:0;top:0;width:3.75rem;height:10.9375rem;display:flex;align-items:center;justify-content:center;flex-direction:column;margin-bottom:.625rem;margin-right:.625rem}.right-container .right-container-fir .right-container-card .right-container-card-right .right-container-card-right-img[data-v-6d6a66c6]{width:1.875rem;height:1.875rem;margin-top:.3125rem}.right-container .right-container-fir .right-container-card .right-container-button[data-v-6d6a66c6]{display:flex;margin-left:-.625rem;margin-top:.71875rem}.right-container .right-container-fir .right-container-card .right-container-button .right-container-button-any[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;flex-direction:column;width:4.6875rem;position:relative}.right-container .right-container-fir .right-container-card .right-container-button .right-container-button-any .right-container-button-ray[data-v-6d6a66c6]{position:absolute;top:-.78125rem;left:0;width:4.9375rem;height:4.6875rem}.right-container .right-container-fir .right-container-card .right-container-button .right-container-button-any .right-container-button-text[data-v-6d6a66c6]{font-size:.78125rem;color:#313d56}.right-container .right-container-fir .right-container-card .right-container-button .right-container-button-img[data-v-6d6a66c6]{width:2.5rem;height:2.5rem}.right-container .right-container-fir .right-container-card .right-container-fenge[data-v-6d6a66c6]{width:100%;height:.0625rem;background:linear-gradient(to right,rgba(255,255,255,0),#fff,rgba(255,255,255,0))}.right-container .right-container-fir .right-container-card .right-container-tem[data-v-6d6a66c6]{display:flex;margin-top:.625rem;margin-bottom:.625rem}.right-container .right-container-fir .right-container-card .right-container-tem .right-container-tem-text[data-v-6d6a66c6]{font-size:1.5625rem;margin-right:2.1875rem}.right-container .right-container-fir .right-container-card .right-container-tem .right-container-tem-text-dark[data-v-6d6a66c6]{font-size:1.5625rem;margin-right:2.1875rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-fir .right-container-card .right-container-tem .right-container-tem-img[data-v-6d6a66c6]{width:2.03125rem;height:2.03125rem}.right-container .right-container-fir .right-container-card .right-container-title[data-v-6d6a66c6]{font-size:3.75rem;font-weight:500;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent;margin:0}.right-container .right-container-fir .right-container-card .right-container-title-dark[data-v-6d6a66c6]{font-size:3.75rem;display:block;margin:0;font-weight:500;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-fir .right-container-card .right-container-date[data-v-6d6a66c6]{font-size:1.09375rem;display:block;margin:0;margin-left:.5625rem;margin-bottom:.3125rem}.right-container .right-container-fir .right-container-card .right-container-date-dark[data-v-6d6a66c6]{font-size:1.09375rem;color:#7080a1;display:block;margin:0;margin-left:.5625rem;margin-bottom:.3125rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-fir .right-container-card .right-container-day[data-v-6d6a66c6]{font-size:1.09375rem;font-weight:600;margin-left:.5625rem}.right-container .right-container-fir .right-container-card .right-container-day-dark[data-v-6d6a66c6]{font-size:1.09375rem;font-weight:600;margin-left:.5625rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-title-nav[data-v-6d6a66c6]{margin-top:2.34375rem;margin-bottom:.625rem;margin-left:.625rem}.right-container .right-container-title-nav .right-container-title-no[data-v-6d6a66c6]{font-size:1.09375rem;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-no-dark[data-v-6d6a66c6]{font-size:1.09375rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-class[data-v-6d6a66c6]{font-size:1.09375rem;font-weight:800;margin-left:.625rem}.right-container .right-container-title-nav .right-container-title-class-dark[data-v-6d6a66c6]{font-size:1.09375rem;font-weight:800;margin-left:.625rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-title-nav .right-container-title-class-anhei-button[data-v-6d6a66c6]{float:right;display:flex;justify-content:center;align-items:center;border-radius:.9375rem;margin-right:.9375rem;width:6.25rem;height:1.5625rem;background-color:#000;border:.0625rem solid}.right-container .right-container-title-nav .right-container-title-class-anhei-button .right-container-title-class-anhei[data-v-6d6a66c6]{font-size:.625rem;font-weight:800;color:#fff}.split-line[data-v-6d6a66c6]{margin-left:.625rem;margin-top:3.75rem;width:.0625rem;height:4.6875rem;background:linear-gradient(to top,rgba(0,0,0,0),#92a7c5,rgba(0,0,0,0))}.split-line-white-sec[data-v-6d6a66c6]{width:.0625rem;height:25rem;background:linear-gradient(to top,rgba(0,0,0,0),#fff,rgba(0,0,0,0));position:relative}.split-line-white-sec .split-line-white-img[data-v-6d6a66c6]{position:absolute;top:0;left:-9.375rem;height:25rem;width:9.375rem;pointer-events:none}.card-upfaguang[data-v-6d6a66c6]{position:absolute;top:8.28125rem;left:1.5625rem;height:18.75rem;width:15.625rem;transition:all .4s ease-in-out}.card-upfaguang-down[data-v-6d6a66c6]{position:absolute;top:19.375rem;left:26.875rem;height:18.75rem;width:15.625rem}.right-huli-sec[data-v-6d6a66c6]{margin-left:.21875rem;width:7.1875rem;height:100%;display:flex;justify-content:center;align-items:center;flex-direction:column;transition:all .4s ease-in-out}.right-huli-sec .right-huli-view[data-v-6d6a66c6]{width:100%;overflow:auto;display:flex;justify-content:center;align-items:flex-start;flex-direction:column;height:14.0625rem}.right-huli-sec .right-huli-view .right-huli-view-dis[data-v-6d6a66c6]{height:4.375rem;display:flex;justify-content:center;align-items:center;flex-direction:column;width:100%;transition:all .4s ease-in-out}.right-huli-sec .right-huli-view .right-huli-view-dis .right-huli-img[data-v-6d6a66c6]{width:2.8125rem;height:2.8125rem}.right-huli-sec .right-huli-view .right-huli-view-dis .right-huli-text[data-v-6d6a66c6]{width:100%;height:.46875rem;text-align:center;font-size:1.09375rem}.right-huli-sec .right-huli-view .right-huli-view-dis .right-huli-text-dark[data-v-6d6a66c6]{width:100%;height:.46875rem;text-align:center;font-size:1.09375rem;color:#fff;margin-top:.3125rem}.right-huli-sec .right-huli-shang[data-v-6d6a66c6],.right-huli-sec .right-huli-xia[data-v-6d6a66c6]{width:.9375rem;height:.625rem}.right-container-fir-left-card-flex[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;width:100%;height:100%;margin-left:.625rem}.right-container-fir-left-card-flex-sec[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;width:100%;height:100%;position:relative}.right-container-fir-left-card-flex-sec .right-container-fir-left-card-flex-sec-img[data-v-6d6a66c6]{position:absolute;top:1.3125rem;left:-.3125rem;width:6.875rem;height:2.28125rem;z-index:10}.right-container-fir-left-card-flex-sec .right-container-fir-left-card-flex-sec-font[data-v-6d6a66c6]{position:absolute;top:1.59375rem;left:1.40625rem;font-size:1.125rem;color:#fff;z-index:10}.right-container-fir-left-card-flex-sec .right-container-fir-left-card-flex-sec-imgright-fir[data-v-6d6a66c6]{position:absolute;width:3.125rem;height:1.5625rem;top:1.59375rem;left:20.3125rem;z-index:10}.right-container-fir-left-card-flex-sec .right-container-fir-left-card-flex-sec-imgright-sec[data-v-6d6a66c6]{position:absolute;width:3.125rem;height:1.5625rem;top:1.59375rem;left:20.9375rem;z-index:10}.savehundred[data-v-6d6a66c6]{width:100%;height:100%}.mt[data-v-6d6a66c6]{margin-top:1.5625rem}.progress-bar-container[data-v-6d6a66c6]{margin-top:.9375rem;width:60%;height:.625rem;background-color:#aab9d6;border-radius:15px;overflow:hidden}.progress-bar[data-v-6d6a66c6]{height:100%;background:linear-gradient(to top,#047adb,#0ea7dd);border-radius:15px 0 0 15px;transition:width .3s ease}.under-father[data-v-6d6a66c6]{position:fixed;bottom:0;display:flex;align-items:center;width:100%;height:4.6875rem}.under-father .under-father-view[data-v-6d6a66c6]{margin-left:.3125rem;margin-right:4.6875rem;position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column}.under-father .under-father-view .under-father-light[data-v-6d6a66c6]{position:absolute;bottom:-.625rem;left:-2.8125rem;width:9.375rem;height:6.25rem}.under-father .under-father-view .under-father-img[data-v-6d6a66c6]{width:2.5rem;height:2.5rem;margin-left:-.09375rem}.under-father .under-father-view .under-father-img-font[data-v-6d6a66c6]{font-size:.9375rem}.under-father .under-father-view .under-father-img-font-dark[data-v-6d6a66c6]{font-size:.9375rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-icons[data-v-6d6a66c6]{display:flex;align-items:center;float:right;height:2.1875rem;margin-right:1.25rem}.right-icons .right-icons-font[data-v-6d6a66c6]{margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-icons .right-icons-font-dark[data-v-6d6a66c6]{color:#fff;margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-icons .right-icons-img[data-v-6d6a66c6]{width:2.5rem;height:2.5rem;margin-left:.3125rem;margin-right:.3125rem;margin-top:-1.25rem}.right-icons .right-icons-img-icon[data-v-6d6a66c6]{width:1.875rem;height:2.5rem;margin-top:-.3125rem;margin-left:.25rem}.swiper-item-flex .time-tra-thi-photo[data-v-6d6a66c6]{display:flex;justify-content:center;align-items:center;width:9.375rem;flex-direction:column;transition:all .4s ease-in-out;margin-left:.625rem}.swiper-item-flex .time-tra-thi-photo .time-tra-thi-photo-img[data-v-6d6a66c6]{width:10.3125rem;height:10.3125rem;margin-top:-3.125rem;margin-left:-1.5625rem;transition:all .4s ease-in-out}.swiper-item-flex .time-tra-thi-photo .time-tra-thi-photo-font[data-v-6d6a66c6]{font-size:.9375rem;margin-right:1.5625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;transition:all .4s ease-in-out}.swiper-item-flex .time-tra-thi-photo .time-tra-thi-photo-font-dark[data-v-6d6a66c6]{color:#cdd6ea;font-size:.9375rem;margin-right:1.5625rem;text-overflow:ellipsis;white-space:nowrap;overflow:hidden;transition:all .4s ease-in-out}.down-icons[data-v-6d6a66c6]{margin-top:.3125rem;width:100%;height:1.875rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-6d6a66c6]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}.right-container-big[data-v-6d6a66c6]{transform:scale(1.562);transition:transform .5s ease;transform-origin:left top;background-color:#dce6fe;border-radius:.9375rem}.right-container-small[data-v-6d6a66c6]{transform:scale(1);transition:transform .5s ease;transform-origin:left top;background-color:#dce6fe;border-radius:1.5625rem;z-index:998}.right-container-right-big[data-v-6d6a66c6]{transform:scale(1.923);margin-left:2%;width:41%;transition:transform .5s ease;transform-origin:right bottom;background-color:#dce6fe;border-radius:.90625rem}.right-container-right-small[data-v-6d6a66c6]{transform:scale(1);margin-left:2%;width:41%;transition:transform .5s ease;transform-origin:right bottom;background-color:#dce6fe;border-radius:1.5625rem}.right-container-left-big[data-v-6d6a66c6]{transform:scale(1.781);width:55%;transition:transform .5s ease;transform-origin:left bottom;background-color:#b7c8f3;border-radius:.90625rem}.right-container-left-small[data-v-6d6a66c6]{transform:scale(1);width:55%;transition:transform .5s ease;transform-origin:left bottom;background-color:#b7c8f3;border-radius:1.5625rem}.super-card[data-v-81c0d68b]{display:flex;justify-content:center;width:100%;height:calc(100% - 12.5rem)}.super-card .scroll-x[data-v-81c0d68b]{height:100%;width:100%}.super-card .super-card-container[data-v-81c0d68b]{background:url(../../static/index/clearmountain.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;isolation:isolate;overflow:hidden;width:51.5625rem;height:28.75rem;border-radius:.625rem;border:.0625rem solid #fff;box-shadow:.3125rem .3125rem 20px rgba(0,0,0,.1);position:relative}.super-card .super-card-time[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;height:2.5rem;width:3.125rem;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;font-weight:700;z-index:-1}.super-card .super-card-time-und[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;width:3.125rem;flex-direction:column;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1}.super-card .super-card-time-card[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;height:6.53125rem;width:100%;transition:all .8s;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.right-container[data-v-81c0d68b]{width:calc(100% - 7.34375rem);height:100vh;transition:opacity 1s ease;position:relative}.right-container .move-font[data-v-81c0d68b]{position:absolute;font-size:1.09375rem;font-weight:700}.right-container .doctorsay-container-view[data-v-81c0d68b]{width:100%;height:38.125rem;display:flex}.right-container .doctorsay-container-view .doctorsay-container-items[data-v-81c0d68b]{width:9.6875rem;height:38.125rem;margin-left:.9375rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-up[data-v-81c0d68b]{display:flex;flex-wrap:wrap}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-up .doctorsay-container-card[data-v-81c0d68b]{display:flex;flex-direction:column;justify-content:center;align-items:center;background-color:#ddeafa;width:4.0625rem;height:4.0625rem;margin:0 .5625rem .46875rem 0;border-radius:.9375rem;border:.0625rem solid #ddeafa;box-shadow:5px 5px 10px rgba(105,129,178,.2)}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-up .doctorsay-container-card .doctorsay-container-card-img[data-v-81c0d68b]{width:2.34375rem;height:2.34375rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-up .doctorsay-container-card .doctorsay-container-card-font[data-v-81c0d68b]{font-size:.9375rem;margin-top:-.3125rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-up .doctorsay-container-card .doctorsay-container-card-font-dark[data-v-81c0d68b]{font-size:.9375rem;color:#fff;margin-top:-.3125rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down[data-v-81c0d68b]{background-color:#ddeafa;-webkit-backdrop-filter:blur(.25rem);backdrop-filter:blur(.25rem);width:9.0625rem;height:28.125rem;border-radius:.9375rem;margin-top:0;box-shadow:5px 5px 10px rgba(105,129,178,.8)}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-scroll[data-v-81c0d68b]{height:24.0625rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-top[data-v-81c0d68b]{height:2.5rem;display:flex;margin-bottom:.625rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-top .doctorsay-top-gun[data-v-81c0d68b]{margin-top:1.15625rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-top .doctorsay-top-font[data-v-81c0d68b]{font-size:1.0625rem;font-weight:700;margin-top:1.0625rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-button[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;height:2.8125rem;position:relative}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-button .doctorsay-container-text-target[data-v-81c0d68b]{color:#016ad1;background-color:#c9e8ff;border-radius:.78125rem;border:.0625rem solid #fff;width:9.375rem;height:3.125rem;display:flex;justify-content:center;align-items:center;text-align:center;font-size:1.40625rem;transition:all .4s ease-in-out;box-shadow:5px 5px 10px rgba(105,129,178,.2);z-index:20;font-weight:700}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-button .doctorsay-container-text[data-v-81c0d68b]{background-color:#f3f6fc;border:.0625rem solid #fff;border-radius:.78125rem;width:7.8125rem;height:2.34375rem;display:flex;justify-content:center;align-items:center;text-align:center;transition:all .4s ease-in-out;font-weight:500;font-size:.9375rem;box-shadow:5px 5px 10px rgba(105,129,178,.2)}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-button .doctorsay-container-button-gun[data-v-81c0d68b]{position:absolute;top:.59375rem;left:.03125rem;width:.3125rem;height:1.5625rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-items .doctorsay-container-down .doctorsay-container-button .doctorsay-container-button-uplight[data-v-81c0d68b]{position:absolute;top:1.25rem;left:.625rem;width:7.8125rem;height:1.5625rem;z-index:21;transition:all .4s ease-in-out}.right-container .doctorsay-container-view .doctorsay-container-container[data-v-81c0d68b]{border:.0625rem solid #fff;width:53.9375rem;height:41.875rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.3);-webkit-backdrop-filter:blur(.625rem);backdrop-filter:blur(.625rem);background-blend-mode:screen;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);overflow:hidden}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end[data-v-81c0d68b]{width:100%;display:flex}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father[data-v-81c0d68b]{height:100%;display:flex;flex-direction:column;width:100%}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items-all[data-v-81c0d68b]{width:calc(100% - 2.65625rem);height:6.25rem;margin-left:1.25rem;margin-right:1.25rem;margin-top:.625rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items[data-v-81c0d68b]{display:flex;width:calc(100% - 2.65625rem);height:6.25rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father[data-v-81c0d68b]{margin-right:.625rem;width:4.6875rem;height:4.6875rem;display:flex;justify-content:center;align-items:center;flex-direction:column;position:relative;background:linear-gradient(to bottom right,#fff,#dcdcf9,#dbdcf8);border-radius:.9375rem;border:.0625rem solid #fff;box-shadow:.3125rem .3125rem .625rem rgba(105,129,178,.2);transition:all 1.5s ease-in-out}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-father-close-father[data-v-81c0d68b]{width:1.25rem;height:1.25rem;border-radius:50%;display:flex;background-color:#0184db;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;color:#fff}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father[data-v-81c0d68b]{width:3.125rem;height:3.125rem;border-radius:50%;display:flex;justify-content:center;align-items:center}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father .super-end-items-img[data-v-81c0d68b]{width:2.65625rem;height:2.65625rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father-active[data-v-81c0d68b]{width:3.125rem;height:3.125rem;border-radius:50%;display:flex;justify-content:center;align-items:center;animation:shake-81c0d68b .5s infinite}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father-active .super-end-items-img[data-v-81c0d68b]{width:2.65625rem;height:2.65625rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-font[data-v-81c0d68b]{margin-top:-.3125rem;font-size:.78125rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-font-father[data-v-81c0d68b]{display:flex;margin-top:.625rem;margin-bottom:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-font-father .super-end-font-gun[data-v-81c0d68b]{margin-left:1.25rem;margin-right:.625rem;margin-top:.15625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .super-card-end .super-end-father .super-end-font-father .super-end-font-font[data-v-81c0d68b]{font-size:1.1875rem;font-weight:700}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title[data-v-81c0d68b]{width:100%;height:3.28125rem;display:flex;align-items:center;justify-content:space-between}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right[data-v-81c0d68b]{height:100%;display:flex;align-items:center;width:12.5rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-juzhen[data-v-81c0d68b]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father[data-v-81c0d68b]{display:flex}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father .doctorsay-container-button-target[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;background-color:#3fa9f5;color:#fff;width:4.375rem;height:1.875rem;margin-right:.625rem;font-size:.875rem;border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father .doctorsay-container-button[data-v-81c0d68b]{display:flex;justify-content:center;align-items:center;background-color:#fff;width:4.375rem;height:1.875rem;margin-right:.625rem;font-size:.875rem;border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-right-kuai-cheng[data-v-81c0d68b]{background-color:#ffdba1;height:1.09375rem;width:1.09375rem;border-radius:.21875rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-right-kuai-zi[data-v-81c0d68b]{background-color:#7b61ff;height:1.09375rem;width:1.09375rem;border-radius:.21875rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-kuai-font[data-v-81c0d68b]{font-size:1rem;margin-left:.3125rem;margin-right:.78125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left[data-v-81c0d68b]{display:flex}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-share[data-v-81c0d68b]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem;margin-left:.625rem;margin-top:-.09375rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-left-gun[data-v-81c0d68b]{margin-top:.21875rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-left-font[data-v-81c0d68b]{font-size:1.1875rem;font-weight:700}.right-container .right-container-title-nav[data-v-81c0d68b]{margin-top:2.34375rem;margin-bottom:.625rem;margin-left:.625rem}.right-container .right-container-title-nav .right-icons[data-v-81c0d68b]{display:flex;align-items:center;float:right;height:2.1875rem;margin-right:1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-font[data-v-81c0d68b]{margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-container .right-container-title-nav .right-icons .right-icons-font-dark[data-v-81c0d68b]{color:#fff;margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-container .right-container-title-nav .right-icons .right-icons-img[data-v-81c0d68b]{width:2.5rem;height:2.5rem;margin-left:.3125rem;margin-right:.3125rem;margin-top:-1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-img-icon[data-v-81c0d68b]{width:1.875rem;height:2.5rem;margin-top:-.3125rem;margin-left:.25rem}.right-container .right-container-title-nav .right-container-title-no[data-v-81c0d68b]{font-size:1.09375rem;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-no-dark[data-v-81c0d68b]{font-size:1.09375rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-class[data-v-81c0d68b]{font-size:1.09375rem;font-weight:800;margin-left:.625rem}.right-container .right-container-title-nav .right-container-title-class-dark[data-v-81c0d68b]{font-size:1.09375rem;font-weight:800;margin-left:.625rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-title-nav .right-container-title-class-anhei-button-wrong[data-v-81c0d68b]{float:right;display:flex;justify-content:center;align-items:center;border-radius:.9375rem;margin-right:.46875rem;width:6.25rem;height:1.5625rem;background-color:#fff}.right-container .right-container-title-nav .right-container-title-class-anhei-button-wrong .right-container-title-class-anhei[data-v-81c0d68b]{font-size:.9375rem;font-weight:800}.right-container .right-container-title-nav .right-container-title-class-anhei-button[data-v-81c0d68b]{float:right;display:flex;justify-content:center;align-items:center;border-radius:.9375rem;margin-right:.625rem;width:6.25rem;height:1.5625rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff)}.right-container .right-container-title-nav .right-container-title-class-anhei-button .right-container-title-class-anhei[data-v-81c0d68b]{font-size:.9375rem;font-weight:800;color:#fff}.title-time-delete[data-v-81c0d68b]{width:1.71875rem;height:1.71875rem;border-radius:50%;display:flex;background-color:#fff;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;background-color:#02abfe;color:#fff;z-index:999;font-size:1.5625rem}.title-time-blue[data-v-81c0d68b]{position:absolute;top:0;left:0;z-index:10}.title-time-blue .title-time-blue-img[data-v-81c0d68b]{height:6.53125rem;width:8.59375rem}.title-time[data-v-81c0d68b]{display:flex;width:100%;position:relative}.title-time .title-time-time[data-v-81c0d68b]{font-size:1rem;margin-left:1.25rem;margin-top:.375rem}.title-time .title-time-button[data-v-81c0d68b]{position:absolute;top:-.125rem;right:-.125rem;width:2.03125rem;height:1.875rem}.title-time .title-time-zhejiao[data-v-81c0d68b]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.title-time .title-time-font[data-v-81c0d68b]{position:absolute;top:.21875rem;right:.15625rem;font-size:.625rem;color:#fff}.popup-delete[data-v-81c0d68b]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-delete .popup-delete-content[data-v-81c0d68b]{position:absolute;right:16.09375rem;display:flex;flex-direction:column;align-items:center;width:25rem;height:15.625rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.7);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-delete .popup-delete-content .popup-delete-img[data-v-81c0d68b]{width:7.8125rem;height:7.1875rem;margin-top:1.25rem;margin-bottom:.625rem}.popup-delete .popup-delete-content .popup-delete-text[data-v-81c0d68b]{font-size:.9375rem;color:#42474e}.popup-delete .popup-delete-content .popup-delete-button[data-v-81c0d68b]{display:flex;justify-content:space-around;height:2.8125rem;margin-top:.9375rem}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-left[data-v-81c0d68b]{background-color:#02abfe;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-right[data-v-81c0d68b]{background-color:#ced9e8;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;margin-right:.625rem}.popup-overlay[data-v-81c0d68b]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;z-index:999}.popup-overlay .popup-overlay-content[data-v-81c0d68b]{position:absolute;display:flex;align-items:center;width:25rem;height:12.1875rem;background-color:#fff;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-overlay .popup-overlay-content .popup-overlay-content-left[data-v-81c0d68b]{height:100%;width:10.9375rem;display:flex;justify-content:center;align-items:center;flex-direction:column}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-img[data-v-81c0d68b]{width:8.75rem;height:5.625rem;margin-top:-.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-font[data-v-81c0d68b]{font-size:.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right[data-v-81c0d68b]{height:100%;width:14.0625rem;position:relative}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-font[data-v-81c0d68b]{font-size:1.5625rem;margin-top:3.125rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-text[data-v-81c0d68b]{margin-left:.3125rem;font-size:.9375rem;width:11.875rem;margin-bottom:1.5625rem;line-height:1.09375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richang[data-v-81c0d68b]{background-color:#ffc363;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richangnot[data-v-81c0d68b]{background-color:#7b61ff;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem;color:#fff}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-crush[data-v-81c0d68b]{position:absolute;top:.625rem;right:.625rem;width:2.1875rem;height:2.1875rem;animation:shake-81c0d68b .5s 3}.popup-song[data-v-81c0d68b]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-song .popup-song-contain[data-v-81c0d68b]{position:absolute;right:17.8125rem;width:40.5rem;background:url(../../static/index/clearmountain.png) center / cover,rgba(255,255,255,.7);border:.0625rem solid #fff;background-blend-mode:screen;border-radius:1.25rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-song .popup-song-contain .shu-container-left[data-v-81c0d68b]{display:flex;margin-top:2.1875rem;margin-bottom:.625rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-gun[data-v-81c0d68b]{margin-top:.15625rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-font[data-v-81c0d68b]{font-size:1.09375rem;font-weight:700}.popup-song-father[data-v-81c0d68b]{position:relative}.popup-song-father .shu-up-img[data-v-81c0d68b]{position:absolute;top:-2.1875rem;left:9.53125rem;width:21.875rem;height:2.5rem}.popup-song-father .shu-up-font[data-v-81c0d68b]{position:absolute;top:-1.5625rem;left:12.1875rem;display:flex;color:#ff5a00}.popup-song-father .arrayindex[data-v-81c0d68b]{display:flex;flex-wrap:wrap;width:100%;margin-left:.9375rem;margin-right:.9375rem}.popup-song-father .arrayindex .arrayindex-one[data-v-81c0d68b]{width:12.03125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .arrayindex .arrayindex-one-target[data-v-81c0d68b]{width:12.03125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #02abfe;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.ri-img[data-v-81c0d68b]{position:absolute;top:-.125rem;right:-.125rem;width:1.875rem;height:1.875rem}.time-father[data-v-81c0d68b]{display:flex;width:100%;flex-wrap:wrap;margin-left:.9375rem;margin-right:.9375rem}.time-father .time-one[data-v-81c0d68b]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-target[data-v-81c0d68b]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-hui[data-v-81c0d68b]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#c2c9d3;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.button-father[data-v-81c0d68b]{height:6.25rem;width:calc(100%-2.5rem);display:flex;justify-content:center;align-items:center;margin-left:1.25rem;margin-right:1.25rem;margin-top:.625rem;border-top:.03125rem solid #e6e6e6}.button-father .button-father-right[data-v-81c0d68b]{background:linear-gradient(to right,#00c9ff,#0076ff);width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff}.button-father .button-father-wrong[data-v-81c0d68b]{background-color:#c2c9d3;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center}.month-father[data-v-81c0d68b]{display:flex;width:calc(100% - 1.875rem);flex-wrap:wrap;margin-left:.9375rem;margin-right:.9375rem;margin-top:.625rem}.month-father .month-one[data-v-81c0d68b]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.month-father .month-one-target[data-v-81c0d68b]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father[data-v-81c0d68b]{display:flex;width:100%;flex-wrap:wrap;margin-left:.9375rem;margin-right:.9375rem;margin-top:.625rem}.week-father .week-one[data-v-81c0d68b]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father .week-one-target[data-v-81c0d68b]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.radio-father[data-v-81c0d68b]{display:flex;width:100%;flex-wrap:wrap;margin-left:2.34375rem;margin-right:.9375rem}.radio-father .radio-circle[data-v-81c0d68b]{margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid black;background-color:transparent}.radio-father .radio-circle-target[data-v-81c0d68b]{position:relative;margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid #02abfe;background-color:transparent}.radio-father .radio-circle-target[data-v-81c0d68b]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.625rem;height:.625rem;background-color:#02abfe;border-radius:50%}.radio-father .radio-font[data-v-81c0d68b]{margin-left:.46875rem;margin-right:1.875rem;font-size:.90625rem}.title-time-border[data-v-81c0d68b]{margin-top:.125rem;margin-left:.125rem;width:calc(100% - .25rem);height:calc(100% - .25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column}.title-time-border-red[data-v-81c0d68b]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,red,red) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,red,red) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom right / .25rem 1.875rem no-repeat}.title-time-border-big[data-v-81c0d68b],.title-time-border-big-top[data-v-81c0d68b]{transform:scale(1.5);transform-origin:top;border-top:0 solid #fff;transition:transform .5s ease-out,opacity .5s ease-out;z-index:999;display:flex;justify-content:center;align-items:center;height:6.53125rem;width:100%;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.title-time-border-blue[data-v-81c0d68b]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,#0184db,#0184db) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,#0184db,#0184db) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom right / .25rem 1.875rem no-repeat}.title-time-border-yellow[data-v-81c0d68b]{margin:.3125rem;border:.0625rem solid #d0d8e0;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-yellow-active-transparent[data-v-81c0d68b]{margin:.3125rem;border:.125rem dashed #ff8a00;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .8125rem);height:calc(100% - .8125rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-yellow-active[data-v-81c0d68b]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-81c0d68b .8s infinite;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-pouple-active-transparent[data-v-81c0d68b]{margin:.3125rem;border:.125rem dashed #7B61FF;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .8125rem);height:calc(100% - .8125rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.title-time-border-pouple[data-v-81c0d68b]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.title-time-border-pouple-active[data-v-81c0d68b]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-81c0d68b 1s infinite;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.down-icons[data-v-81c0d68b]{margin-top:.3125rem;width:100%;height:1.875rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-81c0d68b]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}@keyframes shake-81c0d68b{0%{transform:rotate(-10deg)}25%{transform:rotate(10deg)}50%{transform:rotate(-10deg)}75%{transform:rotate(10deg)}to{transform:rotate(-10deg)}}@keyframes shakesmall-81c0d68b{0%{transform:rotate(-2deg)}25%{transform:rotate(2deg)}50%{transform:rotate(-2deg)}75%{transform:rotate(2deg)}to{transform:rotate(-2deg)}}.boom[data-v-81c0d68b]{position:absolute;top:2.5rem;left:0;width:1.3125rem;height:26.25rem;display:flex;flex-direction:column;align-items:center;overflow:hidden;z-index:10}.boom .boom-son[data-v-81c0d68b]{height:6.5625rem;width:100%;font-size:.9375rem;letter-spacing:.15625rem;-webkit-writing-mode:vertical-rl;writing-mode:vertical-rl;text-align:center;z-index:10;background:linear-gradient(to bottom,#ffe2b2,#e3deff);border-bottom-right-radius:1.25rem;border-top-right-radius:1.25rem}.boom .boom-son-target[data-v-81c0d68b]{height:6.5625rem;width:100%;font-size:.9375rem;letter-spacing:.15625rem;-webkit-writing-mode:vertical-rl;writing-mode:vertical-rl;text-align:center;z-index:10;background:linear-gradient(to bottom,#ff8a00,#eceaff);border-bottom-right-radius:1.25rem;border-top-right-radius:1.25rem}.popup-share[data-v-81c0d68b]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-share .popup-share-content[data-v-81c0d68b]{position:absolute;right:16.09375rem;display:flex;flex-direction:column;width:25rem;height:11.875rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.7);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-share .popup-share-content .popup-share-title[data-v-81c0d68b]{margin:.9375rem;font-size:1.25rem;position:relative}.popup-share .popup-share-content .popup-share-title .popup-share-img[data-v-81c0d68b]{position:absolute;top:0;right:0;width:6.25rem;height:6.25rem}.popup-share .popup-share-content .popup-share-upcontent[data-v-81c0d68b]{margin:0 .9375rem;display:flex;justify-content:space-between}.popup-share .popup-share-content .popup-share-upcontent .popup-share-font[data-v-81c0d68b]{font-size:1.09375rem;color:gray}.popup-share .popup-share-content .popup-share-gray[data-v-81c0d68b]{background-color:#d3d3d3;width:calc(100% - 1.875rem);height:.0625rem;margin:3.4375rem .9375rem 0}.popup-share .popup-share-content .popup-share-downcontent[data-v-81c0d68b]{display:flex;justify-content:space-between;align-items:center;height:100%;margin:0 .9375rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-img[data-v-81c0d68b]{width:2.1875rem;height:2.1875rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-font[data-v-81c0d68b]{font-size:.84375rem;margin-left:.625rem}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-left[data-v-81c0d68b]{display:flex;align-items:center}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-button[data-v-81c0d68b]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.46875rem .9375rem;border-radius:.625rem;font-size:1rem}.move-circle[data-v-a880c760]{position:absolute;bottom:0;right:0;width:10.9375rem;height:10.9375rem;display:flex;justify-content:center;align-items:center;z-index:99;touch-action:none}.move-circle .click-box-top[data-v-a880c760]{position:absolute;top:.625rem;right:2.1875rem;width:6.875rem;height:2.5rem}.move-circle .click-box-bottom[data-v-a880c760]{position:absolute;bottom:.625rem;right:2.1875rem;width:6.875rem;height:2.5rem}.move-circle .click-box-right[data-v-a880c760]{position:absolute;bottom:3.125rem;right:0;width:2.8125rem;height:4.6875rem}.move-circle .click-box-left[data-v-a880c760]{position:absolute;bottom:3.125rem;left:0;width:2.8125rem;height:4.6875rem}.move-circle .click-box-center[data-v-a880c760]{position:absolute;bottom:4.0625rem;right:4.0625rem;width:2.8125rem;height:2.8125rem}.move-circle-all[data-v-a880c760]{width:10.9375rem;height:10.9375rem}.light-shadow[data-v-a880c760]{position:absolute;width:1.25rem;height:1.25rem;background-color:transparent;border:1.875rem solid #3da6ff;border-radius:50%;pointer-events:none;opacity:1}.ripple-loop[data-v-a880c760]{animation:rippleLoop-a880c760 1.2s ease-out infinite}.ripple-once[data-v-a880c760]{animation:rippleLoop-a880c760 1.2s ease-out forwards}@keyframes rippleLoop-a880c760{0%{transform:translate(-50%,-50%) scale(.5);opacity:.6}to{transform:translate(-50%,-50%) scale(2.5);opacity:0}}.light-circle[data-v-a880c760]{position:relative;width:150px;height:150px;border-radius:50%;background:#111;overflow:visible}.circle[data-v-a880c760]{position:relative;width:150px;height:150px;border-radius:50%;background:#222;margin:50px}.pulse-circle[data-v-a880c760]{position:absolute;top:50%;right:50%;transform:translate(-50%,-50%);border-radius:50%;background:radial-gradient(circle,#03a4ff 0%,transparent 70%);animation:pulse-a880c760 3s forwards}@keyframes pulse-a880c760{0%{width:0;height:0;opacity:.8}50%{width:10.9375rem;height:10.9375rem;opacity:.4}to{width:0;height:0;opacity:0}}.super-card[data-v-bd7a2b2a]{display:flex;width:100%;height:calc(100% - 12.5rem)}.super-card .scroll-x[data-v-bd7a2b2a]{height:100%;width:100%}.super-card .right-cards[data-v-bd7a2b2a]{width:14.53125rem;height:37.1875rem;border:.0625rem solid #fff;border-top-right-radius:.625rem;border-bottom-right-radius:.625rem}.super-card .right-cards .scroll-box[data-v-bd7a2b2a]{width:100%;height:9.0625rem}.super-card .right-cards .scroll-box .right-box[data-v-bd7a2b2a]{height:10.9375rem;display:flex;flex-direction:column;flex-wrap:wrap;align-content:flex-start}.super-card .right-cards .scroll-box .right-box .right-box-item[data-v-bd7a2b2a]{margin:.3125rem 0 0 .3125rem;width:3.75rem;height:4rem;border-radius:.625rem;background-color:#fff;position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-img[data-v-bd7a2b2a]{width:1.71875rem;height:1.71875rem}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-font[data-v-bd7a2b2a]{font-size:.625rem;margin-top:-.3125rem}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-items[data-v-bd7a2b2a]{display:flex;justify-content:space-around;align-items:center}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-items .right-box-items-button[data-v-bd7a2b2a]{width:.78125rem;height:.78125rem;margin:0 .09375rem}.super-card .right-cards .scroll-box .right-box .title-time-button[data-v-bd7a2b2a]{position:absolute;top:0;right:0;width:1.71875rem;height:1.40625rem}.super-card .right-cards .scroll-box .right-box .title-time-font[data-v-bd7a2b2a]{position:absolute;top:.15625rem;right:.09375rem;font-size:.53125rem;color:#fff}.super-card .time-father[data-v-bd7a2b2a]{border-radius:.625rem;height:97%;width:95%;margin-top:6%;margin-left:6%;background-color:rgba(255,255,255,.3)}.super-card .time-father .time-button[data-v-bd7a2b2a]{width:4.375rem;height:1.875rem;margin-top:.9375rem;margin-left:.9375rem;border-radius:.625rem;background-color:#369fef;border:.15625rem solid #369fef;display:flex}.super-card .time-father .time-button .time-button-month[data-v-bd7a2b2a]{width:50%;height:100%;color:#fff;display:flex;justify-content:center;align-items:center}.super-card .time-father .time-button .time-button-month-target[data-v-bd7a2b2a]{width:50%;height:100%;background-color:#fff;color:#369fef;display:flex;justify-content:center;align-items:center;border-bottom-left-radius:.46875rem;border-top-left-radius:.46875rem}.super-card .time-father .time-button .time-button-week-target[data-v-bd7a2b2a]{width:50%;height:100%;display:flex;justify-content:center;align-items:center;color:#fff}.super-card .time-father .time-button .time-button-week[data-v-bd7a2b2a]{width:50%;height:100%;color:#369fef;display:flex;justify-content:center;align-items:center;background-color:#fff;border-bottom-right-radius:.46875rem;border-top-right-radius:.46875rem}.super-card .under-button[data-v-bd7a2b2a]{width:13.75rem;height:2.96875rem;margin-left:.3125rem;margin-top:.3125rem;border-radius:.625rem;background-color:#e5e9f9;display:flex;align-items:center;position:relative}.super-card .under-button .under-button-black[data-v-bd7a2b2a]{transition:all 1s;position:absolute;width:9.375rem;height:3.125rem;border-radius:.625rem;padding-left:.3125rem;background-color:#4d4d4d;top:-3.125rem;left:0;color:#fff;display:flex;justify-content:center;align-items:center}.super-card .under-button .under-button-black .under-button-three[data-v-bd7a2b2a]{position:absolute;right:.40625rem;bottom:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-top:.625rem solid #4d4d4d}.super-card .under-button .white-circle-click-father[data-v-bd7a2b2a]{position:relative;margin-left:.625rem;color:#fff;margin-top:.3125rem}.super-card .under-button .white-circle-click-father .white-circle-click[data-v-bd7a2b2a]{width:4.6875rem;height:2.1875rem}.super-card .under-button .white-circle-click-father .white-circle-font[data-v-bd7a2b2a]{position:absolute;top:.46875rem;left:1.875rem}.super-card .under-button .white-circle[data-v-bd7a2b2a]{width:2.1875rem;height:2.1875rem;border-radius:50%;margin-left:.3125rem;background-color:#fff;display:flex;justify-content:center;align-items:center}.super-card .under-button .white-circle .white-circle-img[data-v-bd7a2b2a]{width:1.25rem;height:1.25rem}.super-card .middle-box[data-v-bd7a2b2a]{width:100%;height:24.375rem;display:flex;overflow:hidden}.super-card .middle-box .middle-left-box[data-v-bd7a2b2a]{margin-left:.3125rem;width:10.625rem;height:24.4375rem;border-radius:.625rem;background-color:#e5e9f9;display:flex}.super-card .middle-box .middle-left-box .first-contant[data-v-bd7a2b2a]{height:100%;width:6.5625rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item[data-v-bd7a2b2a]{margin:.3125rem 0 0 .3125rem;width:5.9375rem;height:4rem;border-radius:.625rem;background-color:rgba(255,255,255,.3);position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column;box-shadow:.03125rem .03125rem .0625rem .03125rem rgba(0,0,0,.1);overflow:hidden}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-img[data-v-bd7a2b2a]{width:1.71875rem;height:1.71875rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-button[data-v-bd7a2b2a]{position:absolute;top:-.09375rem;right:-.09375rem;width:1.5625rem;height:1.40625rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-font[data-v-bd7a2b2a]{font-size:.71875rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-zhejiao[data-v-bd7a2b2a]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-font[data-v-bd7a2b2a]{position:absolute;top:.09375rem;right:.15625rem;font-size:.625rem;color:#fff}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-items[data-v-bd7a2b2a]{display:flex;justify-content:space-around;align-items:center}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-items .right-box-items-button[data-v-bd7a2b2a]{width:.78125rem;height:.78125rem;margin:0 .09375rem}.super-card .middle-box .middle-left-box .second-contant[data-v-bd7a2b2a]{height:100%;width:4.375rem}.super-card .middle-box .middle-left-box .second-contant .downList-box-target[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;background-color:#fff;width:3.125rem;height:3.125rem;border-radius:.625rem;margin-left:.625rem;margin-top:.625rem;flex-direction:column;box-shadow:.0625rem .0625rem .125rem .0625rem rgba(54,159,239,.1);border:.0625rem solid #369fef}.super-card .middle-box .middle-left-box .second-contant .downList-box-target .downList-box-img[data-v-bd7a2b2a]{height:1.5625rem;width:1.5625rem}.super-card .middle-box .middle-left-box .second-contant .downList-box-target .downList-box-text[data-v-bd7a2b2a]{font-size:.625rem;color:#369fef}.super-card .middle-box .middle-left-box .second-contant .downList-box[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;background-color:rgba(255,255,255,.3);width:3.125rem;height:3.125rem;border-radius:.625rem;margin-left:.625rem;margin-top:.625rem;flex-direction:column;box-shadow:.0625rem .0625rem .125rem .0625rem rgba(0,0,0,.1)}.super-card .middle-box .middle-left-box .second-contant .downList-box .downList-box-img[data-v-bd7a2b2a]{height:1.5625rem;width:1.5625rem}.super-card .middle-box .middle-left-box .second-contant .downList-box .downList-box-text[data-v-bd7a2b2a]{font-size:.625rem}.super-card .middle-box .middle-right-box[data-v-bd7a2b2a]{height:24.375rem;width:2.8125rem}.super-card .middle-box .middle-right-box .doctorsay-container-card[data-v-bd7a2b2a]{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;background-color:#e5e9f9;width:2.8125rem;height:3.8125rem;border-radius:.625rem;border:.0625rem solid #ddeafa;box-shadow:5px 5px 10px rgba(105,129,178,.2);margin:0 .5625rem .3125rem .3125rem}.super-card .middle-box .middle-right-box .doctorsay-container-card .doctorsay-container-card-img[data-v-bd7a2b2a]{width:1.71875rem;height:1.71875rem}.super-card .middle-box .middle-right-box .doctorsay-container-card .doctorsay-container-card-font[data-v-bd7a2b2a]{font-size:.78125rem;margin-top:0}.super-card .middle-box .middle-right-box .doctorsay-container-card-target[data-v-bd7a2b2a]{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;background:linear-gradient(to left,#fff,#e5e9f9);width:3.59375rem;height:3.8125rem;border-top-right-radius:.625rem;border-bottom-right-radius:.625rem;margin:0 .5625rem .3125rem -.46875rem}.super-card .middle-box .middle-right-box .doctorsay-container-card-target .doctorsay-container-card-img[data-v-bd7a2b2a]{width:1.71875rem;height:1.71875rem;margin-left:.78125rem}.super-card .middle-box .middle-right-box .doctorsay-container-card-target .doctorsay-container-card-font-dark[data-v-bd7a2b2a]{font-size:.78125rem;color:#369fef;margin-left:.78125rem;margin-top:0}.super-card .super-card-container[data-v-bd7a2b2a]{background:url(../../static/index/whitemountain.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;isolation:isolate;overflow:hidden;margin-left:3.75rem;width:43.90625rem;height:37.1875rem;border:.0625rem solid #fff;border-left:0;box-shadow:.3125rem .3125rem 20px rgba(0,0,0,.1);position:relative}.super-card .super-card-time[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;height:2.5rem;width:6.28125rem;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;font-weight:700;z-index:-1}.super-card .super-card-time-und[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;width:6.28125rem;flex-direction:column;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1}.super-card .super-card-time-und .title-time-img[data-v-bd7a2b2a]{width:2.03125rem;height:2.03125rem;margin-top:-.15625rem}.super-card .super-card-time-und .title-time-font-rel[data-v-bd7a2b2a]{font-size:.78125rem;margin-bottom:.15625rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.super-card .super-card-time-und .title-time-items[data-v-bd7a2b2a]{display:flex;justify-content:space-around;align-items:center}.super-card .super-card-time-und .title-time-items .right-box-items-button[data-v-bd7a2b2a]{width:1.09375rem;height:1.09375rem;margin:0 .15625rem}.super-card .super-card-time-card[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;height:5.21875rem;width:100%;transition:all .8s;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.right-container[data-v-bd7a2b2a]{width:calc(100% - 7.34375rem);height:100vh;transition:opacity 1s ease;position:relative}.right-container .joystick[data-v-bd7a2b2a]{position:absolute;bottom:6.25rem;left:.625rem;width:9.375rem;height:9.375rem;z-index:9999}.right-container .outer-circle[data-v-bd7a2b2a]{width:100%;height:100%;border-radius:50%;background-color:rgba(127,127,127,.1);position:relative}.right-container .inner-circle[data-v-bd7a2b2a]{width:3.75rem;height:3.75rem;border-radius:50%;background-color:rgba(127,127,127,.3);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.right-container .doctorsay-container-view[data-v-bd7a2b2a]{width:100%;height:38.125rem;display:flex}.right-container .doctorsay-container-view .doctorsay-container-container[data-v-bd7a2b2a]{border:.0625rem solid #fff;width:64.0625rem;height:41.875rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.3);-webkit-backdrop-filter:blur(.625rem);backdrop-filter:blur(.625rem);background-blend-mode:screen;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);overflow:hidden}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title[data-v-bd7a2b2a]{width:100%;height:3.28125rem;display:flex;align-items:center;justify-content:space-between}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right[data-v-bd7a2b2a]{height:100%;display:flex;align-items:center;margin-right:1.5625rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-juzhen[data-v-bd7a2b2a]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem;margin-right:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father[data-v-bd7a2b2a]{display:flex}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father .doctorsay-container-button-target[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;background-color:#3fa9f5;color:#fff;width:4.375rem;height:1.875rem;margin-right:.625rem;font-size:.875rem;border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father .doctorsay-container-button[data-v-bd7a2b2a]{display:flex;justify-content:center;align-items:center;background-color:#fff;width:4.375rem;height:1.875rem;margin-right:.625rem;font-size:.875rem;border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-right-kuai-cheng[data-v-bd7a2b2a]{background-color:#ffdba1;height:1.09375rem;width:1.09375rem;border-radius:.21875rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-right-kuai-zi[data-v-bd7a2b2a]{background-color:#7b61ff;height:1.09375rem;width:1.09375rem;border-radius:.21875rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-kuai-font[data-v-bd7a2b2a]{font-size:1rem;margin-left:.3125rem;margin-right:.78125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left[data-v-bd7a2b2a]{display:flex}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-share[data-v-bd7a2b2a]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem;margin-left:.625rem;margin-top:-.09375rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-left-gun[data-v-bd7a2b2a]{margin-top:.21875rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-left-font[data-v-bd7a2b2a]{font-size:1.1875rem;font-weight:700}.right-container .right-container-title-nav[data-v-bd7a2b2a]{margin-top:2.34375rem;margin-bottom:.625rem;margin-left:.625rem}.right-container .right-container-title-nav .right-icons[data-v-bd7a2b2a]{display:flex;align-items:center;float:right;height:2.1875rem;margin-right:1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-font[data-v-bd7a2b2a]{margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-container .right-container-title-nav .right-icons .right-icons-font-dark[data-v-bd7a2b2a]{color:#fff;margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-container .right-container-title-nav .right-icons .right-icons-img[data-v-bd7a2b2a]{width:2.5rem;height:2.5rem;margin-left:.3125rem;margin-right:.3125rem;margin-top:-1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-img-icon[data-v-bd7a2b2a]{width:1.875rem;height:2.5rem;margin-top:-.3125rem;margin-left:.25rem}.right-container .right-container-title-nav .right-container-title-no[data-v-bd7a2b2a]{font-size:1.09375rem;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-no-dark[data-v-bd7a2b2a]{font-size:1.09375rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent;margin-right:.625rem}.right-container .right-container-title-nav .right-container-title-class[data-v-bd7a2b2a]{font-size:1.09375rem;font-weight:800;margin-left:.625rem}.right-container .right-container-title-nav .right-container-title-class-dark[data-v-bd7a2b2a]{font-size:1.09375rem;font-weight:800;margin-left:.625rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.right-container .right-container-title-nav .right-container-title-class-anhei-button-wrong[data-v-bd7a2b2a]{float:right;display:flex;justify-content:center;align-items:center;border-radius:.9375rem;margin-right:.46875rem;width:6.25rem;height:1.5625rem;background-color:#fff}.right-container .right-container-title-nav .right-container-title-class-anhei-button-wrong .right-container-title-class-anhei[data-v-bd7a2b2a]{font-size:.9375rem;font-weight:800}.right-container .right-container-title-nav .right-container-title-class-anhei-button[data-v-bd7a2b2a]{float:right;display:flex;justify-content:center;align-items:center;border-radius:.9375rem;margin-right:.625rem;width:6.25rem;height:1.5625rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff)}.right-container .right-container-title-nav .right-container-title-class-anhei-button .right-container-title-class-anhei[data-v-bd7a2b2a]{font-size:.9375rem;font-weight:800;color:#fff}.title-time-delete[data-v-bd7a2b2a]{width:1.71875rem;height:1.71875rem;border-radius:50%;display:flex;background-color:#fff;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;background-color:#02abfe;color:#fff;z-index:999;font-size:1.5625rem}.title-time-blue[data-v-bd7a2b2a]{position:absolute;top:0;left:0;z-index:10}.title-time-blue .title-time-blue-img[data-v-bd7a2b2a]{height:5.21875rem;width:6.25rem}.time-button-black-spe[data-v-bd7a2b2a]{transition:all 1s;position:absolute;width:7.8125rem;height:3.125rem;padding-left:.3125rem;border-radius:.625rem;background-color:#4d4d4d;bottom:-3.125rem;left:-2.5rem;color:#fff;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-black-spe .under-button-three[data-v-bd7a2b2a]{position:absolute;right:.40625rem;top:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-bottom:.625rem solid #4d4d4d}.time-button-black[data-v-bd7a2b2a]{transition:all 1s;position:absolute;width:7.8125rem;height:3.125rem;padding-left:.3125rem;border-radius:.625rem;background-color:#4d4d4d;top:-3.125rem;left:-2.5rem;color:#fff;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-black .under-button-three[data-v-bd7a2b2a]{position:absolute;right:.40625rem;bottom:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-top:.625rem solid #4d4d4d}.time-button-orange-spe[data-v-bd7a2b2a]{transition:all 1s;position:absolute;width:7.8125rem;height:3.125rem;padding-left:.3125rem;border-radius:.625rem;background-color:#ff8a00;bottom:-3.125rem;left:-2.5rem;color:#fff;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-orange-spe .under-button-three[data-v-bd7a2b2a]{position:absolute;right:.40625rem;top:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-bottom:.625rem solid #ff8a00}.time-button-orange[data-v-bd7a2b2a]{transition:all 1s;position:absolute;padding-left:.3125rem;width:7.8125rem;height:3.125rem;border-radius:.625rem;background-color:#ff8a00;top:-2.8125rem;left:-2.5rem;color:#fff;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-orange .under-button-three[data-v-bd7a2b2a]{position:absolute;right:.40625rem;bottom:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-top:.625rem solid #ff8a00}.title-time[data-v-bd7a2b2a]{display:flex;width:100%;position:relative}.title-time .title-time-time[data-v-bd7a2b2a]{font-size:1rem;margin-left:.3125rem;margin-top:.375rem}.title-time .title-time-button[data-v-bd7a2b2a]{position:absolute;top:-.1875rem;right:-.125rem;width:1.71875rem;height:1.25rem}.title-time .title-time-zhejiao[data-v-bd7a2b2a]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.title-time .title-time-font[data-v-bd7a2b2a]{position:absolute;top:0;right:.15625rem;font-size:.4375rem;color:#fff}.popup-say[data-v-bd7a2b2a]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-say .popup-say-content[data-v-bd7a2b2a]{position:absolute;right:3.28125rem;bottom:6.25rem;display:flex;flex-direction:column;width:14.0625rem;height:18.75rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-say .popup-say-content .tags-father[data-v-bd7a2b2a]{display:flex;margin-left:1.25rem;margin-top:.46875rem;align-items:center;width:5.625rem}.popup-say .popup-say-content .tags-father .tags-img[data-v-bd7a2b2a]{width:1.5625rem;height:1.5625rem;margin-right:.3125rem}.popup-say .popup-say-content .popup-say-content-flex[data-v-bd7a2b2a]{display:flex;margin-top:.21875rem;margin-bottom:.3125rem}.popup-say .popup-say-content .popup-say-content-flex .popup-say-content-gun[data-v-bd7a2b2a]{margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.popup-say .popup-say-content .popup-say-content-flex .popup-say-content-font[data-v-bd7a2b2a]{font-size:.9375rem;font-weight:700}.popup-say .popup-say-content .popup-say-three[data-v-bd7a2b2a]{position:absolute;left:5.40625rem;bottom:-1.28125rem;width:0;height:0;border-left:.9375rem solid transparent;border-right:.9375rem solid transparent;border-top:1.25rem solid #d2ecff}.popup-delete[data-v-bd7a2b2a]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-delete .popup-delete-content[data-v-bd7a2b2a]{position:absolute;right:23.4375rem;display:flex;flex-direction:column;align-items:center;width:25rem;height:15.625rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-delete .popup-delete-content .popup-delete-img[data-v-bd7a2b2a]{width:7.8125rem;height:7.1875rem;margin-top:1.25rem;margin-bottom:.625rem}.popup-delete .popup-delete-content .popup-delete-text[data-v-bd7a2b2a]{font-size:.9375rem;color:#42474e}.popup-delete .popup-delete-content .popup-delete-button[data-v-bd7a2b2a]{display:flex;justify-content:space-around;height:2.8125rem;margin-top:.9375rem}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-left[data-v-bd7a2b2a]{background-color:#02abfe;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff;margin:0 .3125rem}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-right[data-v-bd7a2b2a]{background-color:#ced9e8;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;margin:0 .3125rem}.popup-overlay[data-v-bd7a2b2a]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;z-index:999}.popup-overlay .popup-overlay-content[data-v-bd7a2b2a]{position:absolute;display:flex;align-items:center;width:25rem;height:12.1875rem;background-color:#fff;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-overlay .popup-overlay-content .popup-overlay-content-left[data-v-bd7a2b2a]{height:100%;width:10.9375rem;display:flex;justify-content:center;align-items:center;flex-direction:column}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-img[data-v-bd7a2b2a]{width:8.75rem;height:5.625rem;margin-top:-.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-font[data-v-bd7a2b2a]{font-size:.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right[data-v-bd7a2b2a]{height:100%;width:14.0625rem;position:relative}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-font[data-v-bd7a2b2a]{font-size:1.5625rem;margin-top:3.125rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-text[data-v-bd7a2b2a]{margin-left:.3125rem;font-size:.9375rem;width:11.875rem;margin-bottom:1.5625rem;line-height:1.09375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richang[data-v-bd7a2b2a]{background-color:#ffc363;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richangnot[data-v-bd7a2b2a]{background-color:#7b61ff;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem;color:#fff}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-crush[data-v-bd7a2b2a]{position:absolute;top:.625rem;right:.625rem;width:2.1875rem;height:2.1875rem;animation:shake-bd7a2b2a .5s 3}.popup-song[data-v-bd7a2b2a]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-song .popup-song-contain[data-v-bd7a2b2a]{position:absolute;right:14.0625rem;width:40.5rem;background:url(../../static/index/clearmountain.png) center / cover,rgba(255,255,255,.7);border:.0625rem solid #fff;background-blend-mode:screen;border-radius:1.25rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-song .popup-song-contain .shu-container-left[data-v-bd7a2b2a]{display:flex;margin-top:2.1875rem;margin-bottom:.625rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-gun[data-v-bd7a2b2a]{margin-top:.15625rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-font[data-v-bd7a2b2a]{font-size:1.09375rem;font-weight:700}.popup-song-father[data-v-bd7a2b2a]{position:relative}.popup-song-father .shu-up-img[data-v-bd7a2b2a]{position:absolute;top:-2.1875rem;left:9.53125rem;width:21.875rem;height:2.5rem}.popup-song-father .shu-up-font[data-v-bd7a2b2a]{position:absolute;top:-1.5625rem;left:12.1875rem;display:flex;color:#ff5a00}.popup-song-father .arrayindex[data-v-bd7a2b2a]{display:flex;flex-wrap:wrap;width:100%;margin-left:.9375rem;margin-right:.9375rem;margin-bottom:1.875rem}.popup-song-father .arrayindex .arrayindex-one[data-v-bd7a2b2a]{width:8.90625rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .arrayindex .arrayindex-one-target[data-v-bd7a2b2a]{width:8.90625rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #02abfe;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .secondarrayindex[data-v-bd7a2b2a]{display:flex;flex-wrap:wrap;width:100%;margin-left:.9375rem;margin-right:.9375rem;margin-bottom:1.875rem}.popup-song-father .secondarrayindex .arrayindex-one[data-v-bd7a2b2a]{width:11.875rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .secondarrayindex .arrayindex-one-target[data-v-bd7a2b2a]{width:11.875rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #02abfe;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.ri-img[data-v-bd7a2b2a]{position:absolute;top:-.125rem;right:-.125rem;width:1.875rem;height:1.875rem}.time-father[data-v-bd7a2b2a]{display:flex;width:100%;flex-wrap:wrap;margin-left:.9375rem;margin-right:.9375rem}.time-father .time-one[data-v-bd7a2b2a]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-target[data-v-bd7a2b2a]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-hui[data-v-bd7a2b2a]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#c2c9d3;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.items-card[data-v-bd7a2b2a]{width:100%;height:2.5rem;display:flex;justify-content:center;align-items:center}.items-card-target[data-v-bd7a2b2a]{width:100%;height:2.5rem;display:flex;justify-content:center;align-items:center;color:#369fef;background:linear-gradient(to right,rgba(54,159,239,0),rgba(54,159,239,.5),rgba(54,159,239,0))}.button-father[data-v-bd7a2b2a]{height:6.25rem;width:calc(100%-2.5rem);display:flex;justify-content:center;align-items:center;margin-left:1.25rem;margin-right:1.25rem;margin-top:.625rem;border-top:.03125rem solid #e6e6e6}.button-father .button-father-right[data-v-bd7a2b2a]{background:linear-gradient(to right,#00c9ff,#0076ff);width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff}.button-father .button-father-wrong[data-v-bd7a2b2a]{background-color:#c2c9d3;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center}.month-father[data-v-bd7a2b2a]{display:flex;width:calc(100% - 1.875rem);flex-wrap:wrap;margin:.625rem .9375rem .9375rem}.month-father .month-one[data-v-bd7a2b2a]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.month-father .month-one-target[data-v-bd7a2b2a]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father[data-v-bd7a2b2a]{display:flex;width:100%;flex-wrap:wrap;margin:.625rem .9375rem .9375rem}.week-father .week-one[data-v-bd7a2b2a]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father .week-one-target[data-v-bd7a2b2a]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.radio-father[data-v-bd7a2b2a]{display:flex;width:100%;flex-wrap:wrap;margin-left:2.34375rem;margin-right:.9375rem}.radio-father .radio-circle[data-v-bd7a2b2a]{margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid black;background-color:transparent}.radio-father .radio-circle-target[data-v-bd7a2b2a]{position:relative;margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid #02abfe;background-color:transparent}.radio-father .radio-circle-target[data-v-bd7a2b2a]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.625rem;height:.625rem;background-color:#02abfe;border-radius:50%}.radio-father .radio-font[data-v-bd7a2b2a]{margin-left:.46875rem;margin-right:1.875rem;font-size:.90625rem}.radio-father .radio-font-target[data-v-bd7a2b2a]{color:#02abfe;margin-left:.46875rem;margin-right:1.875rem;font-size:.90625rem}.title-time-border[data-v-bd7a2b2a]{margin-top:.125rem;margin-left:.125rem;width:calc(100% - .25rem);height:calc(100% - .25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column}.title-time-border-red[data-v-bd7a2b2a]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,red,red) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,red,red) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom right / .25rem 1.875rem no-repeat}.title-time-border-big[data-v-bd7a2b2a],.title-time-border-big-top[data-v-bd7a2b2a]{transform:scale(1.3);transform-origin:top;border-top:0 solid #fff;transition:transform .5s ease-out,opacity .5s ease-out;z-index:999;display:flex;justify-content:center;align-items:center;height:5.21875rem;width:100%;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.title-time-border-blue[data-v-bd7a2b2a]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,#0184db,#0184db) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,#0184db,#0184db) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom right / .25rem 1.875rem no-repeat}.title-time-border-yellow[data-v-bd7a2b2a]{margin:.3125rem;border:.0625rem solid #d0d8e0;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-yellow-active-transparent[data-v-bd7a2b2a]{margin:.3125rem;border:.125rem dashed #ff8a00;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .8125rem);height:calc(100% - .8125rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-yellow-active[data-v-bd7a2b2a]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-bd7a2b2a .8s infinite;box-shadow:.25rem .25rem .5rem rgba(255,138,0,.7)}.title-time-border-pouple-active-transparent[data-v-bd7a2b2a]{margin:.3125rem;border:.125rem dashed #7B61FF;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .8125rem);height:calc(100% - .8125rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.title-time-border-pouple[data-v-bd7a2b2a]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.title-time-border-pouple-active[data-v-bd7a2b2a]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-bd7a2b2a 1s infinite;box-shadow:.25rem .25rem .5rem rgba(123,97,255,.7)}.down-icons[data-v-bd7a2b2a]{margin-top:.53125rem;width:100%;height:1.875rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-bd7a2b2a]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}.super-end-items-img-father[data-v-bd7a2b2a]{width:1.875rem;height:1.875rem;border-radius:50%;display:flex;justify-content:center;align-items:center}.super-end-items-img-father-active[data-v-bd7a2b2a]{width:1.875rem;height:1.875rem;border-radius:50%;display:flex;justify-content:center;align-items:center;animation:shake-bd7a2b2a .5s infinite}@keyframes shake-bd7a2b2a{0%{transform:rotate(-10deg)}25%{transform:rotate(10deg)}50%{transform:rotate(-10deg)}75%{transform:rotate(10deg)}to{transform:rotate(-10deg)}}.super-end-items-father-close-father[data-v-bd7a2b2a]{width:1.25rem;height:1.25rem;border-radius:50%;display:flex;background-color:#0184db;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;color:#fff}@keyframes shakesmall-bd7a2b2a{0%{transform:rotate(-2deg)}25%{transform:rotate(2deg)}50%{transform:rotate(-2deg)}75%{transform:rotate(2deg)}to{transform:rotate(-2deg)}}.boom-title[data-v-bd7a2b2a]{position:absolute;top:3.28125rem;left:1.875rem;width:1.875rem;height:2.5rem;background-color:#c4dbf4;border-left:.0625rem #fff solid;border-top:.0625rem #fff solid;border-top-left-radius:.625rem;background:linear-gradient(to top right,transparent calc(50% - 1px),#0184db calc(50% - 1px),#0184db calc(50% + 1px),transparent calc(50% + 1px))}.boom-title .boom-title-left[data-v-bd7a2b2a]{position:absolute;top:1.25rem;left:.1875rem;font-size:.78125rem;font-weight:700}.boom-title .boom-title-right[data-v-bd7a2b2a]{position:absolute;top:.15625rem;left:.9375rem;font-size:.78125rem;font-weight:700}.boom-father[data-v-bd7a2b2a]{position:absolute;top:5.8125rem;left:1.875rem;width:1.875rem;height:34.6875rem;background:linear-gradient(to bottom,#c4dbf4,#c9c2ef,#c6dcf3);border-bottom:.0625rem solid #fff;border-left:.0625rem solid #fff;border-bottom-left-radius:.625rem}.scroll-bottom-bgc[data-v-bd7a2b2a]{width:43.75rem;height:8.4375rem;margin-top:0;margin-left:4.0625rem;background:url(../../static/index/keyimg/bgc.png) center / contain;background-repeat:no-repeat}.boom[data-v-bd7a2b2a]{height:26.5625rem;display:flex;flex-direction:column;overflow:hidden;z-index:10}.boom .boom-son[data-v-bd7a2b2a]{height:5.21875rem;width:1.875rem;font-size:.9375rem;display:flex;justify-content:center;align-items:center;text-align:center;z-index:10;font-weight:700;border-top:.03125rem solid transparent;border-bottom:.03125rem solid transparent;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1}.boom .boom-son-target[data-v-bd7a2b2a]{height:5.21875rem;width:1.875rem;font-size:.9375rem;display:flex;justify-content:center;align-items:center;text-align:center;z-index:10;font-weight:700;border-top:.03125rem solid transparent;border-bottom:.03125rem solid transparent;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;background:linear-gradient(to bottom,#ff8a00,#eceaff)}.popup-share[data-v-bd7a2b2a]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-share .popup-share-content[data-v-bd7a2b2a]{position:absolute;right:16.09375rem;display:flex;flex-direction:column;width:25rem;height:11.875rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.7);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-share .popup-share-content .popup-share-title[data-v-bd7a2b2a]{margin:.9375rem;font-size:1.25rem;position:relative}.popup-share .popup-share-content .popup-share-title .popup-share-img[data-v-bd7a2b2a]{position:absolute;top:0;right:0;width:6.25rem;height:6.25rem}.popup-share .popup-share-content .popup-share-upcontent[data-v-bd7a2b2a]{margin:0 .9375rem;display:flex;justify-content:space-between}.popup-share .popup-share-content .popup-share-upcontent .popup-share-font[data-v-bd7a2b2a]{font-size:1.09375rem;color:gray}.popup-share .popup-share-content .popup-share-gray[data-v-bd7a2b2a]{background-color:#d3d3d3;width:calc(100% - 1.875rem);height:.0625rem;margin:3.4375rem .9375rem 0}.popup-share .popup-share-content .popup-share-downcontent[data-v-bd7a2b2a]{display:flex;justify-content:space-between;align-items:center;height:100%;margin:0 .9375rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-img[data-v-bd7a2b2a]{width:2.1875rem;height:2.1875rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-font[data-v-bd7a2b2a]{font-size:.84375rem;margin-left:.625rem}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-left[data-v-bd7a2b2a]{display:flex;align-items:center}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-button[data-v-bd7a2b2a]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.46875rem .9375rem;border-radius:.625rem;font-size:1rem}.backgroundContainer[data-v-ee189f8b]{display:flex;position:relative;width:100%;height:100vh;background-image:url(../../static/index/lightbgcnew.png);background-size:cover;background-position:center center;overflow:hidden;z-index:12}.darkbackgroundContainer[data-v-ee189f8b]{display:flex;position:relative;width:100%;height:100vh;background-image:url(../../static/index/background.png);background-size:cover;background-position:center center;overflow:hidden;z-index:11}.move-font[data-v-ee189f8b]{position:absolute;z-index:10;pointer-events:none;background-color:#c9e8ff;border-radius:.625rem;border:.0625rem solid #fff;width:6.875rem;height:3.125rem;display:flex;justify-content:center;align-items:center;text-align:center;font-size:1.25rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);will-change:transform}.left-container[data-v-ee189f8b]{width:7.34375rem;height:100%}.left-container .blue-circle-pos[data-v-ee189f8b]{position:relative}.left-container .blue-circle-pos .blue-circle[data-v-ee189f8b]{position:absolute;top:-1.5625rem;left:-2.125rem}.left-container .blue-circle-pos .blue-circle .blue-circle-size[data-v-ee189f8b]{width:5.3125rem;height:7.8125rem}.left-container .left-head[data-v-ee189f8b]{display:flex;justify-content:center;align-items:center;flex-direction:column}.left-container .left-head .left-head-img[data-v-ee189f8b]{width:4.6875rem;height:4.6875rem;margin-top:1.875rem}.left-container .left-head .left-head-font[data-v-ee189f8b]{font-weight:700;font-size:1.25rem}.left-container .left-head .left-head-font-dark[data-v-ee189f8b]{font-weight:700;font-size:1.25rem;background:linear-gradient(to right,#ebf4ff,#adc4e0);-webkit-background-clip:text;color:transparent}.left-container .left-img-container[data-v-ee189f8b]{display:flex;justify-content:center;align-items:center;flex-direction:column}.left-container .left-img-container .left-img[data-v-ee189f8b]{width:2.90625rem;height:2.90625rem;margin:1.5625rem 0;z-index:100}.title-time-border-yellow[data-v-ee189f8b]{width:7.96875rem;height:5.90625rem;margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#fff1db,#ffe2b2);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;position:absolute;z-index:10}.title-time-border-pouple[data-v-ee189f8b]{width:7.96875rem;height:5.90625rem;margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;position:absolute;z-index:10}.title-time[data-v-ee189f8b]{display:flex;width:100%;position:relative}.title-time .title-time-time[data-v-ee189f8b]{font-size:1rem;margin-left:.84375rem;margin-top:.375rem}.title-time .title-time-button[data-v-ee189f8b]{position:absolute;top:-.15625rem;right:0;width:2.1875rem;height:2.1875rem}.title-time .title-time-font[data-v-ee189f8b]{position:absolute;top:.21875rem;right:.15625rem;font-size:.71875rem;color:#fff}.down-icons[data-v-ee189f8b]{margin-top:.625rem;width:100%;height:1.5625rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-ee189f8b]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem} diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/pages/NursingNew/index.css b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/NursingNew/index.css new file mode 100644 index 0000000..1e3677d --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/NursingNew/index.css @@ -0,0 +1 @@ +.index-content-other[data-v-9c8806b6]{width:calc(100% - 12.71875rem);height:100%;transition:opacity 1s ease;position:relative}.index-content-other .abs-time[data-v-9c8806b6]{position:absolute;right:.625rem;top:4.6875rem}.index-content-other .abs-time .big-time[data-v-9c8806b6]{font-size:2.8125rem;font-weight:600;width:100%;justify-content:center}.right-container-title-nav[data-v-9c8806b6]{margin-top:1.875rem;display:flex;align-items:center;height:1.875rem;position:relative;font-size:.875rem}.right-container-title-nav .new-weight[data-v-9c8806b6]{margin-left:.9375rem;font-weight:600}.right-container-title-nav .right-icons[data-v-9c8806b6]{position:absolute;right:.9375rem;top:0;display:flex;align-items:center;height:1.875rem}.right-container-title-nav .right-icons-img[data-v-9c8806b6]{width:1.875rem;height:1.875rem;margin-left:.625rem;margin-right:.625rem}.scroll-vi[data-v-9c8806b6]{height:3.75rem;width:95%;margin-left:.625rem;margin-top:.625rem;position:relative;margin-bottom:2.5rem}.scroll-vi .menu[data-v-9c8806b6]{margin-top:.46875rem;flex:0 0 auto;height:2.8125rem;width:7.5rem;border-radius:1.5625rem;margin-right:.625rem;background-color:#fff;display:flex;justify-content:center;align-items:center;padding-top:.28125rem}.scroll-vi .menu .menu-img[data-v-9c8806b6]{width:1.71875rem;height:1.71875rem;margin-right:.46875rem}.scroll-vi .menu .menu-font[data-v-9c8806b6]{margin-top:.5625rem;font-size:.78125rem}.date[data-v-9c8806b6]{display:flex;justify-content:space-around;margin-top:.3125rem}.right-container-tem[data-v-9c8806b6]{display:flex}.right-container-tem .right-container-tem-text[data-v-9c8806b6]{font-size:.9375rem;margin-right:.625rem}.right-container-tem .right-container-tem-img[data-v-9c8806b6]{width:1.1875rem;height:1.1875rem}.photo-father[data-v-9c8806b6]{width:100%;height:34.375rem;display:flex;flex-direction:column;align-items:center;position:relative;margin-top:0}.juzhong[data-v-9c8806b6]{position:absolute;top:0%;left:50%;transform:translate(-50%,-10%)}.weight-time[data-v-9c8806b6]{font-weight:800;font-size:3.125rem;margin-bottom:0;position:relative;margin-left:-1.5625rem}.big-img[data-v-9c8806b6]{width:31.25rem;height:21.875rem}.server-name[data-v-9c8806b6]{font-size:1.40625rem;margin-right:.3125rem;font-weight:600}.server-bgc[data-v-9c8806b6]{width:5rem;height:1.5625rem;display:flex;justify-content:center;align-items:center;position:relative}.bgc-img[data-v-9c8806b6]{width:100%;height:100%;position:absolute;top:0;left:0}.bgc-font[data-v-9c8806b6]{color:#fff;z-index:1}.down-img[data-v-9c8806b6]{width:1.09375rem;height:1.09375rem}.states-father[data-v-9c8806b6]{display:flex;margin:0 .625rem}.icon-img[data-v-9c8806b6]{width:1.71875rem;height:1.71875rem}.start-button[data-v-9c8806b6]{width:100%;height:100%;background:linear-gradient(to bottom,#009def,#0076ff);display:flex;justify-content:center;align-items:center;border-radius:1.25rem;color:#fff;font-size:.9375rem}.end-button[data-v-9c8806b6]{width:100%;height:100%;background:linear-gradient(to bottom,#fff,#c8d0d9);display:flex;justify-content:center;align-items:center;border-radius:1.25rem;font-size:.9375rem}.pao-father[data-v-9c8806b6]{position:absolute;top:.78125rem;right:-3.4375rem;font-size:.6875rem;width:3.125rem;height:1.5625rem;display:flex;justify-content:center;align-items:center;color:#fff}.pao-father .pao-img[data-v-9c8806b6]{position:absolute;top:0;left:0;width:100%;height:100%}.left-menu[data-v-9c8806b6]{position:absolute;top:50%;left:4.6875rem;transform:translateY(-50%)}.zoom[data-v-9c8806b6]{transform:scale(1.2);transform-origin:bottom left;transition:transform 1s ease}.left-ball[data-v-9c8806b6]{width:3.125rem;height:3.125rem;border-radius:50%;display:flex;justify-content:center;align-items:center;background-color:#fff}.left-ball .left-menu-img[data-v-9c8806b6]{width:1.5625rem;height:1.5625rem}.right-menu[data-v-9c8806b6]{position:absolute;top:50%;right:4.6875rem;transform:translateY(-50%);display:flex;flex-direction:column;align-items:center;width:4.375rem}.right-menu .top-img[data-v-9c8806b6]{width:4.375rem;height:3.4375rem;padding:0 1.5625rem}.right-menu .right-scroll[data-v-9c8806b6]{width:100%;height:23.4375rem}.right-menu .white-circle[data-v-9c8806b6]{height:6.25rem;border-radius:1.875rem;background-color:#fff;display:flex;justify-content:center;align-items:center;flex-direction:column;text-align:center}.right-menu .white-circle .right-menu-img[data-v-9c8806b6]{width:2.5rem;height:2.5rem}.right-menu .white-circle .right-menu-name[data-v-9c8806b6]{width:2.5rem}.zhezhao-top[data-v-9c8806b6]{position:absolute;top:3.28125rem;left:0%;width:120%;height:3.75rem;background:linear-gradient(to bottom,#eff0f4,rgba(239,240,244,0));z-index:4}.zhezhao-bottom[data-v-9c8806b6]{position:absolute;bottom:3.28125rem;left:0%;width:120%;height:3.75rem;background:linear-gradient(to top,#eff0f4,rgba(239,240,244,0));z-index:4}.zhezhao-left[data-v-9c8806b6]{position:absolute;top:0;left:0%;height:100%;width:3.75rem;background:linear-gradient(to right,#eff0f4,rgba(239,240,244,0));z-index:4}.zhezhao-right[data-v-9c8806b6]{position:absolute;top:0;right:0%;height:100%;width:3.75rem;background:linear-gradient(to left,#eff0f4,rgba(239,240,244,0));z-index:4}.zerotarget[data-v-9c8806b6]{--color: #99C9FD;--thick: 2px;--radius: 1.5625rem;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse-9c8806b6 .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}.firsttarget[data-v-9c8806b6]{--color: #99C9FD;--thick: 2px;--radius: 50%;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse-9c8806b6 .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}.secondtarget[data-v-9c8806b6]{--color: #99C9FD;--thick: 2px;--radius: 1.875rem;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse-9c8806b6 .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}.thirdtarget[data-v-9c8806b6]{--color: #99C9FD;--thick: 2px;--radius: 1.25rem;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse-9c8806b6 .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}@keyframes scalePulse-9c8806b6{0%{transform:scale(1)}25%{transform:scale(.94)}65%{transform:scale(1.08)}to{transform:scale(1)}}.super-card[data-v-08249c72]{display:flex;width:100%}.super-card .scroll-x[data-v-08249c72]{height:100%;width:100%}.super-card .right-cards[data-v-08249c72]{width:16.25rem;height:40rem}.super-card .right-cards .scroll-box[data-v-08249c72]{width:100%;height:9.6875rem;margin-top:.3125rem}.super-card .right-cards .scroll-box .right-box[data-v-08249c72]{height:10rem;display:flex;flex-direction:column;flex-wrap:wrap;align-content:flex-start}.super-card .right-cards .scroll-box .right-box .right-box-item[data-v-08249c72]{margin:.625rem 0 0 .625rem;width:4.6875rem;height:3.75rem;border-radius:.625rem;background-color:#fff;position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-img[data-v-08249c72]{width:1.875rem;height:1.875rem}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-font[data-v-08249c72]{font-size:.78125rem}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-items[data-v-08249c72]{display:flex;justify-content:space-around;align-items:center}.super-card .right-cards .scroll-box .right-box .right-box-item .right-box-items .right-box-items-button[data-v-08249c72]{width:.78125rem;height:.78125rem;margin:0 .09375rem}.super-card .right-cards .scroll-box .right-box .title-time-button[data-v-08249c72]{position:absolute;top:0;right:0;width:1.71875rem;height:1.40625rem}.super-card .right-cards .scroll-box .right-box .title-time-font[data-v-08249c72]{position:absolute;top:.15625rem;right:.09375rem;font-size:.53125rem;color:#fff}.super-card .time-father[data-v-08249c72]{border-radius:.625rem;height:97%;width:95%;margin-top:6%;margin-left:6%;background-color:rgba(255,255,255,.3)}.super-card .time-father .time-button[data-v-08249c72]{width:4.375rem;height:1.875rem;margin-top:.9375rem;margin-left:.9375rem;border-radius:.625rem;background-color:#369fef;border:.15625rem solid #369fef;display:flex}.super-card .time-father .time-button .time-button-month[data-v-08249c72]{width:50%;height:100%;color:#fff;display:flex;justify-content:center;align-items:center}.super-card .time-father .time-button .time-button-month-target[data-v-08249c72]{width:50%;height:100%;background-color:#fff;color:#369fef;display:flex;justify-content:center;align-items:center;border-bottom-left-radius:.46875rem;border-top-left-radius:.46875rem}.super-card .time-father .time-button .time-button-week-target[data-v-08249c72]{width:50%;height:100%;display:flex;justify-content:center;align-items:center;color:#fff}.super-card .time-father .time-button .time-button-week[data-v-08249c72]{width:50%;height:100%;color:#369fef;display:flex;justify-content:center;align-items:center;background-color:#fff;border-bottom-right-radius:.46875rem;border-top-right-radius:.46875rem}.super-card .under-button[data-v-08249c72]{width:16.25rem;height:2.96875rem;margin-left:.625rem;margin-top:.625rem;border-radius:.625rem;display:flex;align-items:center;position:relative}.super-card .under-button .under-button-black[data-v-08249c72]{transition:all 1s;position:absolute;width:9.375rem;height:3.125rem;border-radius:.625rem;padding-left:.3125rem;background-color:#4d4d4d;top:-3.125rem;left:4.6875rem;color:#fff;display:flex;justify-content:center;align-items:center}.super-card .under-button .under-button-black .under-button-three[data-v-08249c72]{position:absolute;right:.40625rem;bottom:-.53125rem;width:0;height:0;border-left:.46875rem solid transparent;border-right:.46875rem solid transparent;border-top:.625rem solid #4d4d4d}.super-card .under-button .other-father[data-v-08249c72]{width:100%;height:100%;background-color:#fff;display:flex;flex-direction:column;justify-content:center;align-items:center}.super-card .under-button .white-circle-click-father-spec[data-v-08249c72]{position:absolute;top:-5rem;right:.46875rem;overflow:hidden;margin-left:.3125rem;height:4.0625rem;width:4.0625rem;border-radius:50%;--color: #99C9FD;--thick: 2px;--radius: 50%;border:var(--thick) dashed var(--color);border-radius:var(--radius);background:repeating-linear-gradient(90deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top left / 100% var(--thick) no-repeat,repeating-linear-gradient(90deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) bottom left / 100% var(--thick) no-repeat,repeating-linear-gradient(0deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top left / var(--thick) 100% no-repeat,repeating-linear-gradient(0deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top right / var(--thick) 100% no-repeat}.super-card .under-button .white-circle-click-father[data-v-08249c72]{position:relative;overflow:hidden;margin-left:.3125rem;height:2.34375rem;width:4.6875rem;border-radius:1.25rem;background:linear-gradient(to bottom,#e7f4ff,#c5e5ff);border:.0625rem solid #9AD1FF;color:#007cff;display:flex;justify-content:center;align-items:center;-webkit-tap-highlight-color:transparent}.super-card .under-button .white-circle-click-father .label[data-v-08249c72]{position:relative;z-index:2}.super-card .under-button .white-circle-click-father[data-v-08249c72]:before{content:"";position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;pointer-events:none;background:linear-gradient(to bottom,#bfe9ff,#4aa8ff);opacity:0}.super-card .under-button .white-circle-click-father.anim[data-v-08249c72]:before{animation:coverFade-08249c72 1s ease-in-out forwards}@keyframes coverFade-08249c72{0%{opacity:0}20%{opacity:1}80%{opacity:1}to{opacity:0}}.super-card .under-button .white-circle[data-v-08249c72]{width:2.1875rem;height:2.1875rem;border-radius:50%;margin-left:.46875rem;background-color:#fff;display:flex;justify-content:center;align-items:center;z-index:99}.super-card .under-button .white-circle .white-circle-img[data-v-08249c72]{width:1.25rem;height:1.25rem}.super-card .middle-box[data-v-08249c72]{width:100%;height:25rem;display:flex;overflow:hidden}.super-card .middle-box .middle-left-box[data-v-08249c72]{margin-left:0;width:10.625rem;height:25rem;border-radius:.625rem;display:flex}.super-card .middle-box .middle-left-box .first-contant[data-v-08249c72]{height:100%;width:4.6875rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item[data-v-08249c72]{margin:.3125rem 0 0 .625rem;width:4.0625rem;height:3.75rem;border-radius:.625rem;background-color:rgba(255,255,255,.3);position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-img[data-v-08249c72]{width:1.875rem;height:1.875rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-button[data-v-08249c72]{position:absolute;top:-.09375rem;right:-.09375rem;width:1.875rem;height:.9375rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-button-font[data-v-08249c72]{color:#fff;position:absolute;top:.0625rem;right:.25rem;font-size:.59375rem;z-index:999}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-font[data-v-08249c72]{font-size:.71875rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-zhejiao[data-v-08249c72]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.super-card .middle-box .middle-left-box .first-contant .right-box-item .title-time-font[data-v-08249c72]{position:absolute;top:.09375rem;right:.15625rem;font-size:.625rem;color:#fff;z-index:999}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-items[data-v-08249c72]{display:flex;justify-content:space-around;align-items:center}.super-card .middle-box .middle-left-box .first-contant .right-box-item .right-box-items .right-box-items-button[data-v-08249c72]{width:.78125rem;height:.78125rem;margin:0 .09375rem}.super-card .middle-box .middle-left-box .second-contant[data-v-08249c72]{height:100%;width:6.5625rem}.super-card .middle-box .middle-left-box .second-contant .downList-box-target[data-v-08249c72]{display:flex;justify-content:center;align-items:center;background-color:#fff;margin-left:.78125rem;width:5rem;height:3.75rem;border-radius:.625rem;margin-top:.3125rem;flex-direction:column;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.super-card .middle-box .middle-left-box .second-contant .downList-box-target .downList-box-img[data-v-08249c72]{height:1.5625rem;width:1.5625rem}.super-card .middle-box .middle-left-box .second-contant .downList-box-target .downList-box-text[data-v-08249c72]{font-size:.6875rem;color:#369fef}.super-card .middle-box .middle-left-box .second-contant .downList-box[data-v-08249c72]{display:flex;justify-content:center;align-items:center;margin-left:.78125rem;border-radius:.625rem;background-color:rgba(255,255,255,.5);width:5rem;height:3.75rem;margin-top:.3125rem;flex-direction:column;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.super-card .middle-box .middle-left-box .second-contant .downList-box .downList-box-img[data-v-08249c72]{height:1.5625rem;width:1.5625rem}.super-card .middle-box .middle-left-box .second-contant .downList-box .downList-box-text[data-v-08249c72]{font-size:.625rem}.super-card .middle-box .middle-right-box[data-v-08249c72]{height:24.375rem;width:2.8125rem}.super-card .middle-box .middle-right-box .doctorsay-container-card[data-v-08249c72]{position:relative;display:flex;justify-content:center;align-items:center;background-color:#fff;width:5rem;height:2.8125rem;border-radius:1.25rem;margin-left:.3125rem;margin-top:.9375rem}.super-card .middle-box .middle-right-box .doctorsay-container-card .doctorsay-container-card-img[data-v-08249c72]{width:1.71875rem;height:1.71875rem}.super-card .middle-box .middle-right-box .doctorsay-container-card .doctorsay-container-card-font[data-v-08249c72]{font-size:.78125rem;margin-top:.625rem}.super-card .middle-box .middle-right-box .doctorsay-container-card-target[data-v-08249c72]{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;background:linear-gradient(to left,#fff,#e5e9f9);width:3.59375rem;height:3.8125rem;border-top-right-radius:.625rem;border-bottom-right-radius:.625rem;margin:0 .5625rem .3125rem -.46875rem}.super-card .middle-box .middle-right-box .doctorsay-container-card-target .doctorsay-container-card-img[data-v-08249c72]{width:1.71875rem;height:1.71875rem;margin-left:.78125rem}.super-card .super-card-container[data-v-08249c72]{background-blend-mode:screen;isolation:isolate;overflow:hidden;margin-left:1.875rem;width:40.625rem;height:42.1875rem;border-left:0;position:relative}.super-card .super-card-time[data-v-08249c72]{display:flex;justify-content:center;align-items:center;height:2.5rem;width:8.09375rem;border-bottom:.03125rem solid transparent;border-image:repeating-linear-gradient(90deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1;z-index:-1;font-size:.78125rem;color:#a9acb1}.super-card .super-card-time-und[data-v-08249c72]{display:flex;justify-content:center;align-items:center;width:8.09375rem;flex-direction:column;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1}.super-card .super-card-time-und .title-time-img[data-v-08249c72]{width:2.03125rem;height:2.03125rem;margin-top:-.15625rem}.super-card .super-card-time-und .title-time-font-rel[data-v-08249c72]{font-size:.78125rem;margin-bottom:.15625rem;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.super-card .super-card-time-und .title-time-items[data-v-08249c72]{display:flex;justify-content:space-around;align-items:center}.super-card .super-card-time-und .title-time-items .right-box-items-button[data-v-08249c72]{width:1.09375rem;height:1.09375rem;margin:0 .15625rem}.super-card .super-card-time-card[data-v-08249c72]{display:flex;justify-content:center;align-items:center;height:7.8125rem;width:100%;transition:all .8s;border-image:repeating-linear-gradient(90deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.right-container[data-v-08249c72]{width:calc(100% - 12.8125rem);height:100vh;transition:opacity 1s ease;position:relative}.right-container .joystick[data-v-08249c72]{position:absolute;bottom:6.25rem;left:.625rem;width:9.375rem;height:9.375rem;z-index:9999}.right-container .outer-circle[data-v-08249c72]{width:100%;height:100%;border-radius:50%;background-color:rgba(127,127,127,.1);position:relative}.right-container .inner-circle[data-v-08249c72]{width:3.75rem;height:3.75rem;border-radius:50%;background-color:rgba(127,127,127,.3);position:absolute;top:50%;left:50%;transform:translate(-50%,-50%)}.right-container .doctorsay-container-view[data-v-08249c72]{width:100%;height:42.1875rem;display:flex;margin-top:.9375rem}.right-container .doctorsay-container-view .doctorsay-container-container[data-v-08249c72]{width:100%;overflow:hidden}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title[data-v-08249c72]{width:100%;height:3.28125rem;display:flex;align-items:center;justify-content:space-between}.right-container .doctorsay-container-view .doctorsay-container-container .doctorsay-container-title .doctorsay-container-left[data-v-08249c72]{display:flex}.right-container .right-container-title-nav[data-v-08249c72]{margin-bottom:.625rem}.right-container .right-container-title-nav .right-icons[data-v-08249c72]{display:flex;align-items:center;float:right;height:2.1875rem;margin-right:1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-font[data-v-08249c72]{margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.9375rem}.right-container .right-container-title-nav .right-icons .right-icons-img[data-v-08249c72]{width:2.5rem;height:2.5rem;margin-left:.3125rem;margin-right:.3125rem;margin-top:-1.25rem}.right-container .right-container-title-nav .right-icons .right-icons-img-icon[data-v-08249c72]{width:1.875rem;height:2.5rem;margin-top:-.3125rem;margin-left:.25rem}.right-container .right-container-title-nav .right-container-title-class[data-v-08249c72]{font-size:1.09375rem;font-weight:800;margin-left:.625rem}.right-container .right-container-title-nav .right-container-title-class-dark[data-v-08249c72]{font-size:1.09375rem;font-weight:800;margin-left:.625rem;background:linear-gradient(to bottom,#fff,#b2c8e2);-webkit-background-clip:text;color:transparent}.title-time-delete[data-v-08249c72]{width:1.71875rem;height:1.71875rem;border-radius:50%;display:flex;background-color:#fff;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;background-color:#02abfe;color:#fff;z-index:999;font-size:1.5625rem}.title-time-blue[data-v-08249c72]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:90%;height:88%;z-index:10;--color: #99C9FD;--thick: 2px;--radius: 16px;border:var(--thick) dashed var(--color);border-radius:var(--radius);background:repeating-linear-gradient(90deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top left / 100% var(--thick) no-repeat,repeating-linear-gradient(90deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) bottom left / 100% var(--thick) no-repeat,repeating-linear-gradient(0deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top left / var(--thick) 100% no-repeat,repeating-linear-gradient(0deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top right / var(--thick) 100% no-repeat}.time-button-black-spe[data-v-08249c72]{transition:all 1s;position:absolute;width:11.25rem;height:3.125rem;padding:0 .625rem;border-radius:.625rem;border-top-right-radius:0;border:.0625rem solid #e8e9eb;color:#545569;bottom:-3.125rem;left:-6.875rem;background-color:#fff;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-black[data-v-08249c72]{transition:all 1s;position:absolute;width:11.25rem;height:3.125rem;padding:0 .625rem;border-radius:.625rem;border-bottom-right-radius:0;background-color:#fff;top:-3.125rem;left:-6.875rem;border:.0625rem solid #e8e9eb;color:#545569;display:flex;justify-content:center;align-items:center;z-index:999;box-shadow:0 2px 6px rgba(0,131,250,.2)}.time-button-orange-spe[data-v-08249c72]{transition:all 1s;position:absolute;width:8.75rem;height:3.125rem;padding:0 .625rem;border-radius:.625rem;border-top-right-radius:0;border:.0625rem solid #e8e9eb;background-color:#fff;color:#545569;bottom:-3.125rem;left:-4.0625rem;display:flex;justify-content:center;align-items:center;z-index:999}.time-button-orange[data-v-08249c72]{transition:all 1s;position:absolute;width:8.75rem;height:3.125rem;border-radius:.625rem;padding:0 .625rem;border:.0625rem solid #e8e9eb;border-bottom-right-radius:0;background-color:#fff;top:-2.8125rem;left:-4.0625rem;color:#545569;display:flex;justify-content:center;align-items:center;z-index:999}.title-time[data-v-08249c72]{display:flex;width:100%;position:relative}.title-time .title-time-time[data-v-08249c72]{font-size:1rem;margin:0 auto;font-weight:600}.title-time .title-time-button[data-v-08249c72]{position:absolute;top:-.1875rem;right:-.125rem;width:1.71875rem;height:1.25rem}.title-time .title-time-zhejiao[data-v-08249c72]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.title-time .title-time-font[data-v-08249c72]{position:absolute;top:0;right:.15625rem;font-size:.4375rem;color:#fff}.popup-say[data-v-08249c72]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(236,237,241,.4);z-index:999}.popup-say .popup-say-content[data-v-08249c72]{position:absolute;right:2.03125rem;bottom:5.3125rem;display:flex;flex-direction:column;width:14.0625rem;background-color:#fff;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-say .popup-say-content .popup-say-content-flex[data-v-08249c72]{display:flex;margin-top:.21875rem;margin-bottom:.3125rem}.popup-say .popup-say-content .popup-say-content-flex .popup-say-content-gun[data-v-08249c72]{margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.popup-say .popup-say-content .popup-say-content-flex .popup-say-content-font[data-v-08249c72]{font-size:.9375rem;font-weight:700}.popup-say .popup-say-content .popup-say-three[data-v-08249c72]{position:absolute;left:5.40625rem;bottom:-1.21875rem;width:0;height:0;border-left:.9375rem solid transparent;border-right:.9375rem solid transparent;border-top:1.25rem solid #fff}.popup-delete[data-v-08249c72]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-delete .popup-delete-content[data-v-08249c72]{position:absolute;right:23.4375rem;display:flex;flex-direction:column;align-items:center;width:25rem;height:15.625rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-delete .popup-delete-content .popup-delete-img[data-v-08249c72]{width:7.8125rem;height:7.1875rem;margin-top:1.25rem;margin-bottom:.625rem}.popup-delete .popup-delete-content .popup-delete-text[data-v-08249c72]{font-size:.9375rem;color:#42474e}.popup-delete .popup-delete-content .popup-delete-button[data-v-08249c72]{display:flex;justify-content:space-around;height:2.8125rem;margin-top:.9375rem}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-left[data-v-08249c72]{background-color:#02abfe;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff;margin:0 .3125rem}.popup-delete .popup-delete-content .popup-delete-button .popup-delete-button-right[data-v-08249c72]{background-color:#ced9e8;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;margin:0 .3125rem}.popup-overlay[data-v-08249c72]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;z-index:98}.popup-overlay .popup-overlay-content[data-v-08249c72]{position:absolute;display:flex;align-items:center;width:25rem;height:12.1875rem;background-color:#fff;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-overlay .popup-overlay-content .popup-overlay-content-left[data-v-08249c72]{height:100%;width:10.9375rem;display:flex;justify-content:center;align-items:center;flex-direction:column}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-img[data-v-08249c72]{width:8.75rem;height:7.5rem;margin-top:0}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-font[data-v-08249c72]{font-size:.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right[data-v-08249c72]{height:100%;width:14.0625rem;position:relative}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-font[data-v-08249c72]{font-size:1.875rem;margin-top:2.5rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-text[data-v-08249c72]{margin-left:.3125rem;font-size:1rem;width:12.5rem;margin-bottom:1.5625rem;line-height:1.09375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richang[data-v-08249c72]{background-color:#ffc363;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richangnot[data-v-08249c72]{background-color:#7b61ff;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem;color:#fff}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-crush[data-v-08249c72]{position:absolute;top:.625rem;right:.625rem;width:2.1875rem;height:2.1875rem;animation:shake-08249c72 .5s 3}.popup-song[data-v-08249c72]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-song .popup-song-contain[data-v-08249c72]{position:absolute;right:14.0625rem;width:40.5rem;background:url(../../static/index/clearmountain.png) center / cover,rgba(255,255,255,.7);border:.0625rem solid #fff;background-blend-mode:screen;border-radius:1.25rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-song .popup-song-contain .shu-container-left[data-v-08249c72]{display:flex;margin-top:2.1875rem;margin-bottom:.625rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-gun[data-v-08249c72]{margin-top:.15625rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.09375rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.popup-song .popup-song-contain .shu-container-left .shu-container-left-font[data-v-08249c72]{font-size:1.09375rem;font-weight:700}.popup-song-father[data-v-08249c72]{position:relative}.popup-song-father .shu-up-img[data-v-08249c72]{position:absolute;top:-2.1875rem;left:9.53125rem;width:21.875rem;height:2.5rem}.popup-song-father .shu-up-font[data-v-08249c72]{position:absolute;top:-1.5625rem;left:12.1875rem;display:flex;color:#ff5a00}.popup-song-father .arrayindex[data-v-08249c72]{display:flex;flex-wrap:wrap;width:100%;margin-left:.9375rem;margin-right:.9375rem;margin-bottom:1.875rem}.popup-song-father .arrayindex .arrayindex-one[data-v-08249c72]{width:8.90625rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .arrayindex .arrayindex-one-target[data-v-08249c72]{width:8.90625rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #02abfe;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .secondarrayindex[data-v-08249c72]{display:flex;flex-wrap:wrap;width:100%;margin-left:.9375rem;margin-right:.9375rem;margin-bottom:1.875rem}.popup-song-father .secondarrayindex .arrayindex-one[data-v-08249c72]{width:11.875rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.popup-song-father .secondarrayindex .arrayindex-one-target[data-v-08249c72]{width:11.875rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #02abfe;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.ri-img[data-v-08249c72]{position:absolute;top:-.125rem;right:-.125rem;width:1.875rem;height:1.875rem}.time-father[data-v-08249c72]{display:flex;width:100%;flex-wrap:wrap;margin-left:.9375rem;margin-right:.9375rem}.time-father .time-one[data-v-08249c72]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-target[data-v-08249c72]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.time-father .time-one-hui[data-v-08249c72]{width:3.125rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#c2c9d3;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem;box-shadow:.15625rem .15625rem .3125rem rgba(105,129,178,.4)}.items-card[data-v-08249c72]{width:100%;height:2.5rem;display:flex;justify-content:center;align-items:center}.items-card-target[data-v-08249c72]{width:100%;height:2.5rem;display:flex;justify-content:center;align-items:center;color:#369fef;background:linear-gradient(to right,rgba(54,159,239,0),rgba(54,159,239,.5),rgba(54,159,239,0))}.button-father[data-v-08249c72]{height:6.25rem;width:calc(100%-2.5rem);display:flex;justify-content:center;align-items:center;margin-left:1.25rem;margin-right:1.25rem;margin-top:.625rem;border-top:.03125rem solid #e6e6e6}.button-father .button-father-right[data-v-08249c72]{background:linear-gradient(to right,#00c9ff,#0076ff);width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff}.button-father .button-father-wrong[data-v-08249c72]{background-color:#c2c9d3;width:6.25rem;height:2.5rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center}.month-father[data-v-08249c72]{display:flex;width:calc(100% - 1.875rem);flex-wrap:wrap;margin:.625rem .9375rem .9375rem}.month-father .month-one[data-v-08249c72]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.month-father .month-one-target[data-v-08249c72]{width:2.34375rem;height:2.34375rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father[data-v-08249c72]{display:flex;width:100%;flex-wrap:wrap;margin:.625rem .9375rem .9375rem}.week-father .week-one[data-v-08249c72]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background-color:#f1f5fc;border-radius:.625rem;border:.03125rem solid #6d83b3;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.week-father .week-one-target[data-v-08249c72]{width:6.25rem;height:3.125rem;margin-left:.625rem;margin-top:.625rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;border-radius:.625rem;border:.03125rem solid #fff;display:flex;justify-content:center;align-items:center;font-size:.90625rem}.radio-father[data-v-08249c72]{display:flex;width:100%;flex-wrap:wrap;margin-left:2.34375rem;margin-right:.9375rem}.radio-father .radio-circle[data-v-08249c72]{margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid black;background-color:transparent}.radio-father .radio-circle-target[data-v-08249c72]{position:relative;margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid #02abfe;background-color:transparent}.radio-father .radio-circle-target[data-v-08249c72]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.625rem;height:.625rem;background-color:#02abfe;border-radius:50%}.radio-father .radio-font[data-v-08249c72]{margin-left:.46875rem;margin-right:1.875rem;font-size:.90625rem}.radio-father .radio-font-target[data-v-08249c72]{color:#02abfe;margin-left:.46875rem;margin-right:1.875rem;font-size:.90625rem}.title-time-border[data-v-08249c72]{margin-top:.125rem;margin-left:.125rem;width:calc(100% - .25rem);height:calc(100% - .25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column}.title-time-border-red[data-v-08249c72]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,red,red) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,red,red) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,red,red) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,red,red) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,red,red) bottom right / .25rem 1.875rem no-repeat}.title-time-border-big[data-v-08249c72],.title-time-border-big-top[data-v-08249c72]{transform:scale(1.3);transform-origin:top;border-top:0 solid #fff;transition:transform .5s ease-out,opacity .5s ease-out;z-index:999;display:flex;justify-content:center;align-items:center;height:7.8125rem;width:100%;border-image:repeating-linear-gradient(90deg,#0184db 0px,#0184db .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.title-time-border-blue[data-v-08249c72]{background-color:#dae8fa;width:100%;height:100%;display:flex;align-items:center;flex-direction:column;box-shadow:0 .625rem 1.25rem #dae8fa;background:linear-gradient(to right,#0184db,#0184db) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#0184db,#0184db) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,#0184db,#0184db) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,#0184db,#0184db) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,#0184db,#0184db) bottom right / .25rem 1.875rem no-repeat}.title-time-border-yellow[data-v-08249c72]{margin:.3125rem;border:.0625rem solid transparent;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;background-color:#fff;flex-direction:column}.title-time-border-yellow-active-transparent[data-v-08249c72]{margin:.3125rem;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;background-color:#fff}.title-time-border-yellow-active[data-v-08249c72]{margin:.3125rem;border:.03125rem solid #dae8fa;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-08249c72 .8s infinite;background-color:#fff}.title-time-border-pouple-active-transparent[data-v-08249c72]{margin:.3125rem;border:.125rem dashed #7B61FF;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;opacity:.3;background-color:#fff}.title-time-border-pouple[data-v-08249c72]{margin:.3125rem;border:.03125rem solid #dae8fa;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;background-color:#fff}.title-time-border-pouple-active[data-v-08249c72]{margin:.3125rem;border:.03125rem solid #dae8fa;background-color:#fff;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;animation:shakesmall-08249c72 1s infinite}.down-icons[data-v-08249c72]{margin-top:.53125rem;width:100%;height:1.875rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-08249c72]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}.super-end-items-img-father[data-v-08249c72]{border-radius:50%;display:flex;justify-content:center;align-items:center;text-align:center;flex-direction:column}.super-end-items-img-father-active[data-v-08249c72]{text-align:center;border-radius:50%;display:flex;justify-content:center;align-items:center;flex-direction:column;animation:shake-08249c72 .5s infinite}@keyframes shake-08249c72{0%{transform:rotate(-10deg)}25%{transform:rotate(10deg)}50%{transform:rotate(-10deg)}75%{transform:rotate(10deg)}to{transform:rotate(-10deg)}}.super-end-items-father-close-father[data-v-08249c72]{width:1.25rem;height:1.25rem;border-radius:50%;display:flex;background-color:#0184db;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;color:#fff}@keyframes shakesmall-08249c72{0%{transform:rotate(-2deg)}25%{transform:rotate(2deg)}50%{transform:rotate(-2deg)}75%{transform:rotate(2deg)}to{transform:rotate(-2deg)}}.boom-father[data-v-08249c72]{position:absolute;top:6.875rem;left:.96875rem;width:1.875rem;height:37.8125rem;margin-top:.3125rem}.doctorsay-container-card-font-dark[data-v-08249c72]{font-size:.78125rem;color:#369fef;margin-top:.625rem}.boom[data-v-08249c72]{height:39.6875rem;display:flex;flex-direction:column;overflow:hidden;z-index:0}.boom .boom-son[data-v-08249c72]{height:7.8125rem;width:1.875rem;font-size:.9375rem;display:flex;justify-content:center;align-items:center;text-align:center;z-index:10;font-size:.78125rem;color:#a9acb1}.boom .boom-son .boom-text[data-v-08249c72]{width:1.25rem;height:1.25rem;border:.03125rem solid #A9ACB1;border-radius:50%;display:flex;justify-content:center;align-items:center;z-index:1;background-color:#eff0f4}.boom .boom-son-target[data-v-08249c72]{height:7.8125rem;width:1.875rem;font-size:.9375rem;display:flex;justify-content:center;align-items:center;text-align:center;z-index:10;font-weight:700;font-size:.78125rem;color:#a9acb1;background:linear-gradient(to bottom,#ff8a00,#eceaff)}.popup-share[data-v-08249c72]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(236,237,241,.4);z-index:999}.popup-share .share-other[data-v-08249c72]{z-index:1;width:100%;height:100%}.popup-share .share-title[data-v-08249c72]{padding-left:1.5625rem;height:4.6875rem;display:flex;align-items:center}.popup-share .share-others[data-v-08249c72]{display:flex;justify-content:center;align-items:center;flex-direction:column}.popup-share .share-others .other-img[data-v-08249c72]{width:4.6875rem;height:4.6875rem;margin-left:3.125rem}.popup-share .popup-share-content[data-v-08249c72]{position:absolute;display:flex;flex-direction:column;width:25rem;height:14.0625rem;background-color:#fff;border-radius:.9375rem;transition:opacity .4s ease}.popup-share .popup-share-content .popup-share-title[data-v-08249c72]{margin:.9375rem;font-size:1.25rem;position:relative}.popup-share .popup-share-content .popup-share-title .popup-share-img[data-v-08249c72]{position:absolute;top:0;right:0;width:6.25rem;height:6.25rem}.popup-share .popup-share-content .popup-share-upcontent[data-v-08249c72]{margin:0 .9375rem;display:flex;justify-content:space-between}.popup-share .popup-share-content .popup-share-upcontent .popup-share-font[data-v-08249c72]{font-size:1.09375rem;color:gray}.popup-share .popup-share-content .popup-share-gray[data-v-08249c72]{background-color:#d3d3d3;width:calc(100% - 1.875rem);height:.0625rem;margin:3.4375rem .9375rem 0}.popup-share .popup-share-content .popup-share-downcontent[data-v-08249c72]{display:flex;justify-content:space-between;align-items:center;height:100%;margin:0 .9375rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-img[data-v-08249c72]{width:2.1875rem;height:2.1875rem}.popup-share .popup-share-content .popup-share-downcontent .popup-downcontent-font[data-v-08249c72]{font-size:.84375rem;margin-left:.625rem}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-left[data-v-08249c72]{display:flex;align-items:center}.popup-share .popup-share-content .popup-share-downcontent .popup-share-downcontent-button[data-v-08249c72]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.46875rem .9375rem;border-radius:.625rem;font-size:1rem}.tags-father[data-v-08249c72]{display:flex;flex-direction:column;justify-content:center;margin:.3125rem .4375rem .3125rem .9375rem;align-items:center;width:3.125rem;height:3.4375rem}.tags-father .tags-font[data-v-08249c72]{font-size:.625rem}.tags-img[data-v-08249c72]{width:1.5625rem;height:1.5625rem;margin-bottom:.3125rem}.right-container-title-nav[data-v-08249c72]{margin-top:1.875rem;display:flex;align-items:center;height:1.875rem;position:relative;font-size:.875rem}.right-container-title-nav .new-weight[data-v-08249c72]{margin-left:.9375rem;font-weight:600}.right-container-title-nav .right-icons[data-v-08249c72]{position:absolute;right:0;top:0;display:flex;align-items:center;margin-top:.3125rem}.right-container-title-nav .doctorsay-container-share[data-v-08249c72]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem;margin-left:.3125rem}.right-container-title-nav .doctorsay-container-juzhen[data-v-08249c72]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem;margin:0 .625rem}.balck-icon[data-v-08249c72]{width:1.5625rem;height:1.5625rem;margin-top:.3125rem;margin-right:.625rem;border-radius:50%}.white-button[data-v-08249c72]{width:5rem;height:2.1875rem;border-radius:1.25rem;background-color:#e6e7eb;margin-left:.625rem;margin-top:.3125rem;display:flex;justify-content:center;align-items:center}.white-button .white-img[data-v-08249c72]{width:1.09375rem;height:1.09375rem;margin-right:.3125rem}.left-top[data-v-08249c72]{border-top-left-radius:0!important}.right-top[data-v-08249c72]{border-top-right-radius:0!important}.left-bottom[data-v-08249c72]{border-bottom-left-radius:0!important}.right-bottom[data-v-08249c72]{border-bottom-right-radius:0!important}.mark[data-v-08249c72]{font-size:.90625rem;position:relative}.marknone[data-v-08249c72]{font-size:.90625rem;color:#999;display:flex;margin-top:.15625rem}.tri-down[data-v-08249c72]{width:0;height:0;border-left:.3125rem solid transparent;border-right:.3125rem solid transparent;border-top:.54125rem solid #999;margin:0 0 0 .46875rem}.mark-bgc[data-v-08249c72]{position:absolute;top:1.5625rem;left:0;width:14.0625rem;background-color:#fff;z-index:999;border-radius:.9375rem;padding-bottom:.9375rem;transition:opacity .3s ease}.blue-button[data-v-08249c72]{margin-top:1.875rem;width:4.6875rem;height:2.1875rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#007cff;font-size:.9375rem;background:linear-gradient(to bottom,#e7f4ff,#c5e5ff);border:.0625rem solid #9AD1FF}.zerotarget[data-v-08249c72]{--color: #99C9FD;--thick: 2px;--radius: 1.5625rem;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}.firsttarget[data-v-08249c72]{--color: #99C9FD;--thick: 2px;--radius: 1.5625rem;--outline-offset: .3125rem;border-radius:var(--radius);animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0;z-index:999}.secondtarget[data-v-08249c72]{--color: #99C9FD;--thick: 2px;--radius: .3125rem;--outline-offset: 0;border-radius:var(--radius);animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0;z-index:999}.xian-bian[data-v-08249c72]{height:100%;position:absolute;top:0;left:0;z-index:999;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1}.menus-father[data-v-8ad00f91]{margin-top:1.5625rem;width:100%}.menus-father .menu[data-v-8ad00f91]{height:3.4375rem;width:8.75rem;border-radius:1.875rem;display:flex;justify-content:center;align-items:center;margin:1.40625rem 0 1.40625rem .9375rem}.backgroundContainer[data-v-8ad00f91]{display:flex;position:relative;width:100%;height:100vh;background-color:#eff0f4;overflow:hidden;z-index:12}.darkbackgroundContainer[data-v-8ad00f91]{display:flex;position:relative;width:100%;height:100vh;background-image:url(../../static/index/background.png);background-size:cover;background-position:center center;overflow:hidden;z-index:11}.move-font[data-v-8ad00f91]{position:absolute;z-index:10;pointer-events:none;background-color:#c9e8ff;border-radius:.625rem;border:.0625rem solid #fff;width:6.875rem;height:3.125rem;display:flex;justify-content:center;align-items:center;text-align:center;font-size:1.25rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);will-change:transform}.left-container[data-v-8ad00f91]{width:13.125rem;height:100%}.left-container .blue-circle-pos[data-v-8ad00f91]{position:relative}.left-container .blue-circle-pos .blue-circle[data-v-8ad00f91]{position:absolute;top:-1.5625rem;left:-2.125rem}.left-container .blue-circle-pos .blue-circle .blue-circle-size[data-v-8ad00f91]{width:5.3125rem;height:7.8125rem}.left-container .left-head[data-v-8ad00f91]{display:flex;justify-content:center;align-items:center;flex-direction:column}.left-container .left-head .left-head-img[data-v-8ad00f91]{width:3.75rem;height:3.75rem;margin-top:2.5rem}.left-container .left-head .left-head-font[data-v-8ad00f91]{font-weight:700;font-size:1rem}.left-container .left-head .left-head-font-dark[data-v-8ad00f91]{font-weight:700;font-size:1.25rem;background:linear-gradient(to right,#ebf4ff,#adc4e0);-webkit-background-clip:text;color:transparent}.left-container .left-img-container[data-v-8ad00f91]{display:flex;justify-content:center;align-items:center;flex-direction:column}.left-container .left-img-container .left-img[data-v-8ad00f91]{width:2.90625rem;height:2.90625rem;margin:1.5625rem 0;z-index:100}.title-time-border-yellow[data-v-8ad00f91]{width:7.96875rem;height:5.90625rem;margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#fff1db,#ffe2b2);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;position:absolute;z-index:10}.title-time-border-pouple[data-v-8ad00f91]{width:7.96875rem;height:5.90625rem;margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;position:absolute;z-index:10}.title-time[data-v-8ad00f91]{display:flex;width:100%;position:relative}.title-time .title-time-time[data-v-8ad00f91]{font-size:1rem;margin-left:.84375rem;margin-top:.375rem}.title-time .title-time-button[data-v-8ad00f91]{position:absolute;top:-.15625rem;right:0;width:2.1875rem;height:2.1875rem}.title-time .title-time-font[data-v-8ad00f91]{position:absolute;top:.21875rem;right:.15625rem;font-size:.71875rem;color:#fff}.down-icons[data-v-8ad00f91]{margin-top:.625rem;width:100%;height:1.5625rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-8ad00f91]{margin:0 .15625rem;font-size:.625rem;padding:.15625rem .3125rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}.target[data-v-8ad00f91]{--color: #99C9FD;--thick: 2px;--radius: 1.875rem;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse-8ad00f91 .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0}@keyframes scalePulse-8ad00f91{0%{transform:scale(1)}25%{transform:scale(.94)}65%{transform:scale(1.08)}to{transform:scale(1)}} diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/pages/Warehousing/index.css b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/Warehousing/index.css new file mode 100644 index 0000000..4f7234a --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/Warehousing/index.css @@ -0,0 +1 @@ +.overlay[data-v-8cdafce2]{position:fixed;top:0;left:0;width:100%;height:100vh;background:rgba(0,0,0,.5);z-index:999;will-change:opacity;transition:opacity .3s ease;opacity:0;display:block}.overlay-show[data-v-8cdafce2]{opacity:1}.drawer[data-v-8cdafce2]{position:fixed;top:0;right:0;height:100vh;background:#fff;z-index:1000;border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem;transform:translate(100%);transition:transform .4s ease;will-change:transform}.drawer-open[data-v-8cdafce2]{transform:translate(0)}.drawer-content[data-v-8cdafce2]{position:relative;width:100%;height:100%}.drawer-content-circle[data-v-8cdafce2]{position:absolute;top:calc(50% - 1.71875rem);left:-1.25rem;width:3.125rem;height:3.4375rem;border-radius:50%;z-index:-1;background:linear-gradient(to bottom,#dfecfa,#c9dbee);display:flex;align-items:center;-webkit-clip-path:inset(0 60% 0 0);clip-path:inset(0 60% 0 0)}.drawer-img[data-v-8cdafce2]{width:.78125rem;height:.78125rem;margin-left:.3125rem;transform:rotate(180deg)}.draw-all[data-v-e15809eb]{width:100%;height:100%;display:flex;flex-direction:column;background:url(../../static/index/clearmountain.png) center / cover,rgba(255,255,255,.4);background-blend-mode:screen;isolation:isolate;border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem;overflow:hidden}.draw-all .draw-flex[data-v-e15809eb]{display:flex}.draw-all .draw-title[data-v-e15809eb]{width:100%;height:4.375rem;display:flex;justify-content:space-between;padding-top:2.125rem}.draw-all .draw-title .draw-title-gun[data-v-e15809eb]{margin-left:1.875rem;margin-right:.625rem;width:.40625rem;height:1.5625rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.draw-all .draw-title .draw-title-font[data-v-e15809eb]{font-size:1.25rem;font-weight:700}.draw-all .draw-contain[data-v-e15809eb]{width:100%;height:calc(100vh - 4.375rem)}.modal[data-v-e15809eb]{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.5);display:flex;align-items:center;justify-content:center}.modal-content[data-v-e15809eb]{width:80vw;height:80vh;background:#fff;border-radius:8px;overflow:hidden}.draw-blue[data-v-e15809eb]{color:#0090ff;font-size:.9375rem;margin-right:1.40625rem;margin-top:.46875rem}.swiper-flex[data-v-e15809eb]{display:flex;flex-wrap:wrap;margin-left:0}.swiper-flex .swiper-card[data-v-e15809eb]{margin:0 0 .9375rem .9375rem;width:28.125rem;height:11.25rem;border:.0625rem solid #fff;border-radius:.9375rem;background:url(../../static/index/blueMountain.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;isolation:isolate;box-shadow:.15625rem .15625rem .3125rem #839fcc;overflow:hidden}.swiper-flex .swiper-card .swiper-card-top[data-v-e15809eb]{width:100%;height:8.4375rem;display:flex}.swiper-flex .swiper-card .swiper-card-top .swiper-card-top-img[data-v-e15809eb]{width:7.8125rem;height:7.8125rem;margin-top:.625rem;margin-left:.9375rem;margin-right:.3125rem}.swiper-flex .swiper-card .swiper-card-top .swiper-card-top-card[data-v-e15809eb]{width:calc(100% - 8.125rem);height:100%}.swiper-flex .swiper-card .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight[data-v-e15809eb]{display:flex;justify-content:space-between;margin-top:1.09375rem}.swiper-flex .swiper-card .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-left[data-v-e15809eb]{font-weight:700;font-size:1.09375rem}.swiper-flex .swiper-card .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-right[data-v-e15809eb]{color:#ff6000;font-weight:500;font-size:.9375rem}.swiper-flex .swiper-card .swiper-card-top .swiper-card-top-card .swiper-card-top-card-noral[data-v-e15809eb]{display:flex;justify-content:space-between;margin-top:.46875rem}.swiper-flex .swiper-card .swiper-card-down[data-v-e15809eb]{width:100%;height:2.8125rem;display:flex;background:linear-gradient(to right,#ceddff,#f3effa,#d1dafe);align-items:center;justify-content:space-between}.swiper-flex .swiper-card .swiper-card-down .down-left[data-v-e15809eb]{display:flex;margin-left:1.5625rem}.swiper-flex .swiper-card .swiper-card-down .down-left .down-left-weight[data-v-e15809eb]{font-weight:700;font-size:.78125rem}.swiper-flex .swiper-card .swiper-card-down .down-left .down-left-font[data-v-e15809eb]{font-size:.78125rem}.swiper-all-flex[data-v-e15809eb]{display:flex}.swiper-gray[data-v-e15809eb]{color:#596278;font-size:.78125rem}.swiper-black[data-v-e15809eb]{font-size:.875rem}.delete-img[data-v-e15809eb]{width:1.25rem;height:1.40625rem;margin-right:1.25rem}.down-note[data-v-e15809eb]{width:100%;overflow:hidden;height:15%;display:flex;align-items:center;position:relative}.downitems-center-says[data-v-e15809eb]{display:flex;color:#6f7fa3;font-size:.9375rem;margin-top:.78125rem;margin-right:1.875rem}.downitems-center-father[data-v-e15809eb]{display:flex;justify-content:center;align-items:center;width:1.25rem;height:1.25rem;border-radius:50%;background-color:#bac5de;margin-right:.3125rem;margin-top:0}.downitems-center-father .downitems-center-says-maike[data-v-e15809eb]{width:.9375rem;height:.9375rem}.down-note-title-input[data-v-e15809eb]{width:calc(100% - 3.125rem);margin-left:1.25rem;margin-top:.6875rem;height:3.75rem;font-size:.84375rem;border:.0625rem #a0adc8 solid;padding:.46875rem 0 .46875rem .625rem;background-color:rgba(234,243,254,.6);border-radius:.9375rem}.down-button[data-v-e15809eb]{width:100%;display:flex;justify-content:flex-end;align-items:center;height:8%}.down-button .swiper-left-button-blue[data-v-e15809eb]{display:flex;justify-content:center;align-items:center;width:5rem;height:2.1875rem;border-radius:.625rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;border:.03125rem #fff solid;margin-right:.625rem;box-shadow:.0625rem .0625rem .125rem rgba(0,0,0,.3)}.down-button .swiper-left-button-orange[data-v-e15809eb]{display:flex;justify-content:center;align-items:center;width:5rem;height:2.1875rem;border-radius:.625rem;background:linear-gradient(to right bottom,#ff9323,#ff5038);color:#fff;border:.03125rem #fff solid;margin-right:.625rem;box-shadow:.0625rem .0625rem .125rem rgba(0,0,0,.3)}.char-count[data-v-e15809eb]{position:absolute;bottom:.9375rem;right:2.1875rem;color:#999;font-size:.78125rem}.scroll-view[data-v-e15809eb]{height:75%;width:calc(100% - 2.5rem);margin-left:1.25rem;border-radius:1.25rem;border:.0625rem solid #fff;box-shadow:.125rem .25rem .5rem .125rem #839fcc;overflow:hidden}.draw-all[data-v-c8dcc752]{width:100%;height:100%;display:flex;flex-direction:column;background:url(../../static/index/clearmountain.png) center / cover,rgba(255,255,255,.4);background-blend-mode:screen;isolation:isolate;border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem;overflow:hidden}.draw-all .draw-flex[data-v-c8dcc752]{display:flex}.draw-all .draw-title[data-v-c8dcc752]{width:100%;height:4.375rem;display:flex;justify-content:space-between;padding-top:2.125rem}.draw-all .draw-title .draw-title-gun[data-v-c8dcc752]{margin-left:1.875rem;margin-right:.625rem;width:.40625rem;height:1.5625rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.draw-all .draw-title .draw-title-font[data-v-c8dcc752]{font-size:1.25rem;font-weight:700}.draw-all .draw-contain[data-v-c8dcc752]{width:100%;height:calc(100vh - 4.375rem)}.modal[data-v-c8dcc752]{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.5);display:flex;align-items:center;justify-content:center}.modal-content[data-v-c8dcc752]{width:80vw;height:80vh;background:#fff;border-radius:8px;overflow:hidden}.draw-blue[data-v-c8dcc752]{color:#0090ff;font-size:.9375rem;margin-right:1.40625rem;margin-top:.46875rem}.swiper-flex[data-v-c8dcc752]{display:flex;flex-wrap:wrap;margin-left:0}.swiper-flex .swiper-card[data-v-c8dcc752]{margin:0 0 .9375rem .9375rem;width:28.125rem;height:11.25rem;border:.0625rem solid #fff;border-radius:.9375rem;background:url(../../static/index/blueMountain.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;isolation:isolate;box-shadow:.15625rem .15625rem .3125rem #839fcc;overflow:hidden}.swiper-flex .swiper-card .swiper-card-top[data-v-c8dcc752]{width:100%;height:8.4375rem;display:flex}.swiper-flex .swiper-card .swiper-card-top .swiper-card-top-img[data-v-c8dcc752]{width:7.8125rem;height:7.8125rem;margin-top:.625rem;margin-left:.9375rem;margin-right:.3125rem}.swiper-flex .swiper-card .swiper-card-top .swiper-card-top-card[data-v-c8dcc752]{width:calc(100% - 8.125rem);height:100%}.swiper-flex .swiper-card .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight[data-v-c8dcc752]{display:flex;justify-content:space-between;margin-top:1.09375rem}.swiper-flex .swiper-card .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-left[data-v-c8dcc752]{font-weight:700;font-size:1.09375rem}.swiper-flex .swiper-card .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-right[data-v-c8dcc752]{color:#ff6000;font-weight:500;font-size:.9375rem}.swiper-flex .swiper-card .swiper-card-top .swiper-card-top-card .swiper-card-top-card-noral[data-v-c8dcc752]{display:flex;justify-content:space-between;margin-top:.46875rem}.swiper-flex .swiper-card .swiper-card-down[data-v-c8dcc752]{width:100%;height:2.8125rem;display:flex;background:linear-gradient(to right,#ceddff,#f3effa,#d1dafe);align-items:center;justify-content:space-between}.swiper-flex .swiper-card .swiper-card-down .down-left[data-v-c8dcc752]{display:flex;margin-left:1.5625rem}.swiper-flex .swiper-card .swiper-card-down .down-left .down-left-weight[data-v-c8dcc752]{font-weight:700;font-size:.78125rem}.swiper-flex .swiper-card .swiper-card-down .down-left .down-left-font[data-v-c8dcc752]{font-size:.78125rem}.swiper-all-flex[data-v-c8dcc752]{display:flex}.swiper-gray[data-v-c8dcc752]{color:#596278;font-size:.78125rem}.swiper-black[data-v-c8dcc752]{font-size:.875rem}.delete-img[data-v-c8dcc752]{width:1.25rem;height:1.40625rem;margin-right:1.25rem}.down-note[data-v-c8dcc752]{width:100%;overflow:hidden;height:15%;display:flex;align-items:center;position:relative}.downitems-center-says[data-v-c8dcc752]{display:flex;color:#6f7fa3;font-size:.9375rem;margin-top:.78125rem;margin-right:1.875rem}.downitems-center-father[data-v-c8dcc752]{display:flex;justify-content:center;align-items:center;width:1.25rem;height:1.25rem;border-radius:50%;background-color:#bac5de;margin-right:.3125rem;margin-top:0}.downitems-center-father .downitems-center-says-maike[data-v-c8dcc752]{width:.9375rem;height:.9375rem}.down-note-title-input[data-v-c8dcc752]{width:calc(100% - 3.125rem);margin-left:1.25rem;height:3.75rem;font-size:.84375rem;border:.0625rem #a0adc8 solid;padding:.46875rem 0 .46875rem .625rem;background-color:rgba(234,243,254,.6);border-radius:.9375rem}.down-button[data-v-c8dcc752]{width:100%;display:flex;justify-content:flex-end;align-items:center;height:8%}.down-button .swiper-left-button-blue[data-v-c8dcc752]{display:flex;justify-content:center;align-items:center;width:5rem;height:2.1875rem;border-radius:.625rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;border:.03125rem #fff solid;margin-right:.625rem;box-shadow:.0625rem .0625rem .125rem rgba(0,0,0,.3)}.down-button .swiper-left-button-orange[data-v-c8dcc752]{display:flex;justify-content:center;align-items:center;width:5rem;height:2.1875rem;border-radius:.625rem;background:linear-gradient(to right bottom,#ff9323,#ff5038);color:#fff;border:.03125rem #fff solid;margin-right:.625rem;box-shadow:.0625rem .0625rem .125rem rgba(0,0,0,.3)}.char-count[data-v-c8dcc752]{position:absolute;bottom:.9375rem;right:2.1875rem;color:#999;font-size:.78125rem}.scroll-view[data-v-c8dcc752]{height:85%;width:calc(100% - 2.5rem);margin-left:1.25rem;border-radius:1.25rem;border:.0625rem solid #fff;box-shadow:.125rem .25rem .5rem .125rem #839fcc;overflow:hidden}.draw-all[data-v-a22273dc]{width:100%;height:100%;display:flex;flex-direction:column;background:url(../../static/index/pink.png) center / cover,rgba(255,255,255,.2);background-blend-mode:screen;isolation:isolate;border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem;overflow:hidden}.draw-all .draw-flex[data-v-a22273dc]{display:flex}.draw-all .draw-title[data-v-a22273dc]{width:100%;height:4.375rem;display:flex;justify-content:space-between;padding-top:2.125rem}.draw-all .draw-title .draw-title-gun[data-v-a22273dc]{margin-left:1.875rem;margin-right:.625rem;width:.40625rem;height:1.5625rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.draw-all .draw-title .draw-title-font[data-v-a22273dc]{font-size:1.25rem;font-weight:700}.draw-all .draw-contain[data-v-a22273dc]{width:100%;height:calc(100vh - 4.375rem)}.modal[data-v-a22273dc]{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,.5);display:flex;align-items:center;justify-content:center}.modal-content[data-v-a22273dc]{width:80vw;height:80vh;background:#fff;border-radius:8px;overflow:hidden}.draw-blue[data-v-a22273dc]{color:#0090ff;font-size:.9375rem;margin-right:1.40625rem;margin-top:.46875rem}.swiper-card[data-v-a22273dc]{margin:0 0 .9375rem 1.25rem;width:30rem;height:7.8125rem;border:.0625rem solid #fff;border-radius:.9375rem;background:url(../../static/index/blueMountain.png) center / cover,rgba(255,255,255,.7);background-blend-mode:screen;isolation:isolate;box-shadow:.15625rem .15625rem .3125rem #839fcc;overflow:hidden}.swiper-card .swiper-card-top[data-v-a22273dc]{width:100%;height:8.4375rem;display:flex}.swiper-card .swiper-card-top .swiper-card-top-img[data-v-a22273dc]{width:7.8125rem;height:6.25rem;margin-top:.9375rem;margin-left:.9375rem;margin-right:.625rem}.swiper-card .swiper-card-top .swiper-card-top-card[data-v-a22273dc]{margin-left:1.25rem;width:calc(100% - 1.25rem);height:100%}.swiper-card .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight[data-v-a22273dc]{display:flex;justify-content:space-between;margin-top:1.09375rem}.swiper-card .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-left[data-v-a22273dc]{font-weight:700;font-size:1.09375rem}.swiper-card .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-right[data-v-a22273dc]{color:#008aff;font-weight:700;font-size:.9375rem}.swiper-card .swiper-card-top .swiper-card-top-card .swiper-card-top-card-noral[data-v-a22273dc]{display:flex;justify-content:space-between;margin-top:.46875rem}.swiper-card-spec[data-v-a22273dc]{margin:0 0 .9375rem 1.25rem;width:27.8125rem;height:6.25rem;border:.0625rem solid #fff;border-radius:.9375rem;background:url(../../static/index/blueMountain.png) center / cover,rgba(255,255,255,.7);background-blend-mode:screen;isolation:isolate;box-shadow:.15625rem .15625rem .3125rem #839fcc;overflow:hidden}.swiper-card-spec .swiper-card-top[data-v-a22273dc]{width:100%;height:8.4375rem;display:flex}.swiper-card-spec .swiper-card-top .swiper-card-top-img[data-v-a22273dc]{width:6.25rem;height:6.25rem;margin-top:.9375rem;margin-left:.9375rem;margin-right:.625rem}.swiper-card-spec .swiper-card-top .swiper-card-top-card[data-v-a22273dc]{width:100%;height:100%}.swiper-card-spec .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight[data-v-a22273dc]{width:100%;display:flex;padding:0 1.25rem;justify-content:space-between;margin-top:.46875rem}.swiper-card-spec .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-left[data-v-a22273dc]{font-weight:700;font-size:1.09375rem}.swiper-card-spec .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-right[data-v-a22273dc]{color:#008aff;font-weight:700;font-size:.9375rem}.swiper-card-spec .swiper-card-top .swiper-card-top-card .swiper-card-top-card-noral[data-v-a22273dc]{display:flex;justify-content:space-between;width:100%;padding:0 1.25rem;margin-top:.46875rem}.swiper-flex[data-v-a22273dc]{display:flex;flex-wrap:wrap;margin-left:0}.swiper-all-flex[data-v-a22273dc]{display:flex}.swiper-gray[data-v-a22273dc]{color:#596278;font-size:1rem}.swiper-black[data-v-a22273dc]{font-size:1rem}.delete-img[data-v-a22273dc]{width:1.25rem;height:1.40625rem;margin-right:1.25rem}.scroll-view[data-v-a22273dc]{height:29.0625rem;width:calc(100% - 2.5rem);margin-left:1.25rem;border-radius:1.25rem;border:.0625rem solid #fff;box-shadow:.125rem .25rem .5rem .125rem #839fcc;overflow:hidden}.scroll-view-title[data-v-a22273dc]{display:flex;justify-content:space-around;align-items:center;width:100%;height:3.125rem;background:linear-gradient(to right,#e3eaff,#f4ecff,#dce4ff);font-size:.9375rem;font-weight:500}.scroll-view-title .outhouse[data-v-a22273dc]{display:flex}.scroll-view-title .outhouse .outhouse-img[data-v-a22273dc]{width:1.5rem;height:1.5rem;margin-right:.25rem;margin-top:-.1875rem}.scroll-view-title .outhouse .outhouse-left[data-v-a22273dc]{color:#f60}.scroll-view-title .outhouse .outhouse-right[data-v-a22273dc]{margin-left:.21875rem}.scroll-view-title .inhouse[data-v-a22273dc]{display:flex}.scroll-view-title .inhouse .inhouse-img[data-v-a22273dc]{width:1.5rem;height:1.5rem;margin-right:.25rem;margin-top:-.0625rem}.scroll-view-title .inhouse .inhouse-left[data-v-a22273dc]{color:#008fff}.scroll-view-title .inhouse .inhouse-right[data-v-a22273dc]{margin-left:.21875rem}.select-width[data-v-a22273dc]{width:100%;height:3.125rem;display:flex;justify-content:flex-end}.select-width .select-blue[data-v-a22273dc]{border:.03125rem solid #fff;width:5.625rem;height:2.1875rem;background:linear-gradient(to bottom,#00c9ff,#0076ff);border-radius:.46875rem;margin-right:.625rem;display:flex;justify-content:space-evenly;align-items:center;position:relative}.select-width .select-blue .select-blue-img[data-v-a22273dc]{width:.84375rem;height:.84375rem}.select-width .select-blue .select-blue-font[data-v-a22273dc]{color:#fff}.select-width .select-blue .triangle-down[data-v-a22273dc]{width:0;height:0;border-left:.25rem solid transparent;border-right:.25rem solid transparent;border-top:.25rem solid #fff}.select-width .select-white[data-v-a22273dc]{border:.03125rem solid #fff;width:8.75rem;height:2.1875rem;background:linear-gradient(to bottom,#eef5ff,#d4defc);border-radius:.46875rem;margin-right:1.25rem;display:flex;justify-content:space-evenly;align-items:center;position:relative}.select-width .select-white .select-blue-img[data-v-a22273dc]{width:.84375rem;height:.84375rem;margin-left:.3125rem}.select-width .select-white .select-blue-font[data-v-a22273dc]{color:#19233b}.select-width .select-white .triangle-down[data-v-a22273dc]{width:0;height:0;border-left:.25rem solid transparent;border-right:.25rem solid transparent;border-top:.25rem solid #19233B}.down-contain[data-v-a22273dc]{width:100%;height:2.34375rem;display:flex;justify-content:center;align-items:center}.down-contain .down-contain-img[data-v-a22273dc]{height:.9375rem;width:.9375rem}.dropdown-list[data-v-a22273dc]{position:absolute;top:100%;left:0;width:100%;overflow:hidden;background:#fff;border:.0625rem solid #ccc;box-sizing:border-box;max-height:0;z-index:999;border-radius:.46875rem}.dropdown-item[data-v-a22273dc]{padding:.625rem;display:flex;justify-content:center;align-items:center;background:#fff;color:#000}.dropdown-item.active[data-v-a22273dc]{color:#016ad1;background-color:#c9e8ff}@keyframes slideDown-a22273dc{0%{max-height:0}to{max-height:18.75rem}}@keyframes slideUp-a22273dc{0%{max-height:18.75rem}to{max-height:0}}.open[data-v-a22273dc]{animation:slideDown-a22273dc .3s ease forwards}.close[data-v-a22273dc]{animation:slideUp-a22273dc .3s ease forwards}@font-face{font-family:uicon-iconfont;font-weight:400;font-style:normal;font-display:auto;src:url(data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAGQYAAsAAAAAw2gAAGPEAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCdAAqCv3SB/XABNgIkA4ZoC4M2AAQgBYRtB5cNG+OfdYacxwEA9eYzEqHbAaXC+ZFZWS8oKTr7/09LKmNsu7DdEEVL04JkStgZyOKZ/ILQ2JzQooY+O2mlDm88cwprtIUJRYoVp8q1MEe1Ow/WIUjUNfnNH9HJV5m92kW8dnj/3pEhB8aSgR+4kj24yOevPzf/ix2t5Ij79FHJAsd5EFJ2EoByUZPNHtWZ1VUw8TCKNsPzc+v9/WVQI8dGjhpsRMkSRg/YRimMGiDhCBkIyggFLMAzAAsVA/BOjAJUrBMVFTk9PQUPK0D0ro1REM/4bck0GjGLMBKwOzEqMDrm/+DNvwEAhTsoAAkoYGpB7e4LMInq4Z7d2/lSHmrkiVCowgFOGC/4BjLdjqZBMK9fkWmEJpgKgx8EK9nAPEPOk30pNCLq0BlSKNLexDrvFnL/EBcKlB/2YPqlzm92rMBKbxWxIXacD0TdMTTllTdfbtWnkEtVgBUaVkW6e6oqLSvgq84luVauJUGaMQg240CPmETe+8e/tZabTzHZvWtZycoqHH//BQBFFJvYg6cSCAPK0P/lViVvbmTWIzDi0N0rLjdoVkyOXJIrXJMg1hJIpYJpuwL9q2rensSOdFq7rfav29kR3LEgWD1R08h27tjxMauRWqk1yAqQxIEnxwk/k9Xvp4mNJ5uJLShAeP9ebatUY0naCgW0UITh59azOqqoboMT35k+wU5MV6BC/qWqJ5UnA9vtHQlfnOYXH0EGqAuWT9o/uCI/R6qH5JFb21r+/3mKC2j3fzlyPaQSlCkmTghdBueFPOIgIuD/pjV7uSVUtRJH3r1Qi793yiERbvfPn1kmfye50j+ht+xRakKdXWpRyFaEW2p3vgqDx5kmUV5C/ceN8zDBBaE/Jw+cu0rV+oKmNmRq88X0i/W3q7b+l373+kzPkBYGICUCkGiCVIIo+wTKgQBlF0E6BXIjpfPl9IoRIB0I0nsFUA6kfAHcKG6W9/JrN1/Mz5Ce9/jc+327ryVoKss14vz/aVtEFGJxKA6zw9isAcvQsULlmCICMkSMr7y8H5v/3H7HKsRIsIE7JNR0v68Ola+NidPXgYK7d4y5/kTrx1YiH3ACHY721PpPEwB52aopNP+2724kpHhSAITxv1FDjHzpgDzZMsCCoCevzA4ZdNuGwWaub2JsOr5/+GfTAhbIQEXxzM4jWww363cwcBfD37CDtobhdX241wMioCayVW4+bY0NiYeueRB+9rkNjZPR3SzDmPy+DZuAipEDJ95srvX1+/VHZ73km/Ct/p2utNSVpqu82hqCBAuZNq+8ATmVfJVWWHeYbwS/04tPTM/uwnx5/WrZyVW5K5oTo3NVqPm14m2BMjTemmu9rddzuzLfe3tb7nMPuIeaD4waumN34v8dT1ljigt5jIEn4Cl4Bp6D5ra9AG3NcPfedF1NNsxLUJuXzqNjHXsFxnkN7h/femLnVG/A/n11YXjrmqOdt2C8CXIrtGdHJTfBu2Cm98D7IK87oI0PwYGTB7d/BKbooLKD+cRp72PwCfgUPJjtMzDN5ocTVRGvs6Za+Bx8Ab4ErbS26yswyKFJmhmlgAJ7RxhpsHpyne6mux7O9NRLF7310VdL/fQ3QBlk9lgsrTBPIVaoHNDQMdRZoDhTZtCYLJhDgOkttEgOhiVZjcuWr1i5qiSi1jWlrF23fsPGoarqPdJQmPaAzQefgK8sZ8+dH+jCxUuXr1y9dv3GzVu37zTWRAX+AgQKEixEKFdcbtx5AINyGjgWYHT9vvZfIDCqgylAED4WAqOAYHwChMSnQCh8BoTG50AYfAGExVaEw53C40sgAnYgIs4mEt4TGe+LgrOIij2IhtOIjiOJga+ATLA2kCnWATLD7TLH47LACcTEE7LE10BWOJGs8Q2QDT6QLZ6UHe4QC0/JHveIjTOIg2+BHPCgHPGAnLAukDNGALlgPSBX3Ccuzic37Eju+A7IAyeRJ04mL4wE4uF48sZc+eBu8bESkADfA/niByA/nEP++BEoAD8BBWI0UBB+BgrG9hSCX4BC8ZAW4WmF4WEJcZdE+BVIjNNJgp1JipWBZHhG4RgDFIFdSI6dKBK/AUXhd6Bo/AEUgw8Vi/MoDn8CxeNMUuA2JeAjJeIUSsIqQErsSirsRmrMoWRsTSn4CygVfwOl4R+gdGxLi7EdLcG9ysC/QJmPNw0eURZOpWxsSTk4lnIxDigPx5EW9yv/nFXgqND5XUthfaAiHEXFeFYl2JNKsRctw96kw3Mqwz5Ujn2pArtTJfaj5difqnAA6bENVeNAqsFBtAIHUy2WBarDeKCVWA5oFaYC1WNJIAMuoAZcSI2YANSEpYCaMRFoNVYEWoNJQC2YDNSKhYDacBGtxcW0DgsDrcciQBuwKNBGDAdqxxJAHVgcqBOLAW3CYKAfMARoM86lLbiEtuJS2oZhQD24TNtxuXZgKFAvrtAeXKk+XKX9uFoHcI0O4lodwtJA/RgLNIDrNIjrNYRlgI7iBh3DjTqDm3QWN2sYt2gUR9AvWBXoBR7VOzxmPozNgflIbAHMx82tPbwZJFOzvJzMNDmb6fIyM8Q3M5VgDlereV4PzAv63byo53AICxLwkgUqvGyBel5RqXlVOvOays3rWmHeUK15Uw3mLa0289Ri3labeUdrzbv6yczSFTNb/8MKwIAcGwADKmwIDOTORsozG0trNlG+2VQVZjNVmtVUY1bXCrOG1pk1tcEfawH4D2DQdYP/N20SmD0zvuG/kuhhSdB/fz0IEhYaHmrTyNGHgpHDaUQyEvylEiPhpvAsgAdcUqDhBAzjoxDBamWWHEXLRUk3zQIxJnRqcWaNC1AmhIpAAVyaA7hpHlAPTAEsEAikPkuF4ArAbE4NKENRV7oFAztaGpkyLioJfbF3cbQNo6FblBgH+xgUe1gRDVZjE0h+jmFKOA1ZH2aGqUo1CNuTLdrewl6g5gToj+dRS0ckZ5JyNwz5Vguh2Wa0tKjj/kJ0Pi8Q8yPlTocrnq4hEa3FCDocKYsubQ9jkix6OMlKQVSKzZhMfyUP+hh8LpsQPaxNgRhujI5YpMtinZ4414eSNeBbw1Ls6Gp2amgIjjunapxZgSPKLKeXY1BBiz3kxFjZLCmGrd20fav4lvWoCFiF0i7H/rBPPxcbTXmpffcEi0en9a4TrZ3b29250myHaYrEbXJ2IQIbKp61FYJT8MxSGdedJsFuVe2162qscnZbu93dHb9dtt/tHxOSmhwU4liXKB6sThZdbqZB68SUGFIUHO9hC4V931S2mW42m7B+S/EEgYKUJasluMCKgWG0syNq01mLLImeKX+CQedh0gE8PQ1oajBrg1UqguHfLBI4fLvEHTNqQ01rZq/1J39onmem5XFG2PmFXDN/f7C8Zl/Cq6X+CZJlshonJDsrE/AIu0EMC9sGlTQsLrgq4vVMLdh5NKgO4rC/QGaKWGIacOw8l5RuOgcchkMH1+90IOa/2N+azrACjLEvwNZsit0UF7BcoRWCbK67FLt24V0TPbgcxG39QNk1uUNKGPRZcS7Y7J5ktZljwx4ATLywmxph7hHqvPNfk+GdpPwQNMgQwXQYO54MZiiwuRQE2xAwOQgOAqGgE/RQl5+FfF7eDYfm2jFIhuuoz9XThdADbICBfGs1rTkfbCtCEhxC5FEhFdA8I68xxB3fDFU9JZjRqUMNKcPlXD7pCm4sIH8q20pngJRErVfT2Iahf+8X8Lvg3AOBsOtwuevJxeXm2SYvAbmlbDkExXPQNDIWTadUAEa98rqioP2RNAsLylBYAMEHqJgBVgaLpgzMHbjbBA2L39wEpEXjzCY7s00W1LgT1EwRxSjjxoJ/oFoKjHPON5aDfedhXl8dmckO1uIN10j1HFmyxd2SFOnC0Vh9kVKwrAGJr0OuGlYpYquJrxYtQ2mlzzGVcVCL8swKGkTQ64kagF8j100W718Q8VopCopjK6C4i689URK20A+IJnQuzXMmR52pWYXM9Hpi04bbbujXXkyI4rNVaAWkKSDXORDJu/7z0pirFs1kEmQzXpT6cfjEUGba5thBeu5/cVtb3kINXO93sNeGlXdWDqW8Hfe6osCwCoqrx2W+Y7uOkVA5lLKlGFBqiITEw/FVPIzO4oLVG5FIN0RNBuV1nGh7JMPZTXV5Ho4HjtjKUErsFtxU6QAwTFvFtdCrDy/vjtdR1yFyq7L59XcVnfG+Rx8fNugzG5n4hSR8dfVxQtOPLXnV3U7typyHRy8KvUrEizAGooABJbOhIKbfJpjGMVh3UtTP7zGK1rIRZfTb3Lsw1r2mC4I6QtKc6cFxOj0gJi8doJz3ht3QfkJJ1wL/kAGhczPEyF41Y2VGn1I5pc51d/6ovdWl/R++PzjbHq1PH8agTYWXvDKFjYlQtx/giou9Kijc3D51Ry9CZgqZoq2SRhVnwZlZRRRgBmkvlgBUl9aIk4EYz0Ld31USbuBrAuX2cHRLqLkvaB/EQt/dhAhuSvI+lWsRSEvUWC1eFNI9VBWo8ByVBbcPhCMpx9csfloGoIYWdabz1qC15pKm5GcSYKDyBZPDbdrU6okbWL/G04cmkqLK7na4JW3mTtSQ1lp4KzldOg7Q+7J3YEJwv/wuuru5bNkSevbx0X4pjyaLxzTIFpb2bTClTaYAK5VDU4gwIQ0oaMJgscXpMtSQPWSJnFlqSYHUQjHGOGRKUH8O36cNr9+SoNKjs5XxSJ5Ky+n2FS3j8cepyIBkSzCnH/K07s6pmXizamV/7UUOgEJDBqRBqHOygXBIIVHwVooRWC7qBIzPMuxeDuU5bMWvt3V8Ap51RNVMI+ghOGnGhok7t75QDbfX+hlVr7KXA93sSUUvdVq8g4hMktX8uiXrkdWyjmawkwnROjZ/yWSORHT1kZOeOU918lDEm08fmk5fQovOZw48n6lB0JwiejPCVQHNy+Yi3nStRNdRYsk3/KCdyzDOBPdT3RcSEWTnMhc1KtuAJeNCExCwxbvSEd+EWSLpqAokpBRDybILw0GWJ5WICLUxnrU3v70ZJFQ6snWeJKejBykXDXRK7poBRMxK96reuvm9SPI/uFVG+LeyL1wIiFdJFAobVU4sITsEjSkVvZSt9hFPFAmCMGfPWo+WrkRm1j/ICLuKrhjPMQCAxQTKRWMjcRloQoArUYtA9LrztibHkNO7kgft3xgnNF1DGixWcOCk/e6DuVeL37stucRVKA/8tjsTiaXlZu7soX8nyS/8SmuVRmdrVllccLKGEN7vqCrtcczv14jfmVyQykAf3ig1GTo1M8FzhXwRSOzZwpns4LloG9+SyHQgpVxK5LcGVeV6pUQuJDV6UqZP5MkoIO0/JAKD/mzgNHlCvngeFWPrYIiGTcW9SEAwPFJGZ6TF+fgrVBZjsLkB8oTbAUODXA/7t+eKQiDtdeVpWOCq06nj9NZEmQio7UC7ockeAm2JYyQQaaNj8MbMoZqyT4S40BUhJ5uwQyw3OepOW1Q2rITt1Hg3eCuYEDuDTlIiEoYSMSjSVHju3rK8Uj2/kPfI72reEEn5D77TsyRz46rb4Fwc49qev2NsROWSHfmmHx37briuXDtZPWbFaIaLrcdcUJnH1U2G8dkk24tVhjReHe3rCwhsStxxo6p1qZ5LW+u1kvD+DTsrFg4DdfyQCrTDuzdHOz6DNoWyqXOoncD8KLT+C8pNiqE0DdeyTpqd6z2CJn5jBu8mzsXQA4U0spwOkrV6VaYE3+8guIKg0kAD1yJoh6/vRtCpKHpfFxKlhjI5PlM5Nk6lDuQUPIkNdEWaXk/i9tdWDppsyTsM9t29y+sA7BtYHER5q2gbOYvRtmZjbLgnghKmHeSXKhrKGznO7v1Eg7jmvq4svo1Wl0/E20tH9qGyx5eeVJtr275eqrjRPVcplxx1P7Cq5W7s0FP/lsU8hM3qRNNylTBTwnbYbc0a5+ldB5M8UxzyV0VQ2r2Wg4zfxR3GBMGon5T36dCTMsX4GiqF/2wXk3OhUJR6gtdB19zBwOF5L7zh/8rK8dSB8rJGolYqjTme+17uQDY7tl/rLMiR+mJwqEUbS09a55yo2r4QRFC27tgamxxwCXrHW2OjKwwyZhwJVkQHojOMhCbV+OtExBzqWz144bIAwPXJWSDl9V/AT3gt/FvV9DLpa4kkcYPK75GNRA1aDiHjMMPATTRifViXHA909in81q1XvX+wfHiN61JXFECEqzYQEfv/HDFYFFItyUjz4zKqm7ovloZwWPTQH71LMd61qsNBMTe7JemSwyHp4larXRNCn7NMfu4U+NORlgAJjug7eX/XAHRQQxoCfDGwzf5gri3/qvYmu7pPq5YEDVaz+2trZMgC7pVtVTd2HRgFfPM2kY25Ll6SOc3Q2RIFUZaVzcL54q+Ozo4NM1XwLvi2osPGiWJUn9QSdlnqyZgbcO9yM4yiNIMijGdQ2zBUHF4UV6om7EWCKS5wS/J3xb8d+SONy9jOLvu2JoP60VwkMQN07ZQ5qqpMcd+CE4QRPn+dX0mvvNZkpVdfQfhPev1V0Z36wWachYYQ3eRmvw0y5MasO0b1iibPof8wcWiEbOXhB4XAP4S+B49q+gJmXzNGTQqCDxbw5WD66y/fHrPfyuT7YW7l8KdnE4Ps4t73zz+61KxOMOujxFj2aTTFe7gnp7kgABgVsD10CvwGqmAErcCqtHZWG+BT5s+IIwhUDu4iJAp4v4qLHTwU5tngUJrx4C5XWBI23qzM6zIhlfuU7P1CPqfrZ+QDVmmC4NoKNzL1OD2aSWC06s0Wn0fqZSMduphiyNC+okatppSEAPWk8qD+oix8EYiCJd+LNRAbStUos1rq14goRTgeVh4i0l4+RWmMVWQEJEhBtL4II0We6UBxmCHgYSS+LBCQU8pQbV3TwVaX+wVBsQ+CD091vUEfaANTl4fgzGu/c4rlFhh5y2Q07snSbzpu5QJgNLSolAGsz6U/0ZOhppppp0fLAwFMVBlmnVJFptBgpmVKGECEzg3aOPJmH1hIpGl91Lks8E+gcjD64gSTrluWWAARj6UXHhQnDNuB7keTt0mgXKCeVVsHBa0uFyMaKifSUUCyd020gBEpAb6cmV5IqOJ6xtw4G2jPFbVgdh94xis61hMVglUA7TV5Les9yNoiyN47XnFo5mqwv2Lglp5uzMELnNQ8kG3j/b3t+IjFV9cFIGsHsutjg6YbFMqPW13VdIxED5cwOv8Em0DAIUcRoon26OQP923iA49DobDctXYKxcR3AKUJsEnfYIiAn4NKPVZ25AZ2olE50nWtLWP/kn+rSQF84pbKtRCV+d0BLBrgJWuQ4Rh168LgfjctiRyqQ1nj+noGt/yUwhg5HkeEy4dwIc7Cvlm6ytQZ8L0D7/xRjz0whoJnHH5CH3tndWVoqNwmaLzQysMQvA+24yGzYD4ZwCbfT+thJ8klKI0fJlDw1RwxKDKWLUZCNoPssMf0o2Ws2PfiDG3cvgcILQ38kCGuiVAMWNZtfhAopddem+UJQj4OntsYGkIChGZlSC/o/UnkTV3yEDKDJBvAqAyZDcg7JPlmB3z/NuQx0bF3Ifcg98jZltCjGDAGpPw4QEwRwfgSJYvjatCyzG8y1NlMxL4o5HikxKOlh1VYlTzj9mnkl9RBc4ahQtI0wyMFXYJMc0Pge/jcwBPdRCLc+aJU3CWaqstAufCIeomrsJ1AFGY6/mwHPahHVh/xmfX2SZhV6gYEJhinHPjs/DwX2d77BhWFhvFvVr4jSuh3oin6ljQRfvjP+b/SlEj5odhpCCi4ehNhzBhLdLnKEP7BjR+Zhd/Y2SFIcV1rgKJwye1srRKZ5bHOxzNG2hgGxC+/0+P80WKyfY+qQZdbpRXue1R2KxSl2i00ZKA6kHU43MWiqyeAPwoAVbMwHnjk+CI3aPO5jrmHJGp++vAeWjEqU/aSkkip4n42UurvLMWqP+J+riFu6uxlpQlxxlpQGH9ZjptOKfaG0P9VeAyeGC+iqds18Q30QM2KhCXhHrokaLjPkmX8OKlSFU1D81hxS/d3AKcw3Ap0SgT6j9kX6AoW0VZCUSnE4w+jhJSm5m5EMFCP4V/I8RHzC0F+INjYCIVklYlSuUqNclnUOgtEmcoeWhwgldjKqhRP+plqNmICWyZufBov1/ZAsZQGuZP+nhwDvPJMeX8cwuo6oJfX6hV2FD9941s1rBQ6n7DAdI15y6+X74vQHtP5ytb3r8nJtZmaC5EcaBSLaANCXkwDKznaqFDKRwdl7b/Pu6So1X090akA1oTr0bEENqZmibeYBhvSUtw2gilHjQyl2Q/cuv6S4630xlYF8z9rkB+ZTDEvphEaVKZmMiwayg4SIHlhApIxEVX4q1ESoY0xg7pnKHauYTLwYkOFumLLuB/Iu8D5SIa+wZToNxJPGONdZEoLIv1xLjIJNo4K0wOHhjVjcmxHSsnOjO44yPwj5lpLOwJpINT8kWjT4WNwePOXADWeUepOyYP9ByhwoN7FZsU2vYcAGo3sJjEbT06dnVOKBwADocztZ50ekLFu25iQ5Ey6luygQRVUSxkZPZCg0hgd0l7xc+zFjiS+I5iWDIKxL7EIhwrcS5BLGgwiGJcPxj4e5h42pMjDLM8WQ5Te9YVf2TORuKL1oBck8gYY9kPWfPh55ynVii+ZI6T8vOnXgUQWJAINiPj1rkcDLdj7xI8xVSJI/NNdT6bR+QZO/q6sRMc7x+CifRr9ksSc57WoDOisla8Sm+VicLG9W/Wjn2SSQInxS52bIq7igDSTqCiS6g6VHv9GSh+Lb9KFgt3EbcE5lf6pSRWuDNsnzVFrsLoectCnXeOq4X3Wtd37AxxkO2o6QBGAhR09CkBMpESSRyN0OsDQBsIWCXWU5qDWewgqIxXQDp7q5uc6oYaeCF6zpjBCUZKGSLikTk1DZNb3f2khif0PTQCePvgV5Ap88EtMcUnEsBjxRbl4VX78/181nbbsAnR9pO7l1ns+4dY09vyk6xNJ8uOKcyT8X3j38KQ3OMgMhBqudT8NtadUCaoOwAiFAmttJC2uOHkMFtcGzl2JFqHtf7iaR6Ee1CBYFfz4TmjoWh1NwhNxWnKAdyozJ3DJvXD0O5jvA/UbJ7O2zR7j/Ma8zXWelB8Hxu9VnIEZ8K3Qp7FU0K03UoNmpzm2V9ewkctSvh8tvztZHP1WcN9gTxJMBBXiiieN5HX0qAX3WdJmM+Cg+LXLLHUMM9J4NZU0EKDQ5y3ZSXaKnUwHeVGVcW+O6GuWtgWa68FueXHPdCv1btld9de9DVs237UXFSFPu7C2uY2a5BZpyXzPt+HE/PDojq2sfzO5V6+zitZovjspcwG10LYGLRyDsUXeFKi3MbWuv1jnV1mTymNokNXj5kyegqNFKpKiAH2bwMAB+jQLxqlREBxqBU4rQuZO7Nw3IsBTeyICjSb2xEpzCKXOuH9doTUNshIBYRghJGAQprcbSgwtnlWe1jEiDCSUW7pbG/4lNn6P9a9b2B+ROjE61602C3dJuEmRBMAmafG96cuBzIpBn8bcs5OHfJulnFHMDqImCr8FPE019EJolMQNWebj+MZgdaooJdzqmaYUAxj8EVvi4gte1c/Pv0BmhKSZeipETqYs0wgMutcyaWGzQcNoCoU0I4zxFoTcm/dmQXdCSIOJGWzxZSV8PjSjyUnaC8qWLmSJG4Rrg5K/v3gz4kHcDkl5eHvGMDncEPfowxkgQqQT5mJ/PE27QqW1cQlV2Fg5L7h8VwqMyUIgZJS9nxfNewC06r/osk+IKyHWbu2QEc0ix2rrUW/m2ClM92zwr67lWnsuOEjI2RPNKgLrK9gIobDYqVy/rKxMn98GQTE/vv6tTo88CuGgHf0dlTVnXmwN+tijuS1roWz7DLDkRm3HOZxzM52Vc2nizruHB4UWrp0ZOwDgEu0h/skNdMNDwAx12D+iIWCajOMqiQYOwJNJhmAnBcO9wKkZQBWKPr+1bM5cOYHENjJ22vnLstPaVCU0g7lPud7tFppO5waQFjnIpfszDqTOuSTivW5XkerIsnjSvaGjIitzG892JwZ3cgO6i8c81IBKRWncjRQluGbU024NcCuNUqXf5gWbskkW28kBD971BIf2baAQbAJ5SjmXJqvLg48Ojg4gw8UbbsDOnfTgMw8rt8JmrjRpbeXyCoBWbe/7gBdPk243O1n1bNRaYwQ8y5GcMNYtBBL8FO/9T4Y7nXJebV/NIp4I+52EjYDu0B6l4gMPvKaq+LhSuMUdxE35PjcwYumtF0mKqNyHpjR4uglKPRtvex4WWLGMvJkqC6j48dwwjyWAxsGtiBLMEW3OOiWbKpZuVqTy27tLYK02PZluf9ZmJmDR3F2c4EjQVKwm75MPbusDCmQm3+JIN8OZqN238yGmXxqt2zvX+uMfHWQCSXNvSIMg2qnlU2htZUhlD6DuC4Q2cSGl6eOaT7Xj0cD2XdgHt5/7PGH4j8HFE73l/JZ9miWbCWm8//5Hnrd03uczmEBhI5O9/f27WdLYMMXGlvUbOToh11ztPEsX7zDLTQz7XO0H7+ygAm2xwzomNvZQQ5EgPXfbmD7+yZOfjR+UV8kWINsavhmQ1qMvbClbh57CRndTbytt/t+IlUM2cxsPPBrw83rbYUIveu0shyQDbG37gEOgv/NUZB7SrdcNOiIz/vTx4zP/i8+OqiKV01kK39MSzxiz/74i4ByvAwlB4LQM96HxCa2tJ2Z7P9y742U3IKkc3JyHDolnzESo9pSEqfOAbgMYPEq+sVD8goApBR5iZ0Th/0rQ+Qo1KhI9XzWQmhG6YnYJwBt4gtvZX35E/AbsTJHWAssmANx4d5Xlm8xN1Oxx+sLOq8sxlBgoPgvxUzDKB5+jKJV4nr8LCxaX6N7DpJ7h1MnITu+rLh5sas1ZDVppROoChQ5qt/Hm5sW1XXAypIkk2TCykwqBn9wWYXIGXau7W9ZVwu2scKr0o7Hg1a09J8+jVJBwFNn2OyucEj9xMXjT6WZezTSwCafUbTTd3eFgiFmVp+5FAU04C5BqkjAj2hYfuSG2C4WsQCHdQbNzcONmiGDe2twRmcbcVzlPOz2dvavXsFmBBFeBiDhmt7K2qiAKw8RoEJkh5f+V7NpApcnTYxo7Crs00VRPIx8i6V0gS52b1mne6MdttBzpvGZt72dkoMM6jByHgkDoBMIjj4Z5Zm6bsfOJfWOAbH5h/oqz8M54SQVoec3oIrBY+4qRfAJtZWIuFKTquOcAZby3OmKSTaKXOVvq9/ydsQP0nXBwpuSuAFupbqX/WLHUB0qjAyLZ+3pnbFJTSvtAMypOJ6nEElyeYDwlxg+CjU7fDVP6UuoPjczP6D1oOkVQVV5Z+nkepPSpr6Dn2/XtCE1msNbJSw3XyNsdqapYfZ4vy9VKgcB6xBXZTqQAivsJ54wxQJM7AF37VIPoUG9eU2rYQKui0A9zMaHShvtQ3m1TZUmfDPRoi3E988P9DmqjwV99YIg1NAMpHVJSLTe/Wp3dx6bajzhJ73ogv5IbLRDB9BhWRhYcRZGv3JYJDZyVSQNltW43IxhA11edZyGx7mm3fFdYxlR28lkgdRfM+5krv+JkWTUZ5bPzT+fMzUpr5pTK5PwapRXTeY/Q/8SPV/ZVrr4srVAreTIBbZdOrtKNiyEvvB+nDtkOfGm6zp+Exdfqoc5PI3k82P8i9VXhqm6V0XHMDRXVD1Ah/Mb+J/Q+qr2sjbqFvTq9ubph3Lt7qgpxw8wKPRi634f1obUcLKtmojKN87Bf50JkTFTaHJJ2EH8KDP4QlYHWc3o/YUPU2tlbLPjynfqo2tXMxdak1elHslskjmEkcQpRKbRlpdsnq9nTv7/MhttLe9VNOo/3b3u7XhvFYosW7f5zq/POMv8lTeLGL1RhroJoCYuw8DYXZ9a8hWwlH4OGW6WHB1+0PVKrgoZ/zAMjL0kFL2Y5n4izhSr5Iymmt8Hoqc7rZ5Tbob25k02c7b52ekb4PuEGv6xLK5bpQCqLkleLY+jqARs5k4LZN+LSBXssJ1usPp6RIEhIORUb9MdwA9xX2xpoOygT85EpSjkIBlFTl/s2P+cXPo33ihjerxjDfHR4Jy9fu9WQZ3ycya1spDKvpZ9wRLveYw1tFTzFMyzKYOogdg/v7Dwn2p84aI+Cb8g99hCqeTvo3k5PvDI8r3aTIiVXp5f2GUZS2+NBY9PU6nxTU9eotMgEhxlZ5PjA63QmoxikRzf41DSVFk9fSmmehDlHVWbTb2LGP5gRBTT2v0aEAWgSe9eh+SMaZ+eIsDF7NWdV6kqKoqajB7l4Lh0n2tqJx2RhXJktGpwVe7nNFq7aWJG1TAgEAoCjnrjAbas5Be8myuMRoPeFUhvpjc8pT9ux1lvqMb091AUsR3QeZNElBVzA+c2Zoe0ErjJlQqTQ+UDVo7aNIdIH54RtD+SgpjY4xpcJFo57Jnw+WDrUUAoNT7X8Djp9Jm+wCCHoDou0AJ5sjTncGxpshtfeEQhbL7SZeZUYT3ZfUkwSxHG5NAEGZQJNSIu7X9edFp8MoypP63hmS+WK7hMjD2JnK+QpKop9K+vNnWVoGNJrZuTNBOljPj9qj1Y84j0jAwuZYRjsGlpskyg+4DFbQrV0YIW0n9h7EQKucYF1FqjI1EKVDaBc7W2+mxopdX6QggduaFp11N2ek0uLImtCzfN/oyKGo//jLb4yZ3L4GDxsIkaklZNawo7uPizPiQqZunpon9N9BQ8QQPvVyQUXKYvSF1tNddo0b+2sz36gII1HakljwleeKESuApdIZvh7Si+vTlIynk9hJ7s91KqNTFaaaJ0VKsNAR+xkFJLMQ5bT6Og4rrNp19Rtrc4Z5ZnuWLbayzdZwJ3RqpXG7OEP0XJdTUCwHMrMr9TZuj87Xu3FjPJgeqT/nmijEZM/VnHS7W7Mi0rGvQZkNJmai+k8ExO7VnFuwyDpLqtamIdtiXxlmdIi00knRnaUtD9jbVKdV9qVOuKO0vItsodgR5wE7tz8lERgZXAWw4ov9LwsYee8h9Qmw8agNWL/K+9dQaXICLvqeQlUJTKKXFOE26e35d2oAKcDhynz4ZGb8v42CzZ/uEExKjPtyOsDfitDG/RLKcaN02KoyG44hg/K6hPthImDmpZAAZzA7XNE5hDKpFiuTK3pz1cD522bnaC0Kn6NytNzO+ZnpQ+teWCYWwNHq2dJiqlWqRrYJS1XXrIqt5FqlE6x+Bt+zVAU3EVz3x0CKA6XgN60oz/NTuA6QguEU3Y55pOune6iiINsj1Gz4QzZnMX3i8638sCvlpyAJ0+5HXPn3Fa2gqim7z1p9a+ZW4+0Ifgem+94lP5jLC7N40cdLHBONWWKfa6bZ3HekdhIQuHeHRT6JQIemMa06RoNKb5NFaTG+QGlulwI0bpIdEBKm51cFBvApVFkL+t/nzuqgUlo+RYkGoSHTUsr78N+AqJyqpmNXxsVe3se2z6nxjUclUGLz7N08URhKOXiPiNZvdCIsN6IwN3t6HJRJ+ZddcZcpfw/Z7+e39h4Hrk8m2TP4sU/mFaadJpUmf6wCjfLnsSv2m5a5Says0rHQ2uXrR1f1rhMkMiK1etjWQr7IUOFbi0rlq04yo5PWa6aqTazjz8akgzvmpraCRNlFN7VV/IcYHQ8hpybQwZ7TAG2Ixl+3fDNmzDYbgXoIz8g/7djLuZwfRqiLO0oBeS11RatK0gZqOYj3pSGODUmgrSi1aJ6LWkfcYWegD1dUihYG1U/9M1Eu2aoXt0+RDYlDx1cOLuD8pxQbt67d2ir1kS7bQgEl78wMcEeoq18l7AVIbWVnnVca3vErGhEMylma3fn9DTk5GmxtvIrL0xNwPGbLRlZtLpOKA9Rvm1beWMRHSEK5X3djyxaRguj26mb0dLLXJEPReflRTcW6mVQNG8JBH5+SvZ9+huFmm3nt7AG19t7utRN2IY4fRpeS9TQ5NeSVgS2Sw5u24qtofgtwBQxhfI7AGSGu0ya5pRvqOJO6Vr0SYyjA08AQnweopDQTgiFIreGtZIbvPciUZTrBT6Tg1QVlU+SzprOSknZzDMDVclSUo+BAVYtawBcowws1C4MULQUWar65YKUJaO+pKpYSspQi8gEK1WZeWzcgJ3KbiDum/RjsXExCAnc/oB3Vz2+dGyQSLTmhSimzavNZ8w+U/NpJvnUz0MjxGriyFCoJXESmpr6Bn6cXTi3czvP2gY9Y7aU7HSMMG82T6CJ+p2hntwb2gu6O6FQVE7uxEOIQlG6krcdJiMax/rGjPkBYYHUR1ogWI0ELQfeRMrbI7ZH3tq9cdp7I+NxXzF38d8yua+lHxImOFyKSdXGHDduBuJKZ9I33JkzFTUS+zrRkvUI4CcYEx2PINpqHmbcITGzy5LydrcNh7vf0A6Fqnw7TDriOnAwI0zl08HoiLo1iIPrQtW+3ubxHXgAMxapvNNMkVcaU1fGYlpJrZjyzMRAKE56nXz8UJFbNEWaVjzwb0A3ogW6zFf9lDFK/6tMnQAdj+HrRrp9Y4A2H4px48gHHwGalhZPywPR/23ljHG2/hcN8mi5N+xjIa0WisV9wLl92/uniwcz6wQLHSnPop5/PfL9h0dCl3o/4hOzJ0S/cSfgOwW/eRPm87yDgEy3ok2CSZoVvQbeFOcJ9Ez8BokYI3sUQ5wftgOTY+yLdwEQrbkXghK6Z/v0NLxz2N0oJTdgET2+2xBd8ERggt0bTmk4InjUOaz18UAKfwlZE0ted4017LEMrPAsHdak/Gvs8IiCFa/aI9fsVpC/xq9KDGm32aTlHzUyulU10Ya+FiluOS/W3SGWHi8JTqOksPhinGVyjPix7ZfMPZurc/7FQw3AqFb4Hi4cknrFrQUJyE1PLh+EFSWa0J26dHDVJkTYwCtBdFyd2AWUV8iq3WPMAUT0n8ZHLRzmjsDbGH4EwiUgBMOur7HP1RwWbissVHdfhbQalHLsyROWd335Ku3tieMbeP9JPjXBXSjpkWfLGYbg8Z863zQvz0t42OaF5h8fsJ3Xa5eX/x1p4VyAaFuL0CLy167NjwCirc2tq0VkyWXnWKggH8SB2IKCWCgOyi+Aeq7z80F6U23VGibHqqu2vM2q7UBnN7Zrz1aCVq+7rDjMNSVLEIN4mjWNhDpEopOPCt8OIBCDsnpWY2DxZgKV+A0Pg8gF2PIbgSaelQc2deICBqUw/B5BY73jAfgVfNahIrC5I5wACO+IRuJ17IdI30y793zAgcDJWdwx+DurjzcPH8Mt9Iv6F3C74Xme08Xao5PYBuT0EespGu+ILes7vBvHGqH0k481ZXiIktxFpTriArGPCIi6Uve33iaCEbkj1EuljZIELAFJ6UoCTEByVRFLgYgqG8/cEhD5EfJqC4ipX5xBQ4sFzaI1Qs7PXBqfMmqawFQAC4V/79qf4ANJfy7vUwEfiZNhUQD2MglqWGSFutx2g0Oiujy/qOAYFrlgbmCfN+oipCXQpk2IEkTpps4Sgg7HUClUsmlTySLfFB9Ber4gLYXvmwiVlEDBJuDFKkLH7EkgK9va2p7USHXxrCXRxqSTk1UmN5LiyliDgSxIk42ZkrQB/LLaALWUFxmWLQmKc91K+G7+nZAe+MXgc8MXscC4wg9X872rodycVD2bzmWlrGIWRh6kYMmnu+OVzH2XZ6nVdH+2rWoSCspWRf27hMuF3IL9924hMBuatFXb+0MF1IpPDE4ERuxbnn+w1aOkxDt2UF/mixVHFJnuAksLwhLzF6WwN8B+gE8P8VqPkeru6wSYDoxAl81qHcDwz0AdcDfvPq8bvoBU4TxDkL2QXl02supoUTG+CeF/YivwHb346D83uAqUtjO616w3jB2GKSrChNmHkalolBpV4c434vytEq0TnXRQgwWlHLe3g4sTm0udKH5RGyt2JWzCUcotCtv0+BmTGXxnbkWx+l552nS6Qz/28zVilb5jOtEb0rWfgZvuP+5/wJLtyrYE/3PxwMqey8bzu4ZtdyQOjDxb7XUY/2cGP/1IrpFiEeJ4fQztH+j00f5R9qNd+xAKOR0pED7Jp/pvBLW+3pU+agU0TFFPDoPYiGxXb9/lFkLo7tLVEidvt3CH/WB4Uk3+u0AUbUjpDRUGggFKOKsLWFX7iJAPHKPDLcug4bvJNgNAI7YBPn84pYmY222rBtQkm3kRzKim86G0mhXpEPcBDpyW/KPox2bTdERNDZTeQUBZA0qD0mtq0kNdpc4uEfGGKtP1k0ppBwlj/DbyY0rrLnj/l83lWUb0eecL+Ci4g9o7HbZ93uVvl6fB9dp/XO4Ghx5/yoi643QHFw1bUTumPXcA/6x9mKi7V0Ji7r7XOanZWNIHkw4EI/q289a0Z1cWx0zNu/zjfDeE/IVnSLkB7wD4T5iVHXZ0kqDB5umEBhVWQ5zdkx4WWSMJDA6UkWgkIcme7ATbJVv9Tra3opFnSfZjwrl9fJZMs4KjWYzqTegYzYpGEkRHdlmyDd0x8svYxfTBtkVG8snvk5NClpCBC8sDAlGtJWQBb6qYzZJI6ClF+hCLptDvrrMWPFKoM6Z/z6aY8o3G/Z9qDAenv/LCI1qv+eq1CUmY9N4Hpo9704Aws+MjPDWUaUe2sYbwrIzeu+bfqclgPwZ2icXmAN/nU8CQPzNkyM4wg03HzhgcO35kHWB67NnB3NYb3ukrh2oEFwypgcNBNT4B8mvxl2i1LrXUiyxqq7lMkS78IJRKhD9QpWCALCQXpHYwG5x+M/fPqtj14GGPlcCqn0YrpYdG639ne95011bQSAenMEQfy27Ft0m3pQ+zKz+/zbItFq0LbO2cOkB4iqhorwz7l2NAhqneL7KfXt4iBR77DjNMb/KShSPciUN/TPnc7f8bAiGfK3+wqA2vFWdWPIOLgQdanhHdt4ZXL3wcYeXbHa7xwVna4DF12E5vN4KWqsPXhLzE9dv6+2FCooAkCLfISW7bXyaXoxMw2mGR93EHvC86GNL1K26aJSBHzfqZn4GwmI7tpvRT+ynd3BujyP+/IM8hR798GQX2vwcA4Zh3kohgzGSISrpJog6ZjAFinxvmkCa8LMVQFlNGoo4xxsK/Qj6GVkx0a/Rozq0Rf0k5VywN+yomsx/7iqXu0qZAyUQJwsqq8sqS5wN82e66j5jfMR95RovfLYwjQMd4XryhCGxltNJ96jBGLyOmLrkuzUmdD7UFsbV5ykPsd1rmJYP9dM/STHbaz0NcI0uL/BwZU2bxQ98tyMyL10FIzf0s8JfQWhrgLKFvqxC++bFxLRSu6SMzVPZRs3xZ5pwsnCUxJfrKqv/nAClIT4ekmBmvGYyfS3ZMTJaLpqPArUbGzgRmjCAU5wniDuIJC8WaZ+XzdrIbzh3OPFhUr1B8cgfulIQEociuLyyIvtkFvKgHRShKSKC0vgD+px7+Y0vY4ffa99Vmm92IjPM80S7UBZsjdWSUX7GNjZuihllpDPKZp9L1UDxRWv27OigIcXScpqXRHXXceOkAkd1YBvO46In1W0k/XvqRtPXmOvD49xGWnjVSXz/I1rKHt012e4qgHi9hOfWuwZltLoCTxmi57VUFRIiRp4VNuHrfXIfwno3x8WnWc/Kpkvh40HshGqUT9gYpto4YuoFx74Je+KO1y1rQU15SQkwXC7gHpqnSfYryoqhd2DTCSnt/LkvN4/qziKtQysa2LepgZ0dut96aHevKAd60x9fSoRitNkbxgWdmTDqioru7AixCEYzpGja62EnqxPZfshjNng5ldDMW56WbdLEWs7pMTHdb+UrmcN9GMXWR8SdtKGYXU38mvMbuHK4FFgzUkx6LPTzTPWgdj3RPEFK+2VGqeKiQOg5AH/q2AX+M5QVpg9RY/cQR3ARO8fSNULCypgPJwgJRXLJZQeOhAvOCMcgXA/wuLTwsKsQMjhG4W6aF14m5njUcLDDNF8flm+WvO5ZiOoH/8NB+l2nWsvwZ/d+mpjZqwIJtk6HKSijY5A6wHTeBj0BvK+Hk/JB8oGEG6t0175Q4pXpADYT4iQHVVcOolINMDRQByTMz5RBRQvDWIjI1eut/HzCoDL+7p29ilNd5lZJKDlQeUDRyaheWIOpqoSUU6uocFuqEN1+7RG2ArycsCd0bumQ8oeFP8z0LTHMgEgHfhTlzYQ8IhOyqZ6tBHq2Dpn2xFXApnU1ivuv19jgJ7OftldQlte5RHqSjeWsnqWAbISE/o9Yt2p20h6Y16ChtnenQbwLZL0lyzsK58qS/FOfLGErAoJTkeDtsQEdn7xzFv8yzVggVYNmdUoLQB8yekhOIvqMfvTs0kP8FzAOPpfGfuM64fLfnz7kOz+c57I8ucy7z3pzvhicuH+1Wh2SGeZSa6ZRKnWmpe1hmCJRYXLz8tXAACbdfuNCOIEo0W0cOCMGyAFoTobXGuoFkXecuMhcyQ5aTJZ70aZlsmu4paHu8EjJF5nXu1iTrhprWJgLN+Pw5W2Qlw03gSTitBSY/I/zS9QckIQYI1/R4zx/juBkRvI/H+FZGzHYtjoSfwMmsROyBQY0GPF+L2pd6NIOwxj0JM+kqCveuR7QpQQS/MSe/wT8CWO/b0xiw3Pmagc3Yh6/5BSG7FNzkHLjcOSNX7BjdEBuNm8GZG27i4iBNZu8CbGZ1qcmZ4gDnpqCcDBffIClu5m5rJMsr/HNOVLMg+XVcyC9NmIDlLvVFLtgbOHPcCJZy5/LHLNLSYw6YO6NntgUh/ZPgJGWxLgkZBy3NQ8fipjU6fhPnECkWisWRyPRYdbWcqTtjpoJhEghOqKoxucm7xBsxIeBm8J/xMziC6TDv0tg0q7FRSqOi5hhBjLmylSoB5l5oyG2EfBPHZMTEwZ/ibJIjbr+HHDSZgk3NOKefjfTm+N6BXry5NMK7aYKhAd703FbzlTrisXJjlmneyupq2lzFt9nUxcp48oGKzdW/9NIOtha3prmSzT2KPVDf+lYjKUX1dpgutiH0/efLTWRz8eOZk4HxwaBqNc1UIYrbO4ohorRCFKt4RljNoXGAD+ww7AGgBkoVV839zQEdL6lUlb0qvKXJ7GVOSZL9kclIxGylmcSseRJGJgdK93e3oaqvF7KAfWr1DZMa4D+FqLhMMz7VRLLf5JRQwjs1fpJ9jl4OUf6S/Wdp1hIbWr9+uYhuPwnq/z1M5AGVjAOHjvh8Qg0aGV8/RiNupYlE1KXUsKFtJdLGWD1h3QskGmlLikhbCnSLdLQL3WE9SyOhIPn7GtS8YqliHlXzPkie273YbKnZBwj4id9s9LPKe7MTA6Aeb0YaADU0BX57HsbxK43KZsF6iyqNt/M4twFnOSQSU6liMSTHPk6Pd02Rtha6VaFbrXxuijD9MVbuWDAX1vK4q9LQ0eSsWDTZGtI6uYh6a4dhCF9xJmyJbfR7V7nzQG8/3O3cDcsR9M0RzRGCFUA00vXUA1S9QxWkqrx/uPJ3cx6yMGL66XqHfOgq5fvsEroe6rcwWvSDKgc9uPrpO+UqlG+zrV9nNO+HFOwXrtL0DvpHeLqe3o826g7Rv5L0KwtqmUAA+ZhehbQLQuYrao9O8Yj6iiQ8wO4zJVeTTfdDlD7hm+Evy37gWe64hLr6eVfu+qwa+0tzL4VXOFey2wBndhIoxFW+uUNGAxO+E3NriRQmhVSbS5SR64Zy+fVD8+GfndiWnVuNBpqWmJjomBYLqkWrRtM2ZMRw8zF4bg55/AIuc9wWGBuEYQP8Y5y1yzhJ/huLHzC5T+3+hOJF67n5rr/EqZTKjsHG7szkbRrNiAEzHBkdE9OiAejqrKzWcnHZ9et984gfCUgChZBXSwRMQKifAY8kGIm5glUhQAPg86lSM8smJ5LZFA2ZaTOz5jBtGLKvzAlt0bRDvDlMN8bb6+Dx8i9ohZ9IgcZX1AY3gCDDuhzLeLS/CK0gZB8/aBhtITVhH4UhtPixHoIQICKPWD7k/12ZAC3nfvX57j9UTlzuDwTlmwqytv1KxtRKMV0acpayIDuKlqJpxQCfzmLlpD05GsteSaaTokk0szRMF8Ye04rhalB7faeuzBerPm3+go7zFcah8TlrA1cFrVqRg3+s/YTouC99n0qfT7JJzfWgW43TzST6uw3Qnv/yr+W9ft+k2aCc+54LEpXf/IayiXn+gK9bcqJD7S3TnBKofUkLBtP8saKfSeNe559NPTvvNU66Wmy5n74d0XMACBAtRYV7ny5Hi5duA3lsLe2nhXnKT7Q8dh5tjKaVf1CmyPOfhJ/myULK/MIUTc1WgSkyjSwk0SaFkzQSIEgo0w7DDk+MqZ2cGx2dR/7HmCacBhxn1qHHtDZweDh69ybk2f1vuJIDYmGMXLA41SIt8dmrcRIhGgq3jghPbf9X+e7dTUwnbRURkapRdPfaTXpKGhYr901PwwBjo5DA9+P7+7fFDbuC1otjtnkDeXYka6VSLIyQeqtSzVPD7j0YJRLCIZGlo3mV/hLpqTKJTLLeslUu9clShY8fX8C4XjGx0qry8gl2N3s0MytK7u93bfwmp5UDWLD7CeTCR+RJ5ImFhRMwu7KwgDwBVGE91dU9QpWxABzSuWics5yvRkZHyX92znLKdNUdBIWIjrEL1C/0aghAegc9nVVNFwAz7IHzMZEnFz6eQOLrv3TAY2OIDmOhA+bMhbZlPrUaTZ2PwIy8RacxszPN8v+VMpS4faM0RHKh94m+1BL1HBgDhiIkH8I5loZpudEoTIF3VH0p98ck2Kjmg+3tYmvqfecsU5Zplm7r99WxJASYV1ifcpSiTqH4ilMavtMpZ59pyqnL+hr1lMbH+ZQTX3NKwc9JSB9RU1785CmFD/oUUiqcS+qod6azj14oRZ5C+zwGMxAULiTxuEJMIyZMw/al4GOahVnNIc3ZVU9Bs/w/vcwVDEVa0RTNIofNwvroFPy+MF3H5K3jpbx0YLzn5kbXO7TQ3YAbvcVBT18zFPIINEBFIAEkBFAAPbdvkgJMFQ8G1ANQNU0J6HoIqAGkH+3nEvYFmQftM98bbB68t952EKBHBweqXQ0CPx3D/Nb088S6G9Zr/rpRMcxqR6xOWI7UpjKdft7drbG6ubbQwulXzG9fYVfEP1D3f7f3XQ9mgoC9RyZ+Ls9EGm58Zb/W5AMni0Ic5ZoTMzWsdMLq5uuP/93+7/rOLtou4HN4Y122tIEid24irpySjkxDLqbMsQWGIvd+mu0O52RIN8ktvpf9km2Az3G7rCQct8i9h07Sh+pJE9AsvafI3SBgz3nVotJQtXmHU2xSzMEZd+PpBF2ALgFVKrPLybWbA+Gu7DnbuiWNrLMtT0QChTPLFDeXAZg9972k02Mu4fIMlzpUuEtY9Qi41KHGXsKpOi4Z8nCXMHrSi35El4hziVqkw8wxCPg8NidEb0Y97CDODM793cd8QzR1NyWW6b8ulisGZ4gdqIdvXKft9jniFHEOBF9sY77ZLETPyZCKnUrrnlhPWT9Zt8LS9Q2COLcdgm+tgyA63sJ8wHb41CmRaZjeJeAGdfTWrT//FKCCsD3Y4xjpx8tbt4cp9HNfnTdi5adPD9h+PTDol/p699eOzvT8jz5UKOf48d9+A189CJtf13DxTjZktli7G4dPtiZXe12EHcvepi+2XJxe8QbheJGXn9w2fNLd6L5NQ3zSu2UwjXXBn9Ky+ryVcrOqX6J9OYq2wwA/u9GBtH3gqycas2Y58Ow36UsslzAOFxYktzIerQMWLG6Fb/U6NppxwrFALE8RAjKf/Jk0dcxpyZ7SPISi/H5xXnJpivSZzKf07ktmR+0KutikRsHC24lQ2ZEI1K4xKHFGNnTgRPff61yds33/tpeaYznhZpzm23uB/544JpTs0875JGYuUy+anU1elClhfuJ4twM1a+JNkXLUz92CWbSrvhxUAPlfb4si2C7x9x9KLAsW2QRGV0XGYMesGZ2WnQz6qiDU0Tcf9clWqrZsDYBWIrbtgBoo1rLEQj42NmK84EbutXjbXwAE+Asmq1hdzt2MVYxu566OdNQo9Y+87u61kKy7rm6bGJzs7laH0UdN56df1tXWpqXU1AQHGr+drfj+vZVgqAVGoSei20nT3qnL/Y6HgvV9xmHQYXrz0s3TzKOZ7wqW+/MksC1sxwzyhvDWk+XeTVXet6dZYyXdgd2HtwlzvS4eW7AXO8fuoT0+0DXwHhOOg0h7t4swRaVaVtrdNeMw4jDz5ODBcNnAwC2nAadpD2Sq+ln6yoIsVmRkmz0+Qps14bgd5g9FRFIszd8r1ezlBGtySX9k2+AWYRLALF0qZ9ZFfUmuRKrF3ORAJSsqMlDby8sdZ0D9PbDGEelg7ZOkqQzCMsN8Hn96bXyX6ma2bA5tZjBDzy0zm3RbGqMaeyrrVZMOpE2cScM01oCdNrxZ4yOUstdvOX4MINgbNXrvFkOlWDaPNh2kyjvavWEDVe+gp9Jy2vdCT9Cm/y5MWbN7ABiLs7DaRG1SXmLecVeyXEQVEHhRFmCg+lANzvsBWLDbzmX1if87EFs5OhYQnpD61DnJ4HpQB0Jhv/xHOeXnj5pwn0D5+5lNu8+YSe+KGfdpdEml2gGiIoXsKO2mtVmCyTrtrspuW/5R+Z8/rLIyUYmsxq1EKhMrPh6YZveAQob9HJ7JGFV8OWN7JuRRRre2783laqH1tbPUjDMZatNr1kK1iWWa8839FvvRVfCSa4YpK8OYQUmlpUkQ9a8XBeGBRtkCw1ViJysslLEc93pTlMbAvOVx8VRE4rJi22+z82TUJ7H4E6r/hyz5qvup6dvdRc67dzkWH/x2a6n7VWt7fyo8RVtvMKQHIT118MUbEJywb/JQhcMvYgx/Ch63vtWDN1XLA1KgaF+m8j37nYUy0i/F0FPnfzyrm3EKlepW0Tp7Lb81Bf6xf15ZPP7X+MkW0qvuzfzI/gzypNuH1maz6XbMhJ3a0CvLLYDF8iujxat267qYt5ld6+wiOIg1utu6NQ4EP22o7w8wgH/wlRw/woqbFD5lt/O2NItc6G06zL2t3D4Q9opLnHPRaMFPt2xvs1i3rY/cFmDQlcPJJLY1m/yWDBqSfY5wxO3HAXcCBOls+/rKXavFcN/jR32wCI8eBYG+R4+diatdnfv6ZlwmXHidexAr+vpWIGoRjSI8BFoLCIsA1NMubBpG6ZkB3c+KKTNr5dKKzzvmOkrKxIPmm+2Bv8LcxvlwL8cLcRz++BF5Anlc6HFAuBw+Dp9w0zMd0JudN5+b+eleaFK57qvsK8+/x28bhYPQ1i5sD5ykdovtMehiMU4J/CNJAsDOfZ473HxQ7CFSU6rfSoOz/rFa5pFpgROJfM6T7YhCsFAoZFCXhocGicbSWEvMavxyDhx1DHDvcaQKCgSo+vCCLH5EiUkaDXmcgXCcRTEEpU9UapIsNjmDFflQIirV+IhEqRssUEZpcMuDrMV4FTNhiWsiiMXUmCcRoW1DFK94W7UgJbS/MfEqmnPIh1/Lio0V3LZqkOBouwWN3Fgg2CG4M4p2j963lx3PdGZHyUEExiQfeCZ5tCrcXzhmbWVsa1y9c3VTV5NOs7QgJQaw4EXn4C9XVphzEAwguUdwxblIYh5Rsljib/FECKKWeDKPQSQlLh2EHn33g5WVSaIOefSon0KJJpZW+1b9OvpeHGRWZ/tPOw7/d+ezMvYwLYrVSEiHkiSICATtpstrQQRKgxD+0YpVQbGIKiqLfklgUhYFNQKeG97qw/2RjaAijwVpYK+0ulq2Lw3UVV3LCSGW244tAbuk0wlJYc9tq107Xx3bgWDUMHkVhYJkACBX5IEIX6sjK3giqgq9m9i0Ad3EQIL/ikqiMdX0NtMtOYxlKBQGi+SbVVY0xm1JPimkmZjBVjvK8+39vmIQEkLvJlqY4Q7G3tfXwZUORE17Gc1VUCXnkF+/TgLp/NfJwXxlzt+RX78qLn07daanjbSqabVpWfOmpxQW9s/zv8fFpaR+W5+5dqBt7HXzGmEpWDXJOmhLgXXC0e+x8clpk0s2GtRbY1Zm+NZn/5TCwf554WNs90XXZawbaJ18cAcvWwkmLaXmzqPfYuNT0sb4tlQHsNl9kSs9A1XPippcSTkeL1Bn2ER/CHRdlEGvR0XZrbx7nCKIz1BH2wR+0Hk1dlF3L2WtnMT7X8p55LdvI8KeTwj6+A3tEZGrOboFj+ITYFcFFakgKJBUhStM4KPwW4Y0OSd97w7vPY4x3YUgyOBwZfpZO8+S0mGZExbeZYo+sXf4ki9Yv6gGlcL9Od3te8lZOxO7RO6sIZ69jr69eaCbTeJSTCjXS74HR//MRaXUuF33xyP+RVKLkRVt26oRekQ/VVAVxVTkvwi8/3XwdENna7A2YdVSILOm5njt8QUVB4TJaqPMEIzSza7cBM6iHu2GUumi4MSActweJS4KGb2xvIxYjt2TRJbkhvLUiEm9wwSYerW4dOqMkhkWTlXfAKFnzqwPBW7mK9bYJe+5f+xyivslMDUesTgUBPfpo4I2jOh/Kc5zb9c4pWR3FHs0STySSzYNFXs1JCxe1BDVLl0Iqfsf21ZBrym4evbflJ7x//KvAeFeh6gton2prl60Ufj//5GjRAlBP5L/oPxxBSrqS0cm4n0ynggX1XheH/Gv5kKQIA6FxbrkZT34YgqJdleWqoGr70I45433roakHZ/X5bq8Nl1lsAOuFrIG7q4Lz56/2oMX9HZeT7YUymmpjzeiQSKuIMlPWxWahE7C5if5h08gCEeAabz9YIm1kB0RZVe9zg50mWz6uzGP3g8iofjA7M2OsdPBK+QJYHR+XWBUn8aFudhf0JtZ4+sJDNiEgL+n6i+JkIl0koiUFf4jL/WvGL77Qgqh1iSaOWOR+NSUvzNvpy/Lb42ag31rbGalZogm6/ufelcvP7YY4+uEWLmfaig44Xsib9HcucigNxO6IwlHSq6sfTn2uzHz848W6W89IxHO75bZuARsikpPMmugZUEyWt3Kv4BXIvrbjTs/Lt73nfZb4hmbs4m/2fuX8LrNeOJZKgDz6uPOhinde7f3vC9uX8Ld1/m7pKgESSnJ3udnkUIXR9drarbfpQzzolPQ6cOFi4hCwXTYUupSR4nFQOeQl4ansdBoGP+favRy1f52iJfGigLRKKxO7hxNp6alOOMAQBRXW1TzGD635ol0qM/c2Uyfcci9ABVnGhnV8cyvPGsdldgCQtjbTKvGNu/O/LBdaqNr7dQxKA7Fr0BfypUq2/g8t/jUu0oEJEnI/pbHpCOc02UXX1a6iMwSft24gX4oGHEEMRizUAOjbNTuoUFeIts0Ak0AaU6ILGO9UdsGdzeDnpE84EAyuEV4iGvjVFg1MtcBRqj4dlSW0EIILkEL9iJns/s6iGGfkcjrhMAdkOxJDrMMs/po+bEzkGS0JEj7YSov7p5mzTNVS+KdzaQ/ecV6QUpDiQZSgVWp1PBeQiJUrIVimdoOmQL3lElNgoqXQBFQeHFGEhQHLctAhKPdJOqTuFv0WzjSN/q3tbgZ+sxcnDn6HBh0oX4yzz25shZqhc5sh6uAWFLyiJVdFni/0IY628FBlPR0+KdTlU4qp6tO9+4qGClccSLaASScs3u1bqPQoZ7ViBxEbk+zHqHDrknhmStMFmWWZJI4TPYYNZGZtIfIZ/oMscgpAsR/+Yh8Yj4pKiYhBJ595/cOltWtJ/VlQfNyHcFsPbLahGbbEH7C9kQg+iSDyIs8a3s2/AcIit61li094fOjpMrUUQmyN/BkY9+34X8CUwEu5Iemjrb7Xw7zi7eetU+MKa0kMc23yO1WR8LpYL2nV7rzavi3JAQHUVtV+47zLukaZwuSwSez4jiP449a32nSlV7O2mF3XyNVr2kQsTtle2OGyq6H/U8vb5qEj+aQG/8stRvxCHfqAIWKk3YIaKe7NSJtC6w+joEZSd/5MdbmUSZxJfst9oWn3E+AyiE59qDtXcSFFEby+8CgtHgRC1++J9rx5Acr2ckdJ2k3Wisb6/Ci37QVYsuo8qiOColn9OLQEvO3v4KccbYrs5JJTJYeQb79Cz5LlLOOIPm3nWISQO4NikVREVlAmZ/7Wvd99UUk9eSfB3R7nAoQtV1pJBwQeZT+fOIu8uPZw4/a7RuOIDZmeSES4RoV1ISY6ol79I5TcB5EDXmSPb2QXkD/8IY9UZ5Q8lKwBLXl3qSfi5nFP1tehfhVnvHMulrCLLlqCQRwGm+Zv9lFM88YT0+0J+H/8KgHCB5oi8QJRr9PQSl3oTFF9B8+JmtPSoWZaJ0pppQjO8MuFW+0F8dUfVG+X2DgcfmdJZqbMy9MifT5x+J3jqb3HLPZG8T2Sw/ay0obnUa2SHf1ZhFi/lOJvqbkoY6E91IVsz/t7EXysSPDMRF96F9x8dlSojRN6tPJ2KmRchR2D9FFcBrYyWKJpe+RTEK0WUxNSXlClCOr0PQH7xfp0cR/GL+yRGgSWo8qRuej8S72kgdKCwWxjpXIYJeaRSZGH5hVKslk52ZZoa1qQGVzr5fv9+MN8Bv7JybmAljWuqeU/qCSk5HgvYw0HhPzpPofJ9N2ClKqSZYCQfkvLKSU0m7q9E+1Q1XYPxD0TxhloFBJb0WMu3NiRUEJzJOxJE05iB9DVLPxfqhAs0dHvlv1cm4WosQxJzkuYTDcSuMaZTcxiNhRokgAnd6/QHxIY+oX8PCPfK+dfv415j6ThHxFwkVY+T0RYRUfv9ZCjIi0ER4alNlo2ONV8YnTjgMOt+MTpEucQDA998QaXQRTG19GS2e1LL/xAuum4huoPaSY9M3czdZPuWlRVE9rvJSoDtIG5QWpcNZShu1nh8+2js52xk8Na6AufoWVU2GzlzvoSnjauw+xDFHbaMvRcziDds6HTGcSDjl/Gl7kanHNjZkMbx2VGib0j5PNunZNBpWW6yP8xwr20fba2gJ8MjAJ/pZpjulJblmMYDlE0fZuKwbbCosLeznaXgozJqazU8/E4Y4UOD6Z0R/J7+t5SUa0BRcJZ3e/upw2WdpNN6eaMroBC44YQwKAHKMAQLAdl6YY523STj2W73wv4UQR6fk7U2f6t35Gn5mFbXXuMiHHJz94kRl+68eQPIxcIsOzB56YgHuIGgSENxnp16zVNvvJ61jbJmpYJl3OrdisTH3rDl5XBBR0GN/OUE3tdnVUyB9nkKCA0yJ9F1mYAKdf7EVM3GK7k8Clt+Bu+aQnbEidEbLcVzO6ES+wge6D+v6x4U0ZfBaZeZv/QHK+ZMOk+9071AuSV4LbSFmvbjndGhi4IIYqMe00IJFLYhjAnq10HZjd6mcQNAiwWbm5Wdi+xuC3ZRZaN/JXx2g10KTNL5PbX8orLR3hOVPr758I8dz0vH9S8alpk2mBxvqJLdUh1b85wFivhioqoDalrihXI4iScLMKdX4FU0vMyxfkqxlTC5T1UESGJhxSLzIyIXkWVUl2XEL1g9KAjOKYSVZSNz8BH2dnPwJ8OCfAx1btDlB9DTVQxDyNpPBV9pmdnpv8m4N8aj2dSkOQh8DsrE/OIg/xlEJn5P3IN4Eh9Hlf8jvQ1QRHNQX2we8KrAJ3w5Mn4DVAObgb5ieRERhr7jIkqrJzb3VrDCgP8qogcLRY5K6Fu1euEneRu6DwUVT/gVP8oqVSUrvP0o/yYKf1hgcU9IzHzBMz33N6g/XOB7bxXGBE74enp+H9RArBdvxqSBaNwjfdA9ceSFfWqUhqyDrAosLIE0bzwHsukrvf2t4xIQNjlEHYOLf3GcM8kBprtVgY8tTCBHPBHVmYtehnAO7J33feME/ObjwTcI1VSTtOXc649mxAh6KhaSgd/8NMeN/58H1PqlWh7QfkhdUKhdZNW9VAq59nJ2ayE+YZ5UPG5ieGLwgvWfqMeA4hnaXAS0D64/VP4Az46fXzlgeU7TqKhdqCottOebCVPOqpW+VZNtKiAeatAsf0AjUVtJpB5g3LJFL5T1cEVW6LOTDXT4T1HIYwoeeegoCpI7VBkf2qPHAMfv8BeRQ+9uHDMWQbdHer5wp0YlOWU8bOjIzf/l////XMOX5k/ZGdSq9LLf32cW7svA9T+BOXp0SCE6gm4F/e2WmvCSQQ5NZyoL2mU2hEvoKNwnmhEX6FNFoFYbDzWMwrjO6aaxVRPuyaDlMf1LiLNB5Z2eirRXJvN57Q1dvbRcB3g+DsSlFstJYbGA+kLv89evRfthYPArXc2Gi3vEC/ZDsgiEtNjJEtT0rcvdxk+e7E0VqMLDVREAfskv0CJxDV0Wbm/VBSWakS6l0SuHu3x3uV0PZZCCWZ90ebIavAH2bMXkdOzZJpZJJJop07gMHoTMNDa3QadN4ANT1IXujcQbSmqyvO06ALoZQn6UAQHWthcWvo7NPiQOANuxe6/ecfAnTgq9Id18inBm0n9xXdUL795Rgthsa0i0NafFtKW3JrSiswfnqYUE8k+7eh+vHlIP+gy3kiF4gZgYO0cGO05V42OR470YmIIkWS4IYJC3I8fVOMZSNDTcNbhEMu3svvRflF3lO3sQhnQmqTxhjLTWxSvMVTZnh0OKJzwmKxYO+Ntmw0UUM45muuqI0rgxYvBjKiHJNB4dwpCBLd2d7/vtpd7HwwGahBQ45V3M/J1+IxtSFbDWmATFi3snlTcEoDmGj0K/JIve+R4lc80dAApXT6Zz0U7wM5niBwyuuzmdoJ5I17HYvfil4Ydd6xZ3nhzUhRXa9X8n1eBxCiGq4Q6kR9S7ALa8C9tZ4rp5XL4TDiOvV6s2bvu6YW4Usq/mqQtad6bkJGF2VEgyhQnIGMdlXellqw3XLdbSiSnqACDfhfC4pygv3jl2EUWU7Z5Sr7BjVobYSb4qweBco5Gon2Edl+uuRelEViS/o8033sVxTFaAixLLHccd1OqwiXLBkHFNbbJSV9+iQRO3bv8M78j+gBb+NKxvnP66z3dCTnu+9NPRDBcagFYrj/zse9VmVP4oirI65UldJPJy/pjCuzDswGx5KE8a13LSMb4gELFpw/3/cdDm3ue9rs9YcQG5eF9o5j/bW85meBIv2yrKmrgJFRDmKj/71FEvuNyV1kNvU2XVJOhx9JeAsbDWIzywsYtFCrMnRgR4vXgafQFuT5L1/AyRzW4n88VodlNFMxE7emj6Z2OLICvlTCXkeiYzayPYU1TFlldFSvwwoJpxiNCIct47/ulqY02wkDi0zUzdpERBa3hIkxvVNuT4x8WddxnDnpehx5w3tZnHe4k8OiIbgaQvRaZpXvFbY+clAu/9BQ3fChHMiBd6L9N5ks1x/I/d9X8arei10Oeumu5szXAZYBjmnA2Ppgyw0beON8QuQX1A2FhYIcJrCQCau9rECHlbWJVdak66SjBvE8M+4zOvhb8GHRx7ErBLXb4QvnkO2003ivoRu2N8ZwXndNZPuFc+0fXp1+j61FFLe3FweL6Ag67IrTHxaRG2uwFKdPWQHFVtWvtrln1dgDNQ0IKO/09Dygq9iG8PQwaXNu5Xl4wHtxoofnjUJvMM8CUoO5+SaFcfGFJvnc4FQMFKvVLhnntSHgNceOtyDWII4fD0eMbhYIKBvhcIY/HXJOmDF1PmQ3uAh6aTMm72rEjyzm9RoFN2GZfk7gJwAB3qfbry08C4o9PsuI5jBgcaBJIELC4OBHR3SwvpBD7l5baDf/6PkR1Ml1RGe2exURbo5/lu/sZZuFa5uD757fzdsXrnnuuxdMjma88fN7kxbkEJDqb2Ybxv9jvDan+FPSoEJ6Vd91vxtUvW4E+HfsNidP7lbjBf+KedWetu621YE8MewEeq/+vu/b0xEt6pb7LZR2mJGajgZ880M8dHJ6qLfn1yDwmcnqZqB7kPfPCYXHIdP4Wy9NUT3EEzEW+xHtC5v2//eFuP/+cmQMJh8+AcMRGGTUJf1+EEJraIWzYZTy28MnLXTmM0p59PB2msXoxx+QZ/a/sfmppxX3bO7x4/ZN1RIoNRWIgUQlCcR7JUAsPRXub7ei0JjaaEEAPZb6xHHCaYZCnXMadXpCpd52GjmfZAfNKVZ9Wzn1Ll1qoq0cQ9FwYtlxbBAtdSzqivCaw8BMBkJTX6+BiFJGaBgRmMJv/OPH54+g9U1ifWKkDkVvYGsDpDHUZ6KHnRcghOqIpvsRbqeHDEOn3SLuX+2r53bf0kPwzHLA8pnAw/K+W/x37KsI1BmcAXcGFTGg5NJbqAPUFvp9cLuswQpS7DY5vbnmBRnSW/TfHuN/pccFjFNuXIbeoYXBBVxGi4OewXVr2BJTgMYujWZdSLFdcvvKtnskeosEXFcjTVeq6Eu+qwchPd2N2wIGBieAQOm4u1eV351Q2CXjB6538pt+8r7K+FGW0nuvMCLberVjobosnB5tO6XczM+/2dOPVlWNsrvZEgDCbpoIuMl64muBMJySwfDlpkOuMP7PH7Hkhvn7z49Nr+2/Kv6PU+uHKKMC1IbzDvF4wJtmeQNelneWgP4AfAehBwDRttmfKeMXWwkqjRa/v6KvlqA0qL9e7LhO0QgHkM3IAS7dGB4Fxnoh/vKBzXOU8PH0BcwRysSN4VSzBmS+h3RIYgbmHNh92aEh2FgFHMdt45NfPc+QzZx42S7u+HzPHa6wUJhXovcfwLBqprtqB+rrhx/kmEe+/UeqQsn4amxu6iK3bbGRu+gboMLmrgKqUiEk8sBCc7thYDTZoyi5f3BBiFRxaAJNQWl6fVqwUMcAEUtE2fq9y2ipaRQVBedH8CyalvoD/dzNU7rYJv3xFNCYR9qtzzFgfNe+br8WOazfcXN3e+YwuYcOkG3VjYBfo25c4lLhWu1a4SIZN6y6yxkLK9pRiw6WRII4U9olMS5GHcRV4w6iJL3gtLfqHNQxOjjV5L5jP5zS4EhiK59Kd3gsCwVRwqbzZ6cCrG/84pP3JMwH3+EqXL5ft5ufT5VSEQd19GPf1iGsTTDYD9tqbV+DpaCfJWX1gPcYQV9jXDNeYNJkSaCfu7UZeTyXKJM5Kj7v95RTx7adFzaBKAmf2NeVrq6fDozm2TJIRgFve6TlFE2xxUax1S4ZE8u3UHJUca5ptACpF2WSW6nNC9eG52krT37myC675DZRZD050lb+DtSXBmnb/tgkywk+pJYDnCDe7sUkBnnInJUO3sJuFvU7LmOTQhfwB14sj7MX2Y/h8UZ5ebQskjUX6xFFUD+5ruQ/+TLIHQevZRVhbh23tJNNQ6+Y5tas+VoNjfJNMGuKDMx4cmtXA/YB24+Ku2qZdO8BHJD2rvaSxt/1E6r3c5cnZc88z0GrIFcJJ4GyKV5UnjEk7vFKfwsmufbwtoWZx9POTTKL5MtcSt4bYErIwSTE132kTybxbnbkRZ/3EI6TFMOC9ER02QiGMXEORLBhQeAgc6Q7QvnpnmnMygBXW07yRzEmTAcEnFKbqtc8lg2chHiu/5Pfl/rOutLrOMCVPRU66TZpu9CcHnngXBFblDLXHHWg+0p4XfQmYCAlCNLoFDiebubEjhsv9ej0MJxSwiREhAseHjNwg/i4gwN+0jnazisISAG9z3IgHHMsDD7cdJIvxDfdsR3P1s6iwzLZdz2N9jDwMO2KDy0Q7HSlFY6ECOfD3JkOloDUOkubJog37g66+MsbMenqid3syX1B4RNmDtAbmvmRVf1j2rkTQqbEDyU+68sS/RTqzIZTvugF+jl6uTZ23OlVG23l5M5hJNQ0mYl82yJMY6iAzpPMuCSqv22TiATxbX/R4nMCbW9NphE60LzL6BJvP+4yThA/R+oLCrmzZIg/Q/n+7n04JNXuNnXRjfrwkhQ5ZmpB0MQqAQ70uIpnxmygIA/09gE8c9LGMWbc5xE5xJEiaU6FZJCe2lzPRKNLjRIi1kdgKG3D/pvXgUiiUzzOxXX0DdH2Nsp/+Me2qce4uY0+IWK0ae5ANY0O94H6zSIUL7fj+m7j4ZekpofyJkmqhNiSHrR9NoxBcKklxJsR7yeR1dFD1ysfVbZRtuKvYVn6jQl2Pa1u4/1qD2QkiHdLcRWV9PXxjKQt8+sGSDomSomslSIOGPqIA/R5PtYImrcaC3Y0iGlMH3P1itsQka2VCWv2OtBAfKBfMD0E8VyEj3bzY8Dob+6OvpD/mzAUwDd1HPiKBDzz8kduCCA1fmybvXKohuz/E7Xt/NqLQ3wwQ/GJ6MjbD9Do8Mj+K0bH8wE4mkBmaP/YBVywiwD4mnkfeGYTGUDe3UnARwxaUNT3bdOUSL2KAEvg2M/AsPEjLAcn67r7ORAI/Jywwvy83LR6fT4MUw0BZUcBqlsx8CFUl3wEsgs+jOo9B+l+56OY+c9HowbYx1MHBpNDAqcwolpIQAsxbL+gi7VUsXU6bfqD/Sg0blfiZ/7HmLomvKQy0fWfaBgibOZ7f12aQhKr4WNwbCjFgov9gtej6PK3p/QWrY1H5vpwggZoIYbtFr6ssrX01tcp9sD/YD8KDcZOly/7H2PqJx5eHp9T+D75lmqnuhjneX9dUE0hjWWr58gHqoZSLDi92i94PQqH6m9PuytLaflH+ZH6qYGvfbvcNibL/0LBFGXZ2nkmeVe3x+vzA4gw+ZUMfVGhU1UqbazzQRjFSZrlRVnVTdv1wzjNy7rtx3ndz/v9AAjBP1aHn/mLxLONifSzNllxvCBKb2KWp2q68Twxettxf3b0AxSEUZykWV6UVd20XT+M07ys236c1/283w+AEIygGE6QFM2wHC+Ikqy8soeqG8/i3R3bcT0/CKM4SbO8KKu6abt+GKd5+YOw7u72h+PpfLne8AQiiUyh0ugMJovN4fL4AqFI7Pml25LJtbSv7tJB/tBMwRuzudgO1ByO07HlupMvSmhRD/15p/Xy3EgK4ySTuOEMGwFlnmxMMQiWMqEVQcaeaaMJkGXLsC7RmyVxI7Z6MM1fTrQoy++ic8ieSqsOSV/d8CmXp100JloyZFxpCH8cCFF9tPrMeIutGbpuo/tkB4J3Wl6oZ5jlk+ZsTNCcGr39RuF9xv7h1nxmweX15K+vJLegUOlwrvAZpqJ9aMKNd9OSb0O8UwvCKXhWWTKu+6c4Xjc79AOLJibjVAsaLlxwPNufYt4Re7a3FFttkQ2GsFyK6WbGWnMkFEBjBFBjm7AurDwns6iciBeuZOLjrlWpFu/gQ5vLXLxETJ/2LucldX+WyrJkeb5I48Nh8+ibQwqTj8ioOX1Sw4e6pLSiHJJIR7GdGrTnl93FqqwZSvFCOc6jMR6N5dRztiZcBXI4EOWu5pTdETV8r4xYPcYOqZ0M1Iz6PB8yFWBZcrN216hjIKir58345V60wkPuUoEinHFzwO7eDs2JsCdpqjIpZJ3zAr9r1TVRWbjEECDR7iMFSxH1k8bLJxVEHZgyUgCZBj6JAsu4Fawee5s5HT6ZfECmdIqKegsoOglC/0zJQAAFo07pPAWouhaIFniwH2U7ErVzgYyBSKpwE/LGq2t3rEQDYlJfXeokwGbtRWMagrd5S3FMmtEvfPV0RttXVhP00QgyNZWmULkKPDVwgXrMGUa6Nqdh0qBCyjYstQkmtAAjAXvZgIZJBi7b7v2FhBKtExYJ5a4Hu+d1oxRq/iK2eki0oPeEj1OWneh3JryGGVrlvdqOpOqOwGz6+CWn3u/T/a3IJ3FBevI1zIBdukX8BL4ds1y7rUtSRbnjDP1etwvSN1HUdbC5r8ddUqyiwiFBmxNv9RpmfXt10aJDAFX5oH5CNdHabugdixB1rUtLYdnmKXwcTy3yTOLZGQJzetKitZgpIPjoLzMF1Ton0NRLyhu6dNyiQUuG6GMlWO60RaOWzTX67usKiuFECGN5oxXp5rRsZAG14Eyuzsqi0lcsIXbhZXfE6EcNZIbQMe0oYAQgasNMBz3b7BUkHTFTg0RHoQhMlFZGGU/ejdeMfwpLflT1HFiEd7znbVfdav94mdP3O1MIyQDLftKTl4cVRG0qHVMl62E/A27D/FIprv6AhPMnZyCtkyiY2+6pcPhsG04nYIZDR726wQ2tPPykY/qi72XWgLJd/QA7GNW5ClDzf93Ax5/xDwF6LH+Ojcb7g0HTgZkhDLg1su2qLt5SbLB98Sv0n7jS8XkU1BIX6/wZHi1U+twvu9VQ3N3+DwAAAA==) format("woff2")}.u-iconfont[data-v-32e6a46e]{position:relative;display:flex;font: 14px/1 uicon-iconfont;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.u-iconfont[data-v-32e6a46e]:before{display:flex;align-items:center}.uicon-en[data-v-32e6a46e]:before{content:"\e70a"}.uicon-zh[data-v-32e6a46e]:before{content:"\e692"}.uicon-level[data-v-32e6a46e]:before{content:"\e693"}.uicon-woman[data-v-32e6a46e]:before{content:"\e69c"}.uicon-man[data-v-32e6a46e]:before{content:"\e697"}.uicon-column-line[data-v-32e6a46e]:before{content:"\e68e"}.uicon-empty-page[data-v-32e6a46e]:before{content:"\e627"}.uicon-empty-data[data-v-32e6a46e]:before{content:"\e62f"}.uicon-empty-car[data-v-32e6a46e]:before{content:"\e602"}.uicon-empty-order[data-v-32e6a46e]:before{content:"\e639"}.uicon-empty-address[data-v-32e6a46e]:before{content:"\e646"}.uicon-empty-message[data-v-32e6a46e]:before{content:"\e6a9"}.uicon-empty-search[data-v-32e6a46e]:before{content:"\e664"}.uicon-empty-favor[data-v-32e6a46e]:before{content:"\e67c"}.uicon-empty-coupon[data-v-32e6a46e]:before{content:"\e682"}.uicon-empty-history[data-v-32e6a46e]:before{content:"\e684"}.uicon-empty-permission[data-v-32e6a46e]:before{content:"\e686"}.uicon-empty-news[data-v-32e6a46e]:before{content:"\e687"}.uicon-empty-wifi[data-v-32e6a46e]:before{content:"\e688"}.uicon-empty-list[data-v-32e6a46e]:before{content:"\e68b"}.uicon-arrow-left-double[data-v-32e6a46e]:before{content:"\e68c"}.uicon-arrow-right-double[data-v-32e6a46e]:before{content:"\e68d"}.uicon-red-packet[data-v-32e6a46e]:before{content:"\e691"}.uicon-red-packet-fill[data-v-32e6a46e]:before{content:"\e690"}.uicon-order[data-v-32e6a46e]:before{content:"\e68f"}.uicon-nav-back-arrow[data-v-32e6a46e]:before{content:"\e67f"}.uicon-nav-back[data-v-32e6a46e]:before{content:"\e683"}.uicon-checkbox-mark[data-v-32e6a46e]:before{content:"\e6a8"}.uicon-arrow-up-fill[data-v-32e6a46e]:before{content:"\e6b0"}.uicon-arrow-down-fill[data-v-32e6a46e]:before{content:"\e600"}.uicon-backspace[data-v-32e6a46e]:before{content:"\e67b"}.uicon-android-circle-fill[data-v-32e6a46e]:before{content:"\e67e"}.uicon-android-fill[data-v-32e6a46e]:before{content:"\e67d"}.uicon-question[data-v-32e6a46e]:before{content:"\e715"}.uicon-pause[data-v-32e6a46e]:before{content:"\e8fa"}.uicon-close[data-v-32e6a46e]:before{content:"\e685"}.uicon-volume-up[data-v-32e6a46e]:before{content:"\e633"}.uicon-volume-off[data-v-32e6a46e]:before{content:"\e644"}.uicon-info[data-v-32e6a46e]:before{content:"\e653"}.uicon-error[data-v-32e6a46e]:before{content:"\e6d3"}.uicon-lock-opened-fill[data-v-32e6a46e]:before{content:"\e974"}.uicon-lock-fill[data-v-32e6a46e]:before{content:"\e979"}.uicon-lock[data-v-32e6a46e]:before{content:"\e97a"}.uicon-photo-fill[data-v-32e6a46e]:before{content:"\e98b"}.uicon-photo[data-v-32e6a46e]:before{content:"\e98d"}.uicon-account-fill[data-v-32e6a46e]:before{content:"\e614"}.uicon-minus-people-fill[data-v-32e6a46e]:before{content:"\e615"}.uicon-plus-people-fill[data-v-32e6a46e]:before{content:"\e626"}.uicon-account[data-v-32e6a46e]:before{content:"\e628"}.uicon-thumb-down-fill[data-v-32e6a46e]:before{content:"\e726"}.uicon-thumb-down[data-v-32e6a46e]:before{content:"\e727"}.uicon-thumb-up-fill[data-v-32e6a46e]:before{content:"\e72f"}.uicon-thumb-up[data-v-32e6a46e]:before{content:"\e733"}.uicon-person-delete-fill[data-v-32e6a46e]:before{content:"\e66a"}.uicon-cut[data-v-32e6a46e]:before{content:"\e948"}.uicon-fingerprint[data-v-32e6a46e]:before{content:"\e955"}.uicon-home-fill[data-v-32e6a46e]:before{content:"\e964"}.uicon-home[data-v-32e6a46e]:before{content:"\e965"}.uicon-hourglass-half-fill[data-v-32e6a46e]:before{content:"\e966"}.uicon-hourglass[data-v-32e6a46e]:before{content:"\e967"}.uicon-lock-open[data-v-32e6a46e]:before{content:"\e973"}.uicon-integral-fill[data-v-32e6a46e]:before{content:"\e703"}.uicon-integral[data-v-32e6a46e]:before{content:"\e704"}.uicon-coupon[data-v-32e6a46e]:before{content:"\e8ae"}.uicon-coupon-fill[data-v-32e6a46e]:before{content:"\e8c4"}.uicon-kefu-ermai[data-v-32e6a46e]:before{content:"\e656"}.uicon-scan[data-v-32e6a46e]:before{content:"\e662"}.uicon-rmb[data-v-32e6a46e]:before{content:"\e608"}.uicon-rmb-circle-fill[data-v-32e6a46e]:before{content:"\e657"}.uicon-rmb-circle[data-v-32e6a46e]:before{content:"\e677"}.uicon-gift[data-v-32e6a46e]:before{content:"\e65b"}.uicon-gift-fill[data-v-32e6a46e]:before{content:"\e65c"}.uicon-bookmark-fill[data-v-32e6a46e]:before{content:"\e63b"}.uicon-zhuanfa[data-v-32e6a46e]:before{content:"\e60b"}.uicon-eye-off-outline[data-v-32e6a46e]:before{content:"\e62b"}.uicon-eye-off[data-v-32e6a46e]:before{content:"\e648"}.uicon-pause-circle[data-v-32e6a46e]:before{content:"\e643"}.uicon-play-circle[data-v-32e6a46e]:before{content:"\e647"}.uicon-pause-circle-fill[data-v-32e6a46e]:before{content:"\e654"}.uicon-play-circle-fill[data-v-32e6a46e]:before{content:"\e655"}.uicon-grid[data-v-32e6a46e]:before{content:"\e673"}.uicon-play-right[data-v-32e6a46e]:before{content:"\e610"}.uicon-play-left[data-v-32e6a46e]:before{content:"\e66d"}.uicon-calendar[data-v-32e6a46e]:before{content:"\e66e"}.uicon-rewind-right[data-v-32e6a46e]:before{content:"\e66f"}.uicon-rewind-left[data-v-32e6a46e]:before{content:"\e671"}.uicon-skip-forward-right[data-v-32e6a46e]:before{content:"\e672"}.uicon-skip-back-left[data-v-32e6a46e]:before{content:"\e674"}.uicon-play-left-fill[data-v-32e6a46e]:before{content:"\e675"}.uicon-play-right-fill[data-v-32e6a46e]:before{content:"\e676"}.uicon-grid-fill[data-v-32e6a46e]:before{content:"\e678"}.uicon-rewind-left-fill[data-v-32e6a46e]:before{content:"\e679"}.uicon-rewind-right-fill[data-v-32e6a46e]:before{content:"\e67a"}.uicon-pushpin[data-v-32e6a46e]:before{content:"\e7e3"}.uicon-star[data-v-32e6a46e]:before{content:"\e65f"}.uicon-star-fill[data-v-32e6a46e]:before{content:"\e669"}.uicon-server-fill[data-v-32e6a46e]:before{content:"\e751"}.uicon-server-man[data-v-32e6a46e]:before{content:"\e6bc"}.uicon-edit-pen[data-v-32e6a46e]:before{content:"\e612"}.uicon-edit-pen-fill[data-v-32e6a46e]:before{content:"\e66b"}.uicon-wifi[data-v-32e6a46e]:before{content:"\e667"}.uicon-wifi-off[data-v-32e6a46e]:before{content:"\e668"}.uicon-file-text[data-v-32e6a46e]:before{content:"\e663"}.uicon-file-text-fill[data-v-32e6a46e]:before{content:"\e665"}.uicon-more-dot-fill[data-v-32e6a46e]:before{content:"\e630"}.uicon-minus[data-v-32e6a46e]:before{content:"\e618"}.uicon-minus-circle[data-v-32e6a46e]:before{content:"\e61b"}.uicon-plus[data-v-32e6a46e]:before{content:"\e62d"}.uicon-plus-circle[data-v-32e6a46e]:before{content:"\e62e"}.uicon-minus-circle-fill[data-v-32e6a46e]:before{content:"\e652"}.uicon-plus-circle-fill[data-v-32e6a46e]:before{content:"\e661"}.uicon-email[data-v-32e6a46e]:before{content:"\e611"}.uicon-email-fill[data-v-32e6a46e]:before{content:"\e642"}.uicon-phone[data-v-32e6a46e]:before{content:"\e622"}.uicon-phone-fill[data-v-32e6a46e]:before{content:"\e64f"}.uicon-clock[data-v-32e6a46e]:before{content:"\e60f"}.uicon-car[data-v-32e6a46e]:before{content:"\e60c"}.uicon-car-fill[data-v-32e6a46e]:before{content:"\e636"}.uicon-warning[data-v-32e6a46e]:before{content:"\e694"}.uicon-warning-fill[data-v-32e6a46e]:before{content:"\e64d"}.uicon-search[data-v-32e6a46e]:before{content:"\e62a"}.uicon-baidu-circle-fill[data-v-32e6a46e]:before{content:"\e680"}.uicon-baidu[data-v-32e6a46e]:before{content:"\e681"}.uicon-facebook[data-v-32e6a46e]:before{content:"\e689"}.uicon-facebook-circle-fill[data-v-32e6a46e]:before{content:"\e68a"}.uicon-qzone[data-v-32e6a46e]:before{content:"\e695"}.uicon-qzone-circle-fill[data-v-32e6a46e]:before{content:"\e696"}.uicon-moments-circel-fill[data-v-32e6a46e]:before{content:"\e69a"}.uicon-moments[data-v-32e6a46e]:before{content:"\e69b"}.uicon-qq-circle-fill[data-v-32e6a46e]:before{content:"\e6a0"}.uicon-qq-fill[data-v-32e6a46e]:before{content:"\e6a1"}.uicon-weibo[data-v-32e6a46e]:before{content:"\e6a4"}.uicon-weibo-circle-fill[data-v-32e6a46e]:before{content:"\e6a5"}.uicon-taobao[data-v-32e6a46e]:before{content:"\e6a6"}.uicon-taobao-circle-fill[data-v-32e6a46e]:before{content:"\e6a7"}.uicon-twitter[data-v-32e6a46e]:before{content:"\e6aa"}.uicon-twitter-circle-fill[data-v-32e6a46e]:before{content:"\e6ab"}.uicon-weixin-circle-fill[data-v-32e6a46e]:before{content:"\e6b1"}.uicon-weixin-fill[data-v-32e6a46e]:before{content:"\e6b2"}.uicon-zhifubao-circle-fill[data-v-32e6a46e]:before{content:"\e6b8"}.uicon-zhifubao[data-v-32e6a46e]:before{content:"\e6b9"}.uicon-zhihu[data-v-32e6a46e]:before{content:"\e6ba"}.uicon-zhihu-circle-fill[data-v-32e6a46e]:before{content:"\e709"}.uicon-list[data-v-32e6a46e]:before{content:"\e650"}.uicon-list-dot[data-v-32e6a46e]:before{content:"\e616"}.uicon-setting[data-v-32e6a46e]:before{content:"\e61f"}.uicon-bell[data-v-32e6a46e]:before{content:"\e609"}.uicon-bell-fill[data-v-32e6a46e]:before{content:"\e640"}.uicon-attach[data-v-32e6a46e]:before{content:"\e632"}.uicon-shopping-cart[data-v-32e6a46e]:before{content:"\e621"}.uicon-shopping-cart-fill[data-v-32e6a46e]:before{content:"\e65d"}.uicon-tags[data-v-32e6a46e]:before{content:"\e629"}.uicon-share[data-v-32e6a46e]:before{content:"\e631"}.uicon-question-circle-fill[data-v-32e6a46e]:before{content:"\e666"}.uicon-question-circle[data-v-32e6a46e]:before{content:"\e625"}.uicon-error-circle[data-v-32e6a46e]:before{content:"\e624"}.uicon-checkmark-circle[data-v-32e6a46e]:before{content:"\e63d"}.uicon-close-circle[data-v-32e6a46e]:before{content:"\e63f"}.uicon-info-circle[data-v-32e6a46e]:before{content:"\e660"}.uicon-md-person-add[data-v-32e6a46e]:before{content:"\e6e4"}.uicon-md-person-fill[data-v-32e6a46e]:before{content:"\e6ea"}.uicon-bag-fill[data-v-32e6a46e]:before{content:"\e617"}.uicon-bag[data-v-32e6a46e]:before{content:"\e619"}.uicon-chat-fill[data-v-32e6a46e]:before{content:"\e61e"}.uicon-chat[data-v-32e6a46e]:before{content:"\e620"}.uicon-more-circle[data-v-32e6a46e]:before{content:"\e63e"}.uicon-more-circle-fill[data-v-32e6a46e]:before{content:"\e645"}.uicon-volume[data-v-32e6a46e]:before{content:"\e66c"}.uicon-volume-fill[data-v-32e6a46e]:before{content:"\e670"}.uicon-reload[data-v-32e6a46e]:before{content:"\e788"}.uicon-camera[data-v-32e6a46e]:before{content:"\e7d7"}.uicon-heart[data-v-32e6a46e]:before{content:"\e7df"}.uicon-heart-fill[data-v-32e6a46e]:before{content:"\e851"}.uicon-minus-square-fill[data-v-32e6a46e]:before{content:"\e855"}.uicon-plus-square-fill[data-v-32e6a46e]:before{content:"\e856"}.uicon-pushpin-fill[data-v-32e6a46e]:before{content:"\e86e"}.uicon-camera-fill[data-v-32e6a46e]:before{content:"\e870"}.uicon-setting-fill[data-v-32e6a46e]:before{content:"\e872"}.uicon-google[data-v-32e6a46e]:before{content:"\e87a"}.uicon-ie[data-v-32e6a46e]:before{content:"\e87b"}.uicon-apple-fill[data-v-32e6a46e]:before{content:"\e881"}.uicon-chrome-circle-fill[data-v-32e6a46e]:before{content:"\e885"}.uicon-github-circle-fill[data-v-32e6a46e]:before{content:"\e887"}.uicon-IE-circle-fill[data-v-32e6a46e]:before{content:"\e889"}.uicon-google-circle-fill[data-v-32e6a46e]:before{content:"\e88a"}.uicon-arrow-down[data-v-32e6a46e]:before{content:"\e60d"}.uicon-arrow-left[data-v-32e6a46e]:before{content:"\e60e"}.uicon-map[data-v-32e6a46e]:before{content:"\e61d"}.uicon-man-add-fill[data-v-32e6a46e]:before{content:"\e64c"}.uicon-tags-fill[data-v-32e6a46e]:before{content:"\e651"}.uicon-arrow-leftward[data-v-32e6a46e]:before{content:"\e601"}.uicon-arrow-rightward[data-v-32e6a46e]:before{content:"\e603"}.uicon-arrow-downward[data-v-32e6a46e]:before{content:"\e604"}.uicon-arrow-right[data-v-32e6a46e]:before{content:"\e605"}.uicon-arrow-up[data-v-32e6a46e]:before{content:"\e606"}.uicon-arrow-upward[data-v-32e6a46e]:before{content:"\e607"}.uicon-bookmark[data-v-32e6a46e]:before{content:"\e60a"}.uicon-eye[data-v-32e6a46e]:before{content:"\e613"}.uicon-man-delete[data-v-32e6a46e]:before{content:"\e61a"}.uicon-man-add[data-v-32e6a46e]:before{content:"\e61c"}.uicon-trash[data-v-32e6a46e]:before{content:"\e623"}.uicon-error-circle-fill[data-v-32e6a46e]:before{content:"\e62c"}.uicon-calendar-fill[data-v-32e6a46e]:before{content:"\e634"}.uicon-checkmark-circle-fill[data-v-32e6a46e]:before{content:"\e635"}.uicon-close-circle-fill[data-v-32e6a46e]:before{content:"\e637"}.uicon-clock-fill[data-v-32e6a46e]:before{content:"\e638"}.uicon-checkmark[data-v-32e6a46e]:before{content:"\e63a"}.uicon-download[data-v-32e6a46e]:before{content:"\e63c"}.uicon-eye-fill[data-v-32e6a46e]:before{content:"\e641"}.uicon-mic-off[data-v-32e6a46e]:before{content:"\e649"}.uicon-mic[data-v-32e6a46e]:before{content:"\e64a"}.uicon-info-circle-fill[data-v-32e6a46e]:before{content:"\e64b"}.uicon-map-fill[data-v-32e6a46e]:before{content:"\e64e"}.uicon-trash-fill[data-v-32e6a46e]:before{content:"\e658"}.uicon-volume-off-fill[data-v-32e6a46e]:before{content:"\e659"}.uicon-volume-up-fill[data-v-32e6a46e]:before{content:"\e65a"}.uicon-share-fill[data-v-32e6a46e]:before{content:"\e65e"}.u-icon[data-v-32e6a46e]{display:inline-flex;align-items:center}.u-icon--left[data-v-32e6a46e]{flex-direction:row-reverse;align-items:center}.u-icon--right[data-v-32e6a46e]{flex-direction:row;align-items:center}.u-icon--top[data-v-32e6a46e]{flex-direction:column-reverse;justify-content:center}.u-icon--bottom[data-v-32e6a46e]{flex-direction:column;justify-content:center}.u-icon__icon[data-v-32e6a46e]{position:relative}.u-icon__icon--primary[data-v-32e6a46e]{color:#2979ff}.u-icon__icon--success[data-v-32e6a46e]{color:#19be6b}.u-icon__icon--error[data-v-32e6a46e]{color:#fa3534}.u-icon__icon--warning[data-v-32e6a46e]{color:#f90}.u-icon__icon--info[data-v-32e6a46e]{color:#909399}.u-icon__decimal[data-v-32e6a46e]{position:absolute;top:0;left:0;display:inline-block;overflow:hidden}.u-icon__img[data-v-32e6a46e]{height:auto;will-change:transform}.u-icon__label[data-v-32e6a46e]{line-height:1}.u-btn[data-v-942515d8]:after{border:none}.u-btn[data-v-942515d8]{position:relative;border:0;display:inline-flex;overflow:visible;line-height:1;display:flex;flex-direction:row;align-items:center;justify-content:center;cursor:pointer;padding:0 1.25rem;z-index:1;box-sizing:border-box;transition:all .15s}.u-btn--bold-border[data-v-942515d8]{border:1px solid #ffffff}.u-btn--default[data-v-942515d8]{color:#606266;border-color:#c0c4cc;background-color:#fff}.u-btn--primary[data-v-942515d8]{color:#fff;border-color:#2979ff;background-color:#2979ff}.u-btn--success[data-v-942515d8]{color:#fff;border-color:#19be6b;background-color:#19be6b}.u-btn--error[data-v-942515d8]{color:#fff;border-color:#fa3534;background-color:#fa3534}.u-btn--warning[data-v-942515d8]{color:#fff;border-color:#f90;background-color:#f90}.u-btn--default--disabled[data-v-942515d8]{color:#fff;border-color:#e4e7ed;background-color:#fff}.u-btn--primary--disabled[data-v-942515d8]{color:#fff!important;border-color:#a0cfff!important;background-color:#a0cfff!important}.u-btn--success--disabled[data-v-942515d8]{color:#fff!important;border-color:#71d5a1!important;background-color:#71d5a1!important}.u-btn--error--disabled[data-v-942515d8]{color:#fff!important;border-color:#fab6b6!important;background-color:#fab6b6!important}.u-btn--warning--disabled[data-v-942515d8]{color:#fff!important;border-color:#fcbd71!important;background-color:#fcbd71!important}.u-btn--primary--plain[data-v-942515d8]{color:#2979ff!important;border-color:#a0cfff!important;background-color:#ecf5ff!important}.u-btn--success--plain[data-v-942515d8]{color:#19be6b!important;border-color:#71d5a1!important;background-color:#dbf1e1!important}.u-btn--error--plain[data-v-942515d8]{color:#fa3534!important;border-color:#fab6b6!important;background-color:#fef0f0!important}.u-btn--warning--plain[data-v-942515d8]{color:#f90!important;border-color:#fcbd71!important;background-color:#fdf6ec!important}.u-btn--info[data-v-942515d8]{color:#fff;border-color:#909399;background-color:#909399}.u-btn--info--disabled[data-v-942515d8]{color:#fff!important;border-color:#c8c9cc!important;background-color:#c8c9cc!important}.u-btn--info--plain[data-v-942515d8]{color:#909399!important;border-color:#c8c9cc!important;background-color:#f4f4f5!important}.u-hairline-border[data-v-942515d8]:after{content:" ";position:absolute;pointer-events:none;box-sizing:border-box;transform-origin:0 0;left:0;top:0;width:199.8%;height:199.7%;transform:scale(.5);border:1px solid currentColor;z-index:1}.u-wave-ripple[data-v-942515d8]{z-index:0;position:absolute;border-radius:100%;background-clip:padding-box;pointer-events:none;-webkit-user-select:none;user-select:none;transform:scale(0);opacity:1;transform-origin:center}.u-wave-ripple.u-wave-active[data-v-942515d8]{opacity:0;transform:scale(2);transition:opacity 1s linear,transform .4s linear}.u-round-circle[data-v-942515d8]{border-radius:3.125rem}.u-round-circle[data-v-942515d8]:after{border-radius:3.125rem}.u-loading[data-v-942515d8]:after{background-color:rgba(255,255,255,.35)}.u-size-default[data-v-942515d8]{font-size:.9375rem;height:2.5rem;line-height:2.5rem}.u-size-medium[data-v-942515d8]{display:inline-flex;width:auto;font-size:.8125rem;height:2.1875rem;line-height:2.1875rem;padding:0 2.5rem}.u-size-mini[data-v-942515d8]{display:inline-flex;width:auto;font-size:.6875rem;padding-top:1px;height:1.5625rem;line-height:1.5625rem;padding:0 .625rem}.u-primary-plain-hover[data-v-942515d8]{color:#fff!important;background:#2b85e4!important}.u-default-plain-hover[data-v-942515d8]{color:#2b85e4!important;background:#ecf5ff!important}.u-success-plain-hover[data-v-942515d8]{color:#fff!important;background:#18b566!important}.u-warning-plain-hover[data-v-942515d8]{color:#fff!important;background:#f29100!important}.u-error-plain-hover[data-v-942515d8]{color:#fff!important;background:#dd6161!important}.u-info-plain-hover[data-v-942515d8]{color:#fff!important;background:#82848a!important}.u-default-hover[data-v-942515d8]{color:#2b85e4!important;border-color:#2b85e4!important;background-color:#ecf5ff!important}.u-primary-hover[data-v-942515d8]{background:#2b85e4!important;color:#fff}.u-success-hover[data-v-942515d8]{background:#18b566!important;color:#fff}.u-info-hover[data-v-942515d8]{background:#82848a!important;color:#fff}.u-warning-hover[data-v-942515d8]{background:#f29100!important;color:#fff}.u-error-hover[data-v-942515d8]{background:#dd6161!important;color:#fff}.u-mask[data-v-005d3602]{position:fixed;top:0;left:0;right:0;bottom:0;opacity:0;transition:transform .3s}.u-mask-show[data-v-005d3602]{opacity:1}.u-mask-zoom[data-v-005d3602]{transform:scale(1.2)}.u-drawer[data-v-98075be7]{display:block;position:fixed;top:0;left:0;right:0;bottom:0;overflow:hidden}.u-drawer-content[data-v-98075be7]{display:block;position:absolute;z-index:1003;transition:all .25s linear}.u-drawer__scroll-view[data-v-98075be7]{width:100%;height:100%}.u-drawer-left[data-v-98075be7]{top:0;bottom:0;left:0;background-color:#fff}.u-drawer-right[data-v-98075be7]{right:0;top:0;bottom:0;background-color:#fff}.u-drawer-top[data-v-98075be7]{top:0;left:0;right:0;background-color:#fff}.u-drawer-bottom[data-v-98075be7]{bottom:0;left:0;right:0;background-color:#fff}.u-drawer-center[data-v-98075be7]{display:flex;flex-direction:row;flex-direction:column;bottom:0;left:0;right:0;top:0;justify-content:center;align-items:center;opacity:0;z-index:99999}.u-mode-center-box[data-v-98075be7]{min-width:3.125rem;min-height:3.125rem;display:block;position:relative;background-color:#fff}.u-drawer-content-visible.u-drawer-center[data-v-98075be7]{transform:scale(1);opacity:1}.u-animation-zoom[data-v-98075be7]{transform:scale(1.15)}.u-drawer-content-visible[data-v-98075be7]{transform:translateZ(0)!important}.u-close[data-v-98075be7]{position:absolute;z-index:3}.u-close--top-left[data-v-98075be7]{top:.9375rem;left:.9375rem}.u-close--top-right[data-v-98075be7]{top:.9375rem;right:.9375rem}.u-close--bottom-left[data-v-98075be7]{bottom:.9375rem;left:.9375rem}.u-close--bottom-right[data-v-98075be7]{right:.9375rem;bottom:.9375rem}.u-calendar[data-v-d354e4bf]{color:#606266;background:url(../../static/index/lightbgcnew.png) center/cover,rgba(255,255,255,.5);background-blend-mode:screen}.u-calendar__header[data-v-d354e4bf]{width:100%;box-sizing:border-box;font-size:.9375rem;color:#303133}.u-calendar__header__text[data-v-d354e4bf]{margin-top:.9375rem;padding:0 1.875rem;display:flex;flex-direction:row;justify-content:center;align-items:center}.u-calendar__action[data-v-d354e4bf]{padding:1.25rem 0}.u-calendar__action__icon[data-v-d354e4bf]{margin:0 .5rem}.u-calendar__action__text[data-v-d354e4bf]{padding:0 .5rem;color:#303133;font-size:1rem;line-height:1rem;font-weight:700}.u-calendar__week-day[data-v-d354e4bf]{display:flex;flex-direction:row;align-items:center;justify-content:center;padding:6px 0;overflow:hidden}.u-calendar__week-day__text[data-v-d354e4bf]{flex:1;text-align:center}.u-calendar__content[data-v-d354e4bf]{width:100%;display:flex;flex-direction:row;flex-wrap:wrap;padding:6px 0;box-sizing:border-box;position:relative}.u-calendar__content--end-date[data-v-d354e4bf]{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.u-calendar__content--start-date[data-v-d354e4bf]{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.u-calendar__content__item[data-v-d354e4bf]{width:14.2857%;display:flex;flex-direction:row;align-items:center;justify-content:center;padding:6px 0;overflow:hidden;position:relative;z-index:2}.u-calendar__content__item__inner[data-v-d354e4bf]{height:2.625rem;display:flex;flex-direction:row;align-items:center;justify-content:center;flex-direction:column;font-size:1rem;position:relative;border-radius:50%}.u-calendar__content__item__inner__desc[data-v-d354e4bf]{width:100%;font-size:.75rem;line-height:.75rem;transform:scale(.75);transform-origin:center center;position:absolute;left:0;text-align:center;bottom:.0625rem}.u-calendar__content__item__tips[data-v-d354e4bf]{width:100%;font-size:.75rem;line-height:.75rem;position:absolute;left:0;transform:scale(.8);transform-origin:center center;text-align:center;bottom:.25rem;z-index:2}.u-calendar__content__bg-month[data-v-d354e4bf]{position:absolute;font-size:130px;line-height:130px;left:50%;top:50%;transform:translate(-50%,-50%);color:#e4e7ed;z-index:1}.u-calendar__bottom[data-v-d354e4bf]{width:100%;display:flex;flex-direction:row;align-items:center;justify-content:center;flex-direction:column;padding:0 1.25rem .9375rem;box-sizing:border-box;font-size:.75rem;color:#909399}.u-calendar__bottom__choose[data-v-d354e4bf]{height:1.5625rem}.u-calendar__bottom__btn[data-v-d354e4bf]{width:100%}.draw-all[data-v-cb386bfb]{width:100%;height:100%;display:flex;flex-direction:column;background:url(../../static/index/clearmountain.png) center / cover,rgba(255,255,255,.4);background-blend-mode:screen;isolation:isolate;border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem;overflow:hidden}.draw-all .draw-flex[data-v-cb386bfb]{display:flex}.draw-all .draw-title[data-v-cb386bfb]{width:100%;height:4.375rem;display:flex;justify-content:space-between;padding-top:2.125rem}.draw-all .draw-title .draw-title-gun[data-v-cb386bfb]{margin-left:1.875rem;margin-right:.625rem;width:.40625rem;height:1.5625rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.draw-all .draw-title .draw-title-font[data-v-cb386bfb]{font-size:1.25rem;font-weight:700}.draw-all .draw-contain[data-v-cb386bfb]{width:100%;height:100vh}.index-right-height[data-v-cb386bfb]{height:2.5rem}.index-right-title[data-v-cb386bfb]{margin-left:.9375rem;width:calc(100% - 1.875rem);height:3.75rem;background:linear-gradient(to right,#c4e0fd,#d5cdff,#d9ecff);border-radius:1.09375rem;border:.0625rem solid #fff;display:flex;align-items:center}.index-right-title .index-right-name[data-v-cb386bfb]{margin-left:.625rem;margin-right:.3125rem;color:#19233b;font-size:.9375rem}.index-right-title .index-right-input[data-v-cb386bfb]{font-size:.84375rem;width:7.5rem;border:.0625rem #a0adc8 solid;padding:.46875rem 0 .46875rem .625rem;background-color:#eaf3fe;border-radius:.3125rem}.index-right-title .index-right-button-all[data-v-cb386bfb]{height:100%;margin-left:auto;display:flex;align-items:center}.index-right-title .index-right-button-all .index-right-button[data-v-cb386bfb]{height:2.1875rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;font-size:.9375rem;display:flex;align-items:center;border-radius:.3125rem;border:.03125rem solid #fff;margin-right:.3125rem}.index-right-title .index-right-button-all .index-right-button .index-right-button-img[data-v-cb386bfb]{width:1.40625rem;height:1.40625rem;margin:0 .15625rem 0 .3125rem}.index-right-title .index-right-button-all .index-right-button .index-right-button-font[data-v-cb386bfb]{margin-right:.625rem}.scroll-view[data-v-cb386bfb]{margin-top:.625rem;height:40.625rem;width:calc(100% - 2.5rem);margin-left:1.25rem;border-radius:1.25rem;border:.0625rem solid #fff;box-shadow:.125rem .25rem .5rem .125rem #839fcc;overflow:hidden}.swiper-flex[data-v-cb386bfb]{display:flex;flex-wrap:wrap;margin-left:0}.swiper-flex .swiper-card[data-v-cb386bfb]{margin:0 0 .9375rem .9375rem;width:28.125rem;height:7.1875rem;border:.0625rem solid #fff;border-radius:.9375rem;background:url(../../static/index/blueMountain.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;isolation:isolate;box-shadow:.15625rem .15625rem .3125rem #839fcc;overflow:hidden;padding:0 1.25rem}.swiper-flex .swiper-card .swiper-card-top[data-v-cb386bfb]{width:100%;height:8.4375rem;display:flex}.swiper-flex .swiper-card .swiper-card-top .swiper-card-top-card[data-v-cb386bfb]{width:100%;height:100%}.swiper-flex .swiper-card .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight[data-v-cb386bfb]{display:flex;justify-content:space-between;margin-top:.78125rem}.swiper-flex .swiper-card .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-left .blue-number[data-v-cb386bfb]{font-size:1rem;font-weight:700;color:#017de9;margin-top:.3125rem}.swiper-flex .swiper-card .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-right[data-v-cb386bfb]{color:#ff6000;font-weight:500;font-size:.9375rem}.swiper-flex .swiper-card .swiper-card-top .swiper-card-top-card .swiper-card-top-card-noral[data-v-cb386bfb]{display:flex;justify-content:space-between;margin-top:1.09375rem}.index-right-button-blue[data-v-cb386bfb]{height:1.5625rem;width:3.125rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;align-items:center;justify-content:center;border-radius:.3125rem;border:.03125rem solid #fff}.swiper-all-flex[data-v-cb386bfb]{display:flex}.floating-ball[data-v-5147ae32]{position:fixed;width:4.375rem;height:4.375rem;border-radius:50%;background:linear-gradient(to bottom right,#3fbbfe,#a541ff);border:.0625rem solid #fff;z-index:999;display:flex;justify-content:center;align-items:center}.floating-ball .floating-ball-img[data-v-5147ae32]{width:2.1875rem;height:2.1875rem}.popup-detail-left[data-v-a77dd54e]{height:100%;width:45%}.popup-detail-left .popup-detail-left-white[data-v-a77dd54e]{margin:1.5625rem 0 0 1.5625rem;width:18.75rem;height:18.75rem;background-color:rgba(255,255,255,.3);display:flex;border-radius:.9375rem;justify-content:center;align-items:center;box-shadow:.15625rem .15625rem .3125rem rgba(0,0,0,.1)}.popup-detail-left .popup-detail-left-white .popup-detail-left-white-img[data-v-a77dd54e]{width:17.1875rem;height:17.1875rem}.popup-detail-left .popup-detail-left-bottom[data-v-a77dd54e]{width:calc(100% - 2.1875rem);margin-left:2.1875rem;height:7.1875rem;display:flex}.popup-detail-right[data-v-a77dd54e]{height:100%;width:55%;padding:0 1.5625rem}.popup-detail-right .popup-detail-title[data-v-a77dd54e]{margin-top:2.1875rem;display:flex;justify-content:space-between}.popup-detail-right .popup-detail-title .popup-detail-weight[data-v-a77dd54e]{font-size:1.40625rem;font-weight:700}.popup-detail-right .popup-detail-title .popup-detail-gray[data-v-a77dd54e]{padding:.3125rem .9375rem;background-color:#ceddff;border-radius:.9375rem}.popup-small-card[data-v-a77dd54e]{width:33%;height:100%;display:flex;justify-content:center;align-items:center;flex-direction:column}.popup-small-card .popup-small-circle[data-v-a77dd54e]{width:1.875rem;height:1.875rem;border-radius:50%;border:.09375rem solid #0FA2FF;display:flex;justify-content:center;align-items:center}.popup-small-card .popup-small-circle .popup-small-circle-img[data-v-a77dd54e]{width:.9375rem;height:.9375rem;margin-top:-.09375rem}.popup-small-card .popup-small-number[data-v-a77dd54e]{color:#596278;font-weight:700;font-size:1.09375rem;margin-top:.3125rem}.popup-small-card .popup-small-font[data-v-a77dd54e]{color:#596278;font-size:.625rem;margin-top:.15625rem}.popup-small-shu[data-v-a77dd54e]{width:.0625rem;height:4.375rem;margin-top:1.5625rem;background-color:rgba(255,255,255,.4)}.popup-weight[data-v-a77dd54e]{font-size:1.09375rem;font-weight:700;margin:.46875rem 0}.popup-right-father[data-v-a77dd54e]{display:flex;flex-wrap:wrap}.popup-right-father .popup-right-font-contain[data-v-a77dd54e]{display:flex;width:50%;margin-bottom:.3125rem}.popup-right-father .popup-right-font-contain .popup-font-left[data-v-a77dd54e]{font-size:1rem}.popup-right-father .popup-right-font-contain .popup-font-right[data-v-a77dd54e]{font-size:1rem;color:#646464}.swiper-left-buttons-big[data-v-a77dd54e]{display:flex;margin-top:.9375rem;font-size:.9375rem}.swiper-left-buttons-big .swiper-left-button[data-v-a77dd54e]{display:flex;justify-content:center;align-items:center;width:7.1875rem;height:2.5rem;border-radius:.625rem;background:linear-gradient(to bottom,#d5e0f8,#ecf6ff);border:.03125rem #fff solid;color:#364464;box-shadow:.0625rem .0625rem .125rem rgba(0,0,0,.3)}.swiper-left-buttons-big .swiper-left-button-blue[data-v-a77dd54e]{display:flex;justify-content:center;align-items:center;width:7.1875rem;height:2.5rem;border-radius:.625rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;border:.03125rem #fff solid;margin-right:.625rem;box-shadow:.0625rem .0625rem .125rem rgba(0,0,0,.3)}[data-v-5d6b5cea] ::-webkit-scrollbar{display:block!important;width:.21875rem}[data-v-5d6b5cea] ::-webkit-scrollbar-thumb{border-radius:.15625rem!important;box-shadow:inset 0 0 .03125rem rgba(0,0,0,.2)!important;background-color:#ccc!important}.plsbuy-contain[data-v-5d6b5cea]{display:flex;align-items:center;flex-direction:column;width:100%;height:100%;background:url(../../static/index/newpink.png) center / cover}.plsbuy-contain .plsbuy-title[data-v-5d6b5cea]{background:url(../../static/index/blueMountain.png) center / cover,rgba(255,255,255,.8);background-blend-mode:screen;isolation:isolate;width:35rem;height:7.8125rem;margin-top:1.5625rem;border-radius:.9375rem;box-shadow:.0625rem .125rem .25rem .0625rem rgba(0,0,0,.3);display:flex}.plsbuy-contain .plsbuy-title .plsbuy-title-img[data-v-5d6b5cea]{height:6.875rem;width:6.875rem;margin-top:.3125rem;margin-left:.625rem;margin-right:2.5rem}.plsbuy-contain .plsbuy-card[data-v-5d6b5cea]{margin-top:.625rem;margin-right:1.09375rem;width:calc(100% - 2.1875rem);border-radius:.9375rem;position:relative;height:9.375rem}.plsbuy-contain .plsbuy-card .blur-overlay[data-v-5d6b5cea]{position:absolute;bottom:0;left:0;width:100%;height:1.25rem;backdrop-filter:blur(.09375rem);-webkit-backdrop-filter:blur(.09375rem);z-index:2;pointer-events:none}.plsbuy-contain .plsbuy-card .plsbuy-card-heng[data-v-5d6b5cea]{display:flex;align-items:center;justify-content:space-between;height:3.125rem}.plsbuy-contain .plsbuy-card .plsbuy-card-heng .plsbuy-card-img[data-v-5d6b5cea]{width:1.25rem;height:1.25rem;margin:0 .625rem}.plsbuy-title-font[data-v-5d6b5cea]{height:100%;width:25.625rem}.plsbuy-title-font .plsbuy-title-weight[data-v-5d6b5cea]{font-size:1.09375rem;font-weight:700;width:100%;margin:.625rem 0}.plsbuy-title-font .popup-right-font-contain[data-v-5d6b5cea]{display:flex;width:50%;align-items:center}.plsbuy-title-font .popup-font-left[data-v-5d6b5cea]{font-size:.9375rem;line-height:.9375rem;color:#646464}.plsbuy-title-font .popup-font-right[data-v-5d6b5cea]{font-size:.9375rem;line-height:.9375rem}.plsbuy-title-flex[data-v-5d6b5cea]{display:flex;width:100%;margin-bottom:.625rem}.plsbuy-weight[data-v-5d6b5cea],.plsbuy-right-weight[data-v-5d6b5cea]{font-weight:700;font-size:1.09375rem}.plsbuy-font-right[data-v-5d6b5cea]{font-size:.9375rem;line-height:.9375rem}.plsbuy-jian[data-v-5d6b5cea]{background-color:#d3e7ff;width:2.1875rem;height:2.1875rem;display:flex;justify-content:center;align-items:center;border-radius:.3125rem;margin-left:.9375rem;border:.03125rem solid #313A4E;font-size:1.09375rem}.plsbuy-jian-target[data-v-5d6b5cea]{background:linear-gradient(to bottom,#00c9ff,#0076ff);color:#fff;width:2.1875rem;height:2.1875rem;display:flex;justify-content:center;align-items:center;border-radius:.3125rem;margin-left:.9375rem;border:.03125rem solid #fff;font-size:1.09375rem}.plsbuy-number[data-v-5d6b5cea]{border:.03125rem solid #313A4E;border-radius:.3125rem;display:flex;justify-content:center;align-items:center;font-weight:700;margin:0 .3125rem;width:2.8125rem;height:2.1875rem}.plsbuy-number-target[data-v-5d6b5cea]{color:#0076ff;border:.03125rem solid #0076FF;border-radius:.3125rem;display:flex;justify-content:center;align-items:center;font-weight:700;margin:0 .3125rem;width:2.8125rem;height:2.1875rem}.plsbuy-jia[data-v-5d6b5cea]{background-color:#d3e7ff;width:2.1875rem;height:2.1875rem;display:flex;justify-content:center;align-items:center;border-radius:.3125rem;border:.03125rem solid #313A4E;font-size:1.09375rem;margin-right:.15625rem}.plsbuy-jia-target[data-v-5d6b5cea]{background:linear-gradient(to bottom,#00c9ff,#0076ff);color:#fff;width:2.1875rem;height:2.1875rem;display:flex;justify-content:center;align-items:center;border-radius:.3125rem;border:.03125rem solid #fff;font-size:1.09375rem;margin-right:.15625rem}.plsbuy-amount[data-v-5d6b5cea]{width:100%;justify-content:end;display:flex;font-size:1.09375rem;margin-top:.625rem}.plsbuy-amount .plsbuy-amount-font[data-v-5d6b5cea]{font-weight:700}.plsbuy-amount .plsbuy-amount-red[data-v-5d6b5cea]{font-weight:700;color:red;margin-right:1.875rem}.plsbuy-bottom[data-v-5d6b5cea]{width:100%;margin-top:.9375rem;height:2.1875rem;display:flex;justify-content:center;font-size:1.09375rem}.plsbuy-bottom .plsbuy-bottom-blue[data-v-5d6b5cea]{display:flex;justify-content:center;align-items:center;width:7.1875rem;height:2.5rem;border-radius:.625rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;border:.03125rem #fff solid;margin-right:.625rem;box-shadow:.0625rem .0625rem .125rem rgba(0,0,0,.3)}.plsbuy-bottom .plsbuy-bottom-white[data-v-5d6b5cea]{display:flex;justify-content:center;align-items:center;width:7.1875rem;height:2.5rem;border-radius:.625rem;background:linear-gradient(to bottom,#d5e0f8,#ecf6ff);border:.03125rem #fff solid;margin-right:.625rem;box-shadow:.0625rem .0625rem .125rem rgba(0,0,0,.3)}.card-flex[data-v-5d6b5cea]{display:flex;align-items:center}@keyframes slide-out-5d6b5cea{to{transform:translate(100%);opacity:0}}.plsbuy-card-heng.slide-out[data-v-5d6b5cea]{animation:slide-out-5d6b5cea .3s forwards}.plsbuy-contain[data-v-72274131]{display:flex;align-items:center;flex-direction:column;width:100%;height:100%;background:url(../../static/index/pink.png) center / cover;overflow:hidden}.draw-title[data-v-72274131]{width:100%;height:1.875rem;display:flex;justify-content:space-between;padding-top:.9375rem}.draw-title .draw-flex[data-v-72274131]{display:flex}.draw-title .draw-title-gun[data-v-72274131]{margin-left:.625rem;margin-right:.625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.draw-title .draw-title-font[data-v-72274131]{font-size:1.09375rem;font-weight:700}.plsbuy-bottom[data-v-72274131]{width:100%;margin-top:.625rem;height:2.1875rem;display:flex;justify-content:center;font-size:1.09375rem}.plsbuy-bottom .plsbuy-bottom-blue[data-v-72274131]{display:flex;justify-content:center;align-items:center;width:7.1875rem;height:2.5rem;border-radius:.625rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;border:.03125rem #fff solid;box-shadow:.0625rem .0625rem .125rem rgba(0,0,0,.3)}.calculator-father[data-v-72274131]{width:13.125rem;height:15.625rem;margin-top:.625rem;flex-wrap:wrap;display:flex}.calculator-father .calculator-kuai[data-v-72274131]{display:flex;justify-content:center;align-items:center;background-color:#dcdcee;border-radius:.78125rem;font-size:1.40625rem;font-weight:500;margin:.46875rem .625rem 0;width:3.125rem;height:3.125rem}.calculator-father .calculator-kuai-target[data-v-72274131]{background:linear-gradient(to bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;background-color:#dcdcee;border-radius:.78125rem;font-size:1.40625rem;font-weight:500;margin:.46875rem .625rem 0;width:3.125rem;height:3.125rem}.stringShow-father[data-v-72274131]{width:13.125rem;height:2.1875rem;margin-top:.625rem;margin-left:.71875rem;display:flex}.stringShow-father .stringShow-kuai[data-v-72274131]{display:flex;justify-content:center;align-items:center;border-radius:.78125rem;font-size:1.40625rem;font-weight:500;margin:0 .46875rem;width:2.1875rem;height:2.1875rem;border:.09375rem solid #303C57}.qinggou-font[data-v-72274131]{font-size:1.09375rem;font-weight:500;margin-top:.3125rem}.index-content-other[data-v-912c10f8]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease}.index-content-right[data-v-912c10f8]{height:calc(100% - 3.125rem);width:calc(100% - 1.875rem);background-color:rgba(255,255,255,.5);background-image:url(../../static/index/mountain.png);background-position:70% 45%;border-radius:1.5625rem;box-shadow:.125rem .25rem .5rem .125rem rgba(0,0,0,.3)}.index-content-right .index-right-height[data-v-912c10f8]{height:.625rem}.index-content-right .index-right-title[data-v-912c10f8]{margin-left:.9375rem;width:calc(100% - 1.875rem);height:3.75rem;background:linear-gradient(to right,#c4e0fd,#d5cdff,#d9ecff);border-radius:1.09375rem;border:.0625rem solid #fff;display:flex;align-items:center}.index-content-right .index-right-title .index-right-name[data-v-912c10f8]{margin-left:.625rem;margin-right:.3125rem;color:#19233b;font-size:.9375rem}.index-content-right .index-right-title .index-right-input[data-v-912c10f8]{font-size:.84375rem;width:7.5rem;border:.0625rem #a0adc8 solid;padding:.46875rem 0 .46875rem .625rem;background-color:#eaf3fe;border-radius:.3125rem}.index-content-right .index-right-title .index-right-button-all[data-v-912c10f8]{height:100%;margin-left:auto;display:flex;align-items:center}.index-content-right .index-right-title .index-right-button-all .index-right-button[data-v-912c10f8]{height:2.1875rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;font-size:.9375rem;display:flex;align-items:center;border-radius:.3125rem;border:.03125rem solid #fff;margin-right:.3125rem}.index-content-right .index-right-title .index-right-button-all .index-right-button .index-right-button-img[data-v-912c10f8]{width:1.40625rem;height:1.40625rem;margin:0 .15625rem 0 .3125rem}.index-content-right .index-right-title .index-right-button-all .index-right-button .index-right-button-font[data-v-912c10f8]{margin-right:.625rem}.index-content-down[data-v-912c10f8]{width:calc(100% - 1.875rem);height:3.125rem;display:flex;justify-content:flex-end;align-items:center}.swiper-contain[data-v-912c10f8]{width:100%;margin-left:.3125rem;height:calc(100% - 4.375rem)}.swiper-contain .swiper-flex[data-v-912c10f8]{display:flex;flex-wrap:wrap}.swiper-contain .swiper-flex .swiper-card[data-v-912c10f8]{margin:.625rem 0 0 .625rem;width:20.8125rem;height:10.78125rem;border-radius:.9375rem;background:#01adf9 url(../../static/index/warehouseCard/bgcblue.png) center / cover;box-shadow:.0625rem .0625rem .125rem rgba(0,0,0,.3);display:flex}.swiper-contain .swiper-flex .swiper-card .swiper-card-left[data-v-912c10f8]{height:100%;width:12.5rem}.swiper-contain .swiper-flex .swiper-card .swiper-card-left .swiper-card-left-white[data-v-912c10f8]{margin:.84375rem 0 .625rem .9375rem;width:6.25rem;height:8.75rem;display:flex;border-radius:.9375rem;justify-content:center;align-items:center}.swiper-contain .swiper-flex .swiper-card .swiper-card-left .swiper-card-left-white .swiper-card-left-white-img-first[data-v-912c10f8]{width:6.25rem;height:6.25rem;box-shadow:.0625rem .0625rem .125rem .0625rem rgba(1,178,255,.2);border-radius:.625rem}.swiper-contain .swiper-flex .swiper-card .swiper-card-left .swiper-card-left-white .swiper-card-left-white-img-second[data-v-912c10f8]{width:6.25rem;height:6.25rem;box-shadow:.0625rem .0625rem .125rem .0625rem rgba(11,206,184,.2);border-radius:.625rem}.swiper-contain .swiper-flex .swiper-card .swiper-card-left .swiper-card-left-white .swiper-card-left-white-img-third[data-v-912c10f8]{width:6.25rem;height:6.25rem;box-shadow:.0625rem .0625rem .125rem .0625rem rgba(188,163,246,.2);border-radius:.625rem}.swiper-contain .swiper-flex .swiper-card .swiper-card-right[data-v-912c10f8]{height:100%;width:18.75rem}.swiper-contain .swiper-flex .swiper-card .swiper-card-right .swiper-right-title[data-v-912c10f8]{margin-top:1.09375rem;width:100%;display:flex;justify-content:space-between}.swiper-contain .swiper-flex .swiper-card .swiper-card-right .swiper-right-title .swiper-title-font[data-v-912c10f8]{font-weight:700;font-size:.9375rem}.swiper-contain .swiper-flex .swiper-card .swiper-card-right .swiper-right-title .swiper-title-font-button[data-v-912c10f8]{color:#fff;border-radius:.3125rem;margin-right:.78125rem;margin-top:-.625rem;font-size:.78125rem;font-weight:700}.swiper-contain .swiper-flex .swiper-card .swiper-card-right .swiper-right-title .swiper-title-mark[data-v-912c10f8]{background-color:#d6d4f5;color:#19233b;padding:.15625rem .78125rem;font-size:.9375rem;border-radius:.78125rem;margin-right:.625rem}.swiper-heng[data-v-912c10f8]{width:2.8125rem;height:.3125rem;border-radius:.9375rem;margin-bottom:0}.swiper-font[data-v-912c10f8]{color:#596278;font-size:.8125rem;margin-top:.46875rem;display:flex}.swiper-littlefont[data-v-912c10f8]{color:#596278;font-size:.8125rem;margin-top:.46875rem;display:flex;width:50%}.popup-detail[data-v-912c10f8]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-detail .popup-detail-content[data-v-912c10f8]{display:flex;width:46.875rem;height:28.125rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-detail-plsbuy[data-v-912c10f8]{position:fixed;top:0;left:0;right:0;bottom:0;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999;overflow:hidden}.popup-detail-plsbuy .popup-detail-content-plsbuy[data-v-912c10f8]{position:absolute;left:10.9375rem;top:9.6875rem;display:flex;width:37.5rem;height:26.5625rem;background-color:#fff;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease;overflow:hidden}.popup-detail-plsbuy .popup-detail-content-calculator[data-v-912c10f8]{position:absolute;right:5rem;top:9.6875rem;display:flex;width:18.75rem;height:26.5625rem;background-color:#fff;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease;overflow:hidden}.blackfont[data-v-912c10f8]{font-weight:600;color:red}.swiper-left-buttons[data-v-912c10f8]{display:flex;margin-top:.625rem}.swiper-left-buttons .swiper-left-button[data-v-912c10f8]{display:flex;justify-content:center;align-items:center;width:4.375rem;height:1.875rem;border-radius:.625rem;background:linear-gradient(to bottom,#d5e0f8,#ecf6ff);border:.03125rem #fff solid;color:#364464;box-shadow:.0625rem .0625rem .125rem rgba(0,0,0,.3)}.swiper-left-buttons .swiper-left-button-blue[data-v-912c10f8]{display:flex;justify-content:center;align-items:center;width:4.375rem;height:1.875rem;border-radius:.625rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;border:.03125rem #fff solid;margin-right:.625rem;box-shadow:.0625rem .0625rem .125rem rgba(0,0,0,.3)}.swiper-left-buttons .swiper-left-button-green[data-v-912c10f8]{display:flex;justify-content:center;align-items:center;width:4.375rem;height:1.875rem;border-radius:.625rem;background:linear-gradient(to right bottom,#00d6a9,#19bcd4);color:#fff;border:.03125rem #fff solid;margin-right:.625rem;box-shadow:.0625rem .0625rem .125rem rgba(0,0,0,.3)}.swiper-left-buttons .swiper-left-button-pouple[data-v-912c10f8]{display:flex;justify-content:center;align-items:center;width:4.375rem;height:1.875rem;border-radius:.625rem;background:linear-gradient(to right bottom,#aa55e1,#bd9af8);color:#fff;border:.03125rem #fff solid;margin-right:.625rem;box-shadow:.0625rem .0625rem .125rem rgba(0,0,0,.3)}.bgc-img[data-v-912c10f8]{width:1.5625rem;height:1.5625rem}.first-bgc[data-v-912c10f8]{width:2.5rem;height:2.5rem;display:flex;justify-content:center;align-items:center;background:linear-gradient(to right top,#fda64b,#ffcc80);border-radius:.625rem;border:.0625rem #fff solid;margin-right:.3125rem}.second-bgc[data-v-912c10f8]{width:2.5rem;height:2.5rem;display:flex;justify-content:center;align-items:center;background:linear-gradient(to right top,#ffcc80,#fcb398);border-radius:.625rem;border:.0625rem #fff solid;margin-right:.3125rem}.third-bgc[data-v-912c10f8]{width:2.5rem;height:2.5rem;display:flex;justify-content:center;align-items:center;background:linear-gradient(to right top,#869af3,#98abff);border-radius:.625rem;border:.0625rem #fff solid;margin-right:.3125rem;position:relative}.bgc-white[data-v-912c10f8]{width:2.5rem;height:2.5rem;display:flex;justify-content:center;align-items:center;background-color:rgba(255,255,255,.3);border-radius:.625rem;border:.0625rem #fff solid;margin-right:.3125rem;position:relative}.fourth-bgc[data-v-912c10f8]{width:5.3125rem;height:2.5rem;display:flex;justify-content:center;align-items:center;background:linear-gradient(to right top,#869af3,#98abff);border-radius:.625rem;border:.0625rem #fff solid;margin-right:.3125rem}.fourth-bgc .fourth-bgc-img[data-v-912c10f8]{width:.9375rem;height:1.25rem;margin:0 .3125rem}.fourth-bgc .fourth-bgc-font[data-v-912c10f8]{color:#fff;margin-right:.3125rem}.swiper-double[data-v-912c10f8]{width:90%;display:flex}.red-pao[data-v-912c10f8]{position:absolute;top:-.3125rem;right:-.3125rem;padding:.09375rem .3125rem;background-color:#ff4c4e;color:#fff;font-size:.625rem;border-radius:.625rem;z-index:101}.bug-bottom[data-v-912c10f8]{height:.9375rem}.draw-all[data-v-7e25ad7e]{width:100%;height:100%;display:flex;flex-direction:column;background-color:#fff;border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem;overflow:hidden}.draw-all .draw-flex[data-v-7e25ad7e]{display:flex}.draw-all .draw-contain[data-v-7e25ad7e]{width:100%;height:100vh;background-image:url(../../static/index/fanpink.png);background-repeat:no-repeat;background-attachment:fixed;background-size:cover}.swiper-gray[data-v-7e25ad7e]{color:#596278}.draw-title[data-v-7e25ad7e]{width:100%;height:1.875rem;display:flex;justify-content:space-between;margin-top:2.5rem;margin-left:.625rem}.draw-title .draw-flex[data-v-7e25ad7e]{display:flex}.draw-title .draw-flex .button-first[data-v-7e25ad7e]{width:3.75rem;height:1.875rem;border-radius:.625rem;margin-right:.46875rem;background:linear-gradient(to bottom right,#00c3ac,#28cfb3);color:#fff;display:flex;justify-content:center;align-items:center}.draw-title .draw-flex .button-second[data-v-7e25ad7e]{width:3.75rem;height:1.875rem;border-radius:.625rem;margin-right:.46875rem;background:linear-gradient(to bottom right,#869af3,#8296e9);color:#fff;display:flex;justify-content:center;align-items:center}.draw-title .draw-flex .button-third[data-v-7e25ad7e]{width:3.75rem;height:1.875rem;border-radius:.625rem;margin-right:1.875rem;background:linear-gradient(to bottom right,#ff7a95,#ff9d94);color:#fff;display:flex;justify-content:center;align-items:center}.draw-title .draw-title-gun[data-v-7e25ad7e]{margin-left:.625rem;margin-right:.625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.draw-title .draw-title-font[data-v-7e25ad7e]{font-size:1.09375rem;font-weight:700;margin-top:-.09375rem}.draw-title .draw-title-blue[data-v-7e25ad7e]{height:1.5625rem;width:3.75rem;margin-right:1.5625rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;align-items:center;justify-content:center;border-radius:.3125rem;border:.03125rem solid #fff}.scroll-view[data-v-7e25ad7e]{height:20.3125rem;width:calc(100% - 2.5rem);margin-left:1.25rem;border-radius:1.25rem;border:.0625rem solid #fff;box-shadow:.125rem .25rem .5rem .125rem #839fcc;overflow:hidden}.swiper-card-once[data-v-7e25ad7e]{margin:0 0 .9375rem .9375rem;width:41.875rem;height:8.4375rem;border:.0625rem solid #fff;border-radius:.9375rem;background:url(../../static/index/blueMountain.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;isolation:isolate;box-shadow:.15625rem .15625rem .3125rem #839fcc;overflow:hidden;padding:0 1.25rem}.swiper-card-once .swiper-card-top[data-v-7e25ad7e]{width:100%;height:8.4375rem;display:flex}.swiper-card-once .swiper-card-top .swiper-card-top-card[data-v-7e25ad7e]{width:100%;height:100%}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight[data-v-7e25ad7e]{display:flex;justify-content:space-between;margin:.78125rem 0;font-size:.9375rem;font-weight:500}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-left[data-v-7e25ad7e]{display:flex}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-left .blue-number[data-v-7e25ad7e]{font-size:1rem;font-weight:700;color:#017de9;margin-top:.3125rem}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-right[data-v-7e25ad7e]{color:#ff6000;font-weight:500;font-size:.9375rem}.swiper-card-once .swiper-card-top .swiper-card-top-card .weight-boom[data-v-7e25ad7e]{width:39.6875rem;margin-left:-.3125rem;height:4.375rem;background-color:rgba(131,159,204,.2);border:.0625rem solid #fff;box-shadow:.15625rem .15625rem .3125rem #839fcc;border-radius:.78125rem}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-noral[data-v-7e25ad7e]{margin-left:1.5625rem;display:flex;justify-content:space-between;margin-top:.9375rem;font-size:.78125rem}.swiper-flex[data-v-7e25ad7e]{display:flex;flex-wrap:wrap;margin-left:0}.swiper-flex .swiper-card[data-v-7e25ad7e]{margin:0 0 .9375rem .9375rem;width:39.0625rem;height:7.1875rem;border:.0625rem solid #fff;border-radius:.9375rem;background:url(../../static/index/blueMountain.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;isolation:isolate;box-shadow:.15625rem .15625rem .3125rem #839fcc;overflow:hidden;padding:0 1.25rem}.swiper-flex .swiper-card .swiper-card-top[data-v-7e25ad7e]{width:100%;height:8.4375rem}.swiper-flex .swiper-card .swiper-card-top .swiper-card-top-card[data-v-7e25ad7e]{width:100%;height:100%;display:flex}.index-right-button-blue[data-v-7e25ad7e]{height:1.5625rem;width:3.125rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;align-items:center;justify-content:center;border-radius:.3125rem;border:.03125rem solid #fff}.swiper-all-flex[data-v-7e25ad7e]{display:flex}.card-img-father[data-v-7e25ad7e]{height:100%;width:7.1875rem;display:flex;align-items:center}.card-img-father .card-img[data-v-7e25ad7e]{margin-top:-.46875rem;width:70%;height:70%}.card-right[data-v-7e25ad7e]{width:calc(100% - 7.1875rem);height:100%}.card-right .card-right-title[data-v-7e25ad7e]{width:100%;display:flex;justify-content:space-between;font-weight:700;margin:.9375rem 0}.card-right .card-right-title .title-gray[data-v-7e25ad7e]{color:#596278;font-size:.9375rem}.card-right .card-right-title .title-black[data-v-7e25ad7e]{font-size:.9375rem}.card-right .card-right-other[data-v-7e25ad7e]{margin-top:.625rem;width:100%;display:flex;justify-content:space-between;font-size:.78125rem}.card-right .card-right-other .title-gray[data-v-7e25ad7e]{color:#596278}.card-right .card-right-other .title-green[data-v-7e25ad7e]{color:#647900}.card-right .card-right-other .title-red[data-v-7e25ad7e]{color:#ff4a27}.swiper-button-white[data-v-7e25ad7e]{background:linear-gradient(to bottom,#d5e0f8,#ecf6ff);border:.0625rem solid #fff;border-radius:.625rem;width:6.25rem;height:2.5rem;display:flex;justify-content:center;align-items:center;margin:0 1.25rem 0 .3125rem}.swiper-button-blue[data-v-7e25ad7e]{background:linear-gradient(to bottom,#00c9ff,#0076ff);border:.0625rem solid #fff;border-radius:.625rem;width:6.25rem;height:2.5rem;display:flex;justify-content:center;align-items:center;margin:0 .3125rem;color:#fff}.button-card[data-v-7e25ad7e]{margin-top:.9375rem;display:flex;justify-content:flex-end}.down-note[data-v-7e25ad7e]{width:100%;overflow:hidden;height:5.3125rem;display:flex;align-items:center;position:relative;margin-top:-.3125rem}.down-note-title-input[data-v-7e25ad7e]{width:calc(100% - 3.125rem);margin-left:1.25rem;height:3.75rem;font-size:.84375rem;border:.0625rem #a0adc8 solid;padding:.46875rem 0 .46875rem .625rem;background-color:rgba(234,243,254,.6);border-radius:.9375rem}.char-count[data-v-7e25ad7e]{position:absolute;bottom:.9375rem;right:2.1875rem;color:#999;font-size:.78125rem}.title-button[data-v-7e25ad7e]{height:1.5625rem;width:3.75rem;margin-right:1.5625rem;border:.0625rem solid #fff;border-radius:.46875rem;background:#00aeff;color:#fff;display:flex;justify-content:center;align-items:center}.title-button-red[data-v-7e25ad7e]{height:1.5625rem;width:3.75rem;margin-right:1.5625rem;border:.0625rem solid #fff;border-radius:.46875rem;background:linear-gradient(to bottom,#ff8251,#f52e2c);color:#fff;display:flex;justify-content:center;align-items:center}.draw-red[data-v-7e25ad7e]{color:red;font-size:1.25rem;margin-top:-.3125rem}.draw-all[data-v-034b4de7]{width:100%;height:100%;display:flex;flex-direction:column;background-color:#fff;border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem;overflow:hidden}.draw-all .draw-flex[data-v-034b4de7]{display:flex}.draw-all .draw-contain[data-v-034b4de7]{width:100%;height:100vh;background-image:url(../../static/index/fanpink.png);background-repeat:no-repeat;background-attachment:fixed;background-size:cover}.swiper-gray[data-v-034b4de7]{color:#596278}.draw-title[data-v-034b4de7]{width:100%;height:1.875rem;display:flex;justify-content:space-between;margin-top:2.5rem;margin-left:.625rem}.draw-title .draw-flex[data-v-034b4de7]{display:flex}.draw-title .draw-title-gun[data-v-034b4de7]{margin-left:.625rem;margin-right:.625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.draw-title .draw-title-font[data-v-034b4de7]{font-size:1.09375rem;font-weight:700;margin-top:-.09375rem}.draw-title .draw-title-blue[data-v-034b4de7]{height:1.5625rem;width:3.75rem;margin-right:1.5625rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;align-items:center;justify-content:center;border-radius:.3125rem;border:.03125rem solid #fff}.scroll-view[data-v-034b4de7]{height:20.3125rem;width:calc(100% - 2.5rem);margin-left:1.25rem;border-radius:1.25rem;border:.0625rem solid #fff;box-shadow:.125rem .25rem .5rem .125rem #839fcc;overflow:hidden}.swiper-card-once[data-v-034b4de7]{margin:0 0 .9375rem .9375rem;width:41.875rem;height:8.4375rem;border:.0625rem solid #fff;border-radius:.9375rem;background:url(../../static/index/blueMountain.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;isolation:isolate;box-shadow:.15625rem .15625rem .3125rem #839fcc;overflow:hidden;padding:0 1.25rem}.swiper-card-once .swiper-card-top[data-v-034b4de7]{width:100%;height:8.4375rem;display:flex}.swiper-card-once .swiper-card-top .swiper-card-top-card[data-v-034b4de7]{width:100%;height:100%}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight[data-v-034b4de7]{display:flex;justify-content:space-between;margin:.78125rem 0;font-size:.9375rem;font-weight:500}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-left[data-v-034b4de7]{display:flex}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-left .blue-number[data-v-034b4de7]{font-size:1rem;font-weight:700;color:#017de9;margin-top:.3125rem}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-right[data-v-034b4de7]{color:#ff6000;font-weight:500;font-size:.9375rem}.swiper-card-once .swiper-card-top .swiper-card-top-card .weight-boom[data-v-034b4de7]{width:39.6875rem;margin-left:-.3125rem;height:4.375rem;background-color:rgba(131,159,204,.2);border:.0625rem solid #fff;box-shadow:.15625rem .15625rem .3125rem #839fcc;border-radius:.78125rem}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-noral[data-v-034b4de7]{margin-left:1.5625rem;display:flex;justify-content:space-between;margin-top:.9375rem;font-size:.78125rem}.swiper-flex[data-v-034b4de7]{display:flex;flex-wrap:wrap;margin-left:0}.swiper-flex .swiper-card[data-v-034b4de7]{margin:0 0 .9375rem .9375rem;width:39.0625rem;height:7.1875rem;border:.0625rem solid #fff;border-radius:.9375rem;background:url(../../static/index/blueMountain.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;isolation:isolate;box-shadow:.15625rem .15625rem .3125rem #839fcc;overflow:hidden;padding:0 1.25rem}.swiper-flex .swiper-card .swiper-card-top[data-v-034b4de7]{width:100%;height:8.4375rem}.swiper-flex .swiper-card .swiper-card-top .swiper-card-top-card[data-v-034b4de7]{width:100%;height:100%;display:flex}.index-right-button-blue[data-v-034b4de7]{height:1.5625rem;width:3.125rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;align-items:center;justify-content:center;border-radius:.3125rem;border:.03125rem solid #fff}.swiper-all-flex[data-v-034b4de7]{display:flex}.card-img-father[data-v-034b4de7]{height:100%;width:7.1875rem;display:flex;align-items:center}.card-img-father .card-img[data-v-034b4de7]{margin-top:-.46875rem;width:70%;height:70%}.card-right[data-v-034b4de7]{width:calc(100% - 7.1875rem);height:100%}.card-right .card-right-title[data-v-034b4de7]{width:100%;display:flex;justify-content:space-between;font-weight:700;margin:.9375rem 0}.card-right .card-right-title .title-gray[data-v-034b4de7]{color:#596278;font-size:.9375rem}.card-right .card-right-title .title-black[data-v-034b4de7]{font-size:.9375rem}.card-right .card-right-other[data-v-034b4de7]{margin-top:.625rem;width:100%;display:flex;justify-content:space-between;font-size:.78125rem}.card-right .card-right-other .title-gray[data-v-034b4de7]{color:#596278}.card-right .card-right-other .title-green[data-v-034b4de7]{color:#647900}.card-right .card-right-other .title-red[data-v-034b4de7]{color:#ff4a27}.swiper-button-white[data-v-034b4de7]{background:linear-gradient(to bottom,#d5e0f8,#ecf6ff);border:.0625rem solid #fff;border-radius:.625rem;width:6.25rem;height:2.5rem;display:flex;justify-content:center;align-items:center;margin:0 .3125rem}.swiper-button-blue[data-v-034b4de7]{background:linear-gradient(to bottom,#ff8251,#f52e2c);border:.0625rem solid #fff;border-radius:.625rem;width:6.25rem;height:2.5rem;display:flex;justify-content:center;align-items:center;margin:0 1.25rem 0 .3125rem;color:#fff}.button-card[data-v-034b4de7]{margin-top:.9375rem;display:flex;justify-content:flex-end}.down-note[data-v-034b4de7]{width:100%;overflow:hidden;height:5.3125rem;display:flex;align-items:center;position:relative;margin-top:-.3125rem}.down-note-title-input[data-v-034b4de7]{width:calc(100% - 3.125rem);margin-left:1.25rem;height:3.75rem;font-size:.84375rem;border:.0625rem #a0adc8 solid;padding:.46875rem 0 .46875rem .625rem;background-color:rgba(234,243,254,.6);border-radius:.9375rem}.char-count[data-v-034b4de7]{position:absolute;bottom:.9375rem;right:2.1875rem;color:#999;font-size:.78125rem}.draw-red[data-v-034b4de7]{color:red;font-size:1.25rem;margin-top:-.3125rem}.draw-all[data-v-4605a6eb]{width:100%;height:100%;display:flex;flex-direction:column;background-color:#fff;border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem;overflow:hidden}.draw-all .draw-flex[data-v-4605a6eb]{display:flex}.draw-all .draw-contain[data-v-4605a6eb]{width:100%;height:100vh;background-image:url(../../static/index/fanpink.png);background-repeat:no-repeat;background-attachment:fixed;background-size:cover}.swiper-gray[data-v-4605a6eb]{color:#596278}.draw-title[data-v-4605a6eb]{width:100%;height:1.875rem;display:flex;justify-content:space-between;margin-top:2.5rem;margin-left:.625rem}.draw-title .draw-flex[data-v-4605a6eb]{display:flex}.draw-title .draw-title-gun[data-v-4605a6eb]{margin-left:.625rem;margin-right:.625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.draw-title .draw-title-font[data-v-4605a6eb]{font-size:1.09375rem;font-weight:700;margin-top:-.09375rem}.draw-title .draw-title-blue[data-v-4605a6eb]{height:1.5625rem;width:3.75rem;margin-right:1.5625rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;align-items:center;justify-content:center;border-radius:.3125rem;border:.03125rem solid #fff}.scroll-view[data-v-4605a6eb]{height:20.3125rem;width:calc(100% - 2.5rem);margin-left:1.25rem;border-radius:1.25rem;border:.0625rem solid #fff;box-shadow:.125rem .25rem .5rem .125rem #839fcc;overflow:hidden}.swiper-card-once[data-v-4605a6eb]{margin:1.875rem 0 .9375rem .9375rem;width:34.375rem;height:6.875rem;border:.0625rem solid #fff;border-radius:.9375rem;background:url(../../static/index/blueMountain.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;isolation:isolate;box-shadow:.15625rem .15625rem .3125rem #839fcc;overflow:hidden;padding:0 1.25rem}.swiper-card-once .swiper-card-top[data-v-4605a6eb]{width:100%;height:6.875rem;display:flex}.swiper-card-once .swiper-card-top .swiper-card-top-card[data-v-4605a6eb]{width:100%;height:100%}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight[data-v-4605a6eb]{display:flex;justify-content:space-between;margin:.78125rem 0;font-size:.9375rem;font-weight:500}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-left[data-v-4605a6eb]{display:flex}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-left .blue-number[data-v-4605a6eb]{font-size:1rem;font-weight:700;color:#017de9;margin-top:.3125rem}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-right[data-v-4605a6eb]{color:#ff6000;font-weight:500;font-size:.9375rem}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-noral[data-v-4605a6eb]{display:flex;justify-content:space-between;margin-top:.9375rem;font-size:.78125rem}.swiper-flex[data-v-4605a6eb]{display:flex;flex-wrap:wrap;margin-left:0}.swiper-flex .swiper-card[data-v-4605a6eb]{margin:0 0 .9375rem .9375rem;width:31.5625rem;height:8.125rem;border:.0625rem solid #fff;border-radius:.9375rem;background:url(../../static/index/blueMountain.png) center / cover,rgba(255,255,255,.6);background-blend-mode:screen;isolation:isolate;box-shadow:.15625rem .15625rem .3125rem #839fcc;overflow:hidden;padding:0 1.25rem}.swiper-flex .swiper-card .swiper-card-top[data-v-4605a6eb]{width:100%;height:8.4375rem}.swiper-flex .swiper-card .swiper-card-top .swiper-card-top-card[data-v-4605a6eb]{width:100%;height:100%;display:flex}.index-right-button-blue[data-v-4605a6eb]{height:1.5625rem;width:3.125rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;align-items:center;justify-content:center;border-radius:.3125rem;border:.03125rem solid #fff}.swiper-all-flex[data-v-4605a6eb]{display:flex}.card-img-father[data-v-4605a6eb]{height:100%;width:6.5625rem}.card-img-father .card-img-bgc[data-v-4605a6eb]{margin-top:.625rem;margin-left:-.46875rem;display:flex;width:6.25rem;height:6.875rem;align-items:center;justify-content:center;background-color:#eef3fd;border-radius:.78125rem;box-shadow:.0625rem .0625rem .125rem #839fcc}.card-img-father .card-img[data-v-4605a6eb]{width:4.0625rem;height:4.0625rem}.card-right[data-v-4605a6eb]{width:calc(100% - 7.1875rem);height:100%}.card-right .card-right-title[data-v-4605a6eb]{width:100%;display:flex;justify-content:space-between;font-weight:700;margin-top:.625rem;margin-bottom:.15625rem}.card-right .card-right-title .title-gray[data-v-4605a6eb]{color:#596278;font-size:.9375rem}.card-right .card-right-title .title-black[data-v-4605a6eb]{font-size:.9375rem}.card-right .card-right-other[data-v-4605a6eb]{margin-top:.46875rem;width:100%;display:flex;justify-content:space-between;font-size:.78125rem}.card-right .card-right-other .title-gray[data-v-4605a6eb]{color:#596278}.card-right .card-right-other .title-green[data-v-4605a6eb]{color:#647900}.card-right .card-right-other .title-red[data-v-4605a6eb]{color:#ff4a27}.swiper-button-white[data-v-4605a6eb]{background:linear-gradient(to bottom,#d5e0f8,#ecf6ff);border:.0625rem solid #fff;border-radius:.625rem;width:6.25rem;height:2.5rem;display:flex;justify-content:center;align-items:center;margin-right:.625rem}.swiper-button-blue[data-v-4605a6eb]{background:linear-gradient(to bottom,#ff8251,#f52e2c);border:.0625rem solid #fff;border-radius:.625rem;width:6.25rem;height:2.5rem;display:flex;justify-content:center;align-items:center;margin:0 1.25rem 0 .3125rem;color:#fff}.button-card[data-v-4605a6eb]{margin-top:.9375rem;display:flex;justify-content:flex-end}.down-note[data-v-4605a6eb]{width:100%;overflow:hidden;height:5.3125rem;align-items:center;position:relative;margin-top:-.3125rem;display:flex}.down-note .down-note-img[data-v-4605a6eb]{width:1.875rem;height:1.875rem}.down-note .down-note-photo[data-v-4605a6eb]{height:4.6875rem;width:6.25rem;margin:0 .3125rem}.green-font[data-v-4605a6eb]{color:#28cfb3}.pouple-font[data-v-4605a6eb]{color:#8296e9}.radio-circle-top-father[data-v-4605a6eb]{display:flex;margin:0 0 0 2.5rem;height:1.5625rem}.radio-circle-top-father .radio-circle-top[data-v-4605a6eb]{display:flex}.radio-circle-top-father .radio-circle[data-v-4605a6eb],.radio-circle-top-father .radio-circle-target[data-v-4605a6eb]{position:relative;margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid #02abfe;background-color:transparent}.radio-circle-top-father .radio-circle-target[data-v-4605a6eb]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.625rem;height:.625rem;background-color:#02abfe;border-radius:50%}.radio-circle-top-father .radio-font[data-v-4605a6eb]{margin-left:.46875rem;margin-right:1.875rem;width:12.5rem;font-size:.78125rem}.ruku-time[data-v-4605a6eb]{display:flex;justify-content:space-between;width:100%;height:1.875rem}.ruku-time .ruku-time-font[data-v-4605a6eb]{font-size:.9375rem;font-weight:500}.ruku-time .ruku-time-weight[data-v-4605a6eb]{font-size:.9375rem;font-weight:700}.ruku-time .button-first[data-v-4605a6eb]{width:3.75rem;height:1.5625rem;border-radius:.46875rem;margin-right:.46875rem;background:linear-gradient(to bottom right,#00c3ac,#28cfb3);color:#fff;display:flex;justify-content:center;align-items:center;margin-right:1.25rem;margin-top:-.15625rem}.title-weight-red[data-v-4605a6eb]{color:#ff4a27}.card-right-bgc[data-v-4605a6eb]{width:22.8125rem;height:5.46875rem;background-color:#eef3fd;border-radius:.78125rem;border:.0625rem solid #fff}.boom-other[data-v-4605a6eb]{width:22.71875rem;height:1.71875rem;display:flex}.boom-other .boom-other-card[data-v-4605a6eb]{width:7.8125rem;display:flex;align-items:center}.boom-other .boom-other-card .boom-other-img[data-v-4605a6eb]{width:.9375rem;height:.9375rem;margin-left:.46875rem}.boom-other .boom-other-card .boom-other-font[data-v-4605a6eb]{margin-left:.15625rem;font-size:.78125rem}.boom-other .boom-other-card .boom-other-weight[data-v-4605a6eb]{font-weight:700;margin-left:.9375rem}.card-boom[data-v-4605a6eb]{margin-top:-.46875rem;width:22.71875rem;height:3.75rem;border-radius:.78125rem;background-color:#dae2f5}.white-shu[data-v-4605a6eb]{width:.0625rem;height:1.25rem;background-color:#fff;margin:.25rem .15625rem 0}.draw-all[data-v-1773957a]{width:100%;height:100%;display:flex;flex-direction:column;background-color:#fff;border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem;overflow:hidden}.draw-all .draw-flex[data-v-1773957a]{display:flex}.draw-all .draw-contain[data-v-1773957a]{width:100%;height:100vh;background-image:url(../../static/index/fanpink.png);background-repeat:no-repeat;background-attachment:fixed;background-size:cover}.swiper-gray[data-v-1773957a]{color:#596278}.draw-title[data-v-1773957a]{width:100%;height:1.875rem;display:flex;justify-content:space-between;margin-top:2.5rem;margin-left:.625rem}.draw-title .draw-flex[data-v-1773957a]{display:flex}.draw-title .draw-title-gun[data-v-1773957a]{margin-left:.625rem;margin-right:.625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.draw-title .draw-title-font[data-v-1773957a]{font-size:1.09375rem;font-weight:700;margin-top:-.09375rem}.draw-title .draw-title-blue[data-v-1773957a]{height:1.5625rem;width:3.75rem;margin-right:1.5625rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;align-items:center;justify-content:center;border-radius:.3125rem;border:.03125rem solid #fff}.scroll-view[data-v-1773957a]{height:30.625rem;width:calc(100% - 2.5rem);margin-left:1.25rem;border-radius:1.25rem;border:.0625rem solid #fff;box-shadow:.125rem .25rem .5rem .125rem #839fcc;overflow:hidden}.scroll-view .card-father[data-v-1773957a]{margin:.3125rem 0 .625rem .71875rem;width:25rem;height:10.9375rem;border-radius:.9375rem;box-shadow:.125rem .25rem .5rem .125rem #839fcc;background:url(../../static/index/blueMountain.png) center / cover,rgba(255,255,255,.7);background-blend-mode:screen;isolation:isolate;display:flex;flex-direction:column}.scroll-view .card-father .down-title[data-v-1773957a]{width:100%;height:2.5rem;padding:0 1.5625rem;display:flex;justify-content:space-between}.scroll-view .card-father .down-title .down-title-flex[data-v-1773957a]{display:flex;align-items:center}.scroll-view .card-father .down-title .down-title-photo[data-v-1773957a]{width:.9375rem;height:.9375rem}.scroll-view .card-father .card-white[data-v-1773957a]{width:23.125rem;height:7.8125rem;margin-top:.625rem;margin-left:.9375rem;background-color:#fff;border-radius:.9375rem;display:flex;justify-content:center;align-items:center}.scroll-view .card-father .card-white .card-white-photo[data-v-1773957a]{width:8.125rem;height:5.625rem}.swiper-card-once[data-v-1773957a]{margin:.625rem 0 0 .9375rem;width:27.1875rem;height:6.875rem;border:.0625rem solid #fff;border-radius:.9375rem;background:url(../../static/index/blueMountain.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;isolation:isolate;box-shadow:.15625rem .15625rem .3125rem #839fcc;overflow:hidden;padding:0 1.25rem}.swiper-card-once .swiper-card-top[data-v-1773957a]{width:100%;height:6.875rem;display:flex}.swiper-card-once .swiper-card-top .swiper-card-top-card[data-v-1773957a]{width:100%;height:100%}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight[data-v-1773957a]{display:flex;justify-content:space-between;margin:.78125rem 0;font-size:.9375rem;font-weight:500}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-left[data-v-1773957a]{display:flex}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-left .blue-number[data-v-1773957a]{font-size:1rem;font-weight:700;color:#017de9;margin-top:.3125rem}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-right[data-v-1773957a]{color:#ff6000;font-weight:500;font-size:.9375rem}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-noral[data-v-1773957a]{display:flex;justify-content:space-between;margin-top:.9375rem;font-size:.78125rem}.swiper-flex[data-v-1773957a]{display:flex;flex-wrap:wrap;margin-left:0}.swiper-flex .swiper-card[data-v-1773957a]{margin:0 0 .9375rem .9375rem;width:31.5625rem;height:8.125rem;border:.0625rem solid #fff;border-radius:.9375rem;background:url(../../static/index/blueMountain.png) center / cover,rgba(255,255,255,.6);background-blend-mode:screen;isolation:isolate;box-shadow:.15625rem .15625rem .3125rem #839fcc;overflow:hidden;padding:0 1.25rem}.swiper-flex .swiper-card .swiper-card-top[data-v-1773957a]{width:100%;height:8.4375rem}.swiper-flex .swiper-card .swiper-card-top .swiper-card-top-card[data-v-1773957a]{width:100%;height:100%;display:flex}.index-right-button-blue[data-v-1773957a]{height:1.5625rem;width:3.125rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;align-items:center;justify-content:center;border-radius:.3125rem;border:.03125rem solid #fff}.swiper-all-flex[data-v-1773957a]{display:flex}.card-img-father[data-v-1773957a]{height:100%;width:6.5625rem}.card-img-father .card-img-bgc[data-v-1773957a]{margin-top:.625rem;margin-left:-.46875rem;display:flex;width:6.25rem;height:6.875rem;align-items:center;justify-content:center;background-color:#eef3fd;border-radius:.78125rem;box-shadow:.0625rem .0625rem .125rem #839fcc}.card-img-father .card-img[data-v-1773957a]{width:4.0625rem;height:4.0625rem}.card-right[data-v-1773957a]{width:calc(100% - 7.1875rem);height:100%}.card-right .card-right-title[data-v-1773957a]{width:100%;display:flex;justify-content:space-between;font-weight:700;margin-top:.625rem;margin-bottom:.15625rem}.card-right .card-right-title .title-gray[data-v-1773957a]{color:#596278;font-size:.9375rem}.card-right .card-right-title .title-black[data-v-1773957a]{font-size:.9375rem}.card-right .card-right-other[data-v-1773957a]{margin-top:.46875rem;width:100%;display:flex;justify-content:space-between;font-size:.78125rem}.card-right .card-right-other .title-gray[data-v-1773957a]{color:#596278}.card-right .card-right-other .title-green[data-v-1773957a]{color:#647900}.card-right .card-right-other .title-red[data-v-1773957a]{color:#ff4a27}.swiper-button-white[data-v-1773957a]{background:linear-gradient(to bottom,#d5e0f8,#ecf6ff);border:.0625rem solid #fff;border-radius:.625rem;width:6.25rem;height:2.5rem;display:flex;justify-content:center;align-items:center;margin-right:.625rem}.swiper-button-blue[data-v-1773957a]{background:linear-gradient(to bottom,#ff8251,#f52e2c);border:.0625rem solid #fff;border-radius:.625rem;width:6.25rem;height:2.5rem;display:flex;justify-content:center;align-items:center;margin:0 1.25rem 0 .3125rem;color:#fff}.button-card[data-v-1773957a]{margin-top:.9375rem;display:flex;justify-content:flex-end}.down-note[data-v-1773957a]{width:100%;overflow:hidden;height:5.3125rem;align-items:center;position:relative;margin-top:-.3125rem;display:flex}.down-note .down-note-img[data-v-1773957a]{width:1.875rem;height:1.875rem}.down-note .down-note-photo[data-v-1773957a]{height:4.6875rem;width:6.25rem;margin:0 .3125rem}.green-font[data-v-1773957a]{color:#28cfb3}.radio-circle-top-father[data-v-1773957a]{display:flex;margin:0 0 0 2.5rem;height:1.5625rem}.radio-circle-top-father .radio-circle-top[data-v-1773957a]{display:flex}.radio-circle-top-father .radio-circle[data-v-1773957a],.radio-circle-top-father .radio-circle-target[data-v-1773957a]{position:relative;margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid #02abfe;background-color:transparent}.radio-circle-top-father .radio-circle-target[data-v-1773957a]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.625rem;height:.625rem;background-color:#02abfe;border-radius:50%}.radio-circle-top-father .radio-font[data-v-1773957a]{margin-left:.46875rem;margin-right:1.875rem;width:12.5rem;font-size:.78125rem}.ruku-time[data-v-1773957a]{display:flex;justify-content:space-between;width:100%;height:1.875rem}.ruku-time .ruku-time-font[data-v-1773957a]{font-size:.9375rem;font-weight:500}.ruku-time .ruku-time-weight[data-v-1773957a]{font-size:.9375rem;font-weight:700}.ruku-time .button-first[data-v-1773957a]{width:3.75rem;height:1.5625rem;border-radius:.625rem;margin-right:.46875rem;background:linear-gradient(to bottom right,#00c3ac,#28cfb3);color:#fff;display:flex;justify-content:center;align-items:center;margin-right:1.25rem;margin-top:-.15625rem}.title-weight-red[data-v-1773957a]{color:#ff4a27}.card-right-bgc[data-v-1773957a]{width:22.8125rem;height:5.46875rem;background-color:#eef3fd;border-radius:.78125rem;border:.0625rem solid #fff}.boom-other[data-v-1773957a]{width:22.71875rem;height:1.71875rem;display:flex}.boom-other .boom-other-card[data-v-1773957a]{width:7.8125rem;display:flex;align-items:center}.boom-other .boom-other-card .boom-other-img[data-v-1773957a]{width:.9375rem;height:.9375rem;margin-left:.46875rem}.boom-other .boom-other-card .boom-other-font[data-v-1773957a]{margin-left:.15625rem;font-size:.78125rem}.boom-other .boom-other-card .boom-other-weight[data-v-1773957a]{font-weight:700;margin-left:.9375rem}.card-boom[data-v-1773957a]{margin-top:-.46875rem;width:22.71875rem;height:3.75rem;border-radius:.78125rem;background-color:#dae2f5}.white-shu[data-v-1773957a]{width:.0625rem;height:1.25rem;background-color:#fff;margin:.25rem .15625rem 0}.draw-all[data-v-ee45895e]{width:100%;height:100%;display:flex;flex-direction:column;background-color:#fff;border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem;overflow:hidden}.draw-all .draw-flex[data-v-ee45895e]{display:flex}.draw-all .draw-contain[data-v-ee45895e]{width:100%;height:100vh;background-image:url(../../static/index/fanpink.png);background-repeat:no-repeat;background-attachment:fixed;background-size:cover}.swiper-gray[data-v-ee45895e]{color:#596278}.draw-title[data-v-ee45895e]{width:100%;height:1.875rem;display:flex;justify-content:space-between;margin-top:2.5rem;margin-left:.625rem}.draw-title .draw-flex[data-v-ee45895e]{display:flex}.draw-title .draw-title-gun[data-v-ee45895e]{margin-left:.625rem;margin-right:.625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.draw-title .draw-title-font[data-v-ee45895e]{font-size:1.09375rem;font-weight:700;margin-top:-.09375rem}.draw-title .draw-title-blue[data-v-ee45895e]{height:1.5625rem;width:3.75rem;margin-right:1.5625rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;align-items:center;justify-content:center;border-radius:.3125rem;border:.03125rem solid #fff}.scroll-view[data-v-ee45895e]{height:30rem;width:calc(100% - 2.5rem);margin-left:1.25rem;border-radius:1.25rem;border:.0625rem solid #fff;box-shadow:.125rem .25rem .5rem .125rem #839fcc;overflow:hidden}.swiper-card-once[data-v-ee45895e]{margin:1.875rem 0 .9375rem .9375rem;width:34.375rem;height:6.875rem;border:.0625rem solid #fff;border-radius:.9375rem;background:url(../../static/index/blueMountain.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;isolation:isolate;box-shadow:.15625rem .15625rem .3125rem #839fcc;overflow:hidden;padding:0 1.25rem}.swiper-card-once .swiper-card-top[data-v-ee45895e]{width:100%;height:6.875rem;display:flex}.swiper-card-once .swiper-card-top .swiper-card-top-card[data-v-ee45895e]{width:100%;height:100%}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight[data-v-ee45895e]{display:flex;justify-content:space-between;margin:.78125rem 0;font-size:.9375rem;font-weight:500}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-left[data-v-ee45895e]{display:flex}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-left .blue-number[data-v-ee45895e]{font-size:1rem;font-weight:700;color:#017de9;margin-top:.3125rem}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-right[data-v-ee45895e]{color:#ff6000;font-weight:500;font-size:.9375rem}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-noral[data-v-ee45895e]{display:flex;justify-content:space-between;margin-top:.9375rem;font-size:.78125rem}.swiper-flex[data-v-ee45895e]{display:flex;flex-wrap:wrap;margin-left:0}.swiper-flex .swiper-card[data-v-ee45895e]{margin:0 0 .9375rem .9375rem;width:31.5625rem;height:8.125rem;border:.0625rem solid #fff;border-radius:.9375rem;background:url(../../static/index/blueMountain.png) center / cover,rgba(255,255,255,.6);background-blend-mode:screen;isolation:isolate;box-shadow:.15625rem .15625rem .3125rem #839fcc;overflow:hidden;padding:0 1.25rem}.swiper-flex .swiper-card .swiper-card-top[data-v-ee45895e]{width:100%;height:8.4375rem}.swiper-flex .swiper-card .swiper-card-top .swiper-card-top-card[data-v-ee45895e]{width:100%;height:100%;display:flex}.index-right-button-blue[data-v-ee45895e]{height:1.5625rem;width:3.125rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;align-items:center;justify-content:center;border-radius:.3125rem;border:.03125rem solid #fff}.swiper-all-flex[data-v-ee45895e]{display:flex}.card-img-father[data-v-ee45895e]{height:100%;width:6.5625rem}.card-img-father .card-img-bgc[data-v-ee45895e]{margin-top:.625rem;margin-left:-.46875rem;display:flex;width:6.25rem;height:6.875rem;align-items:center;justify-content:center;background-color:#eef3fd;border-radius:.78125rem;box-shadow:.0625rem .0625rem .125rem #839fcc}.card-img-father .card-img[data-v-ee45895e]{width:4.0625rem;height:4.0625rem}.card-right[data-v-ee45895e]{width:calc(100% - 7.1875rem);height:100%}.card-right .card-right-title[data-v-ee45895e]{width:100%;display:flex;justify-content:space-between;font-weight:700;margin-top:.625rem;margin-bottom:.15625rem}.card-right .card-right-title .title-gray[data-v-ee45895e]{color:#596278;font-size:.9375rem}.card-right .card-right-title .title-black[data-v-ee45895e]{font-size:.9375rem}.card-right .card-right-other[data-v-ee45895e]{margin-top:.46875rem;width:100%;display:flex;justify-content:space-between;font-size:.78125rem}.card-right .card-right-other .title-gray[data-v-ee45895e]{color:#596278}.card-right .card-right-other .title-green[data-v-ee45895e]{color:#647900}.card-right .card-right-other .title-red[data-v-ee45895e]{color:#ff4a27}.swiper-button-white[data-v-ee45895e]{background:linear-gradient(to bottom,#d5e0f8,#ecf6ff);border:.0625rem solid #fff;border-radius:.625rem;width:6.25rem;height:2.5rem;display:flex;justify-content:center;align-items:center;margin-right:.625rem}.swiper-button-blue[data-v-ee45895e]{background:linear-gradient(to bottom,#ff8251,#f52e2c);border:.0625rem solid #fff;border-radius:.625rem;width:6.25rem;height:2.5rem;display:flex;justify-content:center;align-items:center;margin:0 1.25rem 0 .3125rem;color:#fff}.button-card[data-v-ee45895e]{margin-top:.9375rem;display:flex;justify-content:flex-end}.down-note[data-v-ee45895e]{width:100%;overflow:hidden;height:5.3125rem;align-items:center;position:relative;margin-top:-.3125rem;display:flex}.down-note .down-note-img[data-v-ee45895e]{width:1.875rem;height:1.875rem}.down-note .down-note-photo[data-v-ee45895e]{height:4.6875rem;width:6.25rem;margin:0 .3125rem}.green-font[data-v-ee45895e]{background-image:linear-gradient(to bottom right,#ff7a95,#ff9d94);-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:transparent;color:transparent}.radio-circle-top-father[data-v-ee45895e]{display:flex;margin:0 0 0 2.5rem;height:1.5625rem}.radio-circle-top-father .radio-circle-top[data-v-ee45895e]{display:flex}.radio-circle-top-father .radio-circle[data-v-ee45895e],.radio-circle-top-father .radio-circle-target[data-v-ee45895e]{position:relative;margin-top:.0625rem;width:.9375rem;height:.9375rem;border-radius:50%;border:.0625rem solid #02abfe;background-color:transparent}.radio-circle-top-father .radio-circle-target[data-v-ee45895e]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.625rem;height:.625rem;background-color:#02abfe;border-radius:50%}.radio-circle-top-father .radio-font[data-v-ee45895e]{margin-left:.46875rem;margin-right:1.875rem;width:12.5rem;font-size:.78125rem}.ruku-time[data-v-ee45895e]{display:flex;justify-content:space-between;width:100%;height:1.875rem}.ruku-time .ruku-time-font[data-v-ee45895e]{font-size:.9375rem;font-weight:500}.ruku-time .ruku-time-weight[data-v-ee45895e]{font-size:.9375rem;font-weight:700}.ruku-time .button-first[data-v-ee45895e]{width:3.75rem;height:1.5625rem;border-radius:.46875rem;margin-right:.46875rem;background:linear-gradient(to bottom right,#00c3ac,#28cfb3);color:#fff;display:flex;justify-content:center;align-items:center;margin-right:1.25rem;margin-top:-.15625rem}.title-weight-red[data-v-ee45895e]{color:#ff4a27}.card-right-bgc[data-v-ee45895e]{width:22.8125rem;height:5.46875rem;background-color:#eef3fd;border-radius:.78125rem;border:.0625rem solid #fff}.boom-other[data-v-ee45895e]{width:22.71875rem;height:1.71875rem;display:flex}.boom-other .boom-other-card[data-v-ee45895e]{width:7.8125rem;display:flex;align-items:center}.boom-other .boom-other-card .boom-other-img[data-v-ee45895e]{width:.9375rem;height:.9375rem;margin-left:.46875rem}.boom-other .boom-other-card .boom-other-font[data-v-ee45895e]{margin-left:.15625rem;font-size:.78125rem}.boom-other .boom-other-card .boom-other-weight[data-v-ee45895e]{font-weight:700;margin-left:.9375rem}.card-boom[data-v-ee45895e]{margin-top:-.46875rem;width:22.71875rem;height:3.75rem;border-radius:.78125rem;background-color:#dae2f5}.white-shu[data-v-ee45895e]{width:.0625rem;height:1.25rem;background-color:#fff;margin:.25rem .15625rem 0}.draw-all[data-v-72acf113]{width:100%;height:100%;display:flex;flex-direction:column;background-color:#fff;border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem;overflow:hidden}.draw-all .draw-flex[data-v-72acf113]{display:flex}.draw-all .draw-flex .button-first[data-v-72acf113]{width:4.375rem;height:1.875rem;border-radius:.625rem;margin-right:.46875rem;background:linear-gradient(to bottom right,#00c3ac,#28cfb3);color:#fff;display:flex;justify-content:center;align-items:center;margin-left:2.5rem}.draw-all .draw-flex .button-second[data-v-72acf113]{width:4.375rem;height:1.875rem;border-radius:.625rem;margin-right:.46875rem;background:linear-gradient(to bottom right,#869af3,#8296e9);color:#fff;display:flex;justify-content:center;align-items:center}.draw-all .draw-flex .button-third[data-v-72acf113]{width:4.375rem;height:1.875rem;border-radius:.625rem;margin-right:.46875rem;background:linear-gradient(to bottom right,#ff9d94,#ff7a95);color:#fff;display:flex;justify-content:center;align-items:center}.draw-all .draw-flex .button-blue[data-v-72acf113]{width:4.375rem;height:1.875rem;border-radius:.625rem;margin-right:.46875rem;background:linear-gradient(to bottom right,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center}.draw-all .draw-contain[data-v-72acf113]{width:100%;height:100vh;background-image:url(../../static/index/fanpink.png);background-repeat:no-repeat;background-attachment:fixed;background-size:cover}.swiper-gray[data-v-72acf113]{color:#596278}.draw-title[data-v-72acf113]{width:100%;height:1.875rem;display:flex;justify-content:space-between;margin-top:2.5rem;margin-left:.625rem}.draw-title .draw-flex[data-v-72acf113]{display:flex}.draw-title .draw-title-gun[data-v-72acf113]{margin-left:.625rem;margin-right:.625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.draw-title .draw-title-font[data-v-72acf113]{font-size:1.09375rem;font-weight:700;margin-top:-.09375rem}.draw-title .draw-title-blue[data-v-72acf113]{height:1.5625rem;width:3.75rem;margin-right:1.5625rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;align-items:center;justify-content:center;border-radius:.3125rem;border:.03125rem solid #fff}.scroll-view[data-v-72acf113]{height:31.25rem;width:calc(100% - 2.5rem);margin-left:1.25rem;border-radius:1.25rem;border:.0625rem solid #fff;box-shadow:.125rem .25rem .5rem .125rem #839fcc;overflow:hidden;background-color:#fff}.swiper-card-once[data-v-72acf113]{margin:0 0 .9375rem .9375rem;width:41.875rem;height:7.5rem;border:.0625rem solid #fff;border-radius:.9375rem;background:rgba(255,255,255,.5);box-shadow:.15625rem .15625rem .3125rem #839fcc;overflow:hidden;padding-left:1.25rem}.swiper-card-once .swiper-card-top[data-v-72acf113]{width:100%;height:8.4375rem;display:flex}.swiper-card-once .swiper-card-top .swiper-card-top-card[data-v-72acf113]{width:100%;height:100%}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight[data-v-72acf113]{display:flex;justify-content:space-between;font-size:.9375rem;font-weight:500}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-left[data-v-72acf113]{display:flex;margin:.78125rem 0}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-left .blue-number[data-v-72acf113]{font-size:1rem;font-weight:700;color:#017de9;margin-top:.3125rem}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-right[data-v-72acf113]{width:12.5rem;height:2.8125rem;background-image:url(../../static/index/caigoubgc.png);background-repeat:repeat;background-position:top left;background-size:27.5rem 2.8125rem;display:flex;align-items:center}.swiper-card-once .swiper-card-top .swiper-card-top-card .weight-boom[data-v-72acf113]{width:39.6875rem;margin-left:-.3125rem;height:4.375rem;background-color:rgba(131,159,204,.2);border:.0625rem solid #fff;box-shadow:.15625rem .15625rem .3125rem #839fcc;border-radius:.78125rem}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-noral[data-v-72acf113]{margin-left:1.5625rem;display:flex;justify-content:space-between;margin-top:.9375rem;font-size:.78125rem}.swiper-flex[data-v-72acf113]{display:flex;flex-wrap:wrap;margin-left:0}.swiper-flex .swiper-card[data-v-72acf113]{margin:.625rem 0 0 .625rem;width:19.53125rem;height:10.78125rem;border-radius:.9375rem;background:#869af3 url(../../static/index/warehouseCard/bgcblueblue.png) center / cover;box-shadow:.0625rem .0625rem .125rem rgba(0,0,0,.3);display:flex;flex-direction:column;position:relative;overflow:hidden}.swiper-flex .swiper-card .swiper-card-left[data-v-72acf113]{height:100%;width:12.5rem}.swiper-flex .swiper-card .swiper-card-left .swiper-card-left-white[data-v-72acf113]{margin:-.46875rem 0 .625rem .9375rem;width:6.25rem;height:8.75rem;display:flex;border-radius:.9375rem;justify-content:center;align-items:center}.swiper-flex .swiper-card .swiper-card-left .swiper-card-left-white .swiper-card-left-white-img-first[data-v-72acf113]{width:6.25rem;height:6.25rem;box-shadow:.0625rem .0625rem .125rem .0625rem rgba(1,178,255,.2);border-radius:.625rem}.swiper-flex .swiper-card .swiper-card-left .swiper-card-left-white .swiper-card-left-white-img-second[data-v-72acf113]{width:6.25rem;height:6.25rem;box-shadow:.0625rem .0625rem .125rem .0625rem rgba(11,206,184,.2);border-radius:.625rem}.swiper-flex .swiper-card .swiper-card-left .swiper-card-left-white .swiper-card-left-white-img-third[data-v-72acf113]{width:6.25rem;height:6.25rem;box-shadow:.0625rem .0625rem .125rem .0625rem rgba(188,163,246,.2);border-radius:.625rem}.swiper-flex .swiper-card .swiper-card-right[data-v-72acf113]{height:100%;width:18.75rem}.index-right-button-blue[data-v-72acf113]{height:1.5625rem;width:3.125rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;align-items:center;justify-content:center;border-radius:.3125rem;border:.03125rem solid #fff}.swiper-all-flex[data-v-72acf113]{display:flex}.card-img-father[data-v-72acf113]{height:100%;width:7.1875rem;display:flex;align-items:center}.card-img-father .card-img[data-v-72acf113]{margin-top:-.46875rem;width:70%;height:70%}.card-right[data-v-72acf113]{width:calc(100% - 7.1875rem);height:100%}.card-right .card-right-title[data-v-72acf113]{width:100%;display:flex;justify-content:space-between;font-weight:700;margin:.9375rem 0}.card-right .card-right-title .title-gray[data-v-72acf113]{color:#596278;font-size:.9375rem}.card-right .card-right-title .title-black[data-v-72acf113]{font-size:.9375rem}.card-right .card-right-other[data-v-72acf113]{margin-top:.625rem;width:100%;display:flex;justify-content:space-between;font-size:.78125rem}.card-right .card-right-other .title-gray[data-v-72acf113]{color:#596278}.card-right .card-right-other .title-green[data-v-72acf113]{color:#647900}.card-right .card-right-other .title-red[data-v-72acf113]{color:#ff4a27}.swiper-button-white[data-v-72acf113]{background:linear-gradient(to bottom,#d5e0f8,#ecf6ff);border:.0625rem solid #fff;border-radius:.625rem;width:6.25rem;height:2.5rem;display:flex;justify-content:center;align-items:center;margin:0 1.25rem 0 .3125rem}.swiper-button-blue[data-v-72acf113]{background:linear-gradient(to bottom,#00c9ff,#0076ff);border:.0625rem solid #fff;border-radius:.625rem;width:6.25rem;height:2.5rem;display:flex;justify-content:center;align-items:center;margin:0 .3125rem;color:#fff}.button-card[data-v-72acf113]{margin-top:.9375rem;display:flex;justify-content:flex-end}.down-note[data-v-72acf113]{width:100%;overflow:hidden;height:5.3125rem;display:flex;align-items:center;position:relative;margin-top:-.3125rem}.down-note-title-input[data-v-72acf113]{width:calc(100% - 3.125rem);margin-left:1.25rem;height:3.75rem;font-size:.84375rem;border:.0625rem #a0adc8 solid;padding:.46875rem 0 .46875rem .625rem;background-color:rgba(234,243,254,.6);border-radius:.9375rem}.char-count[data-v-72acf113]{position:absolute;bottom:.9375rem;right:2.1875rem;color:#999;font-size:.78125rem}.title-button[data-v-72acf113]{height:1.5625rem;width:3.75rem;margin-right:1.5625rem;border:.0625rem solid #fff;border-radius:.46875rem;background:#00aeff;color:#fff;display:flex;justify-content:center;align-items:center}.title-button-red[data-v-72acf113]{height:1.5625rem;width:3.75rem;margin-right:1.5625rem;border:.0625rem solid #fff;border-radius:.46875rem;background:linear-gradient(to bottom,#ff8251,#f52e2c);color:#fff;display:flex;justify-content:center;align-items:center}.draw-red[data-v-72acf113]{color:red;font-size:1.25rem;margin-top:-.3125rem}.draw-title-money[data-v-72acf113]{display:flex}.draw-title-money .draw-title-mon-left[data-v-72acf113]{font-size:1.0625rem}.draw-title-money .draw-title-mon-right[data-v-72acf113]{font-size:1.0625rem;font-weight:700;margin-right:1.5625rem}.kuai-blue[data-v-72acf113]{width:.9375rem;height:.9375rem;border-radius:.15625rem;background-color:#0091ff;margin-top:.0625rem}.kuai-pouple[data-v-72acf113]{width:.9375rem;height:.9375rem;border-radius:.15625rem;background-color:#869af3;margin-top:.0625rem}.kuai-orange[data-v-72acf113]{width:.9375rem;height:.9375rem;border-radius:.15625rem;background-color:#f69;margin-top:.0625rem}.kuai-green[data-v-72acf113]{width:.9375rem;height:.9375rem;border-radius:.15625rem;background-color:#00c3ac;margin-top:.0625rem}.kuai-font[data-v-72acf113]{margin-left:.3125rem}.swiper-card-title[data-v-72acf113]{width:100%;height:1.5625rem;display:flex;justify-content:space-between}.swiper-card-title .swiper-card-img[data-v-72acf113]{width:1.875rem;height:1.875rem;background:url(../../static/index/leftjiao.png) no-repeat center center fixed;background-size:cover}.swiper-card-title .swiper-card-img .swiper-card-font-font[data-v-72acf113]{color:#fff;font-size:.9375rem;font-weight:900;margin-top:.3125rem;margin-left:.3125rem}.swiper-card-title .swiper-card-img-target[data-v-72acf113]{width:1.875rem;height:1.875rem;background:url(../../static/index/leftbluejiao.png) no-repeat center center fixed;background-size:cover}.swiper-card-title .swiper-card-img-target .swiper-card-font-font[data-v-72acf113]{color:#fff;font-size:.9375rem;font-weight:900;margin-top:.3125rem;margin-left:.3125rem}.swiper-card-title .swiper-card-title-name[data-v-72acf113]{display:flex;margin-top:.625rem;margin-right:.625rem}.swiper-card-title .swiper-card-title-name .swiper-card-weight[data-v-72acf113]{font-weight:500}.swiper-card-title .swiper-card-title-name .swiper-card-shu[data-v-72acf113]{color:#999;margin:0 .625rem}.swiper-title-font-button[data-v-72acf113]{color:#fff;border-radius:.3125rem;margin-right:.9375rem;margin-top:.46875rem;font-size:.875rem;font-weight:700}.swiper-font[data-v-72acf113]{display:flex;flex-wrap:wrap}.swiper-font .swiper-font-left[data-v-72acf113]{font-size:.71875rem}.swiper-font .swiper-font-right[data-v-72acf113]{font-size:.71875rem;font-weight:500}.card-button[data-v-72acf113]{position:absolute;bottom:0;left:0;display:flex;align-items:center;height:1.875rem;width:100%;background:linear-gradient(to right,#e1efff,#cee5ff,#edf5ff)}.boom-other-card[data-v-72acf113]{width:7.8125rem;display:flex;align-items:center}.boom-other-card .boom-other-img[data-v-72acf113]{width:.9375rem;height:.9375rem;margin-left:.625rem}.boom-other-card .boom-other-font[data-v-72acf113]{margin-left:.15625rem;font-size:.78125rem}.boom-other-card .boom-other-weight[data-v-72acf113]{font-weight:700;margin-left:.46875rem}.draw-target[data-v-72acf113]{display:flex;justify-content:center;align-items:center;width:5.625rem;height:2.34375rem;margin-top:-.46875rem;border-top-right-radius:.46875rem;border-top-left-radius:.46875rem;margin-right:.625rem;position:relative}.bad-circle-right[data-v-72acf113]{position:absolute;bottom:0;right:-.59375rem;width:.625rem;height:.625rem;background-color:#fff;-webkit-mask-image:radial-gradient(circle farthest-side at 100% 0,transparent calc(100% - .03125rem),black 100%);mask-image:radial-gradient(circle farthest-side at 100% 0,transparent calc(100% - 1px),black 100%)}.bad-circle-left[data-v-72acf113]{position:absolute;bottom:0;left:-.59375rem;width:.625rem;height:.625rem;background-color:#fff;-webkit-mask-image:radial-gradient(circle farthest-side at 100% 0,transparent calc(100% - .03125rem),black 100%);mask-image:radial-gradient(circle farthest-side at 100% 0,transparent calc(100% - 1px),black 100%);transform:scaleX(-1)}.draw-all[data-v-ab4efe77]{width:100%;height:100%;display:flex;flex-direction:column;background-color:#fff;border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem;overflow:hidden}.draw-all .draw-flex[data-v-ab4efe77]{display:flex}.draw-all .draw-contain[data-v-ab4efe77]{width:100%;height:100vh;background-image:url(../../static/index/fanpink.png);background-repeat:no-repeat;background-attachment:fixed;background-size:cover}.swiper-gray[data-v-ab4efe77]{color:#596278}.draw-title[data-v-ab4efe77]{width:100%;height:1.875rem;display:flex;justify-content:space-between;margin-left:.625rem}.draw-title .draw-flex[data-v-ab4efe77]{display:flex}.draw-title .draw-title-gun[data-v-ab4efe77]{margin-left:.625rem;margin-right:.625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.draw-title .draw-title-font[data-v-ab4efe77]{font-size:1.09375rem;font-weight:700;margin-top:-.09375rem}.draw-title .draw-title-blue[data-v-ab4efe77]{height:1.5625rem;width:3.75rem;margin-right:1.5625rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;align-items:center;justify-content:center;border-radius:.3125rem;border:.03125rem solid #fff}.swiper-card-once[data-v-ab4efe77]{margin:0 0 .9375rem .9375rem;width:34.375rem;height:5.625rem;border:.0625rem solid #fff;border-radius:.9375rem;background:url(../../static/index/blueMountain.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;isolation:isolate;box-shadow:.15625rem .15625rem .3125rem #839fcc;overflow:hidden;padding:0 1.25rem}.swiper-card-once .swiper-card-top[data-v-ab4efe77]{width:100%;height:6.875rem;display:flex}.swiper-card-once .swiper-card-top .swiper-card-top-card[data-v-ab4efe77]{width:100%;height:100%}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight[data-v-ab4efe77]{display:flex;justify-content:space-between;margin:.78125rem 0;font-size:.9375rem;font-weight:500}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-left[data-v-ab4efe77]{display:flex}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-left .blue-number[data-v-ab4efe77]{font-size:1rem;font-weight:700;color:#017de9;margin-top:.3125rem}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-right[data-v-ab4efe77]{color:#ff6000;font-weight:500;font-size:.9375rem}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-noral[data-v-ab4efe77]{display:flex;justify-content:space-between;margin-top:.53125rem;font-size:.78125rem}.title-title[data-v-ab4efe77]{margin-top:2.1875rem;margin-bottom:1.25rem;width:100%;display:flex;justify-content:center;font-weight:700;font-size:1.09375rem}.swiper-all-flex[data-v-ab4efe77]{display:flex;margin-top:.15625rem}.color-father[data-v-ab4efe77]{display:flex;margin-left:.9375rem}.color-weight[data-v-ab4efe77]{font-size:1.25rem;font-weight:700;margin-bottom:.46875rem;margin-left:1.5625rem}.color-font[data-v-ab4efe77]{margin-left:1.5625rem}.color-pink[data-v-ab4efe77]{width:9.375rem;height:5.625rem;border-radius:.78125rem;box-shadow:.0625rem .125rem .25rem .0625rem #839fcc;background:linear-gradient(to bottom right,#eae7fa,#dadbf9);margin-left:1.5625rem;display:flex;justify-content:center;flex-direction:column}.color-green[data-v-ab4efe77]{width:9.375rem;height:5.625rem;border-radius:.78125rem;box-shadow:.0625rem .125rem .25rem .0625rem #839fcc;background:linear-gradient(to bottom right,#bcf3f1,#9de9ee);margin-left:1.5625rem;display:flex;justify-content:center;flex-direction:column}.color-red[data-v-ab4efe77]{width:9.375rem;height:5.625rem;border-radius:.78125rem;box-shadow:.0625rem .125rem .25rem .0625rem #839fcc;background:linear-gradient(to bottom right,#fcc,#fcf);margin-left:1.5625rem;display:flex;justify-content:center;flex-direction:column}.plsbuy-card-heng[data-v-ab4efe77]{display:flex;align-items:center;justify-content:space-between;height:3.125rem}.plsbuy-card-heng .plsbuy-card-img[data-v-ab4efe77]{width:1.25rem;height:1.25rem;margin:0 .625rem}.plsbuy-right-weight[data-v-ab4efe77]{font-weight:700;font-size:1.09375rem}.plsbuy-font-right[data-v-ab4efe77]{font-size:.9375rem;line-height:.9375rem}.plsbuy-jian[data-v-ab4efe77]{background-color:#d3e7ff;width:2.1875rem;height:2.1875rem;display:flex;justify-content:center;align-items:center;border-radius:.3125rem;margin-left:.9375rem;border:.03125rem solid #313A4E;font-size:1.09375rem}.plsbuy-jian-target[data-v-ab4efe77]{background:linear-gradient(to bottom,#00c9ff,#0076ff);color:#fff;width:2.1875rem;height:2.1875rem;display:flex;justify-content:center;align-items:center;border-radius:.3125rem;margin-left:.9375rem;border:.03125rem solid #fff;font-size:1.09375rem}.plsbuy-number-target[data-v-ab4efe77]{color:#0076ff;border:.03125rem solid #0076FF;border-radius:.3125rem;display:flex;justify-content:center;align-items:center;font-weight:700;margin:0 .3125rem;width:2.8125rem;height:2.1875rem}.plsbuy-jia[data-v-ab4efe77]{background-color:#d3e7ff;width:2.1875rem;height:2.1875rem;display:flex;justify-content:center;align-items:center;border-radius:.3125rem;border:.03125rem solid #313A4E;font-size:1.09375rem;margin-right:.15625rem}.plsbuy-jia-target[data-v-ab4efe77]{background:linear-gradient(to bottom,#00c9ff,#0076ff);color:#fff;width:2.1875rem;height:2.1875rem;display:flex;justify-content:center;align-items:center;border-radius:.3125rem;border:.03125rem solid #fff;font-size:1.09375rem;margin-right:.15625rem}.card-flex[data-v-ab4efe77]{display:flex;align-items:center}.plsbuy-number[data-v-ab4efe77]{border:.03125rem solid #313A4E;border-radius:.3125rem;display:flex;justify-content:center;align-items:center;font-weight:700;margin:0 .3125rem;width:2.8125rem;height:2.1875rem}.dash-font[data-v-ab4efe77]{margin:.3125rem .9375rem;padding:.3125rem;width:34.375rem;border-style:dashed;border-width:2px;border-color:#ff6657;border-radius:.46875rem;color:#ff6657}.down-note[data-v-ab4efe77]{width:100%;overflow:hidden;height:5.3125rem;align-items:center;position:relative;margin-top:-.3125rem;display:flex}.down-note .down-note-img[data-v-ab4efe77]{width:1.875rem;height:1.875rem}.down-note .down-note-photo[data-v-ab4efe77]{height:4.6875rem;width:6.25rem;margin:0 .3125rem}.button-card[data-v-ab4efe77]{margin-top:.9375rem;display:flex;justify-content:flex-end}.swiper-button-blue[data-v-ab4efe77]{background:linear-gradient(to bottom,#00c9ff,#0076ff);border:.0625rem solid #fff;border-radius:.625rem;width:6.25rem;height:2.5rem;display:flex;justify-content:center;align-items:center;margin:0 1.09375rem 0 .3125rem;color:#fff}.swiper-button-white[data-v-ab4efe77]{background:#fff;border:.0625rem solid #fff;border-radius:.625rem;width:6.25rem;height:2.5rem;display:flex;justify-content:center;align-items:center;margin:0 1.09375rem 0 .3125rem}.draw-all[data-v-e7259b7d]{width:100%;height:100%;display:flex;flex-direction:column;background-color:#fff;overflow:hidden}.draw-all .draw-flex[data-v-e7259b7d]{display:flex}.draw-all .draw-contain[data-v-e7259b7d]{width:100%;height:100vh;background-image:url(../../static/index/fanpink.png);background-repeat:no-repeat;background-attachment:fixed;background-size:cover}.button-card[data-v-e7259b7d]{margin-top:.9375rem;display:flex;justify-content:flex-end}.swiper-button-white[data-v-e7259b7d]{background:linear-gradient(to bottom,#d5e0f8,#ecf6ff);border:.0625rem solid #fff;border-radius:.625rem;width:6.25rem;height:2.5rem;display:flex;justify-content:center;align-items:center;margin-right:.625rem}.swiper-button-blue[data-v-e7259b7d]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);border:.0625rem solid #fff;border-radius:.625rem;width:6.25rem;height:2.5rem;display:flex;justify-content:center;align-items:center;margin:0 1.25rem 0 .3125rem;color:#fff}.draw-title[data-v-e7259b7d]{width:100%;height:1.875rem;display:flex;justify-content:space-between;padding-top:.9375rem;margin-top:.625rem;margin-bottom:.625rem}.draw-title .draw-flex[data-v-e7259b7d]{display:flex}.draw-title .draw-title-gun[data-v-e7259b7d]{margin-left:.625rem;margin-right:.625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.draw-title .draw-title-font[data-v-e7259b7d]{font-size:1.09375rem;font-weight:700}.calculator-father[data-v-e7259b7d]{width:13.125rem;height:15.625rem;margin-top:.625rem;flex-wrap:wrap;display:flex}.calculator-father .calculator-kuai[data-v-e7259b7d]{display:flex;justify-content:center;align-items:center;background-color:#dcdcee;border-radius:.78125rem;font-size:1.40625rem;font-weight:500;margin:.46875rem .625rem 0;width:3.125rem;height:3.125rem}.calculator-father .calculator-kuai-target[data-v-e7259b7d]{background:linear-gradient(to bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;background-color:#dcdcee;border-radius:.78125rem;font-size:1.40625rem;font-weight:500;margin:.46875rem .625rem 0;width:3.125rem;height:3.125rem}.stringShow-father[data-v-e7259b7d]{width:13.125rem;height:2.1875rem;margin-top:.625rem;margin-left:.71875rem;display:flex}.stringShow-father .stringShow-kuai[data-v-e7259b7d]{display:flex;justify-content:center;align-items:center;border-radius:.78125rem;font-size:1.40625rem;font-weight:500;margin:0 .46875rem;width:2.1875rem;height:2.1875rem;border:.09375rem solid #303C57}.qinggou-font[data-v-e7259b7d]{font-size:1.09375rem;font-weight:500;margin-top:.625rem;margin-bottom:.625rem}.draw-all[data-v-2517b556]{width:100%;height:100%;display:flex;flex-direction:column;background-color:#fff;overflow:hidden}.draw-all .draw-contain[data-v-2517b556]{width:100%;height:100vh;background-image:url(../../static/index/fanpink.png);background-repeat:no-repeat;background-attachment:fixed;background-size:cover}.draw-all .draw-contain .draw-title-father[data-v-2517b556]{width:100%;height:4.6875rem;display:flex;justify-content:center;align-items:center}.draw-all .draw-contain .draw-title-father .draw-title[data-v-2517b556]{display:flex;font-size:1.09375rem}.draw-all .draw-contain .draw-title-father .draw-title .draw-weight[data-v-2517b556]{font-weight:700}.swiper-card[data-v-2517b556]{margin:0 0 .9375rem .9375rem;width:35.3125rem;height:5.3125rem;border:.0625rem solid #fff;border-radius:.9375rem;background:url(../../static/index/blueMountain.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;isolation:isolate;box-shadow:.15625rem .15625rem .3125rem #839fcc;overflow:hidden;padding:0 1.25rem;position:relative}.swiper-card .swiper-card-top[data-v-2517b556]{width:100%;height:8.4375rem}.swiper-card .swiper-card-top .swiper-card-top-card[data-v-2517b556]{width:100%;height:100%;display:flex}.card-img-father[data-v-2517b556]{height:6.25rem;width:5rem;display:flex;align-items:center}.card-img-father .card-img[data-v-2517b556]{margin-top:-.46875rem;width:70%;height:70%}.card-right-title[data-v-2517b556]{width:100%;display:flex;justify-content:space-between;font-weight:700;margin:.9375rem 0}.card-right-title .title-gray[data-v-2517b556]{color:#596278;font-size:.9375rem}.card-right-title .title-black[data-v-2517b556]{font-size:.9375rem}.card-right-other[data-v-2517b556]{margin-top:.625rem;width:100%;display:flex;justify-content:space-between;font-size:.78125rem}.card-right-other .title-gray[data-v-2517b556]{color:#596278}.card-right-other .title-green[data-v-2517b556]{color:#647900}.card-right-other .title-red[data-v-2517b556]{color:#ff4a27}.draw-flex[data-v-2517b556]{display:flex}.card-right[data-v-2517b556]{width:25rem;height:100%}.contant-mid[data-v-2517b556]{padding:.9375rem 1.5625rem;display:flex;justify-content:space-between;font-size:1rem}.contant-mid .contant-mid-wight[data-v-2517b556]{font-weight:700}.contant-mid .contant-mid-wight-target[data-v-2517b556]{font-weight:700;border:.0625rem solid;padding:.15625rem .3125rem;border-radius:.3125rem;margin-top:-.3125rem}.button-card[data-v-2517b556]{margin-top:.9375rem;display:flex;justify-content:flex-end}.swiper-button-blue[data-v-2517b556]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);border:.0625rem solid #fff;border-radius:.625rem;width:6.25rem;height:2.5rem;display:flex;justify-content:center;align-items:center;margin:0 1.25rem 0 .3125rem;color:#fff}.swiper-button-white[data-v-2517b556]{background:linear-gradient(to bottom,#d5e0f8,#ecf6ff);border:.0625rem solid #fff;border-radius:.625rem;width:6.25rem;height:2.5rem;display:flex;justify-content:center;align-items:center;margin-right:.625rem}.draw-all[data-v-d07b1c84]{width:100%;height:100%;display:flex;flex-direction:column;background-color:#fff;border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem;overflow:hidden}.draw-all .draw-flex[data-v-d07b1c84]{display:flex}.draw-all .draw-contain[data-v-d07b1c84]{width:100%;height:100vh;background-image:url(../../static/index/fanpink.png);background-repeat:no-repeat;background-attachment:fixed;background-size:cover}.swiper-gray[data-v-d07b1c84]{color:#596278}.draw-title[data-v-d07b1c84]{width:100%;height:1.875rem;display:flex;justify-content:space-between;margin-top:2.5rem;margin-left:.625rem}.draw-title .draw-flex[data-v-d07b1c84]{display:flex}.draw-title .draw-flex .button-first[data-v-d07b1c84]{width:3.75rem;height:1.875rem;border-radius:.625rem;margin-right:.46875rem;background:linear-gradient(to bottom right,#00c3ac,#28cfb3);color:#fff;display:flex;justify-content:center;align-items:center}.draw-title .draw-flex .button-second[data-v-d07b1c84]{width:3.75rem;height:1.875rem;border-radius:.625rem;margin-right:.46875rem;background:linear-gradient(to bottom right,#869af3,#8296e9);color:#fff;display:flex;justify-content:center;align-items:center}.draw-title .draw-flex .button-third[data-v-d07b1c84]{width:3.75rem;height:1.875rem;border-radius:.625rem;margin-right:1.875rem;background:linear-gradient(to bottom right,#ff7a95,#ff9d94);color:#fff;display:flex;justify-content:center;align-items:center}.draw-title .draw-title-gun[data-v-d07b1c84]{margin-left:.625rem;margin-right:.625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.draw-title .draw-title-font[data-v-d07b1c84]{font-size:1.09375rem;font-weight:700;margin-top:-.09375rem}.draw-title .draw-title-blue[data-v-d07b1c84]{height:1.5625rem;width:3.75rem;margin-right:1.5625rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;align-items:center;justify-content:center;border-radius:.3125rem;border:.03125rem solid #fff}.scroll-view[data-v-d07b1c84]{height:29.6875rem;width:calc(100% - 2.5rem);margin-left:1.25rem;border-radius:1.25rem;border:.0625rem solid #fff;box-shadow:.125rem .25rem .5rem .125rem #839fcc;overflow:hidden}.swiper-card-once[data-v-d07b1c84]{margin:0 0 .9375rem .9375rem;width:41.875rem;height:8.4375rem;border:.0625rem solid #fff;border-radius:.9375rem;background:url(../../static/index/blueMountain.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;isolation:isolate;box-shadow:.15625rem .15625rem .3125rem #839fcc;overflow:hidden;padding:0 1.25rem}.swiper-card-once .swiper-card-top[data-v-d07b1c84]{width:100%;height:8.4375rem;display:flex}.swiper-card-once .swiper-card-top .swiper-card-top-card[data-v-d07b1c84]{width:100%;height:100%}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight[data-v-d07b1c84]{display:flex;justify-content:space-between;margin:.78125rem 0;font-size:.9375rem;font-weight:500}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-left[data-v-d07b1c84]{display:flex}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-left .blue-number[data-v-d07b1c84]{font-size:1rem;font-weight:700;color:#017de9;margin-top:.3125rem}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-weight .weight-right[data-v-d07b1c84]{color:#ff6000;font-weight:500;font-size:.9375rem}.swiper-card-once .swiper-card-top .swiper-card-top-card .weight-boom[data-v-d07b1c84]{width:39.6875rem;margin-left:-.3125rem;height:4.375rem;background-color:rgba(131,159,204,.2);border:.0625rem solid #fff;box-shadow:.15625rem .15625rem .3125rem #839fcc;border-radius:.78125rem}.swiper-card-once .swiper-card-top .swiper-card-top-card .swiper-card-top-card-noral[data-v-d07b1c84]{margin-left:1.5625rem;display:flex;justify-content:space-between;margin-top:.9375rem;font-size:.78125rem}.swiper-flex[data-v-d07b1c84]{display:flex;flex-wrap:wrap;margin-left:0}.swiper-flex .swiper-card[data-v-d07b1c84]{margin:0 0 .9375rem .9375rem;width:39.0625rem;height:7.1875rem;border:.0625rem solid #fff;border-radius:.9375rem;background:url(../../static/index/blueMountain.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;isolation:isolate;box-shadow:.15625rem .15625rem .3125rem #839fcc;overflow:hidden;padding:0 1.25rem;position:relative}.swiper-flex .swiper-card .swiper-card-rightbox[data-v-d07b1c84]{position:absolute;top:0;right:0;width:6.875rem;height:100%;background-color:#d3eefe;display:flex}.swiper-flex .swiper-card .swiper-card-rightbox .vertical-line[data-v-d07b1c84]{height:100%;width:.0625rem;background:linear-gradient(to bottom,rgba(255,255,255,0),#fff,rgba(255,255,255,0))}.swiper-flex .swiper-card .swiper-card-rightbox .rightbox-other[data-v-d07b1c84]{width:99%;height:100%;display:flex;justify-content:center;align-items:center;flex-direction:column}.swiper-flex .swiper-card .swiper-card-top[data-v-d07b1c84]{width:100%;height:8.4375rem}.swiper-flex .swiper-card .swiper-card-top .swiper-card-top-card[data-v-d07b1c84]{width:100%;height:100%;display:flex}.index-right-button-blue[data-v-d07b1c84]{height:1.5625rem;width:3.125rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;align-items:center;justify-content:center;border-radius:.3125rem;border:.03125rem solid #fff}.swiper-all-flex[data-v-d07b1c84]{display:flex}.card-img-father[data-v-d07b1c84]{height:100%;width:7.1875rem;display:flex;align-items:center}.card-img-father .card-img[data-v-d07b1c84]{margin-top:-.46875rem;width:70%;height:70%}.card-right[data-v-d07b1c84]{width:25rem;height:100%}.card-right .card-right-title[data-v-d07b1c84]{width:100%;display:flex;justify-content:space-between;font-weight:700;margin:.9375rem 0}.card-right .card-right-title .title-gray[data-v-d07b1c84]{color:#596278;font-size:.9375rem}.card-right .card-right-title .title-black[data-v-d07b1c84]{font-size:.9375rem}.card-right .card-right-other[data-v-d07b1c84]{margin-top:.625rem;width:100%;display:flex;justify-content:space-between;font-size:.78125rem}.card-right .card-right-other .title-gray[data-v-d07b1c84]{color:#596278}.card-right .card-right-other .title-green[data-v-d07b1c84]{color:#647900}.card-right .card-right-other .title-red[data-v-d07b1c84]{color:#ff4a27}.swiper-button-white[data-v-d07b1c84]{background:linear-gradient(to bottom,#d5e0f8,#ecf6ff);border:.0625rem solid #fff;border-radius:.625rem;width:6.25rem;height:2.5rem;display:flex;justify-content:center;align-items:center;margin:0 1.25rem 0 .3125rem}.swiper-button-blue[data-v-d07b1c84]{background:linear-gradient(to bottom,#00c9ff,#0076ff);border:.0625rem solid #fff;border-radius:.625rem;width:6.25rem;height:2.5rem;display:flex;justify-content:center;align-items:center;margin:0 .3125rem;color:#fff}.button-card[data-v-d07b1c84]{margin-top:.9375rem;display:flex;justify-content:flex-end}.down-note[data-v-d07b1c84]{width:100%;overflow:hidden;height:5.3125rem;display:flex;align-items:center;position:relative;margin-top:-.3125rem}.down-note-title-input[data-v-d07b1c84]{width:calc(100% - 3.125rem);margin-left:1.25rem;height:3.75rem;font-size:.84375rem;border:.0625rem #a0adc8 solid;padding:.46875rem 0 .46875rem .625rem;background-color:rgba(234,243,254,.6);border-radius:.9375rem}.char-count[data-v-d07b1c84]{position:absolute;bottom:.9375rem;right:2.1875rem;color:#999;font-size:.78125rem}.title-button[data-v-d07b1c84]{height:1.5625rem;width:3.75rem;margin-right:1.5625rem;border:.0625rem solid #fff;border-radius:.46875rem;background:#00aeff;color:#fff;display:flex;justify-content:center;align-items:center}.title-button-red[data-v-d07b1c84]{height:1.5625rem;width:3.75rem;margin-right:1.5625rem;border:.0625rem solid #fff;border-radius:.46875rem;background:linear-gradient(to bottom,#ff8251,#f52e2c);color:#fff;display:flex;justify-content:center;align-items:center}.draw-red[data-v-d07b1c84]{color:red;font-size:1.25rem;margin-top:-.3125rem}.button-blue[data-v-d07b1c84]{width:4.375rem;height:1.875rem;border-radius:.625rem;margin-right:1.5625rem;background:linear-gradient(to bottom right,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center}.boom-other-card[data-v-d07b1c84]{width:7.8125rem;display:flex;align-items:center;margin:.3125rem 0}.boom-other-card .boom-other-img[data-v-d07b1c84]{width:.9375rem;height:.9375rem;margin-left:.9375rem}.boom-other-card .boom-other-font[data-v-d07b1c84]{margin-left:.15625rem;font-size:.78125rem}.boom-other-card .boom-other-weight[data-v-d07b1c84]{font-weight:700;margin-left:.15625rem}.title-img[data-v-d07b1c84]{width:.9375rem;height:.9375rem;margin-left:.625rem}.plsbuy-contain[data-v-86c43bb8]{display:flex;flex-direction:column;width:100%;height:100%;background:url(../../static/index/pink.png) center / cover;overflow:hidden}.draw-title[data-v-86c43bb8]{width:100%;height:1.875rem;display:flex;justify-content:space-between;padding-top:.9375rem}.draw-title .draw-flex[data-v-86c43bb8]{display:flex}.draw-title .draw-title-gun[data-v-86c43bb8]{margin-left:.625rem;margin-right:.625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.draw-title .draw-title-font[data-v-86c43bb8]{font-size:1.09375rem;font-weight:700}.plsbuy-bottom[data-v-86c43bb8]{width:100%;margin-top:.625rem;height:2.1875rem;display:flex;justify-content:center;font-size:1.09375rem}.plsbuy-bottom .plsbuy-bottom-blue[data-v-86c43bb8]{display:flex;justify-content:center;align-items:center;width:7.1875rem;height:2.5rem;border-radius:.625rem;background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;border:.03125rem #fff solid;box-shadow:.0625rem .0625rem .125rem rgba(0,0,0,.3)}.calculator-father[data-v-86c43bb8]{width:18.75rem;height:15.625rem;margin-top:.625rem;flex-wrap:wrap;display:flex;margin-left:1.40625rem}.calculator-father .calculator-kuai[data-v-86c43bb8]{display:flex;justify-content:center;align-items:center;background-color:#dcdcee;border-radius:.78125rem;font-size:1.40625rem;font-weight:500;margin:.46875rem .625rem 0;width:3.125rem;height:3.125rem}.calculator-father .calculator-kuai-target[data-v-86c43bb8]{background:linear-gradient(to bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;background-color:#dcdcee;border-radius:.78125rem;font-size:1.40625rem;font-weight:500;margin:.46875rem .625rem 0;width:3.125rem;height:3.125rem}.stringShow-father[data-v-86c43bb8]{width:13.125rem;height:2.1875rem;margin-top:.625rem;margin-left:.78125rem;display:flex}.stringShow-father .stringShow-kuai[data-v-86c43bb8]{display:flex;justify-content:center;align-items:center;border-radius:.625rem;font-size:1.40625rem;font-weight:500;margin:0 .46875rem;width:1.71875rem;height:1.71875rem;border:.09375rem solid #303C57}.qinggou-font[data-v-86c43bb8]{font-size:1.09375rem;font-weight:500;margin-top:.3125rem;display:flex;justify-content:center}.index-content-other[data-v-4e891f28]{width:calc(100% - 5.3125rem);height:100%;transition:opacity 1s ease}.index-content-right[data-v-4e891f28]{height:calc(100% - 3.125rem);width:calc(100% - 1.875rem);background-color:rgba(255,255,255,.5);background-image:url(../../static/index/mountain.png);background-position:70% 45%;border-radius:1.5625rem;box-shadow:.125rem .25rem .5rem .125rem rgba(0,0,0,.3);border-radius:.03125rem solid #fff}.index-content-right .index-right-height[data-v-4e891f28]{height:.625rem}.index-content-right .index-right-title[data-v-4e891f28]{margin-left:.9375rem;width:calc(100% - 1.875rem);height:3.75rem;background:linear-gradient(to right,#c4e0fd,#d5cdff,#d9ecff);border-radius:1.09375rem;border:.0625rem solid #fff;display:flex;align-items:center}.index-content-right .index-right-title .index-right-name[data-v-4e891f28]{margin-left:.625rem;margin-right:.3125rem;color:#19233b;font-size:.9375rem}.index-content-right .index-right-title .index-right-input[data-v-4e891f28]{font-size:.71875rem;width:5.625rem;border:.0625rem #a0adc8 solid;padding:.46875rem 0 .46875rem .3125rem;background-color:rgba(234,243,254,.6);border-radius:.3125rem}.index-content-right .index-right-title .index-right-button-all[data-v-4e891f28]{height:100%;margin-left:auto;display:flex;align-items:center}.index-content-right .index-right-title .index-right-button-all .index-right-button[data-v-4e891f28]{height:2.34375rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;font-size:.9375rem;display:flex;align-items:center;border-radius:.625rem;border:.03125rem solid #fff;margin-right:.625rem}.index-content-right .index-right-title .index-right-button-all .index-right-button .index-right-button-img[data-v-4e891f28]{width:1.40625rem;height:1.40625rem;margin:0 .15625rem 0 .46875rem}.index-content-right .index-right-title .index-right-button-all .index-right-button .index-right-button-font[data-v-4e891f28]{margin-right:.78125rem}.index-content-down[data-v-4e891f28]{width:calc(100% - 1.875rem);height:3.125rem;display:flex;justify-content:flex-end;align-items:center}.swiper-contain[data-v-4e891f28]{width:100%;margin-left:.3125rem;height:calc(100% - 4.375rem)}.swiper-contain .swiper-flex[data-v-4e891f28]{display:flex;flex-wrap:wrap}.swiper-contain .swiper-flex .swiper-card[data-v-4e891f28]{margin:.625rem 0 0 .625rem;width:31.46875rem;height:16.5625rem;border:.09375rem solid #fff;border-radius:.9375rem;background:url(../../static/index/clearmountain.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;isolation:isolate;box-shadow:.125rem .125rem .25rem rgba(0,0,0,.3);display:flex;position:relative;overflow:hidden;flex-direction:column}.swiper-contain .swiper-flex .swiper-card .swiper-title-contect[data-v-4e891f28]{margin-bottom:0;width:100%;height:3.59375rem;background:linear-gradient(to right,#cbd8fc,#f2eaff,#e2edfe,#bdcae9);border-top-right-radius:.9375rem;border-top-left-radius:.9375rem;display:flex;justify-content:space-between;align-items:center;border-bottom:.09375rem solid;border-image:linear-gradient(to right,transparent,#fff,transparent) 1}.swiper-contain .swiper-flex .swiper-card .swiper-title-contect .swiper-states[data-v-4e891f28]{margin-left:.46875rem;display:flex;justify-content:space-between;align-items:center;width:10.9375rem;height:100%;position:relative}.swiper-contain .swiper-flex .swiper-card .swiper-title-contect .swiper-states .swiper-states-heng-one[data-v-4e891f28]{position:absolute;top:50%;left:2.5rem;width:3.125rem;height:.3125rem;background-color:#c6cbf6}.swiper-contain .swiper-flex .swiper-card .swiper-title-contect .swiper-states .swiper-states-heng-one-green[data-v-4e891f28]{position:absolute;top:50%;left:2.5rem;width:3.125rem;height:.3125rem;background:linear-gradient(to top,#ace800,#55b718)}.swiper-contain .swiper-flex .swiper-card .swiper-title-contect .swiper-states .swiper-states-heng-two[data-v-4e891f28]{position:absolute;top:50%;left:5.625rem;width:3.125rem;height:.3125rem;background-color:#c6cbf6}.swiper-contain .swiper-flex .swiper-card .swiper-title-contect .swiper-states .swiper-states-heng-two-green[data-v-4e891f28]{position:absolute;top:50%;left:5.625rem;width:3.125rem;height:.3125rem;background:linear-gradient(to top,#ace800,#55b718)}.swiper-heng[data-v-4e891f28]{width:3.125rem;height:.3125rem;background:linear-gradient(to right,#0ea7dd,#047adb);border-radius:.9375rem;margin-top:.3125rem;margin-bottom:.9375rem}.popup-detail[data-v-4e891f28]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4)}.popup-detail .popup-detail-price[data-v-4e891f28]{position:absolute;top:0;left:0;right:0;bottom:0;width:31.25rem;height:31.25rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease;z-index:1005}.popup-detail .popup-detail-content[data-v-4e891f28]{display:flex;width:46.875rem;height:28.125rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease}.popup-detail .popup-detail-content .popup-detail-left[data-v-4e891f28]{height:100%;width:45%}.popup-detail .popup-detail-content .popup-detail-left .popup-detail-left-white[data-v-4e891f28]{margin:2.1875rem 0 0 2.1875rem;width:18.75rem;height:18.75rem;background-color:rgba(255,255,255,.3);display:flex;border-radius:.9375rem;justify-content:center;align-items:center}.popup-detail .popup-detail-content .popup-detail-left .popup-detail-left-white .popup-detail-left-white-img[data-v-4e891f28]{width:17.1875rem;height:17.1875rem}.popup-detail .popup-detail-content .popup-detail-left .popup-detail-left-bottom[data-v-4e891f28]{width:calc(100% - 2.1875rem);margin-left:2.1875rem;height:7.1875rem;display:flex}.popup-detail .popup-detail-content .popup-detail-right[data-v-4e891f28]{height:100%;width:55%}.ball-bgc[data-v-4e891f28]{background-color:#fff;width:2.8125rem;height:2.8125rem;display:flex;justify-content:center;align-items:center;border-radius:50%;margin-left:.625rem;z-index:1}.ball-yellow[data-v-4e891f28]{background:linear-gradient(to top right,#ff9f00,#ffdf2a);width:2.5rem;height:2.5rem;display:flex;justify-content:center;align-items:center;border-radius:50%;color:#a53600;font-size:.78125rem}.ball-yellow-big[data-v-4e891f28]{background:linear-gradient(to top right,#ff9f00,#ffdf2a);width:3.125rem;height:3.125rem;display:flex;justify-content:center;align-items:center;border-radius:50%;color:#a53600;font-size:1.09375rem}.ball-red-big[data-v-4e891f28]{background:#ff642f;color:#fff;width:3.125rem;height:3.125rem;display:flex;justify-content:center;align-items:center;border-radius:50%;font-size:1.09375rem}.ball-red[data-v-4e891f28]{background:#ff642f;width:2.5rem;height:2.5rem;display:flex;justify-content:center;align-items:center;border-radius:50%;color:#fff;font-size:.78125rem}.ball-white[data-v-4e891f28]{background:linear-gradient(to bottom,#cbd9fd,#a2b7e0);width:2.5rem;height:2.5rem;display:flex;justify-content:center;align-items:center;border-radius:50%;font-size:.78125rem}.ball-green[data-v-4e891f28]{background:linear-gradient(to top,#ace800,#55b718);width:2.5rem;height:2.5rem;display:flex;justify-content:center;align-items:center;border-radius:50%;color:#fff;font-size:.78125rem}.ball-blue[data-v-4e891f28]{background:linear-gradient(to top,#0076ff,#00c9ff);width:2.5rem;height:2.5rem;display:flex;justify-content:center;align-items:center;border-radius:50%;color:#fff;font-size:.78125rem}.title-button[data-v-4e891f28]{margin-right:.9375rem;border:.0625rem solid #fff;border-radius:.625rem;background:#00aeff;color:#fff;padding:.3125rem .625rem}.title-button-red[data-v-4e891f28]{margin-right:.9375rem;border:.0625rem solid #fff;border-radius:.625rem;background:linear-gradient(to bottom,#ff8251,#f52e2c);color:#fff;padding:.3125rem .625rem}.swiper-down[data-v-4e891f28]{width:100%;height:calc(100% - 3.59375rem);padding:0 .9375rem;background-color:rgba(255,255,255,.5)}.swiper-down .swiper-flex[data-v-4e891f28]{display:flex;margin:.9375rem 0 .9375rem .3125rem}.swiper-down .swiper-down-title[data-v-4e891f28]{font-weight:500;font-size:.9375rem}.swiper-down .swiper-down-number[data-v-4e891f28]{font-weight:700;font-size:.9375rem}.swiper-down .swiper-down-card[data-v-4e891f28]{width:100%;height:6.25rem;background-color:rgba(255,255,255,.3);border-radius:.625rem;box-shadow:.0625rem .125rem .25rem .0625rem rgba(0,0,0,.1);display:flex;flex-wrap:wrap;padding:.625rem 0 .625rem .625rem}.swiper-down .swiper-down-card .swiper-down-text[data-v-4e891f28]{width:50%;padding-left:.625rem;display:flex;align-items:center}.swiper-down .swiper-down-card .swiper-down-text .swiper-down-text-left[data-v-4e891f28]{color:#596278}.swiper-down .swiper-button[data-v-4e891f28]{width:100%;height:3.4375rem;display:flex;justify-content:center;align-items:center}.swiper-down .swiper-button .button-father[data-v-4e891f28]{display:flex}.swiper-down .swiper-button .swiper-button-white[data-v-4e891f28]{background:linear-gradient(to bottom,#d5e0f8,#ecf6ff);border:.0625rem solid #fff;border-radius:.625rem;width:4.6875rem;height:2.1875rem;display:flex;justify-content:center;align-items:center;margin:0 .3125rem}.swiper-down .swiper-button .swiper-button-blue[data-v-4e891f28]{background:linear-gradient(to bottom,#00c9ff,#0076ff);border:.0625rem solid #fff;border-radius:.625rem;width:4.6875rem;height:2.1875rem;display:flex;justify-content:center;align-items:center;margin:0 .3125rem;color:#fff}.swiper-down .swiper-button .swiper-button-red[data-v-4e891f28]{background:linear-gradient(to bottom,#ff8251,#f52e2c);border:.0625rem solid #fff;border-radius:.625rem;width:4.6875rem;height:2.1875rem;display:flex;justify-content:center;align-items:center;margin:0 .3125rem;color:#fff}.popup-detail-cal[data-v-4e891f28]{position:fixed;top:0;left:0;right:0;bottom:0;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:999}.popup-detail-cal .popup-detail-content[data-v-4e891f28]{position:absolute;right:10.3125rem;top:4.375rem;display:flex;width:18.75rem;height:28.125rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:1.25rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease;overflow:hidden}.popup-detail-finish[data-v-4e891f28]{position:fixed;top:0;left:0;right:0;bottom:0;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(89,109,154,.4);z-index:1001}.popup-detail-finish .popup-detail-content[data-v-4e891f28]{position:absolute;left:10.9375rem;top:12.5rem;display:flex;width:37.5rem;height:21.875rem;background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;border:.0625rem solid #fff;border-radius:1.25rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease;overflow:hidden}.popup-detail-content-calculator[data-v-4e891f28]{position:absolute;right:3.125rem;top:9.6875rem;display:flex;width:20.3125rem;height:26.5625rem;background-color:#fff;border:.0625rem solid #fff;border-radius:.9375rem;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:opacity .4s ease;overflow:hidden}.backgroundContainer[data-v-77445644]{display:flex;flex-direction:column;position:relative;width:100%;height:100vh;background-image:url(../../static/index/lightbgcnew.png);background-size:cover;background-position:center center;overflow:hidden}.darkbackgroundContainer[data-v-77445644]{display:flex;flex-direction:column;position:relative;width:100%;height:100vh;background-image:url(../../static/index/background.png);background-size:cover;background-position:center center;overflow:hidden}.index-title[data-v-77445644]{display:flex;width:calc(100% - 3.4375rem);height:4.0625rem;justify-content:space-between;margin:.625rem 1.5625rem 0 1.875rem}.index-title .index-title-left[data-v-77445644]{display:flex;height:100%;align-items:center;margin-top:.625rem}.index-title .index-title-left .index-title-left-img[data-v-77445644]{width:2.34375rem;height:2.34375rem}.index-title .index-title-left .index-title-left-font[data-v-77445644]{margin-left:.625rem}.index-title .index-title-left .index-title-left-wel[data-v-77445644]{margin-left:1.25rem}.index-title .index-title-left .index-title-left-weight[data-v-77445644]{font-weight:700;margin:0 .3125rem}.index-title .index-title-right[data-v-77445644]{display:flex;height:100%;align-items:center;margin-top:.625rem}.index-title .index-title-right .index-title-right-circle[data-v-77445644]{width:1.875rem;height:1.875rem;border-radius:50%;background-color:#cde0f8;display:flex;justify-content:center;align-items:center}.index-title .index-title-right .index-title-right-circle .index-title-right-circle-img[data-v-77445644]{width:1.09375rem;height:1.09375rem}.index-title .index-title-right .index-title-right-font[data-v-77445644]{margin-left:.625rem;font-weight:700}.index-content[data-v-77445644]{width:100%;height:calc(100vh - 4.6875rem);display:flex}.index-content .index-content-leftMenus[data-v-77445644]{height:100%;width:5.3125rem;display:flex;justify-content:center;align-items:center;flex-direction:column}.index-content .index-content-leftMenus .left-img[data-v-77445644]{width:2.90625rem;height:2.90625rem;z-index:100}.index-content .index-content-leftMenus .left-img-font[data-v-77445644]{margin-top:.3125rem;color:#fff}.index-content .index-content-leftMenus .left-img-font-target[data-v-77445644]{margin-top:.3125rem;color:#0174d3}.index-content .index-content-leftMenus .blue-circle-pos[data-v-77445644]{position:relative;display:flex;flex-direction:column;justify-content:center;align-items:center;height:7.1875rem}.index-content .index-content-leftMenus .blue-circle-pos .blue-circle[data-v-77445644]{position:absolute;top:-1.5625rem;left:-2.125rem}.index-content .index-content-leftMenus .blue-circle-pos .blue-circle .blue-circle-size[data-v-77445644]{width:5.3125rem;height:7.8125rem}.red-pao[data-v-77445644]{position:absolute;top:1.25rem;left:1.875rem;padding:.09375rem .3125rem;background-color:#ff4c4e;color:#fff;font-size:.625rem;border-radius:.625rem;z-index:101} diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/pages/assess/index.css b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/assess/index.css new file mode 100644 index 0000000..de71dce --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/assess/index.css @@ -0,0 +1 @@ +.calendar[data-v-0bf11501]{padding:16px}.header[data-v-0bf11501]{display:flex;flex-direction:column}.header-title[data-v-0bf11501]{display:flex;justify-content:space-between;align-items:center}.year-month[data-v-0bf11501]{font-size:18px;font-weight:700;margin-bottom:8px}.botton-father[data-v-0bf11501]{display:flex;margin-top:-.625rem}.click-button[data-v-0bf11501]{padding:.3125rem;width:3.75rem;font-size:.78125rem;height:1.25rem;margin-right:.3125rem;display:flex;justify-content:center;align-items:center;color:#fff;background-color:#888;border-radius:.3125rem}.weekdays[data-v-0bf11501]{display:flex;background-color:#e9e7fc;border-radius:.9375rem;padding:.3125rem}.weekday[data-v-0bf11501]{flex:1;text-align:center}.days[data-v-0bf11501]{display:flex;flex-wrap:wrap;padding:.3125rem}.day-cell[data-v-0bf11501]{width:2.29688rem;height:2.51563rem;text-align:center;padding-top:.25rem;padding-bottom:.25rem;box-sizing:border-box}.day-cell.prev-month .gregorian[data-v-0bf11501],.day-cell.next-month .gregorian[data-v-0bf11501]{color:#ccc}.day-cell.selected[data-v-0bf11501]{background-color:#0b98dc;border-radius:.3125rem}.day-cell.selected .gregorian[data-v-0bf11501],.day-cell.selected .lunar[data-v-0bf11501]{color:#fff}.gregorian[data-v-0bf11501]{font-size:14px}.lunar[data-v-0bf11501]{font-size:10px;color:#888}.backgroundContainer[data-v-65a124ce]{position:relative;width:100%;height:100vh;background-image:url(../../static/index/lightbgcnew.png);background-size:cover;background-position:center center;overflow:hidden}.assess-title[data-v-65a124ce]{margin-top:1.875rem;width:100%;height:1.875rem;display:flex;align-items:center;justify-content:space-between}.assess-title .right-icons[data-v-65a124ce]{display:flex;align-items:center;float:right;height:2.1875rem;margin-right:1.25rem}.assess-title .right-icons .right-icons-font[data-v-65a124ce]{margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.46875rem}.assess-title .right-icons .right-icons-font-dark[data-v-65a124ce]{color:#fff;margin-left:.3125rem;margin-right:.3125rem;font-size:1.09375rem;margin-top:-.46875rem}.assess-title .right-icons .right-icons-img[data-v-65a124ce]{width:2.5rem;height:2.5rem;margin-left:.3125rem;margin-right:.3125rem;margin-top:-.625rem}.assess-title .right-icons .right-icons-img-icon[data-v-65a124ce]{width:1.875rem;height:2.5rem;margin-left:.25rem}.assess-title .left-icons[data-v-65a124ce]{display:flex;margin-left:1.25rem}.assess-title .left-icons .left-icons-img[data-v-65a124ce]{width:2.1875rem;height:2.1875rem}.assess-title .left-icons .right-icons-font[data-v-65a124ce]{font-weight:700;font-size:1.09375rem;margin-left:.3125rem;margin-top:.3125rem}.assess-title .left-icons .right-icons-text[data-v-65a124ce]{font-size:1.09375rem;margin-top:.3125rem}.assess-another[data-v-65a124ce]{width:100%;height:calc(100vh - 3.75rem);margin-top:.3125rem;display:flex;margin-left:1.5625rem}.assess-another .left-contain[data-v-65a124ce]{height:100%;width:18.75rem}.assess-another .left-contain .calendar[data-v-65a124ce]{width:100%;height:20.3125rem;background:linear-gradient(to top,#f4f3ff,#fff,#ecefff);border-radius:.78125rem} diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/pages/camera.js b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/camera.js new file mode 100644 index 0000000..f1f58bb --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/camera.js @@ -0,0 +1,32 @@ +"use weex:vue"; + +if (typeof Promise !== 'undefined' && !Promise.prototype.finally) { + Promise.prototype.finally = function(callback) { + const promise = this.constructor + return this.then( + value => promise.resolve(callback()).then(() => value), + reason => promise.resolve(callback()).then(() => { + throw reason + }) + ) + } +}; + +if (typeof uni !== 'undefined' && uni && uni.requireGlobal) { + const global = uni.requireGlobal() + ArrayBuffer = global.ArrayBuffer + Int8Array = global.Int8Array + Uint8Array = global.Uint8Array + Uint8ClampedArray = global.Uint8ClampedArray + Int16Array = global.Int16Array + Uint16Array = global.Uint16Array + Int32Array = global.Int32Array + Uint32Array = global.Uint32Array + Float32Array = global.Float32Array + Float64Array = global.Float64Array + BigInt64Array = global.BigInt64Array + BigUint64Array = global.BigUint64Array +}; + + +(()=>{var f=Object.create;var h=Object.defineProperty;var g=Object.getOwnPropertyDescriptor;var $=Object.getOwnPropertyNames;var _=Object.getPrototypeOf,k=Object.prototype.hasOwnProperty;var T=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports);var R=(e,t,o,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let i of $(t))!k.call(e,i)&&i!==o&&h(e,i,{get:()=>t[i],enumerable:!(n=g(t,i))||n.enumerable});return e};var S=(e,t,o)=>(o=e!=null?f(_(e)):{},R(t||!e||!e.__esModule?h(o,"default",{value:e,enumerable:!0}):o,e));var p=T((O,c)=>{c.exports=Vue});var r=S(p());function m(e){return weex.requireModule(e)}function s(e,t,...o){uni.__log__?uni.__log__(e,t,...o):console[e].apply(console,[...o,t])}var w={"center-column":{"":{width:630,height:510,overflow:"hidden"}}},v=(e,t)=>{let o=e.__vccOpts||e;for(let[n,i]of t)o[n]=i;return o},q={data(){return{phoneNumber:"1234567890",isAlarming:!1,isRecording:!1,isTalking:!1,_pendingRequests:{snapshot:[],record:[],talk:[]},suo:!0}},onLoad(){let e=m&&m("globalEvent");e&&e.addEventListener&&e.addEventListener("myEvent",t=>{s("log","at pages/camera.nvue:40",t),t.recordUrl&&uni.showToast({title:"\u5F55\u5C4F\u6210\u529F",icon:"success",duration:1500}),t.snapShotUrl&&uni.showToast({title:"\u622A\u5C4F\u6210\u529F",icon:"success",duration:1500}),this.suo&&t.onVolumeChange&&(t.onVolumeChange&&this.toggleVolume(),this.suo=!1)}),uni.$on("monitor:doSnapshot",this.doSnapshot),uni.$on("monitor:startRecord",this.doStartRecord),uni.$on("monitor:stopRecord",this.doStopRecord),uni.$on("monitor:openTalk",this.doOpenTalk),uni.$on("monitor:stopTalk",this.doStopTalk),uni.$on("monitor:switchDisplay",t=>this.switchDisplay(t)),uni.$on("monitor:startAlarm",this.startAlarm),uni.$on("monitor:stopAlarm",this.stopAlarm),uni.$on("monitor:flipImage",t=>this.flipImage(t)),uni.$on("monitor:resumeOrPause",this.resumeOrPause),uni.$on("monitor:changeQuality",this.changeQuality),uni.$on("monitor:toggleVolume",this.toggleVolume),uni.$on("monitor:test",this.test)},onUnload(){uni.$off("monitor:doSnapshot",this.doSnapshot),uni.$off("monitor:startRecord",this.doStartRecord),uni.$off("monitor:stopRecord",this.doStopRecord),uni.$off("monitor:openTalk",this.doOpenTalk),uni.$off("monitor:stopTalk",this.doStopTalk),uni.$off("monitor:switchDisplay",e=>this.switchDisplay(e)),uni.$off("monitor:startAlarm",this.startAlarm),uni.$off("monitor:stopAlarm",this.stopAlarm),uni.$off("monitor:flipImage",e=>this.flipImage(e)),uni.$off("monitor:resumeOrPause",this.resumeOrPause),uni.$off("monitor:changeQuality",this.changeQuality),uni.$off("monitor:toggleVolume",this.toggleVolume),uni.$off("monitor:test",this.test)},methods:{handleTelEvent(e){s("log","at pages/camera.nvue:102","Tel event detail:",e.detail)},switchDisplay(e){s("log","at pages/camera.nvue:107","zzzzz",e),this.$refs.monitor&&this.$refs.monitor.switchDisplayModeFragment(e)},startAlarm(){this.isAlarming=!0,this.$refs.monitor.startOrStopManualAlarm(this.isAlarming,e=>{s("log","at pages/camera.nvue:114","startAlarm callback:",e)})},stopAlarm(){this.isAlarming=!1,this.$refs.monitor.startOrStopManualAlarm(this.isAlarming,e=>{s("log","at pages/camera.nvue:120","stopAlarm callback:",e)})},flipImage(e){this.$refs.monitor.changeImageSwitch(e,t=>{s("log","at pages/camera.nvue:126","flipImage callback:",t)})},resumeOrPause(){this.$refs.monitor.resumeOrPause&&this.$refs.monitor.resumeOrPause()},changeQuality(){this.$refs.monitor.changeQuality&&this.$refs.monitor.changeQuality()},toggleVolume(){this.$refs.monitor.toggleVolume&&this.$refs.monitor.toggleVolume()},test(){this.$refs.monitor&&this.$refs.monitor.test&&this.$refs.monitor.test()},doSnapshot(e={}){if(!this.$refs.monitor||!this.$refs.monitor.snapShot){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 snapShot()",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"snapShot_not_supported"});return}e.reqId&&this._pendingRequests.snapshot.push(e.reqId);try{this.$refs.monitor.snapShot(t=>{s("log","at pages/camera.nvue:166","snapShot callback:",t),this._handleSnapshotResultFromNative(t,e.reqId)}),uni.showToast({title:"\u6B63\u5728\u622A\u5C4F...",icon:"none",duration:800})}catch(t){s("error","at pages/camera.nvue:171","snapShot \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"snapShot \u8C03\u7528\u5931\u8D25",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"snapShot_call_failed",detail:String(t)})}},doStartRecord(e={}){if(!this.$refs.monitor||!this.$refs.monitor.startRecord){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 startRecord()",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"startRecord_not_supported"});return}try{this.$refs.monitor.startRecord(t=>{s("log","at pages/camera.nvue:191","startRecord callback:",t),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!0,res:t})}),this.isRecording=!0,uni.showToast({title:"\u5F55\u5C4F\u5DF2\u5F00\u59CB",icon:"none"})}catch(t){s("error","at pages/camera.nvue:200","startRecord \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"startRecord \u8C03\u7528\u5931\u8D25",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"startRecord_call_failed",detail:String(t)})}},doStopRecord(e={}){if(!this.$refs.monitor||!this.$refs.monitor.stopRecord){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 stopRecord()",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"stopRecord_not_supported"});return}e.reqId&&this._pendingRequests.record.push(e.reqId);try{this.$refs.monitor.stopRecord(t=>{s("log","at pages/camera.nvue:226","stopRecord callback:",t),this._handleRecordResultFromNative(t,e.reqId)})}catch(t){s("error","at pages/camera.nvue:231","stopRecord \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"stopRecord \u8C03\u7528\u5931\u8D25",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"stopRecord_call_failed",detail:String(t)})}},doOpenTalk(e={}){if(!this.$refs.monitor||!this.$refs.monitor.openTalk){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 openTalk()",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"openTalk_not_supported"});return}e.reqId&&this._pendingRequests.talk.push(e.reqId);try{this.$refs.monitor.openTalk(t=>{s("log","at pages/camera.nvue:255","openTalk callback:",t),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!0,res:t})}),this.isTalking=!0,uni.showToast({title:"\u5C1D\u8BD5\u5EFA\u7ACB\u5BF9\u8BB2\u8FDE\u63A5...",icon:"none"})}catch(t){s("error","at pages/camera.nvue:264","openTalk \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"openTalk \u8C03\u7528\u5931\u8D25",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"openTalk_call_failed",detail:String(t)})}},doStopTalk(e={}){if(!this.$refs.monitor||!this.$refs.monitor.stopTalk){uni.showToast({title:"\u7EC4\u4EF6\u4E0D\u652F\u6301 stopTalk()",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"stopTalk_not_supported"});return}try{this.$refs.monitor.stopTalk(t=>{s("log","at pages/camera.nvue:284","stopTalk callback:",t),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!0,res:t})}),this.isTalking=!1}catch(t){s("error","at pages/camera.nvue:291","stopTalk \u8C03\u7528\u5931\u8D25",t),uni.showToast({title:"stopTalk \u8C03\u7528\u5931\u8D25",icon:"none"}),e.reqId&&uni.$emit(`monitor:response:${e.reqId}`,{ok:!1,error:"stopTalk_call_failed",detail:String(t)})}},handleSnapShotEvent(e){let t=e&&e.detail?e.detail:e;s("log","at pages/camera.nvue:304","onSnapShot event:",t),this._handleSnapshotResultFromNative(t)},handleRecordEvent(e){let t=e&&e.detail?e.detail:e;s("log","at pages/camera.nvue:312","onRecord event:",t),this._handleRecordResultFromNative(t)},handleTalkEvent(e){let t=e&&e.detail?e.detail:e;s("log","at pages/camera.nvue:319","onTalkStatus event:",t);let o=t&&t.talkStatus,n=t&&t.tips;if(uni.$emit("monitor:talk:status",t),this._pendingRequests.talk&&this._pendingRequests.talk.length)for(;this._pendingRequests.talk.length;){let i=this._pendingRequests.talk.shift();uni.$emit(`monitor:response:${i}`,{ok:!0,payload:t})}switch((o||"").toLowerCase()){case"loading":uni.showToast({title:n||"\u5BF9\u8BB2\u8FDE\u63A5\u4E2D...",icon:"none"}),this.isTalking=!0;break;case"playing":uni.showToast({title:n||"\u5BF9\u8BB2\u5DF2\u8FDE\u63A5",icon:"none"}),this.isTalking=!0;break;case"stopped":uni.showToast({title:n||"\u5BF9\u8BB2\u5DF2\u505C\u6B62",icon:"none"}),this.isTalking=!1;break;case"failed":uni.showToast({title:n||"\u5BF9\u8BB2\u5931\u8D25",icon:"none"}),this.isTalking=!1;break;default:uni.showToast({title:n||"\u5BF9\u8BB2\u72B6\u6001: "+(o||"unknown"),icon:"none"});break}},_handleSnapshotResultFromNative(e,t=null){if(!e){uni.showToast({title:"\u622A\u56FE\u6CA1\u6709\u8FD4\u56DE\u6570\u636E",icon:"none"}),t&&uni.$emit(`monitor:response:${t}`,{ok:!1,error:"no_data"});return}let o=e;if(e.detail&&(o=e.detail),s("log","at pages/camera.nvue:372","snapshot payload normalized:",o),t&&uni.$emit(`monitor:response:${t}`,{ok:!!o.snapShotResult,payload:o}),!t&&this._pendingRequests.snapshot&&this._pendingRequests.snapshot.length)for(;this._pendingRequests.snapshot.length;){let n=this._pendingRequests.snapshot.shift();uni.$emit(`monitor:response:${n}`,{ok:!!o.snapShotResult,payload:o})}if(uni.$emit("monitor:snapshot:done",o),o.snapShotResult===!0||o.snapShotResult==="true"){let n=o.snapShotUrl||o.snapShotPath||o.url;uni.showToast({title:"\u622A\u56FE\u6210\u529F",icon:"success",duration:1200}),n&&uni.previewImage({urls:[n]})}else{let n=o.snapShotErrorCode||o.error||"unknown";uni.showToast({title:"\u622A\u56FE\u5931\u8D25: "+n,icon:"none",duration:2e3}),s("warn","at pages/camera.nvue:399","snapshot failed reason:",n,o)}},_handleRecordResultFromNative(e,t=null){if(!e){uni.showToast({title:"\u5F55\u5C4F\u6CA1\u6709\u8FD4\u56DE\u6570\u636E",icon:"none"}),this.isRecording=!1,t&&uni.$emit(`monitor:response:${t}`,{ok:!1,error:"no_data"});return}let o=e;if(e.detail&&(o=e.detail),s("log","at pages/camera.nvue:415","record payload normalized:",o),t&&uni.$emit(`monitor:response:${t}`,{ok:!!(o.recordUrl||o.snapShotResult),payload:o}),!t&&this._pendingRequests.record&&this._pendingRequests.record.length)for(;this._pendingRequests.record.length;){let n=this._pendingRequests.record.shift();uni.$emit(`monitor:response:${n}`,{ok:!!(o.recordUrl||o.snapShotResult),payload:o})}uni.$emit("monitor:record:done",o),o.recordUrl?(uni.showToast({title:"\u5F55\u5C4F\u5B8C\u6210",icon:"success",duration:1400}),this.isRecording=!1,s("log","at pages/camera.nvue:436","\u5F55\u5C4F\u5730\u5740\uFF1A",o.recordUrl)):o.recordFailedReason?(uni.showToast({title:"\u5F55\u5C4F\u5931\u8D25: "+o.recordFailedReason,icon:"none",duration:2e3}),this.isRecording=!1,s("warn","at pages/camera.nvue:440","record failed reason:",o.recordFailedReason)):(o.snapShotResult===!0&&uni.showToast({title:"\u5F55\u5C4F\u64CD\u4F5C\u5DF2\u5B8C\u6210\uFF08\u8FD4\u56DE\u672A\u77E5\uFF09",icon:"none"}),this.isRecording=!1)}}};function I(e,t,o,n,i,a){let d=(0,r.resolveComponent)("MonitorView");return(0,r.openBlock)(),(0,r.createElementBlock)("scroll-view",{scrollY:!0,showScrollbar:!0,enableBackToTop:!0,bubble:"true",style:{flexDirection:"column"}},[(0,r.createElementVNode)("div",{class:"center-column"},[(0,r.createVNode)(d,{ref:"monitor",init:"5",style:{width:"630px",height:"510px"},onOnTel:a.handleTelEvent,onOnSnapShot:a.handleSnapShotEvent,onOnRecord:a.handleRecordEvent,onOnTalkStatus:a.handleTalkEvent},null,8,["onOnTel","onOnSnapShot","onOnRecord","onOnTalkStatus"])])])}var l=v(q,[["render",I],["styles",[w]]]);var u=plus.webview.currentWebview();if(u){let e=parseInt(u.id),t="pages/camera",o={};try{o=JSON.parse(u.__query__)}catch(i){}l.mpType="page";let n=Vue.createPageApp(l,{$store:getApp({allowDefault:!0}).$store,__pageId:e,__pagePath:t,__pageQuery:o});n.provide("__globalStyles",Vue.useCssStyles([...__uniConfig.styles,...l.styles||[]])),n.mount("#root")}})(); diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/pages/denglu.css b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/denglu.css new file mode 100644 index 0000000..793944e --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/denglu.css @@ -0,0 +1 @@ +.content{display:flex;flex-direction:column;align-items:center;justify-content:center;width:100%;height:100vh}.logo{height:6.25rem;width:6.25rem;margin-top:6.25rem;margin-left:auto;margin-right:auto;margin-bottom:1.5625rem}.text-area{display:flex;justify-content:center}.title{font-size:1.125rem;color:#8f8f94}.typebutton{width:9.375rem;height:4.6875rem;display:flex;justify-content:center;align-items:center;margin-top:.9375rem;color:#fff} diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/pages/index/index.css b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/index/index.css new file mode 100644 index 0000000..7bf04e7 --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/index/index.css @@ -0,0 +1 @@ +.zy-modal[data-v-cd70e807]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1110;opacity:0;outline:0;text-align:center;transform:scale(1.185);-webkit-backface-visibility:hidden;backface-visibility:hidden;perspective:62.5rem;background:rgba(0,0,0,.6);transition:all .3s ease-in-out 0s;pointer-events:none}.zy-modal[data-v-cd70e807]:before{content:"\200b";display:inline-block;height:100%;vertical-align:middle}.zy-modal.show[data-v-cd70e807]{opacity:1;transition-duration:.3s;transform:scale(1);overflow-x:hidden;overflow-y:auto;pointer-events:auto}.zy-dialog[data-v-cd70e807]{position:relative;display:inline-block;vertical-align:middle;margin-left:auto;margin-right:auto;width:21.25rem;max-width:100%;background-color:#f8f8f8;border-radius:.3125rem;overflow:hidden}.zy-modal.bottom-modal[data-v-cd70e807]:before{vertical-align:bottom}.zy-modal.bottom-modal .zy-dialog[data-v-cd70e807]{width:100%;border-radius:0}.zy-modal.bottom-modal[data-v-cd70e807]{margin-bottom:-31.25rem}.zy-modal.bottom-modal.show[data-v-cd70e807]{margin-bottom:0}.zy-modal.drawer-modal[data-v-cd70e807]{transform:scale(1);display:flex}.zy-modal.drawer-modal .zy-dialog[data-v-cd70e807]{height:100%;min-width:6.25rem;border-radius:0;margin:initial;transition-duration:.3s}.zy-modal.drawer-modal.justify-start .zy-dialog[data-v-cd70e807]{transform:translate(-100%)}.zy-modal.drawer-modal.justify-end .zy-dialog[data-v-cd70e807]{transform:translate(100%)}.zy-modal.drawer-modal.show .zy-dialog[data-v-cd70e807]{transform:translate(0)}.zy-modal .zy-dialog>.zy-bar:first-child .action[data-v-cd70e807]{min-width:3.125rem;margin-right:0;min-height:3.125rem}.zy-progress[data-v-cd70e807]{overflow:hidden;height:.875rem;background-color:#ebeef5;display:inline-flex;align-items:center;width:100%}.zy-progress+uni-view[data-v-cd70e807],.zy-progress+uni-text[data-v-cd70e807]{line-height:1}.zy-progress.xs[data-v-cd70e807]{height:.3125rem}.zy-progress.sm[data-v-cd70e807]{height:.625rem}.zy-progress uni-view[data-v-cd70e807]{width:0;height:100%;align-items:center;display:flex;justify-items:flex-end;justify-content:space-around;font-size:.625rem;color:#fff;transition:width .6s ease}.zy-progress uni-text[data-v-cd70e807]{align-items:center;display:flex;font-size:.625rem;color:#333;text-indent:.3125rem}.zy-progress.text-progress[data-v-cd70e807]{padding-right:1.875rem}.zy-progress.striped uni-view[data-v-cd70e807]{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:2.25rem 2.25rem}.zy-progress.active uni-view[data-v-cd70e807]{animation:progress-stripes-cd70e807 2s linear infinite}@keyframes progress-stripes-cd70e807{0%{background-position:2.25rem 0}to{background-position:0 0}}.zy-btn[data-v-cd70e807]{height:2.8125rem;width:17.1875rem;background:linear-gradient(to right,#00c9ff,#0076ff);border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem}.zy-btn[data-v-cd70e807]:after{display:none}.zy-btn[data-v-cd70e807]:not([class*=bg-]){background-color:#f0f0f0}.zy-btn[class*=line][data-v-cd70e807]{background-color:transparent}.zy-btn[class*=line][data-v-cd70e807]:after{content:" ";display:block;width:200%;height:200%;position:absolute;top:0;left:0;border:.03125rem solid currentColor;transform:scale(.5);transform-origin:0 0;box-sizing:border-box;border-radius:.375rem;z-index:1;pointer-events:none}.zy-btn.round[class*=line][data-v-cd70e807]:after{border-radius:31.25rem}.zy-btn[class*=lines][data-v-cd70e807]:after{border:.1875rem solid currentColor}.zy-btn[class*=bg-][data-v-cd70e807]:after{display:none}.zy-btn.sm[data-v-cd70e807]{padding:0 .625rem;font-size:.625rem;height:1.5rem}.zy-btn.lg[data-v-cd70e807]{padding:0 1.25rem;font-size:1rem;height:2.5rem}.zy-btn.cuIcon.sm[data-v-cd70e807]{width:1.5rem;height:1.5rem}.zy-btn.cuIcon[data-v-cd70e807]{width:2rem;height:2rem;border-radius:15.625rem;padding:0}uni-button.cuIcon.lg[data-v-cd70e807]{width:2.5rem;height:2.5rem}.zy-btn.shadow-blur[data-v-cd70e807]:before{top:.125rem;left:.125rem;filter:blur(.1875rem);opacity:.6}.zy-btn.button-hover[data-v-cd70e807]{transform:translate(.03125rem,.03125rem)}.block[data-v-cd70e807]{display:block}.zy-btn.block[data-v-cd70e807]{display:flex}.zy-btn[disabled][data-v-cd70e807]{opacity:.6;color:#fff}.margin-0[data-v-cd70e807]{margin:0}.margin-xs[data-v-cd70e807]{margin:.3125rem}.margin-sm[data-v-cd70e807]{margin:.625rem}.margin[data-v-cd70e807]{margin:.9375rem}.margin-lg[data-v-cd70e807]{margin:1.25rem}.margin-xl[data-v-cd70e807]{margin:1.5625rem}.margin-top-xs[data-v-cd70e807]{margin-top:.3125rem}.margin-top-sm[data-v-cd70e807]{margin-top:.625rem}.margin-top[data-v-cd70e807]{margin-top:.9375rem}.margin-top-lg[data-v-cd70e807]{margin-top:1.25rem}.margin-top-xl[data-v-cd70e807]{margin-top:1.5625rem}.margin-right-xs[data-v-cd70e807]{margin-right:.3125rem}.margin-right-sm[data-v-cd70e807]{margin-right:.625rem}.margin-right[data-v-cd70e807]{margin-right:.9375rem}.margin-right-lg[data-v-cd70e807]{margin-right:1.25rem}.margin-right-xl[data-v-cd70e807]{margin-right:1.5625rem}.margin-bottom-xs[data-v-cd70e807]{margin-bottom:.3125rem}.margin-bottom-sm[data-v-cd70e807]{margin-bottom:.625rem}.margin-bottom[data-v-cd70e807]{margin-bottom:.9375rem}.margin-bottom-lg[data-v-cd70e807]{margin-bottom:1.25rem}.margin-bottom-xl[data-v-cd70e807]{margin-bottom:1.5625rem}.margin-left-xs[data-v-cd70e807]{margin-left:.3125rem}.margin-left-sm[data-v-cd70e807]{margin-left:.625rem}.margin-left[data-v-cd70e807]{margin-left:.9375rem}.margin-left-lg[data-v-cd70e807]{margin-left:1.25rem}.margin-left-xl[data-v-cd70e807]{margin-left:1.5625rem}.margin-lr-xs[data-v-cd70e807]{margin-left:.3125rem;margin-right:.3125rem}.margin-lr-sm[data-v-cd70e807]{margin-left:.625rem;margin-right:.625rem}.margin-lr[data-v-cd70e807]{margin-left:.9375rem;margin-right:.9375rem}.margin-lr-lg[data-v-cd70e807]{margin-left:1.25rem;margin-right:1.25rem}.margin-lr-xl[data-v-cd70e807]{margin-left:1.5625rem;margin-right:1.5625rem}.margin-tb-xs[data-v-cd70e807]{margin-top:.3125rem;margin-bottom:.3125rem}.margin-tb-sm[data-v-cd70e807]{margin-top:.625rem;margin-bottom:.625rem}.margin-tb[data-v-cd70e807]{margin-top:.9375rem;margin-bottom:.9375rem}.margin-tb-lg[data-v-cd70e807]{margin-top:1.25rem;margin-bottom:1.25rem}.margin-tb-xl[data-v-cd70e807]{margin-top:1.5625rem;margin-bottom:1.5625rem}.padding-0[data-v-cd70e807]{padding:0}.padding-xs[data-v-cd70e807]{padding:.3125rem}.padding-sm[data-v-cd70e807]{padding:.625rem}.padding[data-v-cd70e807]{padding:.9375rem}.padding-lg[data-v-cd70e807]{padding:1.25rem}.padding-xl[data-v-cd70e807]{padding:1.5625rem}.padding-top-xs[data-v-cd70e807]{padding-top:.3125rem}.padding-top-sm[data-v-cd70e807]{padding-top:.625rem}.padding-top[data-v-cd70e807]{padding-top:.9375rem}.padding-top-lg[data-v-cd70e807]{padding-top:1.25rem}.padding-top-xl[data-v-cd70e807]{padding-top:1.5625rem}.padding-right-xs[data-v-cd70e807]{padding-right:.3125rem}.padding-right-sm[data-v-cd70e807]{padding-right:.625rem}.padding-right[data-v-cd70e807]{padding-right:.9375rem}.padding-right-lg[data-v-cd70e807]{padding-right:1.25rem}.padding-right-xl[data-v-cd70e807]{padding-right:1.5625rem}.padding-bottom-xs[data-v-cd70e807]{padding-bottom:.3125rem}.padding-bottom-sm[data-v-cd70e807]{padding-bottom:.625rem}.padding-bottom[data-v-cd70e807]{padding-bottom:.9375rem}.padding-bottom-lg[data-v-cd70e807]{padding-bottom:1.25rem}.padding-bottom-xl[data-v-cd70e807]{padding-bottom:1.5625rem}.padding-left-xs[data-v-cd70e807]{padding-left:.3125rem}.padding-left-sm[data-v-cd70e807]{padding-left:.625rem}.padding-left[data-v-cd70e807]{padding-left:.9375rem}.padding-left-lg[data-v-cd70e807]{padding-left:1.25rem}.padding-left-xl[data-v-cd70e807]{padding-left:1.5625rem}.padding-lr-xs[data-v-cd70e807]{padding-left:.3125rem;padding-right:.3125rem}.padding-lr-sm[data-v-cd70e807]{padding-left:.625rem;padding-right:.625rem}.padding-lr[data-v-cd70e807]{padding-left:.9375rem;padding-right:.9375rem}.padding-lr-lg[data-v-cd70e807]{padding-left:1.25rem;padding-right:1.25rem}.padding-lr-xl[data-v-cd70e807]{padding-left:1.5625rem;padding-right:1.5625rem}.padding-tb-xs[data-v-cd70e807]{padding-top:.3125rem;padding-bottom:.3125rem}.padding-tb-sm[data-v-cd70e807]{padding-top:.625rem;padding-bottom:.625rem}.padding-tb[data-v-cd70e807]{padding-top:.9375rem;padding-bottom:.9375rem}.padding-tb-lg[data-v-cd70e807]{padding-top:1.25rem;padding-bottom:1.25rem}.padding-tb-xl[data-v-cd70e807]{padding-top:1.5625rem;padding-bottom:1.5625rem}.zy-bar[data-v-cd70e807]{display:flex;position:relative;align-items:center;min-height:3.125rem;justify-content:space-between}.zy-bar .action[data-v-cd70e807]{display:flex;align-items:center;height:100%;justify-content:center;max-width:100%}.zy-bar .action.border-title[data-v-cd70e807]{position:relative;top:-.3125rem}.zy-bar .action.border-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;bottom:-.5rem;min-width:2rem;height:.1875rem;left:0}.zy-bar .action.sub-title[data-v-cd70e807]{position:relative;top:-.2rem}.zy-bar .action.sub-title uni-text[data-v-cd70e807]{position:relative;z-index:1}.zy-bar .action.sub-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.2rem;border-radius:.1875rem;width:100%;height:.6rem;left:.6rem;opacity:.3;z-index:0}.zy-bar .action.sub-title uni-text[class*=text-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.7rem;left:.5rem;opacity:.2;z-index:0;text-align:right;font-weight:900;font-size:1.125rem}.zy-bar.justify-center .action.border-title uni-text[data-v-cd70e807]:last-child,.zy-bar.justify-center .action.sub-title uni-text[data-v-cd70e807]:last-child{left:0;right:0;margin:auto;text-align:center}.zy-bar .action[data-v-cd70e807]:first-child{margin-left:.9375rem;font-size:.9375rem}.zy-bar .action uni-text.text-cut[data-v-cd70e807]{text-align:left;width:100%}.zy-bar .zy-avatar[data-v-cd70e807]:first-child{margin-left:.625rem}.zy-bar .action:first-child>uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:-.3em;margin-right:.3em}.zy-bar .action[data-v-cd70e807]:last-child{margin-right:.9375rem}.zy-bar .action>uni-text[class*=cuIcon-][data-v-cd70e807],.zy-bar .action>uni-view[class*=cuIcon-][data-v-cd70e807]{font-size:1.125rem}.zy-bar .action>uni-text[class*=cuIcon-]+uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:.5em}.zy-bar .content[data-v-cd70e807]{position:absolute;text-align:center;width:calc(100% - 10.625rem);left:0;right:0;bottom:0;top:0;margin:auto;height:1.875rem;font-size:1rem;line-height:1.875rem;cursor:none;pointer-events:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.zy-bar.ios .content[data-v-cd70e807]{bottom:7px;height:30px;font-size:1rem;line-height:30px}.zy-bar.btn-group[data-v-cd70e807]{justify-content:space-around}.zy-bar.btn-group uni-button[data-v-cd70e807]{padding:.625rem 1rem}.zy-bar.btn-group uni-button[data-v-cd70e807]{flex:1;margin:0 .625rem;max-width:50%}.zy-bar .search-form[data-v-cd70e807]{background-color:#f5f5f5;line-height:2rem;height:2rem;font-size:.75rem;color:#333;flex:1;display:flex;align-items:center;margin:0 .9375rem}.zy-bar .search-form+.action[data-v-cd70e807]{margin-right:.9375rem}.zy-bar .search-form uni-input[data-v-cd70e807]{flex:1;padding-right:.9375rem;height:2rem;line-height:2rem;font-size:.8125rem;background-color:transparent}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]{margin:0 .5em 0 .8em}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]:before{top:0}.zy-bar.fixed[data-v-cd70e807],.nav.fixed[data-v-cd70e807]{position:fixed;width:100%;top:0;z-index:1024;box-shadow:0 .03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.foot[data-v-cd70e807]{position:fixed;width:100%;bottom:0;z-index:1024;box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar[data-v-cd70e807]{padding:0;height:calc(3.125rem + env(safe-area-inset-bottom)/2);padding-bottom:calc(env(safe-area-inset-bottom)/2)}.zy-tabbar-height[data-v-cd70e807]{min-height:3.125rem;height:calc(3.125rem + env(safe-area-inset-bottom)/2)}.zy-bar.tabbar.shadow[data-v-cd70e807]{box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar .action[data-v-cd70e807]{font-size:.6875rem;position:relative;flex:1;text-align:center;padding:0;display:block;height:auto;line-height:1;margin:0;background-color:inherit;overflow:initial}.zy-bar.tabbar.shop .action[data-v-cd70e807]{width:4.375rem;flex:initial}.zy-bar.tabbar .action.add-action[data-v-cd70e807]{position:relative;z-index:2;padding-top:1.5625rem}.zy-bar.tabbar .action.add-action [class*=cuIcon-][data-v-cd70e807]{position:absolute;width:2.1875rem;z-index:2;height:2.1875rem;border-radius:50%;line-height:2.1875rem;font-size:1.5625rem;top:-1.09375rem;left:0;right:0;margin:auto;padding:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:after{content:"";position:absolute;width:3.125rem;height:3.125rem;top:-1.5625rem;left:0;right:0;margin:auto;box-shadow:0 -.09375rem .25rem rgba(0,0,0,.08);border-radius:1.5625rem;background-color:inherit;z-index:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:before{content:"";position:absolute;width:3.125rem;height:.9375rem;bottom:.9375rem;left:0;right:0;margin:auto;background-color:inherit;z-index:1}.zy-bar.tabbar .btn-group[data-v-cd70e807]{flex:1;display:flex;justify-content:space-around;align-items:center;padding:0 .3125rem}.zy-bar.tabbar uni-button.action[data-v-cd70e807]:after{border:0}.zy-bar.tabbar .action [class*=cuIcon-][data-v-cd70e807]{width:3.125rem;position:relative;display:block;height:auto;margin:0 auto .3125rem;text-align:center;font-size:1.25rem}.zy-bar.tabbar .action .cuIcon-zy-image[data-v-cd70e807]{margin:0 auto}.zy-bar.tabbar .action .cuIcon-zy-image uni-image[data-v-cd70e807]{width:1.5625rem;height:1.5625rem;display:inline-block}.zy-bar.tabbar .submit[data-v-cd70e807]{align-items:center;display:flex;justify-content:center;text-align:center;position:relative;flex:2;align-self:stretch}.zy-bar.tabbar .submit[data-v-cd70e807]:last-child{flex:2.6}.zy-bar.tabbar .submit+.submit[data-v-cd70e807]{flex:2}.zy-bar.tabbar.border .action[data-v-cd70e807]:before{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;transform:scale(.5);transform-origin:0 0;border-right:.03125rem solid rgba(0,0,0,.1);z-index:3}.zy-bar.tabbar.border .action[data-v-cd70e807]:last-child:before{display:none}.zy-bar.input[data-v-cd70e807]{padding-right:.625rem;background-color:#fff}.zy-bar.input uni-input[data-v-cd70e807]{overflow:initial;line-height:2rem;height:2rem;min-height:2rem;flex:1;font-size:.9375rem;margin:0 .625rem}.zy-bar.input .action[data-v-cd70e807]{margin-left:.625rem}.zy-bar.input .action [class*=cuIcon-][data-v-cd70e807]{font-size:1.5rem}.zy-bar.input uni-input+.action[data-v-cd70e807]{margin-right:.625rem;margin-left:0}.zy-bar.input .action:first-child [class*=cuIcon-][data-v-cd70e807]{margin-left:0}.zy-custom[data-v-cd70e807]{display:block;position:relative}.zy-custom .zy-bar .content[data-v-cd70e807]{width:calc(100% - 13.75rem)}.zy-custom .zy-bar .content uni-image[data-v-cd70e807]{height:1.875rem;width:7.5rem}.zy-custom .zy-bar[data-v-cd70e807]{min-height:0px;box-shadow:0 0;z-index:9999}.zy-custom .zy-bar .border-custom[data-v-cd70e807]{position:relative;background:rgba(0,0,0,.15);border-radius:31.25rem;height:30px}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:after{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;border-radius:inherit;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;border:.03125rem solid #ffffff;opacity:.5}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:before{content:" ";width:.03125rem;height:110%;position:absolute;top:22.5%;left:0;right:0;margin:auto;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;opacity:.6;background-color:#fff}.zy-custom .zy-bar .border-custom uni-text[data-v-cd70e807]{display:block;flex:1;margin:auto!important;text-align:center;font-size:1.0625rem}.flex[data-v-cd70e807]{display:flex}.basis-xs[data-v-cd70e807]{flex-basis:20%}.basis-sm[data-v-cd70e807]{flex-basis:40%}.basis-df[data-v-cd70e807]{flex-basis:50%}.basis-lg[data-v-cd70e807]{flex-basis:60%}.basis-xl[data-v-cd70e807]{flex-basis:80%}.flex-sub[data-v-cd70e807]{flex:1}.flex-twice[data-v-cd70e807]{flex:2}.flex-treble[data-v-cd70e807]{flex:3}.flex-direction[data-v-cd70e807]{flex-direction:column}.flex-wrap[data-v-cd70e807]{flex-wrap:wrap}.align-start[data-v-cd70e807]{align-items:flex-start}.align-end[data-v-cd70e807]{align-items:flex-end}.align-center[data-v-cd70e807]{align-items:center}.self-start[data-v-cd70e807]{align-self:flex-start}.self-center[data-v-cd70e807]{align-self:flex-center}.self-end[data-v-cd70e807]{align-self:flex-end}.self-stretch[data-v-cd70e807]{align-self:stretch}.align-stretch[data-v-cd70e807]{align-items:stretch}.justify-start[data-v-cd70e807]{justify-content:flex-start}.justify-end[data-v-cd70e807]{justify-content:flex-end}.justify-center[data-v-cd70e807]{justify-content:center}.justify-between[data-v-cd70e807]{justify-content:space-between}.justify-around[data-v-cd70e807]{justify-content:space-around}.line-red[data-v-cd70e807]:after,.lines-red[data-v-cd70e807]:after{border-color:#e54d42}.line-orange[data-v-cd70e807]:after,.lines-orange[data-v-cd70e807]:after{border-color:#f37b1d}.line-yellow[data-v-cd70e807]:after,.lines-yellow[data-v-cd70e807]:after{border-color:#fbbd08}.line-olive[data-v-cd70e807]:after,.lines-olive[data-v-cd70e807]:after{border-color:#8dc63f}.line-green[data-v-cd70e807]:after,.lines-green[data-v-cd70e807]:after{border-color:#39b54a}.line-cyan[data-v-cd70e807]:after,.lines-cyan[data-v-cd70e807]:after{border-color:#1cbbb4}.line-blue[data-v-cd70e807]:after,.lines-blue[data-v-cd70e807]:after{border-color:#0081ff}.line-purple[data-v-cd70e807]:after,.lines-purple[data-v-cd70e807]:after{border-color:#6739b6}.line-mauve[data-v-cd70e807]:after,.lines-mauve[data-v-cd70e807]:after{border-color:#9c26b0}.line-pink[data-v-cd70e807]:after,.lines-pink[data-v-cd70e807]:after{border-color:#e03997}.line-brown[data-v-cd70e807]:after,.lines-brown[data-v-cd70e807]:after{border-color:#a5673f}.line-grey[data-v-cd70e807]:after,.lines-grey[data-v-cd70e807]:after{border-color:#8799a3}.line-gray[data-v-cd70e807]:after,.lines-gray[data-v-cd70e807]:after{border-color:#aaa}.line-black[data-v-cd70e807]:after,.lines-black[data-v-cd70e807]:after{border-color:#333}.line-white[data-v-cd70e807]:after,.lines-white[data-v-cd70e807]:after{border-color:#fff}.bg-red[data-v-cd70e807]{background-color:#e54d42;color:#fff}.bg-orange[data-v-cd70e807]{background-color:#f37b1d;color:#fff}.bg-yellow[data-v-cd70e807]{background-color:#fbbd08;color:#333}.bg-olive[data-v-cd70e807]{background-color:#8dc63f;color:#fff}.bg-green[data-v-cd70e807]{background-color:#39b54a;color:#fff}.bg-cyan[data-v-cd70e807]{background-color:#1cbbb4;color:#fff}.bg-blue[data-v-cd70e807]{background-color:#0081ff;color:#fff}.bg-purple[data-v-cd70e807]{background-color:#6739b6;color:#fff}.bg-mauve[data-v-cd70e807]{background-color:#9c26b0;color:#fff}.bg-pink[data-v-cd70e807]{background-color:#e03997;color:#fff}.bg-brown[data-v-cd70e807]{background-color:#a5673f;color:#fff}.bg-grey[data-v-cd70e807]{background-color:#8799a3;color:#fff}.bg-gray[data-v-cd70e807]{background-color:#f0f0f0;color:#333}.bg-black[data-v-cd70e807]{background-color:#333;color:#fff}.bg-white[data-v-cd70e807]{background-color:#fff;color:#666}.bg-shadeTop[data-v-cd70e807]{background-image:linear-gradient(#000,rgba(0,0,0,.01));color:#fff}.bg-shadeBottom[data-v-cd70e807]{background-image:linear-gradient(rgba(0,0,0,.01),#000);color:#fff}.bg-red.light[data-v-cd70e807]{color:#e54d42;background-color:#fadbd9}.bg-orange.light[data-v-cd70e807]{color:#f37b1d;background-color:#fde6d2}.bg-yellow.light[data-v-cd70e807]{color:#fbbd08;background-color:rgba(254,242,206,.824)}.bg-olive.light[data-v-cd70e807]{color:#8dc63f;background-color:#e8f4d9}.bg-green.light[data-v-cd70e807]{color:#39b54a;background-color:#d7f0db}.bg-cyan.light[data-v-cd70e807]{color:#1cbbb4;background-color:#d2f1f0}.bg-blue.light[data-v-cd70e807]{color:#0081ff;background-color:#cce6ff}.bg-purple.light[data-v-cd70e807]{color:#6739b6;background-color:#e1d7f0}.bg-mauve.light[data-v-cd70e807]{color:#9c26b0;background-color:#ebd4ef}.bg-pink.light[data-v-cd70e807]{color:#e03997;background-color:#f9d7ea}.bg-brown.light[data-v-cd70e807]{color:#a5673f;background-color:#ede1d9}.bg-grey.light[data-v-cd70e807]{color:#8799a3;background-color:#e7ebed}.bg-gradual-red[data-v-cd70e807]{background-image:linear-gradient(45deg,#f43f3b,#ec008c);color:#fff}.bg-gradual-orange[data-v-cd70e807]{background-image:linear-gradient(45deg,#ff9700,#ed1c24);color:#fff}.bg-gradual-green[data-v-cd70e807]{background-image:linear-gradient(45deg,#39b54a,#8dc63f);color:#fff}.bg-gradual-purple[data-v-cd70e807]{background-image:linear-gradient(45deg,#9000ff,#5e00ff);color:#fff}.bg-gradual-pink[data-v-cd70e807]{background-image:linear-gradient(45deg,#ec008c,#6739b6);color:#fff}.bg-gradual-blue[data-v-cd70e807]{background-image:linear-gradient(45deg,#0081ff,#1cbbb4);color:#fff}.shadow[class*=-red][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.shadow[class*=-orange][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.shadow[class*=-yellow][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.shadow[class*=-olive][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.shadow[class*=-green][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.shadow[class*=-cyan][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.shadow[class*=-blue][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.shadow[class*=-purple][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.shadow[class*=-mauve][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.shadow[class*=-pink][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.shadow[class*=-brown][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.shadow[class*=-grey][data-v-cd70e807],.shadow[class*=-gray][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.shadow[class*=-black][data-v-cd70e807],.shadow[class*=-white][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.text-shadow[class*=-red][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.text-shadow[class*=-orange][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.text-shadow[class*=-yellow][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.text-shadow[class*=-olive][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.text-shadow[class*=-green][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.text-shadow[class*=-cyan][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.text-shadow[class*=-blue][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.text-shadow[class*=-purple][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.text-shadow[class*=-mauve][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.text-shadow[class*=-pink][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.text-shadow[class*=-brown][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.text-shadow[class*=-grey][data-v-cd70e807],.text-shadow[class*=-gray][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.text-shadow[class*=-black][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.bg-img[data-v-cd70e807]{background-size:cover;background-position:center;background-repeat:no-repeat}.bg-mask[data-v-cd70e807]{background-color:#333;position:relative}.bg-mask[data-v-cd70e807]:after{content:"";border-radius:inherit;width:100%;height:100%;display:block;background-color:rgba(0,0,0,.4);position:absolute;left:0;right:0;bottom:0;top:0}.bg-mask uni-view[data-v-cd70e807],.bg-mask uni-cover-view[data-v-cd70e807]{z-index:5;position:relative}.bg-video[data-v-cd70e807]{position:relative}.bg-video uni-video[data-v-cd70e807]{display:block;height:100%;width:100%;object-fit:cover;position:absolute;top:0;z-index:0;pointer-events:none}.text-xs[data-v-cd70e807]{font-size:.625rem}.text-sm[data-v-cd70e807]{font-size:.75rem}.text-df[data-v-cd70e807]{font-size:.875rem}.text-lg[data-v-cd70e807]{font-size:1rem}.text-xl[data-v-cd70e807]{font-size:1.125rem}.text-xxl[data-v-cd70e807]{font-size:1.375rem}.text-sl[data-v-cd70e807]{font-size:2.5rem}.text-xsl[data-v-cd70e807]{font-size:3.75rem}.text-Abc[data-v-cd70e807]{text-transform:Capitalize}.text-ABC[data-v-cd70e807]{text-transform:Uppercase}.text-abc[data-v-cd70e807]{text-transform:Lowercase}.text-price[data-v-cd70e807]:before{content:"\a5";font-size:80%;margin-right:.125rem}.text-cut[data-v-cd70e807]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.text-bold[data-v-cd70e807]{font-weight:700}.text-center[data-v-cd70e807]{text-align:center}.text-content[data-v-cd70e807]{line-height:1.6}.text-left[data-v-cd70e807]{text-align:left}.text-right[data-v-cd70e807]{text-align:right}.text-red[data-v-cd70e807],.line-red[data-v-cd70e807],.lines-red[data-v-cd70e807]{color:#e54d42}.text-orange[data-v-cd70e807],.line-orange[data-v-cd70e807],.lines-orange[data-v-cd70e807]{color:#f37b1d}.text-yellow[data-v-cd70e807],.line-yellow[data-v-cd70e807],.lines-yellow[data-v-cd70e807]{color:#fbbd08}.text-olive[data-v-cd70e807],.line-olive[data-v-cd70e807],.lines-olive[data-v-cd70e807]{color:#8dc63f}.text-green[data-v-cd70e807],.line-green[data-v-cd70e807],.lines-green[data-v-cd70e807]{color:#39b54a}.text-cyan[data-v-cd70e807],.line-cyan[data-v-cd70e807],.lines-cyan[data-v-cd70e807]{color:#1cbbb4}.text-blue[data-v-cd70e807],.line-blue[data-v-cd70e807],.lines-blue[data-v-cd70e807]{color:#0081ff}.text-purple[data-v-cd70e807],.line-purple[data-v-cd70e807],.lines-purple[data-v-cd70e807]{color:#6739b6}.text-mauve[data-v-cd70e807],.line-mauve[data-v-cd70e807],.lines-mauve[data-v-cd70e807]{color:#9c26b0}.text-pink[data-v-cd70e807],.line-pink[data-v-cd70e807],.lines-pink[data-v-cd70e807]{color:#e03997}.text-brown[data-v-cd70e807],.line-brown[data-v-cd70e807],.lines-brown[data-v-cd70e807]{color:#a5673f}.text-grey[data-v-cd70e807],.line-grey[data-v-cd70e807],.lines-grey[data-v-cd70e807]{color:#8799a3}.text-gray[data-v-cd70e807],.line-gray[data-v-cd70e807],.lines-gray[data-v-cd70e807]{color:#aaa}.text-black[data-v-cd70e807],.line-black[data-v-cd70e807],.lines-black[data-v-cd70e807]{color:#333}.text-white[data-v-cd70e807],.line-white[data-v-cd70e807],.lines-white[data-v-cd70e807]{color:#fff}.zy-upgrade-topbg-green[data-v-cd70e807]{background-image:url(../../assets/green.20d5f80a.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-red[data-v-cd70e807]{background-image:url(../../assets/red.8267d3cf.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-pink[data-v-cd70e807]{background-image:url(../../assets/pink.78f243a3.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-yellow[data-v-cd70e807]{background-image:url(../../assets/yellow.4438648c.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-blue[data-v-cd70e807]{background-size:100% 100%;background-repeat:no-repeat}.zy-upgrade-title[data-v-cd70e807]{font-size:1.09375rem;font-weight:600}.backgroundContainer[data-v-bd6792ac]{display:flex;position:relative;width:100%;height:100vh;background-image:url(../../static/index/lightbgcnew.png);background-size:cover;background-position:center center;overflow:hidden;justify-content:center;align-items:center}.menuCard[data-v-bd6792ac]{width:12.5rem;margin:0 3.125rem;height:12.5rem;background:linear-gradient(to bottom,#04bced,#0160ce);color:#fff;font-size:1.5625rem;border-radius:10%;display:flex;justify-content:center;align-items:center}.small-button[data-v-bd6792ac]{position:absolute;width:9.375rem;top:6.25rem;left:18.75rem;height:6.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.9375rem;color:#fff;display:flex;justify-content:center;align-items:center} diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/pages/login/login.css b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/login/login.css new file mode 100644 index 0000000..1b1d1c0 --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/login/login.css @@ -0,0 +1 @@ +.zy-modal[data-v-cd70e807]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1110;opacity:0;outline:0;text-align:center;transform:scale(1.185);-webkit-backface-visibility:hidden;backface-visibility:hidden;perspective:62.5rem;background:rgba(0,0,0,.6);transition:all .3s ease-in-out 0s;pointer-events:none}.zy-modal[data-v-cd70e807]:before{content:"\200b";display:inline-block;height:100%;vertical-align:middle}.zy-modal.show[data-v-cd70e807]{opacity:1;transition-duration:.3s;transform:scale(1);overflow-x:hidden;overflow-y:auto;pointer-events:auto}.zy-dialog[data-v-cd70e807]{position:relative;display:inline-block;vertical-align:middle;margin-left:auto;margin-right:auto;width:21.25rem;max-width:100%;background-color:#f8f8f8;border-radius:.3125rem;overflow:hidden}.zy-modal.bottom-modal[data-v-cd70e807]:before{vertical-align:bottom}.zy-modal.bottom-modal .zy-dialog[data-v-cd70e807]{width:100%;border-radius:0}.zy-modal.bottom-modal[data-v-cd70e807]{margin-bottom:-31.25rem}.zy-modal.bottom-modal.show[data-v-cd70e807]{margin-bottom:0}.zy-modal.drawer-modal[data-v-cd70e807]{transform:scale(1);display:flex}.zy-modal.drawer-modal .zy-dialog[data-v-cd70e807]{height:100%;min-width:6.25rem;border-radius:0;margin:initial;transition-duration:.3s}.zy-modal.drawer-modal.justify-start .zy-dialog[data-v-cd70e807]{transform:translate(-100%)}.zy-modal.drawer-modal.justify-end .zy-dialog[data-v-cd70e807]{transform:translate(100%)}.zy-modal.drawer-modal.show .zy-dialog[data-v-cd70e807]{transform:translate(0)}.zy-modal .zy-dialog>.zy-bar:first-child .action[data-v-cd70e807]{min-width:3.125rem;margin-right:0;min-height:3.125rem}.zy-progress[data-v-cd70e807]{overflow:hidden;height:.875rem;background-color:#ebeef5;display:inline-flex;align-items:center;width:100%}.zy-progress+uni-view[data-v-cd70e807],.zy-progress+uni-text[data-v-cd70e807]{line-height:1}.zy-progress.xs[data-v-cd70e807]{height:.3125rem}.zy-progress.sm[data-v-cd70e807]{height:.625rem}.zy-progress uni-view[data-v-cd70e807]{width:0;height:100%;align-items:center;display:flex;justify-items:flex-end;justify-content:space-around;font-size:.625rem;color:#fff;transition:width .6s ease}.zy-progress uni-text[data-v-cd70e807]{align-items:center;display:flex;font-size:.625rem;color:#333;text-indent:.3125rem}.zy-progress.text-progress[data-v-cd70e807]{padding-right:1.875rem}.zy-progress.striped uni-view[data-v-cd70e807]{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:2.25rem 2.25rem}.zy-progress.active uni-view[data-v-cd70e807]{animation:progress-stripes-cd70e807 2s linear infinite}@keyframes progress-stripes-cd70e807{0%{background-position:2.25rem 0}to{background-position:0 0}}.zy-btn[data-v-cd70e807]{height:2.8125rem;width:17.1875rem;background:linear-gradient(to right,#00c9ff,#0076ff);border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem}.zy-btn[data-v-cd70e807]:after{display:none}.zy-btn[data-v-cd70e807]:not([class*=bg-]){background-color:#f0f0f0}.zy-btn[class*=line][data-v-cd70e807]{background-color:transparent}.zy-btn[class*=line][data-v-cd70e807]:after{content:" ";display:block;width:200%;height:200%;position:absolute;top:0;left:0;border:.03125rem solid currentColor;transform:scale(.5);transform-origin:0 0;box-sizing:border-box;border-radius:.375rem;z-index:1;pointer-events:none}.zy-btn.round[class*=line][data-v-cd70e807]:after{border-radius:31.25rem}.zy-btn[class*=lines][data-v-cd70e807]:after{border:.1875rem solid currentColor}.zy-btn[class*=bg-][data-v-cd70e807]:after{display:none}.zy-btn.sm[data-v-cd70e807]{padding:0 .625rem;font-size:.625rem;height:1.5rem}.zy-btn.lg[data-v-cd70e807]{padding:0 1.25rem;font-size:1rem;height:2.5rem}.zy-btn.cuIcon.sm[data-v-cd70e807]{width:1.5rem;height:1.5rem}.zy-btn.cuIcon[data-v-cd70e807]{width:2rem;height:2rem;border-radius:15.625rem;padding:0}uni-button.cuIcon.lg[data-v-cd70e807]{width:2.5rem;height:2.5rem}.zy-btn.shadow-blur[data-v-cd70e807]:before{top:.125rem;left:.125rem;filter:blur(.1875rem);opacity:.6}.zy-btn.button-hover[data-v-cd70e807]{transform:translate(.03125rem,.03125rem)}.block[data-v-cd70e807]{display:block}.zy-btn.block[data-v-cd70e807]{display:flex}.zy-btn[disabled][data-v-cd70e807]{opacity:.6;color:#fff}.margin-0[data-v-cd70e807]{margin:0}.margin-xs[data-v-cd70e807]{margin:.3125rem}.margin-sm[data-v-cd70e807]{margin:.625rem}.margin[data-v-cd70e807]{margin:.9375rem}.margin-lg[data-v-cd70e807]{margin:1.25rem}.margin-xl[data-v-cd70e807]{margin:1.5625rem}.margin-top-xs[data-v-cd70e807]{margin-top:.3125rem}.margin-top-sm[data-v-cd70e807]{margin-top:.625rem}.margin-top[data-v-cd70e807]{margin-top:.9375rem}.margin-top-lg[data-v-cd70e807]{margin-top:1.25rem}.margin-top-xl[data-v-cd70e807]{margin-top:1.5625rem}.margin-right-xs[data-v-cd70e807]{margin-right:.3125rem}.margin-right-sm[data-v-cd70e807]{margin-right:.625rem}.margin-right[data-v-cd70e807]{margin-right:.9375rem}.margin-right-lg[data-v-cd70e807]{margin-right:1.25rem}.margin-right-xl[data-v-cd70e807]{margin-right:1.5625rem}.margin-bottom-xs[data-v-cd70e807]{margin-bottom:.3125rem}.margin-bottom-sm[data-v-cd70e807]{margin-bottom:.625rem}.margin-bottom[data-v-cd70e807]{margin-bottom:.9375rem}.margin-bottom-lg[data-v-cd70e807]{margin-bottom:1.25rem}.margin-bottom-xl[data-v-cd70e807]{margin-bottom:1.5625rem}.margin-left-xs[data-v-cd70e807]{margin-left:.3125rem}.margin-left-sm[data-v-cd70e807]{margin-left:.625rem}.margin-left[data-v-cd70e807]{margin-left:.9375rem}.margin-left-lg[data-v-cd70e807]{margin-left:1.25rem}.margin-left-xl[data-v-cd70e807]{margin-left:1.5625rem}.margin-lr-xs[data-v-cd70e807]{margin-left:.3125rem;margin-right:.3125rem}.margin-lr-sm[data-v-cd70e807]{margin-left:.625rem;margin-right:.625rem}.margin-lr[data-v-cd70e807]{margin-left:.9375rem;margin-right:.9375rem}.margin-lr-lg[data-v-cd70e807]{margin-left:1.25rem;margin-right:1.25rem}.margin-lr-xl[data-v-cd70e807]{margin-left:1.5625rem;margin-right:1.5625rem}.margin-tb-xs[data-v-cd70e807]{margin-top:.3125rem;margin-bottom:.3125rem}.margin-tb-sm[data-v-cd70e807]{margin-top:.625rem;margin-bottom:.625rem}.margin-tb[data-v-cd70e807]{margin-top:.9375rem;margin-bottom:.9375rem}.margin-tb-lg[data-v-cd70e807]{margin-top:1.25rem;margin-bottom:1.25rem}.margin-tb-xl[data-v-cd70e807]{margin-top:1.5625rem;margin-bottom:1.5625rem}.padding-0[data-v-cd70e807]{padding:0}.padding-xs[data-v-cd70e807]{padding:.3125rem}.padding-sm[data-v-cd70e807]{padding:.625rem}.padding[data-v-cd70e807]{padding:.9375rem}.padding-lg[data-v-cd70e807]{padding:1.25rem}.padding-xl[data-v-cd70e807]{padding:1.5625rem}.padding-top-xs[data-v-cd70e807]{padding-top:.3125rem}.padding-top-sm[data-v-cd70e807]{padding-top:.625rem}.padding-top[data-v-cd70e807]{padding-top:.9375rem}.padding-top-lg[data-v-cd70e807]{padding-top:1.25rem}.padding-top-xl[data-v-cd70e807]{padding-top:1.5625rem}.padding-right-xs[data-v-cd70e807]{padding-right:.3125rem}.padding-right-sm[data-v-cd70e807]{padding-right:.625rem}.padding-right[data-v-cd70e807]{padding-right:.9375rem}.padding-right-lg[data-v-cd70e807]{padding-right:1.25rem}.padding-right-xl[data-v-cd70e807]{padding-right:1.5625rem}.padding-bottom-xs[data-v-cd70e807]{padding-bottom:.3125rem}.padding-bottom-sm[data-v-cd70e807]{padding-bottom:.625rem}.padding-bottom[data-v-cd70e807]{padding-bottom:.9375rem}.padding-bottom-lg[data-v-cd70e807]{padding-bottom:1.25rem}.padding-bottom-xl[data-v-cd70e807]{padding-bottom:1.5625rem}.padding-left-xs[data-v-cd70e807]{padding-left:.3125rem}.padding-left-sm[data-v-cd70e807]{padding-left:.625rem}.padding-left[data-v-cd70e807]{padding-left:.9375rem}.padding-left-lg[data-v-cd70e807]{padding-left:1.25rem}.padding-left-xl[data-v-cd70e807]{padding-left:1.5625rem}.padding-lr-xs[data-v-cd70e807]{padding-left:.3125rem;padding-right:.3125rem}.padding-lr-sm[data-v-cd70e807]{padding-left:.625rem;padding-right:.625rem}.padding-lr[data-v-cd70e807]{padding-left:.9375rem;padding-right:.9375rem}.padding-lr-lg[data-v-cd70e807]{padding-left:1.25rem;padding-right:1.25rem}.padding-lr-xl[data-v-cd70e807]{padding-left:1.5625rem;padding-right:1.5625rem}.padding-tb-xs[data-v-cd70e807]{padding-top:.3125rem;padding-bottom:.3125rem}.padding-tb-sm[data-v-cd70e807]{padding-top:.625rem;padding-bottom:.625rem}.padding-tb[data-v-cd70e807]{padding-top:.9375rem;padding-bottom:.9375rem}.padding-tb-lg[data-v-cd70e807]{padding-top:1.25rem;padding-bottom:1.25rem}.padding-tb-xl[data-v-cd70e807]{padding-top:1.5625rem;padding-bottom:1.5625rem}.zy-bar[data-v-cd70e807]{display:flex;position:relative;align-items:center;min-height:3.125rem;justify-content:space-between}.zy-bar .action[data-v-cd70e807]{display:flex;align-items:center;height:100%;justify-content:center;max-width:100%}.zy-bar .action.border-title[data-v-cd70e807]{position:relative;top:-.3125rem}.zy-bar .action.border-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;bottom:-.5rem;min-width:2rem;height:.1875rem;left:0}.zy-bar .action.sub-title[data-v-cd70e807]{position:relative;top:-.2rem}.zy-bar .action.sub-title uni-text[data-v-cd70e807]{position:relative;z-index:1}.zy-bar .action.sub-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.2rem;border-radius:.1875rem;width:100%;height:.6rem;left:.6rem;opacity:.3;z-index:0}.zy-bar .action.sub-title uni-text[class*=text-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.7rem;left:.5rem;opacity:.2;z-index:0;text-align:right;font-weight:900;font-size:1.125rem}.zy-bar.justify-center .action.border-title uni-text[data-v-cd70e807]:last-child,.zy-bar.justify-center .action.sub-title uni-text[data-v-cd70e807]:last-child{left:0;right:0;margin:auto;text-align:center}.zy-bar .action[data-v-cd70e807]:first-child{margin-left:.9375rem;font-size:.9375rem}.zy-bar .action uni-text.text-cut[data-v-cd70e807]{text-align:left;width:100%}.zy-bar .zy-avatar[data-v-cd70e807]:first-child{margin-left:.625rem}.zy-bar .action:first-child>uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:-.3em;margin-right:.3em}.zy-bar .action[data-v-cd70e807]:last-child{margin-right:.9375rem}.zy-bar .action>uni-text[class*=cuIcon-][data-v-cd70e807],.zy-bar .action>uni-view[class*=cuIcon-][data-v-cd70e807]{font-size:1.125rem}.zy-bar .action>uni-text[class*=cuIcon-]+uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:.5em}.zy-bar .content[data-v-cd70e807]{position:absolute;text-align:center;width:calc(100% - 10.625rem);left:0;right:0;bottom:0;top:0;margin:auto;height:1.875rem;font-size:1rem;line-height:1.875rem;cursor:none;pointer-events:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.zy-bar.ios .content[data-v-cd70e807]{bottom:7px;height:30px;font-size:1rem;line-height:30px}.zy-bar.btn-group[data-v-cd70e807]{justify-content:space-around}.zy-bar.btn-group uni-button[data-v-cd70e807]{padding:.625rem 1rem}.zy-bar.btn-group uni-button[data-v-cd70e807]{flex:1;margin:0 .625rem;max-width:50%}.zy-bar .search-form[data-v-cd70e807]{background-color:#f5f5f5;line-height:2rem;height:2rem;font-size:.75rem;color:#333;flex:1;display:flex;align-items:center;margin:0 .9375rem}.zy-bar .search-form+.action[data-v-cd70e807]{margin-right:.9375rem}.zy-bar .search-form uni-input[data-v-cd70e807]{flex:1;padding-right:.9375rem;height:2rem;line-height:2rem;font-size:.8125rem;background-color:transparent}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]{margin:0 .5em 0 .8em}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]:before{top:0}.zy-bar.fixed[data-v-cd70e807],.nav.fixed[data-v-cd70e807]{position:fixed;width:100%;top:0;z-index:1024;box-shadow:0 .03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.foot[data-v-cd70e807]{position:fixed;width:100%;bottom:0;z-index:1024;box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar[data-v-cd70e807]{padding:0;height:calc(3.125rem + env(safe-area-inset-bottom)/2);padding-bottom:calc(env(safe-area-inset-bottom)/2)}.zy-tabbar-height[data-v-cd70e807]{min-height:3.125rem;height:calc(3.125rem + env(safe-area-inset-bottom)/2)}.zy-bar.tabbar.shadow[data-v-cd70e807]{box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar .action[data-v-cd70e807]{font-size:.6875rem;position:relative;flex:1;text-align:center;padding:0;display:block;height:auto;line-height:1;margin:0;background-color:inherit;overflow:initial}.zy-bar.tabbar.shop .action[data-v-cd70e807]{width:4.375rem;flex:initial}.zy-bar.tabbar .action.add-action[data-v-cd70e807]{position:relative;z-index:2;padding-top:1.5625rem}.zy-bar.tabbar .action.add-action [class*=cuIcon-][data-v-cd70e807]{position:absolute;width:2.1875rem;z-index:2;height:2.1875rem;border-radius:50%;line-height:2.1875rem;font-size:1.5625rem;top:-1.09375rem;left:0;right:0;margin:auto;padding:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:after{content:"";position:absolute;width:3.125rem;height:3.125rem;top:-1.5625rem;left:0;right:0;margin:auto;box-shadow:0 -.09375rem .25rem rgba(0,0,0,.08);border-radius:1.5625rem;background-color:inherit;z-index:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:before{content:"";position:absolute;width:3.125rem;height:.9375rem;bottom:.9375rem;left:0;right:0;margin:auto;background-color:inherit;z-index:1}.zy-bar.tabbar .btn-group[data-v-cd70e807]{flex:1;display:flex;justify-content:space-around;align-items:center;padding:0 .3125rem}.zy-bar.tabbar uni-button.action[data-v-cd70e807]:after{border:0}.zy-bar.tabbar .action [class*=cuIcon-][data-v-cd70e807]{width:3.125rem;position:relative;display:block;height:auto;margin:0 auto .3125rem;text-align:center;font-size:1.25rem}.zy-bar.tabbar .action .cuIcon-zy-image[data-v-cd70e807]{margin:0 auto}.zy-bar.tabbar .action .cuIcon-zy-image uni-image[data-v-cd70e807]{width:1.5625rem;height:1.5625rem;display:inline-block}.zy-bar.tabbar .submit[data-v-cd70e807]{align-items:center;display:flex;justify-content:center;text-align:center;position:relative;flex:2;align-self:stretch}.zy-bar.tabbar .submit[data-v-cd70e807]:last-child{flex:2.6}.zy-bar.tabbar .submit+.submit[data-v-cd70e807]{flex:2}.zy-bar.tabbar.border .action[data-v-cd70e807]:before{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;transform:scale(.5);transform-origin:0 0;border-right:.03125rem solid rgba(0,0,0,.1);z-index:3}.zy-bar.tabbar.border .action[data-v-cd70e807]:last-child:before{display:none}.zy-bar.input[data-v-cd70e807]{padding-right:.625rem;background-color:#fff}.zy-bar.input uni-input[data-v-cd70e807]{overflow:initial;line-height:2rem;height:2rem;min-height:2rem;flex:1;font-size:.9375rem;margin:0 .625rem}.zy-bar.input .action[data-v-cd70e807]{margin-left:.625rem}.zy-bar.input .action [class*=cuIcon-][data-v-cd70e807]{font-size:1.5rem}.zy-bar.input uni-input+.action[data-v-cd70e807]{margin-right:.625rem;margin-left:0}.zy-bar.input .action:first-child [class*=cuIcon-][data-v-cd70e807]{margin-left:0}.zy-custom[data-v-cd70e807]{display:block;position:relative}.zy-custom .zy-bar .content[data-v-cd70e807]{width:calc(100% - 13.75rem)}.zy-custom .zy-bar .content uni-image[data-v-cd70e807]{height:1.875rem;width:7.5rem}.zy-custom .zy-bar[data-v-cd70e807]{min-height:0px;box-shadow:0 0;z-index:9999}.zy-custom .zy-bar .border-custom[data-v-cd70e807]{position:relative;background:rgba(0,0,0,.15);border-radius:31.25rem;height:30px}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:after{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;border-radius:inherit;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;border:.03125rem solid #ffffff;opacity:.5}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:before{content:" ";width:.03125rem;height:110%;position:absolute;top:22.5%;left:0;right:0;margin:auto;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;opacity:.6;background-color:#fff}.zy-custom .zy-bar .border-custom uni-text[data-v-cd70e807]{display:block;flex:1;margin:auto!important;text-align:center;font-size:1.0625rem}.flex[data-v-cd70e807]{display:flex}.basis-xs[data-v-cd70e807]{flex-basis:20%}.basis-sm[data-v-cd70e807]{flex-basis:40%}.basis-df[data-v-cd70e807]{flex-basis:50%}.basis-lg[data-v-cd70e807]{flex-basis:60%}.basis-xl[data-v-cd70e807]{flex-basis:80%}.flex-sub[data-v-cd70e807]{flex:1}.flex-twice[data-v-cd70e807]{flex:2}.flex-treble[data-v-cd70e807]{flex:3}.flex-direction[data-v-cd70e807]{flex-direction:column}.flex-wrap[data-v-cd70e807]{flex-wrap:wrap}.align-start[data-v-cd70e807]{align-items:flex-start}.align-end[data-v-cd70e807]{align-items:flex-end}.align-center[data-v-cd70e807]{align-items:center}.self-start[data-v-cd70e807]{align-self:flex-start}.self-center[data-v-cd70e807]{align-self:flex-center}.self-end[data-v-cd70e807]{align-self:flex-end}.self-stretch[data-v-cd70e807]{align-self:stretch}.align-stretch[data-v-cd70e807]{align-items:stretch}.justify-start[data-v-cd70e807]{justify-content:flex-start}.justify-end[data-v-cd70e807]{justify-content:flex-end}.justify-center[data-v-cd70e807]{justify-content:center}.justify-between[data-v-cd70e807]{justify-content:space-between}.justify-around[data-v-cd70e807]{justify-content:space-around}.line-red[data-v-cd70e807]:after,.lines-red[data-v-cd70e807]:after{border-color:#e54d42}.line-orange[data-v-cd70e807]:after,.lines-orange[data-v-cd70e807]:after{border-color:#f37b1d}.line-yellow[data-v-cd70e807]:after,.lines-yellow[data-v-cd70e807]:after{border-color:#fbbd08}.line-olive[data-v-cd70e807]:after,.lines-olive[data-v-cd70e807]:after{border-color:#8dc63f}.line-green[data-v-cd70e807]:after,.lines-green[data-v-cd70e807]:after{border-color:#39b54a}.line-cyan[data-v-cd70e807]:after,.lines-cyan[data-v-cd70e807]:after{border-color:#1cbbb4}.line-blue[data-v-cd70e807]:after,.lines-blue[data-v-cd70e807]:after{border-color:#0081ff}.line-purple[data-v-cd70e807]:after,.lines-purple[data-v-cd70e807]:after{border-color:#6739b6}.line-mauve[data-v-cd70e807]:after,.lines-mauve[data-v-cd70e807]:after{border-color:#9c26b0}.line-pink[data-v-cd70e807]:after,.lines-pink[data-v-cd70e807]:after{border-color:#e03997}.line-brown[data-v-cd70e807]:after,.lines-brown[data-v-cd70e807]:after{border-color:#a5673f}.line-grey[data-v-cd70e807]:after,.lines-grey[data-v-cd70e807]:after{border-color:#8799a3}.line-gray[data-v-cd70e807]:after,.lines-gray[data-v-cd70e807]:after{border-color:#aaa}.line-black[data-v-cd70e807]:after,.lines-black[data-v-cd70e807]:after{border-color:#333}.line-white[data-v-cd70e807]:after,.lines-white[data-v-cd70e807]:after{border-color:#fff}.bg-red[data-v-cd70e807]{background-color:#e54d42;color:#fff}.bg-orange[data-v-cd70e807]{background-color:#f37b1d;color:#fff}.bg-yellow[data-v-cd70e807]{background-color:#fbbd08;color:#333}.bg-olive[data-v-cd70e807]{background-color:#8dc63f;color:#fff}.bg-green[data-v-cd70e807]{background-color:#39b54a;color:#fff}.bg-cyan[data-v-cd70e807]{background-color:#1cbbb4;color:#fff}.bg-blue[data-v-cd70e807]{background-color:#0081ff;color:#fff}.bg-purple[data-v-cd70e807]{background-color:#6739b6;color:#fff}.bg-mauve[data-v-cd70e807]{background-color:#9c26b0;color:#fff}.bg-pink[data-v-cd70e807]{background-color:#e03997;color:#fff}.bg-brown[data-v-cd70e807]{background-color:#a5673f;color:#fff}.bg-grey[data-v-cd70e807]{background-color:#8799a3;color:#fff}.bg-gray[data-v-cd70e807]{background-color:#f0f0f0;color:#333}.bg-black[data-v-cd70e807]{background-color:#333;color:#fff}.bg-white[data-v-cd70e807]{background-color:#fff;color:#666}.bg-shadeTop[data-v-cd70e807]{background-image:linear-gradient(#000,rgba(0,0,0,.01));color:#fff}.bg-shadeBottom[data-v-cd70e807]{background-image:linear-gradient(rgba(0,0,0,.01),#000);color:#fff}.bg-red.light[data-v-cd70e807]{color:#e54d42;background-color:#fadbd9}.bg-orange.light[data-v-cd70e807]{color:#f37b1d;background-color:#fde6d2}.bg-yellow.light[data-v-cd70e807]{color:#fbbd08;background-color:rgba(254,242,206,.824)}.bg-olive.light[data-v-cd70e807]{color:#8dc63f;background-color:#e8f4d9}.bg-green.light[data-v-cd70e807]{color:#39b54a;background-color:#d7f0db}.bg-cyan.light[data-v-cd70e807]{color:#1cbbb4;background-color:#d2f1f0}.bg-blue.light[data-v-cd70e807]{color:#0081ff;background-color:#cce6ff}.bg-purple.light[data-v-cd70e807]{color:#6739b6;background-color:#e1d7f0}.bg-mauve.light[data-v-cd70e807]{color:#9c26b0;background-color:#ebd4ef}.bg-pink.light[data-v-cd70e807]{color:#e03997;background-color:#f9d7ea}.bg-brown.light[data-v-cd70e807]{color:#a5673f;background-color:#ede1d9}.bg-grey.light[data-v-cd70e807]{color:#8799a3;background-color:#e7ebed}.bg-gradual-red[data-v-cd70e807]{background-image:linear-gradient(45deg,#f43f3b,#ec008c);color:#fff}.bg-gradual-orange[data-v-cd70e807]{background-image:linear-gradient(45deg,#ff9700,#ed1c24);color:#fff}.bg-gradual-green[data-v-cd70e807]{background-image:linear-gradient(45deg,#39b54a,#8dc63f);color:#fff}.bg-gradual-purple[data-v-cd70e807]{background-image:linear-gradient(45deg,#9000ff,#5e00ff);color:#fff}.bg-gradual-pink[data-v-cd70e807]{background-image:linear-gradient(45deg,#ec008c,#6739b6);color:#fff}.bg-gradual-blue[data-v-cd70e807]{background-image:linear-gradient(45deg,#0081ff,#1cbbb4);color:#fff}.shadow[class*=-red][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.shadow[class*=-orange][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.shadow[class*=-yellow][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.shadow[class*=-olive][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.shadow[class*=-green][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.shadow[class*=-cyan][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.shadow[class*=-blue][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.shadow[class*=-purple][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.shadow[class*=-mauve][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.shadow[class*=-pink][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.shadow[class*=-brown][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.shadow[class*=-grey][data-v-cd70e807],.shadow[class*=-gray][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.shadow[class*=-black][data-v-cd70e807],.shadow[class*=-white][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.text-shadow[class*=-red][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.text-shadow[class*=-orange][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.text-shadow[class*=-yellow][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.text-shadow[class*=-olive][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.text-shadow[class*=-green][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.text-shadow[class*=-cyan][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.text-shadow[class*=-blue][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.text-shadow[class*=-purple][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.text-shadow[class*=-mauve][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.text-shadow[class*=-pink][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.text-shadow[class*=-brown][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.text-shadow[class*=-grey][data-v-cd70e807],.text-shadow[class*=-gray][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.text-shadow[class*=-black][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.bg-img[data-v-cd70e807]{background-size:cover;background-position:center;background-repeat:no-repeat}.bg-mask[data-v-cd70e807]{background-color:#333;position:relative}.bg-mask[data-v-cd70e807]:after{content:"";border-radius:inherit;width:100%;height:100%;display:block;background-color:rgba(0,0,0,.4);position:absolute;left:0;right:0;bottom:0;top:0}.bg-mask uni-view[data-v-cd70e807],.bg-mask uni-cover-view[data-v-cd70e807]{z-index:5;position:relative}.bg-video[data-v-cd70e807]{position:relative}.bg-video uni-video[data-v-cd70e807]{display:block;height:100%;width:100%;object-fit:cover;position:absolute;top:0;z-index:0;pointer-events:none}.text-xs[data-v-cd70e807]{font-size:.625rem}.text-sm[data-v-cd70e807]{font-size:.75rem}.text-df[data-v-cd70e807]{font-size:.875rem}.text-lg[data-v-cd70e807]{font-size:1rem}.text-xl[data-v-cd70e807]{font-size:1.125rem}.text-xxl[data-v-cd70e807]{font-size:1.375rem}.text-sl[data-v-cd70e807]{font-size:2.5rem}.text-xsl[data-v-cd70e807]{font-size:3.75rem}.text-Abc[data-v-cd70e807]{text-transform:Capitalize}.text-ABC[data-v-cd70e807]{text-transform:Uppercase}.text-abc[data-v-cd70e807]{text-transform:Lowercase}.text-price[data-v-cd70e807]:before{content:"\a5";font-size:80%;margin-right:.125rem}.text-cut[data-v-cd70e807]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.text-bold[data-v-cd70e807]{font-weight:700}.text-center[data-v-cd70e807]{text-align:center}.text-content[data-v-cd70e807]{line-height:1.6}.text-left[data-v-cd70e807]{text-align:left}.text-right[data-v-cd70e807]{text-align:right}.text-red[data-v-cd70e807],.line-red[data-v-cd70e807],.lines-red[data-v-cd70e807]{color:#e54d42}.text-orange[data-v-cd70e807],.line-orange[data-v-cd70e807],.lines-orange[data-v-cd70e807]{color:#f37b1d}.text-yellow[data-v-cd70e807],.line-yellow[data-v-cd70e807],.lines-yellow[data-v-cd70e807]{color:#fbbd08}.text-olive[data-v-cd70e807],.line-olive[data-v-cd70e807],.lines-olive[data-v-cd70e807]{color:#8dc63f}.text-green[data-v-cd70e807],.line-green[data-v-cd70e807],.lines-green[data-v-cd70e807]{color:#39b54a}.text-cyan[data-v-cd70e807],.line-cyan[data-v-cd70e807],.lines-cyan[data-v-cd70e807]{color:#1cbbb4}.text-blue[data-v-cd70e807],.line-blue[data-v-cd70e807],.lines-blue[data-v-cd70e807]{color:#0081ff}.text-purple[data-v-cd70e807],.line-purple[data-v-cd70e807],.lines-purple[data-v-cd70e807]{color:#6739b6}.text-mauve[data-v-cd70e807],.line-mauve[data-v-cd70e807],.lines-mauve[data-v-cd70e807]{color:#9c26b0}.text-pink[data-v-cd70e807],.line-pink[data-v-cd70e807],.lines-pink[data-v-cd70e807]{color:#e03997}.text-brown[data-v-cd70e807],.line-brown[data-v-cd70e807],.lines-brown[data-v-cd70e807]{color:#a5673f}.text-grey[data-v-cd70e807],.line-grey[data-v-cd70e807],.lines-grey[data-v-cd70e807]{color:#8799a3}.text-gray[data-v-cd70e807],.line-gray[data-v-cd70e807],.lines-gray[data-v-cd70e807]{color:#aaa}.text-black[data-v-cd70e807],.line-black[data-v-cd70e807],.lines-black[data-v-cd70e807]{color:#333}.text-white[data-v-cd70e807],.line-white[data-v-cd70e807],.lines-white[data-v-cd70e807]{color:#fff}.zy-upgrade-topbg-green[data-v-cd70e807]{background-image:url(../../assets/green.20d5f80a.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-red[data-v-cd70e807]{background-image:url(../../assets/red.8267d3cf.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-pink[data-v-cd70e807]{background-image:url(../../assets/pink.78f243a3.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-yellow[data-v-cd70e807]{background-image:url(../../assets/yellow.4438648c.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-blue[data-v-cd70e807]{background-size:100% 100%;background-repeat:no-repeat}.zy-upgrade-title[data-v-cd70e807]{font-size:1.09375rem;font-weight:600}.all[data-v-8b11c490]{margin-top:1.40625rem}.all .all-content[data-v-8b11c490]{width:100%;height:40.625rem}.all[data-v-842c1160]{margin-top:1.40625rem}.all .all-content[data-v-842c1160]{width:100%;height:40.625rem}.captcha-container[data-v-ca7ea5fb]{-webkit-user-select:none;user-select:none;background-color:#fff;width:18.75rem;height:21.875rem;margin:0 auto;border-radius:.9375rem;overflow:hidden;padding:0 .9375rem}.captcha-image[data-v-ca7ea5fb]{position:relative;overflow:hidden}.bg-image[data-v-ca7ea5fb]{position:relative;z-index:1;display:block;width:100%;height:100%}.overlay[data-v-ca7ea5fb]{position:absolute;top:0;left:0;width:100%;height:100%;z-index:100;pointer-events:none}.hole[data-v-ca7ea5fb],.piece[data-v-ca7ea5fb]{position:absolute;z-index:101;box-shadow:0 0 .1875rem rgba(0,0,0,.4)}.hole[data-v-ca7ea5fb]{background-color:rgba(0,0,0,.3)}.piece[data-v-ca7ea5fb]{background-repeat:no-repeat;background-size:cover;cursor:grab}.slider-bar[data-v-ca7ea5fb]{position:relative;height:3.125rem;margin-top:0;background:#f5f6fc;width:16.875rem;display:flex;justify-content:center;align-items:center}.slider-bar .slider-bar-font[data-v-ca7ea5fb]{color:#a9a9ab;font-size:.875rem}.slider-button[data-v-ca7ea5fb]{position:absolute;top:0;left:0;width:3.125rem;height:3.125rem;background:#fff;box-shadow:0 0 .625rem rgba(0,0,0,.2);-webkit-user-select:none;user-select:none;border-radius:.3125rem;border:.09375rem solid #8bdaca;display:flex;justify-content:center;align-items:center}.font-title[data-v-ca7ea5fb]{width:100%;display:flex;justify-content:center;align-items:center;height:3.125rem;font-size:1.09375rem;font-weight:700}.backgroundContainer[data-v-e979d453]{display:flex;position:relative;width:100%;height:100vh;background-color:#eff0f4;overflow:hidden;justify-content:center;align-items:center;flex-direction:column}.backgroundContainer .title-img[data-v-e979d453]{width:4.6875rem;height:6.25rem;margin-bottom:4.0625rem}.backgroundContainer .input-father[data-v-e979d453]{height:2.8125rem;width:17.1875rem;background-color:#fff;border-radius:.9375rem;margin-bottom:.625rem;display:flex;align-items:center;position:relative}.backgroundContainer .input-father .input-code[data-v-e979d453]{position:absolute;top:0;right:.625rem;width:4.6875rem;height:2.8125rem}.backgroundContainer .input-father-blue[data-v-e979d453]{margin-top:3.125rem;height:2.8125rem;width:17.1875rem;background:linear-gradient(to right,#00c9ff,#0076ff);border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem}.backgroundContainer .input-father-gray[data-v-e979d453]{margin-top:3.125rem;height:2.8125rem;width:17.1875rem;background:#949aa3;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem}.under-container-title[data-v-e979d453]{display:flex;margin-top:2.5rem;align-items:center;font-size:.78125rem;font-weight:500}.under-container-title .radio-circle-blue[data-v-e979d453]{color:#0083ff;margin-top:.09375rem}.under-container-title .radio-circle-font[data-v-e979d453]{color:#5a607f;margin-top:.09375rem}.under-container-title .radio-circle[data-v-e979d453],.under-container-title .radio-circle-target[data-v-e979d453]{position:relative;margin-top:.0625rem;width:1.25rem;height:1.25rem;border-radius:50%;border:.0625rem solid #C0C5D9;background-color:transparent}.under-container-title .radio-circle-target[data-v-e979d453]:after{content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:.9375rem;height:.9375rem;background-color:#00c9ff;border-radius:50%}.add[data-v-e979d453]{margin-left:1.5625rem;font-size:1rem}.shu[data-v-e979d453]{background-color:#d2d5d7;width:.0625rem;height:1.09375rem;margin:0 .625rem}.password[data-v-e979d453]{font-size:.84375rem;margin-left:.9375rem;width:100%;height:3.125rem}.popup-wrapper[data-v-e979d453]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:2;opacity:0;animation:fadeIn-e979d453 .5s ease forwards}.popup-any[data-v-e979d453]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:999;opacity:0;animation:fadeIn-e979d453 .5s ease forwards}@keyframes fadeIn-e979d453{0%{opacity:0}to{opacity:1}}.mask[data-v-e979d453]{position:absolute;top:0;right:0;bottom:0;left:0}.box-any[data-v-e979d453]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:31.25rem;height:46.875rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;padding:2.03125rem 1.25rem}.box-small[data-v-e979d453]{position:absolute;bottom:.625rem;left:50%;transform:translate(-50%);width:25rem;height:10.9375rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;align-items:center;padding:0 2.03125rem}.box-small .box-title[data-v-e979d453]{font-size:1.09375rem;margin:1.875rem 0}.box-small .font-father[data-v-e979d453]{line-height:1.5625rem}.box-small .text-blue[data-v-e979d453]{color:#0083ff}.box-change[data-v-e979d453]{position:absolute;top:60%;left:50%;transform:translate(-50%,-60%);width:25rem;height:21.875rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;align-items:center;padding:0 2.03125rem}.box-change .box-title[data-v-e979d453]{font-size:1.09375rem;margin:1.875rem 0;font-weight:600}.box-change .input-father[data-v-e979d453]{height:2.8125rem;width:17.1875rem;background-color:#f7f7fb;border-radius:.9375rem;margin-bottom:1.25rem;display:flex;align-items:center}.box[data-v-e979d453]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:25rem;height:34.375rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;align-items:center;padding:0 2.03125rem}.box .box-title[data-v-e979d453]{font-size:1.09375rem;margin:1.875rem 0}.box .font-father[data-v-e979d453]{line-height:1.5625rem}.box .text-blue[data-v-e979d453]{color:#0083ff}.box .gray-box-bgc[data-v-e979d453]{width:100%;height:7.8125rem;border:.0625rem solid #CFD5E4;background-color:#f2f4f7;color:#777;border-radius:.625rem;padding:.625rem}.blue-button[data-v-e979d453]{width:100%;height:2.8125rem;background:linear-gradient(to right,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;margin-top:1.5625rem;border-radius:.78125rem;font-size:1.09375rem;letter-spacing:.15625rem}.white-button[data-v-e979d453]{width:100%;height:2.8125rem;display:flex;justify-content:center;align-items:center;margin-top:.3125rem;border-radius:.78125rem;font-size:1.09375rem}.title-left[data-v-e979d453]{display:flex;align-items:center}.title-left .back-img[data-v-e979d453]{width:1.875rem;height:1.875rem;margin-right:.9375rem}.title-left .back-font[data-v-e979d453]{font-size:1.09375rem;font-weight:600}.bg-mask[data-v-e979d453]{position:fixed;top:0;left:0;width:100vw;height:100vh;background:rgba(0,0,0,.3);-webkit-backdrop-filter:blur(.15625rem);backdrop-filter:blur(.15625rem);z-index:998;display:flex;justify-content:center;align-items:center} diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/pages/timeMatrix/index.css b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/timeMatrix/index.css new file mode 100644 index 0000000..ef51ccf --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/timeMatrix/index.css @@ -0,0 +1 @@ +.backgroundContainer[data-v-70d077f4]{display:flex;position:relative;width:100%;height:100vh;background-image:url(../../static/index/lightbgcnew.png);background-size:cover;background-position:center center;overflow:hidden}.darkbackgroundContainer[data-v-70d077f4]{display:flex;position:relative;width:100%;height:100vh;background-image:url(../../static/index/background.png);background-size:cover;background-position:center center;overflow:hidden}.doctorsay-container-container[data-v-70d077f4]{border:.0625rem solid #fff;width:calc(100% - .125rem);height:calc(100vh - .125rem);background:url(../../static/index/lightbgcnew.png) center / cover,rgba(255,255,255,.3);-webkit-backdrop-filter:blur(.625rem);backdrop-filter:blur(.625rem);background-blend-mode:screen;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);overflow:hidden}.doctorsay-container-container .super-card-end[data-v-70d077f4]{width:100%;display:flex}.doctorsay-container-container .super-card-end .super-end-father[data-v-70d077f4]{height:100%;display:flex;flex-direction:column;width:100%}.doctorsay-container-container .super-card-end .super-end-father .super-end-items-all[data-v-70d077f4]{width:calc(100% - 2.65625rem);height:6.25rem;margin-left:1.25rem;margin-right:1.25rem;margin-top:.625rem}.doctorsay-container-container .super-card-end .super-end-father .super-end-items[data-v-70d077f4]{display:flex;width:calc(100% - 2.65625rem);height:6.25rem}.doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father[data-v-70d077f4]{margin-right:.625rem;width:4.6875rem;height:4.6875rem;display:flex;justify-content:center;align-items:center;flex-direction:column;position:relative;background:linear-gradient(to bottom right,#fff,#dcdcf9,#dbdcf8);border-radius:.78125rem;border:.0625rem solid #fff;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:all 1.5s ease-in-out}.doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-father-close-father[data-v-70d077f4]{width:1.25rem;height:1.25rem;border-radius:50%;display:flex;background-color:#a9acb1;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;color:#fff}.doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father[data-v-70d077f4]{width:3.125rem;height:3.125rem;border-radius:50%;display:flex;justify-content:center;align-items:center}.doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father .super-end-items-img[data-v-70d077f4]{width:2.65625rem;height:2.65625rem}.doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father-active[data-v-70d077f4]{width:3.125rem;height:3.125rem;border-radius:50%;display:flex;justify-content:center;align-items:center;animation:shake .5s infinite}.doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father-active .super-end-items-img[data-v-70d077f4]{width:2.65625rem;height:2.65625rem}.doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-font[data-v-70d077f4]{margin-top:-.3125rem;font-size:.78125rem}.doctorsay-container-container .super-card-end .super-end-father .super-end-font-father[data-v-70d077f4]{display:flex;margin-top:.625rem;margin-bottom:.3125rem}.doctorsay-container-container .super-card-end .super-end-father .super-end-font-father .super-end-font-gun[data-v-70d077f4]{margin-left:1.25rem;margin-right:.625rem;margin-top:.15625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.doctorsay-container-container .super-card-end .super-end-father .super-end-font-father .super-end-font-font[data-v-70d077f4]{font-size:1.1875rem;font-weight:700}.doctorsay-container-container .doctorsay-container-title[data-v-70d077f4]{width:100%;height:3.28125rem;margin-top:1.5625rem;display:flex;align-items:center;justify-content:space-between}.doctorsay-container-container .doctorsay-container-title .doctorsay-container-right[data-v-70d077f4]{height:100%;display:flex;align-items:center;width:25rem}.doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-juzhen[data-v-70d077f4]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem}.doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father[data-v-70d077f4]{display:flex}.doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father .doctorsay-container-button-target[data-v-70d077f4]{display:flex;justify-content:center;align-items:center;background-color:#3fa9f5;color:#fff;width:4.375rem;height:1.875rem;margin-right:.625rem;font-size:.875rem;border-radius:.3125rem}.doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father .doctorsay-container-button[data-v-70d077f4]{display:flex;justify-content:center;align-items:center;background-color:#fff;width:4.375rem;height:1.875rem;margin-right:.625rem;font-size:.875rem;border-radius:.3125rem}.doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-right-kuai-cheng[data-v-70d077f4]{background-color:#ffdba1;height:1.09375rem;width:1.09375rem;border-radius:.21875rem}.doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-right-kuai-zi[data-v-70d077f4]{background-color:#7b61ff;height:1.09375rem;width:1.09375rem;border-radius:.21875rem}.doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-kuai-font[data-v-70d077f4]{font-size:1rem;margin-left:.3125rem;margin-right:.78125rem}.doctorsay-container-container .doctorsay-container-title .doctorsay-container-left[data-v-70d077f4]{display:flex}.doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-left-gun[data-v-70d077f4]{margin-top:.21875rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-left-font[data-v-70d077f4]{font-size:1.1875rem;font-weight:700}.super-card[data-v-70d077f4]{display:flex;justify-content:center;width:100%;height:calc(100% - 6.25rem)}.super-card .scroll-x[data-v-70d077f4]{height:100%;width:100%}.super-card .super-card-container[data-v-70d077f4]{background:url(../../static/index/clearmountain.png) center / cover,rgba(255,255,255,.5);background-blend-mode:screen;isolation:isolate;overflow:hidden;width:calc(100% - 3.125rem);height:100%;border-radius:.625rem;border:.0625rem solid #fff;box-shadow:.3125rem .3125rem 20px rgba(0,0,0,.1);position:relative}.super-card .super-card-time[data-v-70d077f4]{display:flex;justify-content:center;align-items:center;height:2.5rem;width:7.71875rem;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1;font-weight:700}.super-card .super-card-time-und[data-v-70d077f4]{display:flex;justify-content:center;align-items:center;width:7.71875rem;flex-direction:column;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1}.super-card .super-card-time-card[data-v-70d077f4]{display:flex;justify-content:center;align-items:center;height:4.78125rem;width:100%;border-top:.03125rem solid transparent;border-image:repeating-linear-gradient(90deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.title-time-border-blue[data-v-70d077f4]{z-index:999;background:linear-gradient(to right,#a9acb1,#a9acb1) top left / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#a9acb1,#a9acb1) top left / .25rem 1.875rem no-repeat,linear-gradient(to left,#a9acb1,#a9acb1) top right / 1.875rem .25rem no-repeat,linear-gradient(to bottom,#a9acb1,#a9acb1) top right / .25rem 1.875rem no-repeat,linear-gradient(to right,#a9acb1,#a9acb1) bottom left / 1.875rem .25rem no-repeat,linear-gradient(to top,#a9acb1,#a9acb1) bottom left / .25rem 1.875rem no-repeat,linear-gradient(to left,#a9acb1,#a9acb1) bottom right / 1.875rem .25rem no-repeat,linear-gradient(to top,#a9acb1,#a9acb1) bottom right / .25rem 1.875rem no-repeat}.title-time-border-yellow[data-v-70d077f4]{margin:.3125rem;border:.0625rem solid #d0d8e0;background:linear-gradient(to bottom,#fff1db,#ffe2b2);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;box-shadow:.1875rem .1875rem .375rem rgba(255,138,0,.7)}.title-time-border-pouple[data-v-70d077f4]{margin:.3125rem;border:.03125rem solid #dae8fa;background:linear-gradient(to bottom,#f1eeff,#e3deff);width:calc(100% - .625rem);height:calc(100% - .625rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column;box-shadow:.1875rem .1875rem .375rem rgba(123,97,255,.7)}.title-time-border[data-v-70d077f4]{margin-top:.125rem;margin-left:.125rem;width:calc(100% - .25rem);height:calc(100% - .25rem);border-radius:.625rem;display:flex;align-items:center;flex-direction:column}.title-time[data-v-70d077f4]{display:flex;width:100%;position:relative}.title-time .title-time-time[data-v-70d077f4]{font-size:1rem;margin-left:1.25rem;margin-top:.375rem}.title-time .title-time-button[data-v-70d077f4]{position:absolute;top:-.125rem;right:-.125rem;width:2.03125rem;height:1.875rem}.title-time .title-time-zhejiao[data-v-70d077f4]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.title-time .title-time-font[data-v-70d077f4]{position:absolute;top:.21875rem;right:.15625rem;font-size:.625rem;color:#fff}.down-icons[data-v-70d077f4]{margin-top:.15625rem;width:100%;height:1.8125rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-70d077f4]{margin:0 .15625rem;font-size:.625rem;padding:.09375rem .15625rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}.popup-overlay[data-v-70d077f4]{position:fixed;top:0;left:0;right:0;bottom:0;display:flex;justify-content:center;align-items:center;z-index:998}.popup-overlay .popup-overlay-content[data-v-70d077f4]{position:absolute;display:flex;align-items:center;width:25rem;height:12.1875rem;background-color:#fff;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-overlay .popup-overlay-content .popup-overlay-content-left[data-v-70d077f4]{height:100%;width:10.9375rem;display:flex;justify-content:center;align-items:center;flex-direction:column}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-img[data-v-70d077f4]{width:8.75rem;height:5.625rem;margin-top:-.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-font[data-v-70d077f4]{font-size:.9375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right[data-v-70d077f4]{height:100%;width:14.0625rem;position:relative}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-font[data-v-70d077f4]{font-size:1.5625rem;margin-top:3.125rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.popup-overlay .popup-overlay-content .popup-overlay-content-right .time-text[data-v-70d077f4]{margin-left:.3125rem;font-size:.9375rem;width:11.875rem;margin-bottom:1.5625rem;line-height:1.09375rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richang[data-v-70d077f4]{background-color:#ffc363;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-richangnot[data-v-70d077f4]{background-color:#7b61ff;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem;color:#fff}.popup-overlay .popup-overlay-content .popup-overlay-content-right .right-crush[data-v-70d077f4]{position:absolute;top:.625rem;right:.625rem;width:2.1875rem;height:2.1875rem;animation:shake .5s 3}.titlebutton-father[data-v-70d077f4]{display:flex;margin-right:.625rem}.titlebutton-father .titlebutton[data-v-70d077f4]{background-color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .9375rem;border-radius:.625rem;font-size:.84375rem;margin-right:.3125rem}.titlebutton-father .titlebutton-target[data-v-70d077f4]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .9375rem;border-radius:.625rem;font-size:.84375rem;margin-right:.3125rem}.titlebutton-father .titlebutton-target-yellow[data-v-70d077f4]{background:#ffdba1;display:flex;justify-content:center;align-items:center;padding:.3125rem .9375rem;border-radius:.625rem;font-size:.84375rem;margin-right:.3125rem}.titlebutton-father .titlebutton-target-pouple[data-v-70d077f4]{background:#7b61ff;color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .9375rem;border-radius:.625rem;font-size:.84375rem;margin-right:.3125rem}.boom[data-v-70d077f4]{position:absolute;top:2.5rem;left:0;width:.9375rem;height:46.875rem;display:flex;flex-direction:column;align-items:center;overflow:hidden;z-index:10}.boom .boom-son[data-v-70d077f4]{height:4.78125rem;width:100%;font-size:.6875rem;letter-spacing:.15625rem;-webkit-writing-mode:vertical-rl;writing-mode:vertical-rl;text-align:center;z-index:10;background:linear-gradient(to bottom,#ffe2b2,#e3deff);border-bottom-right-radius:1.25rem;border-top-right-radius:1.25rem}.boom .boom-son-target[data-v-70d077f4]{height:4.78125rem;width:100%;font-size:.6875rem;letter-spacing:.15625rem;-webkit-writing-mode:vertical-rl;writing-mode:vertical-rl;text-align:center;z-index:10;background:linear-gradient(to bottom,#ff8a00,#eceaff);border-bottom-right-radius:1.25rem;border-top-right-radius:1.25rem} diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/pages/timeMatrix/indexnew.css b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/timeMatrix/indexnew.css new file mode 100644 index 0000000..f8802a8 --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/timeMatrix/indexnew.css @@ -0,0 +1 @@ +.drawer[data-v-7979ddf3]{position:fixed;bottom:0;right:0;height:40vh;z-index:1000;border-top-left-radius:2.5rem;border-bottom-left-radius:2.5rem;transform:translate(100%);transition:transform .4s ease}.drawer-open[data-v-7979ddf3]{transform:translate(0)}.drawer-content[data-v-7979ddf3]{position:relative;width:100%;height:100%;z-index:-1}.drawer-content-circle[data-v-7979ddf3]{position:absolute;bottom:7.5rem;left:-1.875rem;width:4.6875rem;height:5rem;border-radius:50%;z-index:-1;display:flex;align-items:center;-webkit-clip-path:inset(0 60% 0 0);clip-path:inset(0 60% 0 0)}.drawer-img[data-v-7979ddf3]{width:.625rem;height:.625rem;margin-left:.78125rem}.draw-all[data-v-a6bada18]{width:100%;height:100%;overflow:hidden;position:relative}.draw-all .button-father[data-v-a6bada18]{position:absolute;bottom:4.6875rem;left:50%;transform:translate(-50%);width:100%;height:12.5rem;display:flex;flex-wrap:wrap}.white-ball[data-v-a6bada18]{background-color:#fff;display:flex;justify-content:center;align-items:center;width:3.75rem;height:3.75rem;margin:.9375rem;border-radius:50%}.backgroundContainer[data-v-7e3cfa67]{display:flex;position:relative;width:100%;height:100vh;background-image:url(../../static/index/lightbgcnew.png);background-size:cover;background-position:center center;overflow:hidden}.darkbackgroundContainer[data-v-7e3cfa67]{display:flex;position:relative;width:100%;height:100vh;background-image:url(../../static/index/background.png);background-size:cover;background-position:center center;overflow:hidden}.doctorsay-container-container[data-v-7e3cfa67]{border:.0625rem solid #fff;width:calc(100% - .125rem);height:calc(100vh - .125rem);background-color:#eff0f4;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);overflow:hidden}.doctorsay-container-container .super-card-end[data-v-7e3cfa67]{width:100%;display:flex}.doctorsay-container-container .super-card-end .super-end-father[data-v-7e3cfa67]{height:100%;display:flex;flex-direction:column;width:100%}.doctorsay-container-container .super-card-end .super-end-father .super-end-items-all[data-v-7e3cfa67]{width:calc(100% - 2.65625rem);height:6.25rem;margin-left:1.25rem;margin-right:1.25rem;margin-top:.625rem}.doctorsay-container-container .super-card-end .super-end-father .super-end-items[data-v-7e3cfa67]{display:flex;width:calc(100% - 2.65625rem);height:6.25rem}.doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father[data-v-7e3cfa67]{margin-right:.625rem;width:4.6875rem;height:4.6875rem;display:flex;justify-content:center;align-items:center;flex-direction:column;position:relative;background:linear-gradient(to bottom right,#fff,#dcdcf9,#dbdcf8);border-radius:.78125rem;border:.0625rem solid #fff;box-shadow:.3125rem .3125rem .625rem rgba(0,0,0,.1);transition:all 1.5s ease-in-out}.doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-father-close-father[data-v-7e3cfa67]{width:1.25rem;height:1.25rem;border-radius:50%;display:flex;background-color:#a9acb1;justify-content:center;align-items:center;position:absolute;top:0;right:0;z-index:10;color:#fff}.doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father[data-v-7e3cfa67]{width:3.125rem;height:3.125rem;border-radius:50%;display:flex;justify-content:center;align-items:center}.doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father .super-end-items-img[data-v-7e3cfa67]{width:2.65625rem;height:2.65625rem}.doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father-active[data-v-7e3cfa67]{width:3.125rem;height:3.125rem;border-radius:50%;display:flex;justify-content:center;align-items:center;animation:shake .5s infinite}.doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-img-father-active .super-end-items-img[data-v-7e3cfa67]{width:2.65625rem;height:2.65625rem}.doctorsay-container-container .super-card-end .super-end-father .super-end-items .super-end-items-father .super-end-items-font[data-v-7e3cfa67]{margin-top:-.3125rem;font-size:.78125rem}.doctorsay-container-container .super-card-end .super-end-father .super-end-font-father[data-v-7e3cfa67]{display:flex;margin-top:.625rem;margin-bottom:.3125rem}.doctorsay-container-container .super-card-end .super-end-father .super-end-font-father .super-end-font-gun[data-v-7e3cfa67]{margin-left:1.25rem;margin-right:.625rem;margin-top:.15625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.doctorsay-container-container .super-card-end .super-end-father .super-end-font-father .super-end-font-font[data-v-7e3cfa67]{font-size:1.1875rem;font-weight:700}.doctorsay-container-container .doctorsay-container-title[data-v-7e3cfa67]{width:100%;height:3.28125rem;margin-top:1.5625rem;display:flex;align-items:center;justify-content:space-between}.doctorsay-container-container .doctorsay-container-title .doctorsay-container-right[data-v-7e3cfa67]{height:100%;display:flex;align-items:center}.doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-juzhen[data-v-7e3cfa67]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .625rem;border-radius:.625rem;font-size:.84375rem;margin-right:1.5625rem}.doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father[data-v-7e3cfa67]{display:flex}.doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father .doctorsay-container-button-target[data-v-7e3cfa67]{display:flex;justify-content:center;align-items:center;background-color:#3fa9f5;color:#fff;width:4.375rem;height:1.875rem;margin-right:.625rem;font-size:.875rem;border-radius:.3125rem}.doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-button-father .doctorsay-container-button[data-v-7e3cfa67]{display:flex;justify-content:center;align-items:center;background-color:#fff;width:4.375rem;height:1.875rem;margin-right:.625rem;font-size:.875rem;border-radius:.3125rem}.doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-right-kuai-cheng[data-v-7e3cfa67]{background-color:#ffdba1;height:1.09375rem;width:1.09375rem;border-radius:.21875rem}.doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-right-kuai-zi[data-v-7e3cfa67]{background-color:#7b61ff;height:1.09375rem;width:1.09375rem;border-radius:.21875rem}.doctorsay-container-container .doctorsay-container-title .doctorsay-container-right .doctorsay-container-kuai-font[data-v-7e3cfa67]{font-size:1rem;margin-left:.3125rem;margin-right:.78125rem}.doctorsay-container-container .doctorsay-container-title .doctorsay-container-left[data-v-7e3cfa67]{display:flex}.doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-left-gun[data-v-7e3cfa67]{margin-top:.21875rem;margin-left:1.25rem;margin-right:.625rem;width:.40625rem;height:1.25rem;background:linear-gradient(to bottom,#04bced,#0160ce);border-radius:.3125rem}.doctorsay-container-container .doctorsay-container-title .doctorsay-container-left .doctorsay-container-left-font[data-v-7e3cfa67]{font-size:1.1875rem;font-weight:700}.super-card[data-v-7e3cfa67]{display:flex;justify-content:center;width:100%;height:calc(100% - 4.6875rem);margin-top:3.125rem}.super-card .scroll-x[data-v-7e3cfa67]{height:100%;width:100%}.super-card .super-card-container[data-v-7e3cfa67]{overflow:hidden;width:calc(100% - 3.125rem);height:100%;position:relative}.super-card .super-card-time[data-v-7e3cfa67]{display:flex;justify-content:center;align-items:center;height:2.5rem;width:11.875rem;color:#a9acb1}.super-card .super-card-time-und[data-v-7e3cfa67]{display:flex;justify-content:center;align-items:center;width:11.875rem;position:relative;flex-direction:column;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1}.super-card .super-card-time-card[data-v-7e3cfa67]{display:flex;justify-content:center;align-items:center;width:100%;border-top:.03125rem solid transparent;border-image:repeating-linear-gradient(90deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1;flex-direction:column;position:relative}.title-time-border-yellow[data-v-7e3cfa67],.title-time-border-pouple[data-v-7e3cfa67]{margin:.3125rem;background-color:#fff;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;justify-content:center;flex-direction:column}.title-time-border[data-v-7e3cfa67]{margin:.3125rem;width:calc(100% - 1.25rem);height:calc(100% - 1.25rem);border-radius:.625rem;display:flex;align-items:center;justify-content:center;flex-direction:column}.title-time[data-v-7e3cfa67]{display:flex;width:100%}.title-time .title-time-time[data-v-7e3cfa67]{font-size:1rem;margin:0 auto;margin-top:.375rem}.title-time .title-time-button[data-v-7e3cfa67]{position:absolute;top:-.125rem;right:-.125rem;width:2.03125rem;height:1.875rem}.title-time .title-time-zhejiao[data-v-7e3cfa67]{position:absolute;top:0;left:.15625rem;width:1.25rem;height:1.25rem}.title-time .title-time-font[data-v-7e3cfa67]{position:absolute;top:.21875rem;right:.15625rem;font-size:.625rem;color:#fff}.down-icons[data-v-7e3cfa67]{margin-top:.15625rem;width:100%;height:1.8125rem;background-color:#ffd87e;display:flex;justify-content:center;align-items:center}.down-icons .icon[data-v-7e3cfa67]{margin:0 .15625rem;font-size:.625rem;padding:.09375rem .15625rem;background-color:#ff8a00;color:#fff;border-radius:.15625rem}.popup-overlay-content[data-v-7e3cfa67]{position:fixed;display:flex;align-items:center;width:25rem;height:12.1875rem;background-color:#fff;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1);opacity:0;transition:opacity .4s ease}.popup-overlay-content .popup-overlay-content-left[data-v-7e3cfa67]{height:100%;width:10.9375rem;display:flex;justify-content:center;align-items:center;flex-direction:column}.popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-img[data-v-7e3cfa67]{width:8.75rem;height:5.625rem;margin-top:-.9375rem}.popup-overlay-content .popup-overlay-content-left .popup-overlay-content-left-font[data-v-7e3cfa67]{font-size:.9375rem}.popup-overlay-content .popup-overlay-content-right[data-v-7e3cfa67]{height:100%;width:14.0625rem;position:relative}.popup-overlay-content .popup-overlay-content-right .time-font[data-v-7e3cfa67]{font-size:1.5625rem;margin-top:3.125rem;margin-bottom:.3125rem;font-weight:700;background:linear-gradient(to bottom,#7080a1,#263556);-webkit-background-clip:text;color:transparent}.popup-overlay-content .popup-overlay-content-right .time-text[data-v-7e3cfa67]{margin-left:.3125rem;font-size:.9375rem;width:11.875rem;margin-bottom:1.5625rem;line-height:1.09375rem}.popup-overlay-content .popup-overlay-content-right .right-richang[data-v-7e3cfa67]{background-color:#ffc363;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem}.popup-overlay-content .popup-overlay-content-right .right-richangnot[data-v-7e3cfa67]{background-color:#7b61ff;position:absolute;top:3.375rem;right:1.5625rem;padding:.15625rem;border-radius:.3125rem;color:#fff}.popup-overlay-content .popup-overlay-content-right .right-crush[data-v-7e3cfa67]{position:absolute;top:.625rem;right:.625rem;width:2.1875rem;height:2.1875rem;animation:shake .5s 3}.titlebutton-father[data-v-7e3cfa67]{display:flex;margin-right:.625rem}.titlebutton-father .titlebutton[data-v-7e3cfa67]{background-color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .9375rem;border-radius:.625rem;font-size:.84375rem;margin-right:.3125rem}.titlebutton-father .titlebutton-target[data-v-7e3cfa67]{background:linear-gradient(to right bottom,#00c9ff,#0076ff);color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .9375rem;border-radius:.625rem;font-size:.84375rem;margin-right:.3125rem}.titlebutton-father .titlebutton-target-yellow[data-v-7e3cfa67]{background:#ffdba1;display:flex;justify-content:center;align-items:center;padding:.3125rem .9375rem;border-radius:.625rem;font-size:.84375rem;margin-right:.3125rem}.titlebutton-father .titlebutton-target-pouple[data-v-7e3cfa67]{background:#7b61ff;color:#fff;display:flex;justify-content:center;align-items:center;padding:.3125rem .9375rem;border-radius:.625rem;font-size:.84375rem;margin-right:.3125rem}.boom[data-v-7e3cfa67]{position:absolute;top:2.5rem;left:0;width:.9375rem;height:46.875rem;display:flex;flex-direction:column;align-items:center;overflow:hidden;z-index:10}.boom .boom-son[data-v-7e3cfa67]{height:4.78125rem;width:100%;font-size:.6875rem;letter-spacing:.15625rem;-webkit-writing-mode:vertical-rl;writing-mode:vertical-rl;text-align:center;z-index:10;background:linear-gradient(to bottom,#ffe2b2,#e3deff);border-bottom-right-radius:1.25rem;border-top-right-radius:1.25rem}.boom .boom-son-target[data-v-7e3cfa67]{height:4.78125rem;width:100%;font-size:.6875rem;letter-spacing:.15625rem;-webkit-writing-mode:vertical-rl;writing-mode:vertical-rl;text-align:center;z-index:10;background:linear-gradient(to bottom,#ff8a00,#eceaff);border-bottom-right-radius:1.25rem;border-top-right-radius:1.25rem}.title-time-blue[data-v-7e3cfa67]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:105%;height:105%;z-index:10;--color: #99C9FD;--thick: 2px;--radius: 16px;border:var(--thick) dashed var(--color);border-radius:var(--radius);background:repeating-linear-gradient(90deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top left / 100% var(--thick) no-repeat,repeating-linear-gradient(90deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) bottom left / 100% var(--thick) no-repeat,repeating-linear-gradient(0deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top left / var(--thick) 100% no-repeat,repeating-linear-gradient(0deg,var(--color) 0 var(--dash),transparent 0 calc(var(--dash) + var(--gap))) top right / var(--thick) 100% no-repeat}.title-time-font-rel[data-v-7e3cfa67]{min-width:0;overflow:hidden;text-align:center}.xian-bian[data-v-7e3cfa67]{height:100%;position:absolute;top:0;left:0;z-index:999;border-right:.03125rem solid transparent;border-image:repeating-linear-gradient(180deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1}.bottom-bian[data-v-7e3cfa67]{width:100%;position:absolute;bottom:0;left:0;z-index:999;border-bottom:.03125rem solid transparent;border-image:repeating-linear-gradient(90deg,#A9ACB1 0px,#A9ACB1 .1875rem,transparent .1875rem,transparent .375rem) 1} diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/pages/watch/index.css b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/watch/index.css new file mode 100644 index 0000000..164c973 --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/watch/index.css @@ -0,0 +1 @@ +.move-circle[data-v-a880c760]{position:absolute;bottom:0;right:0;width:10.9375rem;height:10.9375rem;display:flex;justify-content:center;align-items:center;z-index:99;touch-action:none}.move-circle .click-box-top[data-v-a880c760]{position:absolute;top:.625rem;right:2.1875rem;width:6.875rem;height:2.5rem}.move-circle .click-box-bottom[data-v-a880c760]{position:absolute;bottom:.625rem;right:2.1875rem;width:6.875rem;height:2.5rem}.move-circle .click-box-right[data-v-a880c760]{position:absolute;bottom:3.125rem;right:0;width:2.8125rem;height:4.6875rem}.move-circle .click-box-left[data-v-a880c760]{position:absolute;bottom:3.125rem;left:0;width:2.8125rem;height:4.6875rem}.move-circle .click-box-center[data-v-a880c760]{position:absolute;bottom:4.0625rem;right:4.0625rem;width:2.8125rem;height:2.8125rem}.move-circle-all[data-v-a880c760]{width:10.9375rem;height:10.9375rem}.light-shadow[data-v-a880c760]{position:absolute;width:1.25rem;height:1.25rem;background-color:transparent;border:1.875rem solid #3da6ff;border-radius:50%;pointer-events:none;opacity:1}.ripple-loop[data-v-a880c760]{animation:rippleLoop-a880c760 1.2s ease-out infinite}.ripple-once[data-v-a880c760]{animation:rippleLoop-a880c760 1.2s ease-out forwards}@keyframes rippleLoop-a880c760{0%{transform:translate(-50%,-50%) scale(.5);opacity:.6}to{transform:translate(-50%,-50%) scale(2.5);opacity:0}}.light-circle[data-v-a880c760]{position:relative;width:150px;height:150px;border-radius:50%;background:#111;overflow:visible}.circle[data-v-a880c760]{position:relative;width:150px;height:150px;border-radius:50%;background:#222;margin:50px}.pulse-circle[data-v-a880c760]{position:absolute;top:50%;right:50%;transform:translate(-50%,-50%);border-radius:50%;background:radial-gradient(circle,#03a4ff 0%,transparent 70%);animation:pulse-a880c760 3s forwards}@keyframes pulse-a880c760{0%{width:0;height:0;opacity:.8}50%{width:10.9375rem;height:10.9375rem;opacity:.4}to{width:0;height:0;opacity:0}}.view[data-v-bd9aba2f]{background-color:#eff0f4;width:100%;height:100vh;display:flex}.view .view-left[data-v-bd9aba2f]{height:100%;width:23%}.view .view-left .title-father[data-v-bd9aba2f]{padding-top:3.75rem;padding-bottom:1.5625rem;padding-left:1.875rem;display:flex}.view .view-left .title-father .title-img[data-v-bd9aba2f]{width:1.71875rem;height:1.71875rem;margin-right:.625rem}.view .view-left .title-father .title-font[data-v-bd9aba2f]{font-size:1.25rem;font-weight:800}.view .view-left .menus-father[data-v-bd9aba2f]{width:100%;height:25rem}.view .view-left .menus-father .menu[data-v-bd9aba2f]{margin:1.40625rem 0 1.40625rem .9375rem;height:3.4375rem;width:9.375rem;border-radius:1.875rem;overflow:hidden;display:flex;align-items:center}.view .view-left .menus-father .menu .menu-img[data-v-bd9aba2f]{width:2.03125rem;height:2.03125rem;margin-left:.78125rem;display:flex;justify-content:center;align-items:center;border-radius:50%}.view .view-right[data-v-bd9aba2f]{height:100%;width:90%;position:relative}.view .view-right .right-container-title-nav[data-v-bd9aba2f]{margin-top:1.875rem;display:flex;align-items:center;height:1.875rem;position:relative;font-size:.875rem}.view .view-right .right-container-title-nav .right-icons-img[data-v-bd9aba2f]{width:1.875rem;height:1.875rem;margin-left:.625rem;margin-right:.625rem}.view .view-right .scroll-vi[data-v-bd9aba2f]{height:3.125rem;width:100%;margin-left:0;margin-top:3.125rem;position:relative;display:flex}.view .view-right .scroll-vi .menu[data-v-bd9aba2f]{flex:0 0 auto;height:2.8125rem;width:7.5rem;border-radius:1.5625rem;margin-left:.625rem;background-color:#fff;display:flex;justify-content:center;align-items:center;padding-top:.28125rem}.view .view-right .scroll-vi .menu .menu-img[data-v-bd9aba2f]{width:1.71875rem;height:1.71875rem;margin-right:.46875rem}.view .view-right .scroll-vi .menu .menu-font[data-v-bd9aba2f]{margin-top:.5625rem;font-size:.78125rem}.right-container-tem[data-v-bd9aba2f]{display:flex}.right-container-tem .right-container-tem-text[data-v-bd9aba2f]{font-size:1rem;margin-right:.625rem}.right-container-tem .right-container-tem-img[data-v-bd9aba2f]{width:1.1875rem;height:1.1875rem}.new-weight[data-v-bd9aba2f]{margin:1.25rem .9375rem 0;font-size:1rem}.big-bgc[data-v-bd9aba2f]{margin-top:.625rem;width:39.0625rem;height:28.53125rem;border-radius:1.5625rem;overflow:hidden;display:flex;justify-content:center;align-items:center;position:relative}.small-bgc[data-v-bd9aba2f]{width:9.3125rem;height:6.875rem;border-radius:.78125rem;overflow:hidden;display:flex;justify-content:center;align-items:center;position:relative}.card-father[data-v-bd9aba2f]{margin-right:.625rem}.card-father .up-title[data-v-bd9aba2f]{display:flex;justify-content:space-between;align-items:center;margin:.3125rem 0 .3125rem .625rem;font-size:.9375rem}@keyframes glowFlash-bd9aba2f{0%,to{box-shadow:0 0 .125rem #f1d7da,0 0 .25rem #f1d7da,0 0 .375rem #f1d7da}50%{box-shadow:0 0 .3125rem #f1d7da,0 0 .625rem #f1d7da,0 0 .9375rem #f1d7da}}.right-right[data-v-bd9aba2f]{position:absolute;right:-.625rem;top:7.1875rem;height:calc(100% - 7.8125rem);width:20.3125rem}.right-right .red-kuang[data-v-bd9aba2f]{margin-top:0;margin-left:2.8125rem;width:15.9375rem;height:3.75rem;border-radius:1.5625rem;position:relative;display:flex;align-items:center;background-color:rgba(226,227,231,.5)}.right-right .red-kuang .blue-bgc[data-v-bd9aba2f]{width:3.75rem;height:1.5625rem;display:flex;justify-content:center;align-items:center;z-index:1;font-size:.71875rem;background-color:rgba(248,249,250,.5);color:#017de9;border-radius:.625rem;margin-left:.9375rem}.right-right .red-kuang .font-weight[data-v-bd9aba2f]{font-size:.9375rem;font-weight:600}.right-right .red-kuang .font-small[data-v-bd9aba2f]{font-size:.78125rem}.states-father[data-v-bd9aba2f]{display:flex;margin-top:.625rem;margin-left:2.8125rem;width:100%}.states-father .states[data-v-bd9aba2f]{width:4.90625rem;margin-right:.46875rem;height:1.875rem;border-radius:1.875rem;background-color:rgba(226,227,231,.5);display:flex;justify-content:center;align-items:center}.states-father .phone-number[data-v-bd9aba2f]{width:100%;height:2.5rem;display:flex;align-items:center;position:relative}.bottom-view[data-v-bd9aba2f]{margin-left:2.8125rem;margin-top:.625rem;width:15.9375rem;height:21.5625rem;border-radius:1.5625rem;background-color:rgba(226,227,231,.5);position:relative;display:flex;flex-wrap:wrap;overflow:hidden;align-items:flex-start;align-content:flex-start}.bottom-view .button-father[data-v-bd9aba2f]{margin-top:.625rem;margin-bottom:0;margin-left:1.40625rem;text-align:center}.bottom-view .button-father .bottom-button[data-v-bd9aba2f]{background-color:#f2f2f4;display:flex;justify-content:center;align-items:center;width:3.4375rem;height:3.4375rem;border:.03125rem solid #CDD3DD;border-radius:1.09375rem;margin-bottom:.15625rem}.big-view[data-v-bd9aba2f]{margin-left:2.8125rem;margin-top:.625rem;width:15.9375rem;height:10.625rem;border-radius:1.5625rem;background-color:rgba(226,227,231,.5);position:relative;display:flex;flex-direction:column;align-items:center;overflow:hidden}.big-view .font-weight[data-v-bd9aba2f]{font-size:1.25rem;margin-top:.9375rem;font-weight:600}.big-view .pao[data-v-bd9aba2f]{position:absolute;right:1.25rem;top:.625rem;width:2.65625rem;height:1.25rem;display:flex;justify-content:center;align-items:center;color:#fff}.small-button[data-v-bd9aba2f]{margin-top:.3125rem;height:2.1875rem;display:flex}.small-button .gray-ball[data-v-bd9aba2f]{display:flex;justify-content:center;align-items:center;background-color:#f8f9fa;width:1.875rem;height:1.875rem;border-radius:50%;margin:0 .3125rem}.small-button .gray-ball .laba-img[data-v-bd9aba2f]{width:1.09375rem;height:1.09375rem}.right-bottom[data-v-bd9aba2f]{margin-left:1.5625rem;margin-top:.9375rem;width:17.1875rem;height:7.5rem;border-radius:1.5625rem;background-color:rgba(226,227,231,.5);position:relative}.right-bottom .bottom-img[data-v-bd9aba2f]{width:1.875rem;height:1.875rem;margin-bottom:.9375rem}.right-bottom .people-card[data-v-bd9aba2f]{width:7.65625rem;height:3.125rem;border-radius:.78125rem;background-color:rgba(248,249,250,.5);margin-left:.625rem;display:flex;justify-content:center;align-items:center}.right-father[data-v-bd9aba2f]{width:20.3125rem;position:absolute;right:0;top:0;display:flex;justify-content:center;align-items:center}.right-icons[data-v-bd9aba2f]{position:absolute;right:.9375rem;top:.9375rem;display:flex;align-items:center;height:1.875rem}.warning[data-v-bd9aba2f]{animation:glowFlash-bd9aba2f 1.2s infinite ease-in-out;border:.03125rem solid #ff5757;background-color:rgba(239,240,244,.5)}.zoom[data-v-bd9aba2f]{transform:scale(1.2);transform-origin:bottom left;transition:transform 1s ease}.juzhong[data-v-bd9aba2f]{position:absolute;top:0%;left:50%;transform:translate(-50%)}.zhezhao-left[data-v-bd9aba2f]{position:absolute;top:0;left:0%;height:100%;width:3.75rem;background:linear-gradient(to right,#eff0f4,rgba(239,240,244,0));z-index:4;pointer-events:none}.zhezhao-right[data-v-bd9aba2f]{position:absolute;top:0;right:34%;height:100%;width:3.75rem;background:linear-gradient(to left,#eff0f4,rgba(239,240,244,0));z-index:4;pointer-events:none}.zhezhao-top[data-v-bd9aba2f]{position:absolute;top:6.875rem;left:0%;width:10.9375rem;height:3.75rem;background:linear-gradient(to bottom,#eff0f4,rgba(239,240,244,0));z-index:4;pointer-events:none}.zhezhao-bottom[data-v-bd9aba2f]{position:absolute;bottom:14.0625rem;left:0%;width:10.9375rem;height:3.75rem;background:linear-gradient(to top,#eff0f4,rgba(239,240,244,0));z-index:4;pointer-events:none}.bgc-image[data-v-bd9aba2f]{width:15.625rem;height:6.25rem;position:absolute;top:-1.5625rem;left:0}.font-phone[data-v-bd9aba2f]{font-size:1.09375rem;font-weight:600;margin-left:.9375rem}.phone-ball[data-v-bd9aba2f]{width:1.5625rem;height:1.5625rem;position:absolute;top:50%;transform:translateY(-50%);right:4.0625rem}.target[data-v-bd9aba2f]{--color: #99C9FD;--thick: 2px;--radius: 1.875rem;--outline-offset: 0;border-radius:var(--radius);background-color:#ddf0ff;animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:1}.targetbutton[data-v-bd9aba2f]{--color: #99C9FD;--thick: 2px;--radius: 1.875rem;--outline-offset: .3125rem;border-radius:var(--radius);animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:1}.picture[data-v-bd9aba2f]{display:flex;margin-top:4.6875rem}.picture .picture-card[data-v-bd9aba2f]{display:flex;flex-direction:column;justify-content:center;align-items:center;margin-left:.625rem;margin-right:.3125rem;width:6.25rem}.picture .picture-card .bgc-card[data-v-bd9aba2f]{width:100%;height:4.0625rem;background-color:#eaeaec;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;margin-bottom:.3125rem}.jump-white[data-v-bd9aba2f]{position:absolute;bottom:.625rem;left:1.5625rem;width:9.375rem;height:12.5rem;background-color:#fff;border-radius:.9375rem;box-shadow:5px 5px 10px rgba(0,0,0,.1)}.jump-item[data-v-bd9aba2f]{margin:.3125rem;height:1.875rem;justify-content:center;width:93%;display:flex;border-radius:.625rem;align-items:center} diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/pages/watch/settings/input.css b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/watch/settings/input.css new file mode 100644 index 0000000..2c389c2 --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/watch/settings/input.css @@ -0,0 +1 @@ +.index-content-other[data-v-87f7dd57]{width:100%;height:100%;transition:opacity 1s ease;position:relative;background-color:#eff0f4}.index-content-down[data-v-87f7dd57]{position:absolute;bottom:1.25rem;left:50%;transform:translate(-50%)}.index-content-right[data-v-87f7dd57]{width:100%;border-radius:1.5625rem;display:flex;align-items:center;padding-top:3.125rem;font-size:1rem;position:relative}.index-content-right .index-content-title[data-v-87f7dd57]{position:absolute;top:1.875rem;left:1.875rem;display:flex;align-items:center}.index-content-right .index-content-title .shu[data-v-87f7dd57]{width:.625rem;height:1.5625rem;background:linear-gradient(to right,#0052c2,#00b4ff);border-radius:.625rem;margin-right:.9375rem}.index-content-right .index-content-title .shu-font[data-v-87f7dd57]{color:#415273;font-size:1.09375rem}.saomiao[data-v-87f7dd57]{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);display:flex;z-index:1}.saomiao .saoma-input[data-v-87f7dd57]{background-color:#fff;width:17.1875rem;height:2.8125rem;border-radius:.9375rem;padding-left:3.125rem;z-index:2}.saomiao .left-img[data-v-87f7dd57]{width:1.5625rem;height:1.5625rem;position:absolute;top:50%;left:.9375rem;transform:translateY(-50%);z-index:3}.saomiao .right-img[data-v-87f7dd57]{width:1.5625rem;height:1.5625rem;position:absolute;top:50%;right:6.875rem;transform:translateY(-50%);z-index:2}.blue-button[data-v-87f7dd57]{margin-left:.9375rem;width:5.3125rem;height:2.8125rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#007cff;font-size:.9375rem;background-color:#ddf0ff;border:.03125rem solid #007CFF}.big-ball[data-v-87f7dd57]{width:6.25rem;height:6.25rem;position:absolute;top:50%;left:-1.71875rem;transform:translateY(-50%);border-radius:50%;background-color:#dbe4f6}.big-ball .ball[data-v-87f7dd57]{width:4.6875rem;height:4.6875rem;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);border-radius:50%;background-color:#cfddf1}.back-img[data-v-87f7dd57]{width:.9375rem;height:.9375rem;margin-left:3.125rem;margin-right:.625rem}.big-bgc[data-v-87f7dd57]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:34.375rem;height:34.375rem}.big-img[data-v-87f7dd57]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:28.125rem;height:28.125rem} diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/pages/watch/settings/leida.css b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/watch/settings/leida.css new file mode 100644 index 0000000..bf0c28d --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/watch/settings/leida.css @@ -0,0 +1 @@ +.index-content-other[data-v-2b7adbee]{width:100%;height:100%;position:relative;background-color:#eff0f4;display:flex;justify-content:center;align-items:center}.index-content-down[data-v-2b7adbee]{position:absolute;bottom:1.25rem;left:50%;transform:translate(-50%)}.index-content-right[data-v-2b7adbee]{position:absolute;top:0;left:0;width:100%;display:flex;align-items:center;padding-top:3.125rem;font-size:1rem}.back-img[data-v-2b7adbee]{width:.9375rem;height:.9375rem;margin-left:3.125rem;margin-right:.625rem}.all-img[data-v-2b7adbee]{position:absolute;top:0%;left:0%;width:100%;height:100%}.blue-bgc[data-v-2b7adbee]{width:18.75rem;height:18.75rem;display:flex;justify-content:center;align-items:center;position:relative;flex-direction:column}.inset-img[data-v-2b7adbee]{width:12.5rem;height:12.5rem;position:relative}.ball-layer[data-v-2b7adbee]{position:absolute;top:50%;left:50%;width:200px;height:200px;transform:translate(-50%,-50%);z-index:999}.ball[data-v-2b7adbee]{position:absolute;border-radius:50%;transition:opacity .5s ease;z-index:10}.progress-wrap[data-v-2b7adbee]{width:60%;height:13px;background-color:#e6e9ee;border-radius:9999px;overflow:hidden;margin-top:30px}.progress-inner[data-v-2b7adbee]{height:100%;background-image:linear-gradient(90deg,#0097ff,#007cff);border-radius:inherit;transition:width .2s ease}.progress-text[data-v-2b7adbee]{margin-top:8px;font-size:.875rem;color:#007cff}.blue-button[data-v-2b7adbee]{margin-top:.9375rem;width:7.8125rem;height:2.8125rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#007cff;font-size:.9375rem;background-color:#ddf0ff;border:.03125rem solid #007CFF}.other[data-v-2b7adbee]{width:50%;height:100%;margin-left:3.125rem}.other-father[data-v-2b7adbee]{margin-top:6.25rem;height:29.6875rem;width:100%}.card-father[data-v-2b7adbee]{width:100%;display:flex;flex-wrap:wrap}.card[data-v-2b7adbee]{width:45%;margin-left:4%;height:14.0625rem;box-shadow:.09375rem .1875rem .375rem .09375rem rgba(206,206,206,.5);background-color:#f4f5f7;border-radius:.9375rem;margin-top:.15625rem;margin-bottom:1.09375rem;padding:0 .78125rem;position:relative;display:flex;justify-content:center;align-items:center;flex-direction:column;overflow:hidden}.card-title[data-v-2b7adbee]{width:100%;height:4.0625rem;display:flex;align-items:center;justify-content:space-between}@keyframes spin-2b7adbee{0%{transform:rotate(0)}to{transform:rotate(360deg)}}@keyframes spinx-2b7adbee{0%{transform:rotate(-70deg)}to{transform:rotate(290deg)}}@keyframes fadeIn-2b7adbee{0%{opacity:0;transform:translateY(.3125rem)}to{opacity:1;transform:translateY(0)}}.fade-in[data-v-2b7adbee]{animation:fadeIn-2b7adbee .4s ease-out forwards}.index-content-title[data-v-2b7adbee]{position:absolute;top:1.875rem;left:1.875rem;display:flex;align-items:center}.index-content-title .shu[data-v-2b7adbee]{width:.625rem;height:1.5625rem;background:linear-gradient(to right,#0052c2,#00b4ff);border-radius:.625rem;margin-right:.9375rem}.index-content-title .shu-font[data-v-2b7adbee]{color:#415273;font-size:1.09375rem}.right-box[data-v-2b7adbee]{background:#00abff;width:5rem;height:2.03125rem;border-radius:.625rem;display:flex;justify-content:center;align-items:center;color:#fff}.card-bottom[data-v-2b7adbee]{margin-top:.53125rem;margin-left:.3125rem;display:flex}.card-bottom .bottom-img[data-v-2b7adbee]{width:1.1875rem;height:1.1875rem;margin-left:.9375rem}.left-contain[data-v-2b7adbee]{margin-right:2.5rem}.main-title[data-v-2b7adbee]{display:flex;align-items:center;margin-top:2.1875rem;margin-bottom:.3125rem}.edit-img[data-v-2b7adbee]{width:1.25rem;height:.9375rem}.card-tags[data-v-2b7adbee]{position:absolute;top:1.5625rem;left:0;width:6.25rem;height:2.03125rem;font-size:.78125rem;display:flex;justify-content:center;align-items:center}.play-img[data-v-2b7adbee]{position:absolute;top:1.5625rem;right:.9375rem;width:4.0625rem;height:1.71875rem;font-size:.8125rem;border-radius:1.09375rem;border:.0625rem solid #999;display:flex;justify-content:center;align-items:center}.rename-father[data-v-2b7adbee]{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);width:18.75rem;height:13.125rem;border-radius:.9375rem;box-shadow:.0625rem .125rem .25rem .0625rem rgba(0,0,0,.3);background-color:#fff;display:flex;flex-direction:column;align-items:center;padding:0 .9375rem;z-index:999}.rename-father .rename-title[data-v-2b7adbee]{width:100%;height:2.5rem;display:flex;justify-content:center;align-items:center;margin-top:.9375rem;margin-bottom:.625rem;font-size:1rem}.rename-father .rename-gray[data-v-2b7adbee]{width:100%;height:2.5rem;display:flex;color:#a7a7a7;align-items:center}.rename-father .rename-input[data-v-2b7adbee]{width:100%;height:2.5rem;display:flex;background-color:#f5f6fa;border-radius:.625rem;color:#a7a7a7;align-items:center;padding:0 .625rem;position:relative}.rename-father .rename-input .uni-input[data-v-2b7adbee]{font-size:.78125rem;width:100%}.rename-father .rename-input .left-img[data-v-2b7adbee]{width:1.5625rem;height:1.5625rem;margin-right:.46875rem}.rename-father .rename-input .right-img[data-v-2b7adbee]{position:absolute;right:.9375rem;top:50%;transform:translateY(-50%);width:.9375rem;height:.9375rem}.popup-any[data-v-2b7adbee]{position:fixed;top:0;right:0;bottom:0;left:0;opacity:0;transition:opacity .5s ease;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(236,237,241,.4);z-index:999}.mask[data-v-2b7adbee]{position:absolute;top:0;right:0;bottom:0;left:0}.video-father[data-v-2b7adbee]{width:1.875rem;height:1.875rem;display:flex;justify-content:center;align-items:center;margin-left:.46875rem}.zerotarget[data-v-2b7adbee]{--color: #99C9FD;--thick: 2px;--radius: .9375rem;--outline-offset: 0;border-radius:var(--radius);background-color:#fff;animation:scalePulse .36s cubic-bezier(.2,.8,.2,1);outline:var(--thick) dashed var(--color);outline-offset:var(--outline-offset);position:relative;z-index:0} diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/pages/watch/settings/saoma.css b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/watch/settings/saoma.css new file mode 100644 index 0000000..0500c4d --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/watch/settings/saoma.css @@ -0,0 +1 @@ +.index-content-other[data-v-33cdb877]{width:100%;height:100%;transition:opacity 1s ease;position:relative;background-color:#eff0f4}.index-content-down[data-v-33cdb877]{position:absolute;bottom:1.25rem;left:50%;transform:translate(-50%)}.index-content-right[data-v-33cdb877]{width:100%;border-radius:1.5625rem;display:flex;align-items:center;padding-top:3.125rem;font-size:1rem;position:relative}.index-content-right .index-content-title[data-v-33cdb877]{position:absolute;top:1.875rem;left:1.875rem;display:flex;align-items:center}.index-content-right .index-content-title .shu[data-v-33cdb877]{width:.625rem;height:1.5625rem;background:linear-gradient(to right,#0052c2,#00b4ff);border-radius:.625rem;margin-right:.9375rem}.index-content-right .index-content-title .shu-font[data-v-33cdb877]{color:#415273;font-size:1.09375rem}.saomiao[data-v-33cdb877]{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);display:flex;z-index:1}.blue-button[data-v-33cdb877]{margin-left:.9375rem;width:5.3125rem;height:2.8125rem;border-radius:1.25rem;display:flex;justify-content:center;align-items:center;color:#007cff;font-size:.9375rem;background-color:#ddf0ff;border:.03125rem solid #007CFF}.big-ball[data-v-33cdb877]{width:6.25rem;height:6.25rem;position:absolute;top:50%;left:-1.71875rem;transform:translateY(-50%);border-radius:50%;background-color:#dbe4f6}.big-ball .ball[data-v-33cdb877]{width:4.6875rem;height:4.6875rem;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);border-radius:50%;background-color:#cfddf1}.back-img[data-v-33cdb877]{width:.9375rem;height:.9375rem;margin-left:3.125rem;margin-right:.625rem}.big-bgc[data-v-33cdb877]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:56.25rem;height:28.125rem}.big-img[data-v-33cdb877]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:10.9375rem;height:10.9375rem}.big-img[data-v-33cdb877]:before{content:"";position:absolute;top:0;left:0;width:100%;animation:scanMove-33cdb877 1.3s ease-in-out infinite;z-index:1001;height:2.5rem;background:linear-gradient(to bottom,rgba(5,170,254,.6),rgba(5,170,254,.1),transparent);will-change:transform}.big-QR[data-v-33cdb877]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:9.375rem;height:9.375rem}.big-font[data-v-33cdb877]{position:absolute;color:#888a8b;left:0;bottom:-2.5rem;font-size:1rem;width:100%;display:flex;justify-content:center}@keyframes scanMove-33cdb877{0%{top:5%}to{top:95%}} diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/pages/watch/settings/settings.css b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/watch/settings/settings.css new file mode 100644 index 0000000..864fc5d --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/pages/watch/settings/settings.css @@ -0,0 +1 @@ +.neuro-wrapper[data-v-9117e9d1]{position:fixed;top:0;right:0;bottom:0;left:0;display:flex;justify-content:center;align-items:center;z-index:999;opacity:0;pointer-events:none;transition:opacity .3s ease}.neuro-wrapper.is-active[data-v-9117e9d1]{opacity:1;pointer-events:auto}.neuro-mask[data-v-9117e9d1]{position:absolute;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.3)}.neuro-box[data-v-9117e9d1]{position:relative;width:18.75rem;height:14.0625rem;border-radius:.9375rem;background-color:#fff;display:flex;flex-direction:column;align-items:center;z-index:1;padding:0 10%}.button[data-v-9117e9d1]{width:47%;background-color:#ddf0ff;display:flex;justify-content:center;align-items:center;color:#007cff;border:.03125rem solid #007CFF;font-size:.78125rem;border-radius:.9375rem}.title[data-v-9117e9d1]{margin-top:2.1875rem}.card-font[data-v-9117e9d1]{margin-top:2.1875rem;width:18.75rem;justify-content:center;display:flex}.button-white[data-v-9117e9d1]{width:47%;border:.0625rem solid #c3cacd;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:.78125rem;border-radius:.9375rem}.button-father[data-v-9117e9d1]{position:absolute;bottom:1.875rem;left:50%;transform:translate(-50%);width:100%;height:2.1875rem;display:flex;justify-content:space-between;padding:0 1.5625rem}.neuro-wrapper[data-v-8de7e110]{position:fixed;top:0;right:0;bottom:0;left:0;display:flex;justify-content:center;align-items:center;z-index:999;opacity:0;pointer-events:none;transition:opacity .3s ease}.neuro-wrapper.is-active[data-v-8de7e110]{opacity:1;pointer-events:auto}.neuro-mask[data-v-8de7e110]{position:absolute;top:0;right:0;bottom:0;left:0;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(236,237,241,.4)}.neuro-box[data-v-8de7e110]{position:relative;width:23.4375rem;height:21.875rem;border-radius:.9375rem;background-color:#fff;display:flex;flex-direction:column;align-items:center;z-index:1;padding:0 10%}.button[data-v-8de7e110]{width:100%;display:flex;justify-content:center;align-items:center;color:#fff;font-size:.78125rem;border-radius:1.09375rem;margin-left:.625rem;color:#007cff;font-size:.9375rem;background-color:#ddf0ff;border:.03125rem solid #007CFF}.title[data-v-8de7e110]{margin-top:2.1875rem;font-weight:600;font-size:1.09375rem}.card-font[data-v-8de7e110]{margin-top:2.1875rem;width:18.75rem;justify-content:center;display:flex}.button-white[data-v-8de7e110]{width:47%;border:.0625rem solid #c3cacd;background:linear-gradient(to bottom,#f3f3f5,#dee4e9);display:flex;justify-content:center;align-items:center;font-size:.78125rem;border-radius:.9375rem}.button-father[data-v-8de7e110]{position:absolute;bottom:2.1875rem;left:50%;transform:translate(-50%);width:100%;height:2.5rem;display:flex;justify-content:center;padding:0 3.4375rem}.password-father[data-v-8de7e110]{margin-top:.9375rem;width:23.4375rem;padding:0 3.75rem;height:2.5rem}.password-father .password[data-v-8de7e110]{width:100%;background-color:rgba(239,240,244,.5);border-radius:.71875rem;height:2.5rem;padding-left:.625rem;font-size:.84375rem}.zy-modal[data-v-cd70e807]{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1110;opacity:0;outline:0;text-align:center;transform:scale(1.185);-webkit-backface-visibility:hidden;backface-visibility:hidden;perspective:62.5rem;background:rgba(0,0,0,.6);transition:all .3s ease-in-out 0s;pointer-events:none}.zy-modal[data-v-cd70e807]:before{content:"\200b";display:inline-block;height:100%;vertical-align:middle}.zy-modal.show[data-v-cd70e807]{opacity:1;transition-duration:.3s;transform:scale(1);overflow-x:hidden;overflow-y:auto;pointer-events:auto}.zy-dialog[data-v-cd70e807]{position:relative;display:inline-block;vertical-align:middle;margin-left:auto;margin-right:auto;width:21.25rem;max-width:100%;background-color:#f8f8f8;border-radius:.3125rem;overflow:hidden}.zy-modal.bottom-modal[data-v-cd70e807]:before{vertical-align:bottom}.zy-modal.bottom-modal .zy-dialog[data-v-cd70e807]{width:100%;border-radius:0}.zy-modal.bottom-modal[data-v-cd70e807]{margin-bottom:-31.25rem}.zy-modal.bottom-modal.show[data-v-cd70e807]{margin-bottom:0}.zy-modal.drawer-modal[data-v-cd70e807]{transform:scale(1);display:flex}.zy-modal.drawer-modal .zy-dialog[data-v-cd70e807]{height:100%;min-width:6.25rem;border-radius:0;margin:initial;transition-duration:.3s}.zy-modal.drawer-modal.justify-start .zy-dialog[data-v-cd70e807]{transform:translate(-100%)}.zy-modal.drawer-modal.justify-end .zy-dialog[data-v-cd70e807]{transform:translate(100%)}.zy-modal.drawer-modal.show .zy-dialog[data-v-cd70e807]{transform:translate(0)}.zy-modal .zy-dialog>.zy-bar:first-child .action[data-v-cd70e807]{min-width:3.125rem;margin-right:0;min-height:3.125rem}.zy-progress[data-v-cd70e807]{overflow:hidden;height:.875rem;background-color:#ebeef5;display:inline-flex;align-items:center;width:100%}.zy-progress+uni-view[data-v-cd70e807],.zy-progress+uni-text[data-v-cd70e807]{line-height:1}.zy-progress.xs[data-v-cd70e807]{height:.3125rem}.zy-progress.sm[data-v-cd70e807]{height:.625rem}.zy-progress uni-view[data-v-cd70e807]{width:0;height:100%;align-items:center;display:flex;justify-items:flex-end;justify-content:space-around;font-size:.625rem;color:#fff;transition:width .6s ease}.zy-progress uni-text[data-v-cd70e807]{align-items:center;display:flex;font-size:.625rem;color:#333;text-indent:.3125rem}.zy-progress.text-progress[data-v-cd70e807]{padding-right:1.875rem}.zy-progress.striped uni-view[data-v-cd70e807]{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:2.25rem 2.25rem}.zy-progress.active uni-view[data-v-cd70e807]{animation:progress-stripes-cd70e807 2s linear infinite}@keyframes progress-stripes-cd70e807{0%{background-position:2.25rem 0}to{background-position:0 0}}.zy-btn[data-v-cd70e807]{height:2.8125rem;width:17.1875rem;background:linear-gradient(to right,#00c9ff,#0076ff);border-radius:.9375rem;display:flex;justify-content:center;align-items:center;color:#fff;font-size:1rem}.zy-btn[data-v-cd70e807]:after{display:none}.zy-btn[data-v-cd70e807]:not([class*=bg-]){background-color:#f0f0f0}.zy-btn[class*=line][data-v-cd70e807]{background-color:transparent}.zy-btn[class*=line][data-v-cd70e807]:after{content:" ";display:block;width:200%;height:200%;position:absolute;top:0;left:0;border:.03125rem solid currentColor;transform:scale(.5);transform-origin:0 0;box-sizing:border-box;border-radius:.375rem;z-index:1;pointer-events:none}.zy-btn.round[class*=line][data-v-cd70e807]:after{border-radius:31.25rem}.zy-btn[class*=lines][data-v-cd70e807]:after{border:.1875rem solid currentColor}.zy-btn[class*=bg-][data-v-cd70e807]:after{display:none}.zy-btn.sm[data-v-cd70e807]{padding:0 .625rem;font-size:.625rem;height:1.5rem}.zy-btn.lg[data-v-cd70e807]{padding:0 1.25rem;font-size:1rem;height:2.5rem}.zy-btn.cuIcon.sm[data-v-cd70e807]{width:1.5rem;height:1.5rem}.zy-btn.cuIcon[data-v-cd70e807]{width:2rem;height:2rem;border-radius:15.625rem;padding:0}uni-button.cuIcon.lg[data-v-cd70e807]{width:2.5rem;height:2.5rem}.zy-btn.shadow-blur[data-v-cd70e807]:before{top:.125rem;left:.125rem;filter:blur(.1875rem);opacity:.6}.zy-btn.button-hover[data-v-cd70e807]{transform:translate(.03125rem,.03125rem)}.block[data-v-cd70e807]{display:block}.zy-btn.block[data-v-cd70e807]{display:flex}.zy-btn[disabled][data-v-cd70e807]{opacity:.6;color:#fff}.margin-0[data-v-cd70e807]{margin:0}.margin-xs[data-v-cd70e807]{margin:.3125rem}.margin-sm[data-v-cd70e807]{margin:.625rem}.margin[data-v-cd70e807]{margin:.9375rem}.margin-lg[data-v-cd70e807]{margin:1.25rem}.margin-xl[data-v-cd70e807]{margin:1.5625rem}.margin-top-xs[data-v-cd70e807]{margin-top:.3125rem}.margin-top-sm[data-v-cd70e807]{margin-top:.625rem}.margin-top[data-v-cd70e807]{margin-top:.9375rem}.margin-top-lg[data-v-cd70e807]{margin-top:1.25rem}.margin-top-xl[data-v-cd70e807]{margin-top:1.5625rem}.margin-right-xs[data-v-cd70e807]{margin-right:.3125rem}.margin-right-sm[data-v-cd70e807]{margin-right:.625rem}.margin-right[data-v-cd70e807]{margin-right:.9375rem}.margin-right-lg[data-v-cd70e807]{margin-right:1.25rem}.margin-right-xl[data-v-cd70e807]{margin-right:1.5625rem}.margin-bottom-xs[data-v-cd70e807]{margin-bottom:.3125rem}.margin-bottom-sm[data-v-cd70e807]{margin-bottom:.625rem}.margin-bottom[data-v-cd70e807]{margin-bottom:.9375rem}.margin-bottom-lg[data-v-cd70e807]{margin-bottom:1.25rem}.margin-bottom-xl[data-v-cd70e807]{margin-bottom:1.5625rem}.margin-left-xs[data-v-cd70e807]{margin-left:.3125rem}.margin-left-sm[data-v-cd70e807]{margin-left:.625rem}.margin-left[data-v-cd70e807]{margin-left:.9375rem}.margin-left-lg[data-v-cd70e807]{margin-left:1.25rem}.margin-left-xl[data-v-cd70e807]{margin-left:1.5625rem}.margin-lr-xs[data-v-cd70e807]{margin-left:.3125rem;margin-right:.3125rem}.margin-lr-sm[data-v-cd70e807]{margin-left:.625rem;margin-right:.625rem}.margin-lr[data-v-cd70e807]{margin-left:.9375rem;margin-right:.9375rem}.margin-lr-lg[data-v-cd70e807]{margin-left:1.25rem;margin-right:1.25rem}.margin-lr-xl[data-v-cd70e807]{margin-left:1.5625rem;margin-right:1.5625rem}.margin-tb-xs[data-v-cd70e807]{margin-top:.3125rem;margin-bottom:.3125rem}.margin-tb-sm[data-v-cd70e807]{margin-top:.625rem;margin-bottom:.625rem}.margin-tb[data-v-cd70e807]{margin-top:.9375rem;margin-bottom:.9375rem}.margin-tb-lg[data-v-cd70e807]{margin-top:1.25rem;margin-bottom:1.25rem}.margin-tb-xl[data-v-cd70e807]{margin-top:1.5625rem;margin-bottom:1.5625rem}.padding-0[data-v-cd70e807]{padding:0}.padding-xs[data-v-cd70e807]{padding:.3125rem}.padding-sm[data-v-cd70e807]{padding:.625rem}.padding[data-v-cd70e807]{padding:.9375rem}.padding-lg[data-v-cd70e807]{padding:1.25rem}.padding-xl[data-v-cd70e807]{padding:1.5625rem}.padding-top-xs[data-v-cd70e807]{padding-top:.3125rem}.padding-top-sm[data-v-cd70e807]{padding-top:.625rem}.padding-top[data-v-cd70e807]{padding-top:.9375rem}.padding-top-lg[data-v-cd70e807]{padding-top:1.25rem}.padding-top-xl[data-v-cd70e807]{padding-top:1.5625rem}.padding-right-xs[data-v-cd70e807]{padding-right:.3125rem}.padding-right-sm[data-v-cd70e807]{padding-right:.625rem}.padding-right[data-v-cd70e807]{padding-right:.9375rem}.padding-right-lg[data-v-cd70e807]{padding-right:1.25rem}.padding-right-xl[data-v-cd70e807]{padding-right:1.5625rem}.padding-bottom-xs[data-v-cd70e807]{padding-bottom:.3125rem}.padding-bottom-sm[data-v-cd70e807]{padding-bottom:.625rem}.padding-bottom[data-v-cd70e807]{padding-bottom:.9375rem}.padding-bottom-lg[data-v-cd70e807]{padding-bottom:1.25rem}.padding-bottom-xl[data-v-cd70e807]{padding-bottom:1.5625rem}.padding-left-xs[data-v-cd70e807]{padding-left:.3125rem}.padding-left-sm[data-v-cd70e807]{padding-left:.625rem}.padding-left[data-v-cd70e807]{padding-left:.9375rem}.padding-left-lg[data-v-cd70e807]{padding-left:1.25rem}.padding-left-xl[data-v-cd70e807]{padding-left:1.5625rem}.padding-lr-xs[data-v-cd70e807]{padding-left:.3125rem;padding-right:.3125rem}.padding-lr-sm[data-v-cd70e807]{padding-left:.625rem;padding-right:.625rem}.padding-lr[data-v-cd70e807]{padding-left:.9375rem;padding-right:.9375rem}.padding-lr-lg[data-v-cd70e807]{padding-left:1.25rem;padding-right:1.25rem}.padding-lr-xl[data-v-cd70e807]{padding-left:1.5625rem;padding-right:1.5625rem}.padding-tb-xs[data-v-cd70e807]{padding-top:.3125rem;padding-bottom:.3125rem}.padding-tb-sm[data-v-cd70e807]{padding-top:.625rem;padding-bottom:.625rem}.padding-tb[data-v-cd70e807]{padding-top:.9375rem;padding-bottom:.9375rem}.padding-tb-lg[data-v-cd70e807]{padding-top:1.25rem;padding-bottom:1.25rem}.padding-tb-xl[data-v-cd70e807]{padding-top:1.5625rem;padding-bottom:1.5625rem}.zy-bar[data-v-cd70e807]{display:flex;position:relative;align-items:center;min-height:3.125rem;justify-content:space-between}.zy-bar .action[data-v-cd70e807]{display:flex;align-items:center;height:100%;justify-content:center;max-width:100%}.zy-bar .action.border-title[data-v-cd70e807]{position:relative;top:-.3125rem}.zy-bar .action.border-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;bottom:-.5rem;min-width:2rem;height:.1875rem;left:0}.zy-bar .action.sub-title[data-v-cd70e807]{position:relative;top:-.2rem}.zy-bar .action.sub-title uni-text[data-v-cd70e807]{position:relative;z-index:1}.zy-bar .action.sub-title uni-text[class*=bg-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.2rem;border-radius:.1875rem;width:100%;height:.6rem;left:.6rem;opacity:.3;z-index:0}.zy-bar .action.sub-title uni-text[class*=text-][data-v-cd70e807]:last-child{position:absolute;display:inline-block;bottom:-.7rem;left:.5rem;opacity:.2;z-index:0;text-align:right;font-weight:900;font-size:1.125rem}.zy-bar.justify-center .action.border-title uni-text[data-v-cd70e807]:last-child,.zy-bar.justify-center .action.sub-title uni-text[data-v-cd70e807]:last-child{left:0;right:0;margin:auto;text-align:center}.zy-bar .action[data-v-cd70e807]:first-child{margin-left:.9375rem;font-size:.9375rem}.zy-bar .action uni-text.text-cut[data-v-cd70e807]{text-align:left;width:100%}.zy-bar .zy-avatar[data-v-cd70e807]:first-child{margin-left:.625rem}.zy-bar .action:first-child>uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:-.3em;margin-right:.3em}.zy-bar .action[data-v-cd70e807]:last-child{margin-right:.9375rem}.zy-bar .action>uni-text[class*=cuIcon-][data-v-cd70e807],.zy-bar .action>uni-view[class*=cuIcon-][data-v-cd70e807]{font-size:1.125rem}.zy-bar .action>uni-text[class*=cuIcon-]+uni-text[class*=cuIcon-][data-v-cd70e807]{margin-left:.5em}.zy-bar .content[data-v-cd70e807]{position:absolute;text-align:center;width:calc(100% - 10.625rem);left:0;right:0;bottom:0;top:0;margin:auto;height:1.875rem;font-size:1rem;line-height:1.875rem;cursor:none;pointer-events:none;text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.zy-bar.ios .content[data-v-cd70e807]{bottom:7px;height:30px;font-size:1rem;line-height:30px}.zy-bar.btn-group[data-v-cd70e807]{justify-content:space-around}.zy-bar.btn-group uni-button[data-v-cd70e807]{padding:.625rem 1rem}.zy-bar.btn-group uni-button[data-v-cd70e807]{flex:1;margin:0 .625rem;max-width:50%}.zy-bar .search-form[data-v-cd70e807]{background-color:#f5f5f5;line-height:2rem;height:2rem;font-size:.75rem;color:#333;flex:1;display:flex;align-items:center;margin:0 .9375rem}.zy-bar .search-form+.action[data-v-cd70e807]{margin-right:.9375rem}.zy-bar .search-form uni-input[data-v-cd70e807]{flex:1;padding-right:.9375rem;height:2rem;line-height:2rem;font-size:.8125rem;background-color:transparent}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]{margin:0 .5em 0 .8em}.zy-bar .search-form [class*=cuIcon-][data-v-cd70e807]:before{top:0}.zy-bar.fixed[data-v-cd70e807],.nav.fixed[data-v-cd70e807]{position:fixed;width:100%;top:0;z-index:1024;box-shadow:0 .03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.foot[data-v-cd70e807]{position:fixed;width:100%;bottom:0;z-index:1024;box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar[data-v-cd70e807]{padding:0;height:calc(3.125rem + env(safe-area-inset-bottom)/2);padding-bottom:calc(env(safe-area-inset-bottom)/2)}.zy-tabbar-height[data-v-cd70e807]{min-height:3.125rem;height:calc(3.125rem + env(safe-area-inset-bottom)/2)}.zy-bar.tabbar.shadow[data-v-cd70e807]{box-shadow:0 -.03125rem .1875rem rgba(0,0,0,.1)}.zy-bar.tabbar .action[data-v-cd70e807]{font-size:.6875rem;position:relative;flex:1;text-align:center;padding:0;display:block;height:auto;line-height:1;margin:0;background-color:inherit;overflow:initial}.zy-bar.tabbar.shop .action[data-v-cd70e807]{width:4.375rem;flex:initial}.zy-bar.tabbar .action.add-action[data-v-cd70e807]{position:relative;z-index:2;padding-top:1.5625rem}.zy-bar.tabbar .action.add-action [class*=cuIcon-][data-v-cd70e807]{position:absolute;width:2.1875rem;z-index:2;height:2.1875rem;border-radius:50%;line-height:2.1875rem;font-size:1.5625rem;top:-1.09375rem;left:0;right:0;margin:auto;padding:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:after{content:"";position:absolute;width:3.125rem;height:3.125rem;top:-1.5625rem;left:0;right:0;margin:auto;box-shadow:0 -.09375rem .25rem rgba(0,0,0,.08);border-radius:1.5625rem;background-color:inherit;z-index:0}.zy-bar.tabbar .action.add-action[data-v-cd70e807]:before{content:"";position:absolute;width:3.125rem;height:.9375rem;bottom:.9375rem;left:0;right:0;margin:auto;background-color:inherit;z-index:1}.zy-bar.tabbar .btn-group[data-v-cd70e807]{flex:1;display:flex;justify-content:space-around;align-items:center;padding:0 .3125rem}.zy-bar.tabbar uni-button.action[data-v-cd70e807]:after{border:0}.zy-bar.tabbar .action [class*=cuIcon-][data-v-cd70e807]{width:3.125rem;position:relative;display:block;height:auto;margin:0 auto .3125rem;text-align:center;font-size:1.25rem}.zy-bar.tabbar .action .cuIcon-zy-image[data-v-cd70e807]{margin:0 auto}.zy-bar.tabbar .action .cuIcon-zy-image uni-image[data-v-cd70e807]{width:1.5625rem;height:1.5625rem;display:inline-block}.zy-bar.tabbar .submit[data-v-cd70e807]{align-items:center;display:flex;justify-content:center;text-align:center;position:relative;flex:2;align-self:stretch}.zy-bar.tabbar .submit[data-v-cd70e807]:last-child{flex:2.6}.zy-bar.tabbar .submit+.submit[data-v-cd70e807]{flex:2}.zy-bar.tabbar.border .action[data-v-cd70e807]:before{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;transform:scale(.5);transform-origin:0 0;border-right:.03125rem solid rgba(0,0,0,.1);z-index:3}.zy-bar.tabbar.border .action[data-v-cd70e807]:last-child:before{display:none}.zy-bar.input[data-v-cd70e807]{padding-right:.625rem;background-color:#fff}.zy-bar.input uni-input[data-v-cd70e807]{overflow:initial;line-height:2rem;height:2rem;min-height:2rem;flex:1;font-size:.9375rem;margin:0 .625rem}.zy-bar.input .action[data-v-cd70e807]{margin-left:.625rem}.zy-bar.input .action [class*=cuIcon-][data-v-cd70e807]{font-size:1.5rem}.zy-bar.input uni-input+.action[data-v-cd70e807]{margin-right:.625rem;margin-left:0}.zy-bar.input .action:first-child [class*=cuIcon-][data-v-cd70e807]{margin-left:0}.zy-custom[data-v-cd70e807]{display:block;position:relative}.zy-custom .zy-bar .content[data-v-cd70e807]{width:calc(100% - 13.75rem)}.zy-custom .zy-bar .content uni-image[data-v-cd70e807]{height:1.875rem;width:7.5rem}.zy-custom .zy-bar[data-v-cd70e807]{min-height:0px;box-shadow:0 0;z-index:9999}.zy-custom .zy-bar .border-custom[data-v-cd70e807]{position:relative;background:rgba(0,0,0,.15);border-radius:31.25rem;height:30px}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:after{content:" ";width:200%;height:200%;position:absolute;top:0;left:0;border-radius:inherit;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;border:.03125rem solid #ffffff;opacity:.5}.zy-custom .zy-bar .border-custom[data-v-cd70e807]:before{content:" ";width:.03125rem;height:110%;position:absolute;top:22.5%;left:0;right:0;margin:auto;transform:scale(.5);transform-origin:0 0;pointer-events:none;box-sizing:border-box;opacity:.6;background-color:#fff}.zy-custom .zy-bar .border-custom uni-text[data-v-cd70e807]{display:block;flex:1;margin:auto!important;text-align:center;font-size:1.0625rem}.flex[data-v-cd70e807]{display:flex}.basis-xs[data-v-cd70e807]{flex-basis:20%}.basis-sm[data-v-cd70e807]{flex-basis:40%}.basis-df[data-v-cd70e807]{flex-basis:50%}.basis-lg[data-v-cd70e807]{flex-basis:60%}.basis-xl[data-v-cd70e807]{flex-basis:80%}.flex-sub[data-v-cd70e807]{flex:1}.flex-twice[data-v-cd70e807]{flex:2}.flex-treble[data-v-cd70e807]{flex:3}.flex-direction[data-v-cd70e807]{flex-direction:column}.flex-wrap[data-v-cd70e807]{flex-wrap:wrap}.align-start[data-v-cd70e807]{align-items:flex-start}.align-end[data-v-cd70e807]{align-items:flex-end}.align-center[data-v-cd70e807]{align-items:center}.self-start[data-v-cd70e807]{align-self:flex-start}.self-center[data-v-cd70e807]{align-self:flex-center}.self-end[data-v-cd70e807]{align-self:flex-end}.self-stretch[data-v-cd70e807]{align-self:stretch}.align-stretch[data-v-cd70e807]{align-items:stretch}.justify-start[data-v-cd70e807]{justify-content:flex-start}.justify-end[data-v-cd70e807]{justify-content:flex-end}.justify-center[data-v-cd70e807]{justify-content:center}.justify-between[data-v-cd70e807]{justify-content:space-between}.justify-around[data-v-cd70e807]{justify-content:space-around}.line-red[data-v-cd70e807]:after,.lines-red[data-v-cd70e807]:after{border-color:#e54d42}.line-orange[data-v-cd70e807]:after,.lines-orange[data-v-cd70e807]:after{border-color:#f37b1d}.line-yellow[data-v-cd70e807]:after,.lines-yellow[data-v-cd70e807]:after{border-color:#fbbd08}.line-olive[data-v-cd70e807]:after,.lines-olive[data-v-cd70e807]:after{border-color:#8dc63f}.line-green[data-v-cd70e807]:after,.lines-green[data-v-cd70e807]:after{border-color:#39b54a}.line-cyan[data-v-cd70e807]:after,.lines-cyan[data-v-cd70e807]:after{border-color:#1cbbb4}.line-blue[data-v-cd70e807]:after,.lines-blue[data-v-cd70e807]:after{border-color:#0081ff}.line-purple[data-v-cd70e807]:after,.lines-purple[data-v-cd70e807]:after{border-color:#6739b6}.line-mauve[data-v-cd70e807]:after,.lines-mauve[data-v-cd70e807]:after{border-color:#9c26b0}.line-pink[data-v-cd70e807]:after,.lines-pink[data-v-cd70e807]:after{border-color:#e03997}.line-brown[data-v-cd70e807]:after,.lines-brown[data-v-cd70e807]:after{border-color:#a5673f}.line-grey[data-v-cd70e807]:after,.lines-grey[data-v-cd70e807]:after{border-color:#8799a3}.line-gray[data-v-cd70e807]:after,.lines-gray[data-v-cd70e807]:after{border-color:#aaa}.line-black[data-v-cd70e807]:after,.lines-black[data-v-cd70e807]:after{border-color:#333}.line-white[data-v-cd70e807]:after,.lines-white[data-v-cd70e807]:after{border-color:#fff}.bg-red[data-v-cd70e807]{background-color:#e54d42;color:#fff}.bg-orange[data-v-cd70e807]{background-color:#f37b1d;color:#fff}.bg-yellow[data-v-cd70e807]{background-color:#fbbd08;color:#333}.bg-olive[data-v-cd70e807]{background-color:#8dc63f;color:#fff}.bg-green[data-v-cd70e807]{background-color:#39b54a;color:#fff}.bg-cyan[data-v-cd70e807]{background-color:#1cbbb4;color:#fff}.bg-blue[data-v-cd70e807]{background-color:#0081ff;color:#fff}.bg-purple[data-v-cd70e807]{background-color:#6739b6;color:#fff}.bg-mauve[data-v-cd70e807]{background-color:#9c26b0;color:#fff}.bg-pink[data-v-cd70e807]{background-color:#e03997;color:#fff}.bg-brown[data-v-cd70e807]{background-color:#a5673f;color:#fff}.bg-grey[data-v-cd70e807]{background-color:#8799a3;color:#fff}.bg-gray[data-v-cd70e807]{background-color:#f0f0f0;color:#333}.bg-black[data-v-cd70e807]{background-color:#333;color:#fff}.bg-white[data-v-cd70e807]{background-color:#fff;color:#666}.bg-shadeTop[data-v-cd70e807]{background-image:linear-gradient(#000,rgba(0,0,0,.01));color:#fff}.bg-shadeBottom[data-v-cd70e807]{background-image:linear-gradient(rgba(0,0,0,.01),#000);color:#fff}.bg-red.light[data-v-cd70e807]{color:#e54d42;background-color:#fadbd9}.bg-orange.light[data-v-cd70e807]{color:#f37b1d;background-color:#fde6d2}.bg-yellow.light[data-v-cd70e807]{color:#fbbd08;background-color:rgba(254,242,206,.824)}.bg-olive.light[data-v-cd70e807]{color:#8dc63f;background-color:#e8f4d9}.bg-green.light[data-v-cd70e807]{color:#39b54a;background-color:#d7f0db}.bg-cyan.light[data-v-cd70e807]{color:#1cbbb4;background-color:#d2f1f0}.bg-blue.light[data-v-cd70e807]{color:#0081ff;background-color:#cce6ff}.bg-purple.light[data-v-cd70e807]{color:#6739b6;background-color:#e1d7f0}.bg-mauve.light[data-v-cd70e807]{color:#9c26b0;background-color:#ebd4ef}.bg-pink.light[data-v-cd70e807]{color:#e03997;background-color:#f9d7ea}.bg-brown.light[data-v-cd70e807]{color:#a5673f;background-color:#ede1d9}.bg-grey.light[data-v-cd70e807]{color:#8799a3;background-color:#e7ebed}.bg-gradual-red[data-v-cd70e807]{background-image:linear-gradient(45deg,#f43f3b,#ec008c);color:#fff}.bg-gradual-orange[data-v-cd70e807]{background-image:linear-gradient(45deg,#ff9700,#ed1c24);color:#fff}.bg-gradual-green[data-v-cd70e807]{background-image:linear-gradient(45deg,#39b54a,#8dc63f);color:#fff}.bg-gradual-purple[data-v-cd70e807]{background-image:linear-gradient(45deg,#9000ff,#5e00ff);color:#fff}.bg-gradual-pink[data-v-cd70e807]{background-image:linear-gradient(45deg,#ec008c,#6739b6);color:#fff}.bg-gradual-blue[data-v-cd70e807]{background-image:linear-gradient(45deg,#0081ff,#1cbbb4);color:#fff}.shadow[class*=-red][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.shadow[class*=-orange][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.shadow[class*=-yellow][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.shadow[class*=-olive][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.shadow[class*=-green][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.shadow[class*=-cyan][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.shadow[class*=-blue][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.shadow[class*=-purple][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.shadow[class*=-mauve][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.shadow[class*=-pink][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.shadow[class*=-brown][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.shadow[class*=-grey][data-v-cd70e807],.shadow[class*=-gray][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.shadow[class*=-black][data-v-cd70e807],.shadow[class*=-white][data-v-cd70e807]{box-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.text-shadow[class*=-red][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(204,69,59,.2)}.text-shadow[class*=-orange][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(217,109,26,.2)}.text-shadow[class*=-yellow][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(224,170,7,.2)}.text-shadow[class*=-olive][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(124,173,55,.2)}.text-shadow[class*=-green][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(48,156,63,.2)}.text-shadow[class*=-cyan][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(28,187,180,.2)}.text-shadow[class*=-blue][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(0,102,204,.2)}.text-shadow[class*=-purple][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(88,48,156,.2)}.text-shadow[class*=-mauve][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(133,33,150,.2)}.text-shadow[class*=-pink][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(199,50,134,.2)}.text-shadow[class*=-brown][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(140,88,53,.2)}.text-shadow[class*=-grey][data-v-cd70e807],.text-shadow[class*=-gray][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(114,130,138,.2)}.text-shadow[class*=-black][data-v-cd70e807]{text-shadow:.1875rem .1875rem .25rem rgba(26,26,26,.2)}.bg-img[data-v-cd70e807]{background-size:cover;background-position:center;background-repeat:no-repeat}.bg-mask[data-v-cd70e807]{background-color:#333;position:relative}.bg-mask[data-v-cd70e807]:after{content:"";border-radius:inherit;width:100%;height:100%;display:block;background-color:rgba(0,0,0,.4);position:absolute;left:0;right:0;bottom:0;top:0}.bg-mask uni-view[data-v-cd70e807],.bg-mask uni-cover-view[data-v-cd70e807]{z-index:5;position:relative}.bg-video[data-v-cd70e807]{position:relative}.bg-video uni-video[data-v-cd70e807]{display:block;height:100%;width:100%;object-fit:cover;position:absolute;top:0;z-index:0;pointer-events:none}.text-xs[data-v-cd70e807]{font-size:.625rem}.text-sm[data-v-cd70e807]{font-size:.75rem}.text-df[data-v-cd70e807]{font-size:.875rem}.text-lg[data-v-cd70e807]{font-size:1rem}.text-xl[data-v-cd70e807]{font-size:1.125rem}.text-xxl[data-v-cd70e807]{font-size:1.375rem}.text-sl[data-v-cd70e807]{font-size:2.5rem}.text-xsl[data-v-cd70e807]{font-size:3.75rem}.text-Abc[data-v-cd70e807]{text-transform:Capitalize}.text-ABC[data-v-cd70e807]{text-transform:Uppercase}.text-abc[data-v-cd70e807]{text-transform:Lowercase}.text-price[data-v-cd70e807]:before{content:"\a5";font-size:80%;margin-right:.125rem}.text-cut[data-v-cd70e807]{text-overflow:ellipsis;white-space:nowrap;overflow:hidden}.text-bold[data-v-cd70e807]{font-weight:700}.text-center[data-v-cd70e807]{text-align:center}.text-content[data-v-cd70e807]{line-height:1.6}.text-left[data-v-cd70e807]{text-align:left}.text-right[data-v-cd70e807]{text-align:right}.text-red[data-v-cd70e807],.line-red[data-v-cd70e807],.lines-red[data-v-cd70e807]{color:#e54d42}.text-orange[data-v-cd70e807],.line-orange[data-v-cd70e807],.lines-orange[data-v-cd70e807]{color:#f37b1d}.text-yellow[data-v-cd70e807],.line-yellow[data-v-cd70e807],.lines-yellow[data-v-cd70e807]{color:#fbbd08}.text-olive[data-v-cd70e807],.line-olive[data-v-cd70e807],.lines-olive[data-v-cd70e807]{color:#8dc63f}.text-green[data-v-cd70e807],.line-green[data-v-cd70e807],.lines-green[data-v-cd70e807]{color:#39b54a}.text-cyan[data-v-cd70e807],.line-cyan[data-v-cd70e807],.lines-cyan[data-v-cd70e807]{color:#1cbbb4}.text-blue[data-v-cd70e807],.line-blue[data-v-cd70e807],.lines-blue[data-v-cd70e807]{color:#0081ff}.text-purple[data-v-cd70e807],.line-purple[data-v-cd70e807],.lines-purple[data-v-cd70e807]{color:#6739b6}.text-mauve[data-v-cd70e807],.line-mauve[data-v-cd70e807],.lines-mauve[data-v-cd70e807]{color:#9c26b0}.text-pink[data-v-cd70e807],.line-pink[data-v-cd70e807],.lines-pink[data-v-cd70e807]{color:#e03997}.text-brown[data-v-cd70e807],.line-brown[data-v-cd70e807],.lines-brown[data-v-cd70e807]{color:#a5673f}.text-grey[data-v-cd70e807],.line-grey[data-v-cd70e807],.lines-grey[data-v-cd70e807]{color:#8799a3}.text-gray[data-v-cd70e807],.line-gray[data-v-cd70e807],.lines-gray[data-v-cd70e807]{color:#aaa}.text-black[data-v-cd70e807],.line-black[data-v-cd70e807],.lines-black[data-v-cd70e807]{color:#333}.text-white[data-v-cd70e807],.line-white[data-v-cd70e807],.lines-white[data-v-cd70e807]{color:#fff}.zy-upgrade-topbg-green[data-v-cd70e807]{background-image:url(../../../assets/green.20d5f80a.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-red[data-v-cd70e807]{background-image:url(../../../assets/red.8267d3cf.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-pink[data-v-cd70e807]{background-image:url(../../../assets/pink.78f243a3.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-yellow[data-v-cd70e807]{background-image:url(../../../assets/yellow.4438648c.png);background-size:100% 100%;background-repeat:no-repeat;height:9.0625rem}.zy-upgrade-topbg-blue[data-v-cd70e807]{background-size:100% 100%;background-repeat:no-repeat}.zy-upgrade-title[data-v-cd70e807]{font-size:1.09375rem;font-weight:600}.all[data-v-8b11c490]{margin-top:1.40625rem}.all .all-content[data-v-8b11c490]{width:100%;height:40.625rem}.all[data-v-842c1160]{margin-top:1.40625rem}.all .all-content[data-v-842c1160]{width:100%;height:40.625rem}.index-content-other[data-v-ccb4084b]{width:100%;height:100%;transition:opacity 1s ease;position:relative;background-color:#eff0f4}.index-content-right[data-v-ccb4084b]{width:100%;border-radius:1.5625rem;display:flex;align-items:center;padding-top:3.125rem;font-size:1rem}.item[data-v-ccb4084b]{display:flex;align-items:center;justify-content:space-between;width:100%;height:4.0625rem}.item .left-item[data-v-ccb4084b]{display:flex;align-items:center;margin-left:.625rem}.item .left-item .left-icon[data-v-ccb4084b]{margin:0 .625rem;width:1.25rem;height:1.25rem}.item .right-item[data-v-ccb4084b]{display:flex;align-items:center;margin-right:1.5625rem}.item .right-item .right-icon[data-v-ccb4084b]{width:.46875rem;height:.9375rem}.array-father[data-v-ccb4084b]{background-color:rgba(255,255,255,.6);width:76%;margin-left:12%;border-radius:.9375rem;margin-top:.9375rem}.bottom-button[data-v-ccb4084b]{margin-top:.9375rem;background-color:rgba(255,255,255,.6);width:76%;margin-left:12%;border-radius:.9375rem;display:flex;justify-content:center;align-items:center;font-size:.9375rem;height:3.125rem;color:#0174d3}.popup-any[data-v-ccb4084b]{position:fixed;top:0;right:0;bottom:0;left:0;opacity:0;transition:opacity .5s ease;-webkit-backdrop-filter:blur(.03125rem);backdrop-filter:blur(.03125rem);background-color:rgba(236,237,241,.4);z-index:999}.mask[data-v-ccb4084b]{position:absolute;top:0;right:0;bottom:0;left:0}.box-any[data-v-ccb4084b]{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:31.25rem;height:46.875rem;background:#fff;border-radius:1.5625rem;overflow:hidden;display:flex;flex-direction:column;padding:2.03125rem 1.875rem}.title-left[data-v-ccb4084b]{display:flex;align-items:center;justify-content:center}.title-left .back-img[data-v-ccb4084b]{width:1.875rem;height:1.875rem;margin-right:.9375rem}.title-left .back-font[data-v-ccb4084b]{font-size:1.09375rem;font-weight:600}.back-img[data-v-ccb4084b]{width:.9375rem;height:.9375rem;margin-left:3.125rem;margin-right:.625rem}.text-center[data-v-ccb4084b]{margin-top:1.25rem;width:100%;display:flex;justify-content:center} diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/5.png new file mode 100644 index 0000000..d5259c0 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/6.png new file mode 100644 index 0000000..aa7e923 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/bgc.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/bgc.png new file mode 100644 index 0000000..8affacc Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/bgc.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/click.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/click.png new file mode 100644 index 0000000..00b102f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/click.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/NU.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/NU.png new file mode 100644 index 0000000..b1ac22f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/NU.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/chongzhi.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/chongzhi.png new file mode 100644 index 0000000..63a176a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/chongzhi.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/chuku.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/chuku.png new file mode 100644 index 0000000..a8ecb32 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/chuku.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/chukublue.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/chukublue.png new file mode 100644 index 0000000..53b1d80 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/chukublue.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/dingdan.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/dingdan.png new file mode 100644 index 0000000..30fb547 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/dingdan.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/dingdanblue.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/dingdanblue.png new file mode 100644 index 0000000..1b88d84 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/dingdanblue.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/firstbutton.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/firstbutton.png new file mode 100644 index 0000000..a5d8ee2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/firstbutton.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/fourthbutton.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/fourthbutton.png new file mode 100644 index 0000000..5bdcaa2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/fourthbutton.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/goku.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/goku.png new file mode 100644 index 0000000..bc35f1d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/goku.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/guazhang.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/guazhang.png new file mode 100644 index 0000000..3f13d1a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/guazhang.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/hexiao.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/hexiao.png new file mode 100644 index 0000000..11dd0ed Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/hexiao.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/house.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/house.png new file mode 100644 index 0000000..006278b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/house.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/jiankong.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/jiankong.png new file mode 100644 index 0000000..74b17e7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/jiankong.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/jiankongblue.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/jiankongblue.png new file mode 100644 index 0000000..35ab97b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/jiankongblue.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/pandian.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/pandian.png new file mode 100644 index 0000000..d2ac626 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/pandian.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/pandianblue.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/pandianblue.png new file mode 100644 index 0000000..cabe6fb Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/pandianblue.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/pen.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/pen.png new file mode 100644 index 0000000..94996bd Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/pen.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/photo.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/photo.png new file mode 100644 index 0000000..d4d90d8 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/photo.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/quan0.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/quan0.png new file mode 100644 index 0000000..a33d2ff Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/quan0.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/quan1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/quan1.png new file mode 100644 index 0000000..305adbf Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/quan1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/quan2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/quan2.png new file mode 100644 index 0000000..be2e60e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/quan2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/secondbutton.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/secondbutton.png new file mode 100644 index 0000000..1a51683 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/secondbutton.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/shangchuanpeople.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/shangchuanpeople.png new file mode 100644 index 0000000..58b89fe Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/shangchuanpeople.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/shangchuantime.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/shangchuantime.png new file mode 100644 index 0000000..4db536e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/shangchuantime.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/sousuo.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/sousuo.png new file mode 100644 index 0000000..1f9c8c3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/sousuo.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/thirdbutton.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/thirdbutton.png new file mode 100644 index 0000000..639aa66 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/thirdbutton.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/you.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/you.png new file mode 100644 index 0000000..2d1d153 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/you.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/yujing.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/yujing.png new file mode 100644 index 0000000..20625eb Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/yujing.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/yujingblue.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/yujingblue.png new file mode 100644 index 0000000..b25b39f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/yujingblue.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/zuo.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/zuo.png new file mode 100644 index 0000000..b014e8d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/zuo.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/zuoce.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/zuoce.png new file mode 100644 index 0000000..69e0595 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/Warehousing/zuoce.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/addphoto.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/addphoto.png new file mode 100644 index 0000000..e93b07c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/addphoto.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/arrow.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/arrow.png new file mode 100644 index 0000000..174beb5 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/arrow.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/arrow2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/arrow2.png new file mode 100644 index 0000000..eb425a2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/arrow2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/baba.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/baba.png new file mode 100644 index 0000000..695d733 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/baba.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/background.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/background.png new file mode 100644 index 0000000..5077d39 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/background.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/badman.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/badman.png new file mode 100644 index 0000000..560e85f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/badman.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/baojieleft.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/baojieleft.png new file mode 100644 index 0000000..f3fd137 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/baojieleft.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/baojielei.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/baojielei.png new file mode 100644 index 0000000..93a432a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/baojielei.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/baojieright.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/baojieright.png new file mode 100644 index 0000000..cf8ec02 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/baojieright.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/bed.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/bed.png new file mode 100644 index 0000000..02560ed Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/bed.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/blue.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/blue.png new file mode 100644 index 0000000..95bce0a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/blue.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/blueMountain.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/blueMountain.png new file mode 100644 index 0000000..60ed6af Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/blueMountain.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/caigoubgc.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/caigoubgc.png new file mode 100644 index 0000000..9543186 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/caigoubgc.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/caigouqingdan.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/caigouqingdan.png new file mode 100644 index 0000000..6da6619 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/caigouqingdan.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/00.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/00.png new file mode 100644 index 0000000..b5c8496 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/00.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/01.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/01.png new file mode 100644 index 0000000..8ce7818 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/01.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/10.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/10.png new file mode 100644 index 0000000..20d0188 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/10.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/11.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/11.png new file mode 100644 index 0000000..4afb7a4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/11.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/20.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/20.png new file mode 100644 index 0000000..7584047 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/20.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/21.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/21.png new file mode 100644 index 0000000..1cc00a1 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/21.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/30.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/30.png new file mode 100644 index 0000000..bae7140 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/30.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/31.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/31.png new file mode 100644 index 0000000..439de58 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/31.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/40.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/40.png new file mode 100644 index 0000000..a3b821d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/40.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/41.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/41.png new file mode 100644 index 0000000..015c3c3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/41.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/50.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/50.png new file mode 100644 index 0000000..12846db Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/50.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/51.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/51.png new file mode 100644 index 0000000..f077966 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/51.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/60.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/60.png new file mode 100644 index 0000000..e49613c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/60.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/61.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/61.png new file mode 100644 index 0000000..d487215 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/61.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/70.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/70.png new file mode 100644 index 0000000..56491f7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/70.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/71.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/71.png new file mode 100644 index 0000000..83ad832 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/71.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/80.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/80.png new file mode 100644 index 0000000..0684b6f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/80.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/800.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/800.png new file mode 100644 index 0000000..eb9b67f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/800.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/801.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/801.png new file mode 100644 index 0000000..d02cc9a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/801.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/81.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/81.png new file mode 100644 index 0000000..d2e096a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/81.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/810.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/810.png new file mode 100644 index 0000000..941d549 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/810.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/811.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/811.png new file mode 100644 index 0000000..5be48f7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/811.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/820.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/820.png new file mode 100644 index 0000000..eebc1af Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/820.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/821.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/821.png new file mode 100644 index 0000000..5bf3ad9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/821.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/830.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/830.png new file mode 100644 index 0000000..6bcf7ba Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/830.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/831.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/831.png new file mode 100644 index 0000000..f2f6029 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/831.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/90.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/90.png new file mode 100644 index 0000000..0420380 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/90.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/91.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/91.png new file mode 100644 index 0000000..d17d712 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/91.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/arrow1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/arrow1.png new file mode 100644 index 0000000..bc0952f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/arrow1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/arrow2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/arrow2.png new file mode 100644 index 0000000..0dc5213 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/arrow2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/arrow3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/arrow3.png new file mode 100644 index 0000000..1317337 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/arrow3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/arrow4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/arrow4.png new file mode 100644 index 0000000..23e7a26 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/arrow4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/arrow5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/arrow5.png new file mode 100644 index 0000000..96cd0fa Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/arrow5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/back.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/back.png new file mode 100644 index 0000000..3de7100 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/camera/back.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardbgc/backdrop3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardbgc/backdrop3.png new file mode 100644 index 0000000..1ad9820 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardbgc/backdrop3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardbgc/bgcdark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardbgc/bgcdark.png new file mode 100644 index 0000000..840deac Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardbgc/bgcdark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardbgc/fircardbgc.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardbgc/fircardbgc.png new file mode 100644 index 0000000..934d22d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardbgc/fircardbgc.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardbgc/leftlight.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardbgc/leftlight.png new file mode 100644 index 0000000..29bb9bd Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardbgc/leftlight.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardbgc/newbgc.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardbgc/newbgc.png new file mode 100644 index 0000000..07b401b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardbgc/newbgc.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardbgc/uplight.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardbgc/uplight.png new file mode 100644 index 0000000..f63d25a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardbgc/uplight.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardicons/mountain.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardicons/mountain.png new file mode 100644 index 0000000..7daf90d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardicons/mountain.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardicons/ray2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardicons/ray2.png new file mode 100644 index 0000000..b5e89e7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardicons/ray2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardicons/rightjiaotou.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardicons/rightjiaotou.png new file mode 100644 index 0000000..bd3bc6e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardicons/rightjiaotou.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardicons/uplight.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardicons/uplight.png new file mode 100644 index 0000000..5e40e0c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardicons/uplight.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardicons/zhifa.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardicons/zhifa.png new file mode 100644 index 0000000..7ce34ba Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardicons/zhifa.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardicons/zhixing.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardicons/zhixing.png new file mode 100644 index 0000000..6bd2d3a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardicons/zhixing.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardicons/zhixingrel.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardicons/zhixingrel.png new file mode 100644 index 0000000..4d9de23 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cardicons/zhixingrel.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cheng.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cheng.png new file mode 100644 index 0000000..24879bc Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/cheng.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/clearmountain.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/clearmountain.png new file mode 100644 index 0000000..854d294 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/clearmountain.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/click.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/click.png new file mode 100644 index 0000000..041ccc0 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/click.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/close.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/close.png new file mode 100644 index 0000000..c5cb9bb Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/close.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/crushpouple.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/crushpouple.png new file mode 100644 index 0000000..de45150 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/crushpouple.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/crushyellow.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/crushyellow.png new file mode 100644 index 0000000..478181e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/crushyellow.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/customer.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/customer.png new file mode 100644 index 0000000..6092aef Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/customer.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/daizhixing.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/daizhixing.png new file mode 100644 index 0000000..9d74471 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/daizhixing.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/baojieleidark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/baojieleidark.png new file mode 100644 index 0000000..bec111e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/baojieleidark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/diandark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/diandark.png new file mode 100644 index 0000000..762456d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/diandark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/dianqidark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/dianqidark.png new file mode 100644 index 0000000..0657fc1 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/dianqidark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/hushidark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/hushidark.png new file mode 100644 index 0000000..91cf95f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/hushidark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/kontiaodark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/kontiaodark.png new file mode 100644 index 0000000..118f8db Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/kontiaodark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/labadark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/labadark.png new file mode 100644 index 0000000..4b22210 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/labadark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/linshidark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/linshidark.png new file mode 100644 index 0000000..e40469b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/linshidark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/nuanfengdark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/nuanfengdark.png new file mode 100644 index 0000000..1b0f740 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/nuanfengdark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/peiyaodark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/peiyaodark.png new file mode 100644 index 0000000..07b2409 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/peiyaodark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/qinglingdark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/qinglingdark.png new file mode 100644 index 0000000..da4f8ea Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/qinglingdark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/shidudark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/shidudark.png new file mode 100644 index 0000000..1801d8b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/shidudark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/time.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/time.png new file mode 100644 index 0000000..f8144ce Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/time.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/wendudark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/wendudark.png new file mode 100644 index 0000000..938f036 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/wendudark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/xiezhudark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/xiezhudark.png new file mode 100644 index 0000000..d4bc71a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/xiezhudark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/xinxidark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/xinxidark.png new file mode 100644 index 0000000..293f037 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/xinxidark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/yaopindark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/yaopindark.png new file mode 100644 index 0000000..5fe4958 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/yaopindark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/yishengdark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/yishengdark.png new file mode 100644 index 0000000..db2eb0d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/yishengdark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/yizhudark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/yizhudark.png new file mode 100644 index 0000000..f4e8ce8 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/yizhudark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/zhaomingdark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/zhaomingdark.png new file mode 100644 index 0000000..a277303 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/zhaomingdark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/zhixingfangshidark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/zhixingfangshidark.png new file mode 100644 index 0000000..4d9de23 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/zhixingfangshidark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/zhixingpeopledark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/zhixingpeopledark.png new file mode 100644 index 0000000..88b060e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/zhixingpeopledark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/zhixingrenyuanddark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/zhixingrenyuanddark.png new file mode 100644 index 0000000..f2d564d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/zhixingrenyuanddark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/zhongdiandark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/zhongdiandark.png new file mode 100644 index 0000000..ffb8f9a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/zhongdiandark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/zhuandandark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/zhuandandark.png new file mode 100644 index 0000000..0697973 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/darkicon/zhuandandark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/deleteIt.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/deleteIt.png new file mode 100644 index 0000000..791f325 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/deleteIt.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/deleteicon.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/deleteicon.png new file mode 100644 index 0000000..e0cb99f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/deleteicon.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/Sputuma_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/Sputuma_1.png new file mode 100644 index 0000000..c1db47f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/Sputuma_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/Sputuma_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/Sputuma_2.png new file mode 100644 index 0000000..505b646 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/Sputuma_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/Sputuma_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/Sputuma_3.png new file mode 100644 index 0000000..bc438d3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/Sputuma_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/Sputuma_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/Sputuma_4.png new file mode 100644 index 0000000..5a37a9e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/Sputuma_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/Sputuma_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/Sputuma_5.png new file mode 100644 index 0000000..47d6b6a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/Sputuma_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/Sputuma_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/Sputuma_6.png new file mode 100644 index 0000000..7816acc Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/Sputuma_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/Sputuma_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/Sputuma_7.png new file mode 100644 index 0000000..93b43b3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/Sputuma_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/adjust_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/adjust_1.png new file mode 100644 index 0000000..26b07a4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/adjust_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/adjust_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/adjust_2.png new file mode 100644 index 0000000..4f0c4be Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/adjust_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/adjust_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/adjust_3.png new file mode 100644 index 0000000..5389826 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/adjust_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/adjust_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/adjust_4.png new file mode 100644 index 0000000..2ac32b9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/adjust_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/adjust_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/adjust_5.png new file mode 100644 index 0000000..b3b89b2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/adjust_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/adjust_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/adjust_6.png new file mode 100644 index 0000000..54a8939 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/adjust_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/adjust_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/adjust_7.png new file mode 100644 index 0000000..a7537e6 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/adjust_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_1.png new file mode 100644 index 0000000..9ec4799 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_2.png new file mode 100644 index 0000000..2e85100 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_3.png new file mode 100644 index 0000000..d5186e2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_4.png new file mode 100644 index 0000000..14603fc Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_5.png new file mode 100644 index 0000000..4b675b4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_6.png new file mode 100644 index 0000000..41c6914 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_7.png new file mode 100644 index 0000000..0a7b3ba Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_8.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_8.png new file mode 100644 index 0000000..6e9d1cd Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_8.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_9.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_9.png new file mode 100644 index 0000000..64092bd Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/bathe_9.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/chair_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/chair_1.png new file mode 100644 index 0000000..7e8cd0b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/chair_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/chair_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/chair_2.png new file mode 100644 index 0000000..e6567d5 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/chair_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/chair_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/chair_3.png new file mode 100644 index 0000000..99b0a76 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/chair_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/chair_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/chair_4.png new file mode 100644 index 0000000..4eeeaa7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/chair_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/chair_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/chair_5.png new file mode 100644 index 0000000..92332de Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/chair_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/chair_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/chair_6.png new file mode 100644 index 0000000..138d9a1 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/chair_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/chair_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/chair_7.png new file mode 100644 index 0000000..ea4d760 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/chair_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/chair_8.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/chair_8.png new file mode 100644 index 0000000..e52cdf6 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/chair_8.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/change_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/change_1.png new file mode 100644 index 0000000..2f08299 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/change_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/change_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/change_2.png new file mode 100644 index 0000000..7f11361 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/change_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/change_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/change_3.png new file mode 100644 index 0000000..1542fe1 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/change_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/change_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/change_4.png new file mode 100644 index 0000000..be710b0 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/change_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/change_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/change_5.png new file mode 100644 index 0000000..e2618b3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/change_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/change_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/change_6.png new file mode 100644 index 0000000..d907dac Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/change_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/clippers_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/clippers_1.png new file mode 100644 index 0000000..95d26aa Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/clippers_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/clippers_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/clippers_2.png new file mode 100644 index 0000000..c4b1eab Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/clippers_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/clippers_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/clippers_3.png new file mode 100644 index 0000000..e35b608 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/clippers_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/clippers_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/clippers_4.png new file mode 100644 index 0000000..32f6f14 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/clippers_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/clippers_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/clippers_5.png new file mode 100644 index 0000000..a002f89 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/clippers_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/clippers_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/clippers_6.png new file mode 100644 index 0000000..2b48199 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/clippers_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/constraint_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/constraint_1.png new file mode 100644 index 0000000..f5a9942 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/constraint_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/constraint_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/constraint_2.png new file mode 100644 index 0000000..708cd91 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/constraint_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/constraint_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/constraint_3.png new file mode 100644 index 0000000..84cd543 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/constraint_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/constraint_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/constraint_4.png new file mode 100644 index 0000000..31f7f60 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/constraint_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/dinner_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/dinner_1.png new file mode 100644 index 0000000..e859f17 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/dinner_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/dinner_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/dinner_2.png new file mode 100644 index 0000000..cc69235 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/dinner_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/dinner_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/dinner_3.png new file mode 100644 index 0000000..92f6ff4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/dinner_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/dinner_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/dinner_4.png new file mode 100644 index 0000000..63583d7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/dinner_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/dinner_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/dinner_5.png new file mode 100644 index 0000000..6946ef6 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/dinner_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/dinner_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/dinner_6.png new file mode 100644 index 0000000..de2b376 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/dinner_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/dinner_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/dinner_7.png new file mode 100644 index 0000000..628098b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/dinner_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/dinner_8.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/dinner_8.png new file mode 100644 index 0000000..50dae42 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/dinner_8.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drainage_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drainage_1.png new file mode 100644 index 0000000..7cfa135 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drainage_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drainage_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drainage_2.png new file mode 100644 index 0000000..6d9c312 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drainage_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drainage_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drainage_3.png new file mode 100644 index 0000000..d2a68fc Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drainage_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drainage_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drainage_4.png new file mode 100644 index 0000000..dad40cc Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drainage_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drainage_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drainage_5.png new file mode 100644 index 0000000..8a5f752 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drainage_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drainage_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drainage_6.png new file mode 100644 index 0000000..b930d1b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drainage_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drink_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drink_1.png new file mode 100644 index 0000000..93713aa Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drink_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drink_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drink_2.png new file mode 100644 index 0000000..8d6022e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drink_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drink_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drink_3.png new file mode 100644 index 0000000..d893233 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drink_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drink_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drink_4.png new file mode 100644 index 0000000..f724996 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drink_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drink_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drink_5.png new file mode 100644 index 0000000..84e76a6 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/drink_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/exequy_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/exequy_1.png new file mode 100644 index 0000000..3ca59bb Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/exequy_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/exequy_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/exequy_2.png new file mode 100644 index 0000000..391926b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/exequy_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/exequy_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/exequy_3.png new file mode 100644 index 0000000..b1c25f4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/exequy_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/exequy_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/exequy_4.png new file mode 100644 index 0000000..bb4468d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/exequy_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/face_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/face_1.png new file mode 100644 index 0000000..2498ed7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/face_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/face_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/face_2.png new file mode 100644 index 0000000..2c465b7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/face_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/face_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/face_3.png new file mode 100644 index 0000000..f5338ff Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/face_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/face_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/face_4.png new file mode 100644 index 0000000..511df81 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/face_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/face_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/face_5.png new file mode 100644 index 0000000..8041491 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/face_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/feet_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/feet_1.png new file mode 100644 index 0000000..120f13b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/feet_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/feet_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/feet_2.png new file mode 100644 index 0000000..1e1f7df Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/feet_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/feet_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/feet_3.png new file mode 100644 index 0000000..bc55def Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/feet_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/feet_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/feet_4.png new file mode 100644 index 0000000..29c7075 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/feet_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/food_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/food_1.png new file mode 100644 index 0000000..4680235 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/food_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/food_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/food_2.png new file mode 100644 index 0000000..a8c4afb Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/food_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/food_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/food_3.png new file mode 100644 index 0000000..4c505f1 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/food_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/food_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/food_4.png new file mode 100644 index 0000000..360cf0c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/food_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/food_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/food_5.png new file mode 100644 index 0000000..a2cc5c5 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/food_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/food_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/food_6.png new file mode 100644 index 0000000..5618b60 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/food_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/funeral_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/funeral_1.png new file mode 100644 index 0000000..7ad4219 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/funeral_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/funeral_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/funeral_2.png new file mode 100644 index 0000000..460e849 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/funeral_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/funeral_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/funeral_3.png new file mode 100644 index 0000000..8152522 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/funeral_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/funeral_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/funeral_4.png new file mode 100644 index 0000000..5dfb352 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/funeral_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/funeral_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/funeral_5.png new file mode 100644 index 0000000..ed30f28 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/funeral_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/haircut_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/haircut_1.png new file mode 100644 index 0000000..1c2f125 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/haircut_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/haircut_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/haircut_2.png new file mode 100644 index 0000000..908f6f7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/haircut_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/haircut_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/haircut_3.png new file mode 100644 index 0000000..9943850 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/haircut_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/haircut_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/haircut_4.png new file mode 100644 index 0000000..2853911 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/haircut_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/haircut_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/haircut_5.png new file mode 100644 index 0000000..c9961f8 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/haircut_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/hands_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/hands_1.png new file mode 100644 index 0000000..1125bd7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/hands_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/hands_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/hands_2.png new file mode 100644 index 0000000..9281a54 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/hands_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/hands_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/hands_3.png new file mode 100644 index 0000000..fe94340 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/hands_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/hands_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/hands_4.png new file mode 100644 index 0000000..edda565 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/hands_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/hands_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/hands_5.png new file mode 100644 index 0000000..ecf60bd Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/hands_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/head_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/head_1.png new file mode 100644 index 0000000..b99e955 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/head_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/head_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/head_2.png new file mode 100644 index 0000000..3db89b2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/head_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/head_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/head_3.png new file mode 100644 index 0000000..a977dce Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/head_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/head_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/head_4.png new file mode 100644 index 0000000..949eae7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/head_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/head_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/head_5.png new file mode 100644 index 0000000..eeb8614 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/head_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/head——2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/head——2.png new file mode 100644 index 0000000..df0b9f8 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/head——2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_1.png new file mode 100644 index 0000000..5aee63b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_2.png new file mode 100644 index 0000000..9caf59a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_3.png new file mode 100644 index 0000000..5b5f666 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_4.png new file mode 100644 index 0000000..a1420fe Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_5.png new file mode 100644 index 0000000..5755a0a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_6.png new file mode 100644 index 0000000..9f4e917 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_7.png new file mode 100644 index 0000000..2abd411 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_8.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_8.png new file mode 100644 index 0000000..f31e1ba Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_8.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_9.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_9.png new file mode 100644 index 0000000..806f013 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/juice_9.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/knead_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/knead_1.png new file mode 100644 index 0000000..adaa4a0 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/knead_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/knead_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/knead_2.png new file mode 100644 index 0000000..a6998a4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/knead_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/knead_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/knead_3.png new file mode 100644 index 0000000..ea95851 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/knead_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/knead_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/knead_4.png new file mode 100644 index 0000000..ae20b8e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/knead_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/limbs_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/limbs_1.png new file mode 100644 index 0000000..332d24c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/limbs_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/limbs_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/limbs_2.png new file mode 100644 index 0000000..e1fc6ff Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/limbs_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/limbs_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/limbs_3.png new file mode 100644 index 0000000..5e85a71 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/limbs_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/limbs_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/limbs_4.png new file mode 100644 index 0000000..6844aee Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/limbs_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/massage_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/massage_1.png new file mode 100644 index 0000000..d048b0a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/massage_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/massage_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/massage_2.png new file mode 100644 index 0000000..cb8d283 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/massage_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/massage_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/massage_3.png new file mode 100644 index 0000000..e742df3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/massage_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/massage_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/massage_4.png new file mode 100644 index 0000000..d662457 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/massage_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/massage_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/massage_5.png new file mode 100644 index 0000000..bf77450 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/massage_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/medicine_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/medicine_1.png new file mode 100644 index 0000000..90c45ca Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/medicine_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/medicine_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/medicine_2.png new file mode 100644 index 0000000..5cbedb9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/medicine_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/medicine_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/medicine_3.png new file mode 100644 index 0000000..728f4d1 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/medicine_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/medicine_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/medicine_4.png new file mode 100644 index 0000000..687ec75 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/medicine_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/medicine_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/medicine_5.png new file mode 100644 index 0000000..5dd3eae Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/medicine_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/medicine_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/medicine_6.png new file mode 100644 index 0000000..81f1013 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/medicine_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/medicine_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/medicine_7.png new file mode 100644 index 0000000..773b0d2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/medicine_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/omy_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/omy_1.png new file mode 100644 index 0000000..a8696a4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/omy_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/omy_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/omy_2.png new file mode 100644 index 0000000..466b57f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/omy_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/omy_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/omy_3.png new file mode 100644 index 0000000..1f18da4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/omy_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/omy_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/omy_4.png new file mode 100644 index 0000000..d5ac3be Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/omy_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oral_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oral_1.png new file mode 100644 index 0000000..a3c5e85 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oral_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oral_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oral_2.png new file mode 100644 index 0000000..f71d7d7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oral_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oral_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oral_3.png new file mode 100644 index 0000000..7daf9c3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oral_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oral_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oral_4.png new file mode 100644 index 0000000..68bdc40 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oral_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oral_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oral_5.png new file mode 100644 index 0000000..6668d8b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oral_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oral_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oral_6.png new file mode 100644 index 0000000..3b07688 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oral_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oral_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oral_7.png new file mode 100644 index 0000000..cc97cf9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oral_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oxygen_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oxygen_1.png new file mode 100644 index 0000000..22f437f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oxygen_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oxygen_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oxygen_2.png new file mode 100644 index 0000000..2bdcdd4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oxygen_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oxygen_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oxygen_3.png new file mode 100644 index 0000000..c4aa38f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oxygen_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oxygen_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oxygen_4.png new file mode 100644 index 0000000..ec0ce3a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oxygen_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oxygen_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oxygen_5.png new file mode 100644 index 0000000..cf2e5e6 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oxygen_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oxygen_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oxygen_6.png new file mode 100644 index 0000000..36be537 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/oxygen_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perianal_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perianal_1.png new file mode 100644 index 0000000..78731e8 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perianal_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perianal_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perianal_2.png new file mode 100644 index 0000000..7c2699c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perianal_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perianal_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perianal_3.png new file mode 100644 index 0000000..bc67c1c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perianal_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perianal_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perianal_4.png new file mode 100644 index 0000000..01a30a9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perianal_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perianal_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perianal_5.png new file mode 100644 index 0000000..7ba3ba7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perianal_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perianal_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perianal_6.png new file mode 100644 index 0000000..20f7ae4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perianal_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perianal_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perianal_7.png new file mode 100644 index 0000000..e7a3f63 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perianal_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perineum_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perineum_1.png new file mode 100644 index 0000000..0b45f3b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perineum_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perineum_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perineum_2.png new file mode 100644 index 0000000..405cf12 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perineum_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perineum_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perineum_3.png new file mode 100644 index 0000000..1fb36a7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perineum_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perineum_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perineum_4.png new file mode 100644 index 0000000..12a44b2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perineum_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perineum_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perineum_5.png new file mode 100644 index 0000000..667add9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/perineum_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/posture_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/posture_1.png new file mode 100644 index 0000000..cdaa664 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/posture_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/posture_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/posture_2.png new file mode 100644 index 0000000..abfbc3d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/posture_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/posture_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/posture_3.png new file mode 100644 index 0000000..3fb7cc2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/posture_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/posture_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/posture_4.png new file mode 100644 index 0000000..66023c7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/posture_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/posture_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/posture_5.png new file mode 100644 index 0000000..cd9c50f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/posture_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/posture_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/posture_6.png new file mode 100644 index 0000000..cc51f2f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/posture_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/replace_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/replace_1.png new file mode 100644 index 0000000..c464afa Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/replace_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/replace_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/replace_2.png new file mode 100644 index 0000000..b2d0658 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/replace_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/replace_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/replace_3.png new file mode 100644 index 0000000..f244002 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/replace_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/replace_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/replace_4.png new file mode 100644 index 0000000..2f1ea02 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/replace_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/shampoo_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/shampoo_1.png new file mode 100644 index 0000000..0083b4f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/shampoo_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/shampoo_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/shampoo_2.png new file mode 100644 index 0000000..9c80bbe Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/shampoo_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/shampoo_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/shampoo_3.png new file mode 100644 index 0000000..aa7f053 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/shampoo_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/shave_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/shave_1.png new file mode 100644 index 0000000..0755651 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/shave_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/shave_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/shave_2.png new file mode 100644 index 0000000..4ef8014 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/shave_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/shave_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/shave_4.png new file mode 100644 index 0000000..e312366 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/shave_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/shave_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/shave_5.png new file mode 100644 index 0000000..4dc0f54 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/shave_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/shave_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/shave_6.png new file mode 100644 index 0000000..9b30364 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/shave_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/snack_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/snack_1.png new file mode 100644 index 0000000..ea9abc8 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/snack_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/snack_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/snack_2.png new file mode 100644 index 0000000..1abbe05 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/snack_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/snack_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/snack_3.png new file mode 100644 index 0000000..a0a8171 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/snack_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/snack_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/snack_4.png new file mode 100644 index 0000000..eab5e95 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/snack_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/snack_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/snack_5.png new file mode 100644 index 0000000..b2c53a9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/snack_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/snack_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/snack_6.png new file mode 100644 index 0000000..69f47e2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/snack_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/snack_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/snack_7.png new file mode 100644 index 0000000..c851222 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/snack_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/stool_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/stool_1.png new file mode 100644 index 0000000..ecc179d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/stool_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/stool_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/stool_2.png new file mode 100644 index 0000000..a5567f2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/stool_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/stool_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/stool_3.png new file mode 100644 index 0000000..d073df4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/stool_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/torso_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/torso_1.png new file mode 100644 index 0000000..f5214fd Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/torso_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/torso_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/torso_2.png new file mode 100644 index 0000000..f64c3fa Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/torso_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/torso_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/torso_3.png new file mode 100644 index 0000000..476b9ea Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/torso_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/torso_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/torso_4.png new file mode 100644 index 0000000..0578a5d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/torso_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/torso_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/torso_5.png new file mode 100644 index 0000000..87a9ebc Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/torso_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/torso_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/torso_6.png new file mode 100644 index 0000000..6a59a3b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/torso_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/urinate_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/urinate_1.png new file mode 100644 index 0000000..8b02330 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/urinate_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/urinate_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/urinate_2.png new file mode 100644 index 0000000..b9d160f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/urinate_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/urinate_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/urinate_3.png new file mode 100644 index 0000000..dce3ab3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/urinate_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/urinate_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/urinate_4.png new file mode 100644 index 0000000..b4b6ee9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/urinate_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/visitation_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/visitation_1.png new file mode 100644 index 0000000..b736631 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/visitation_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/visitation_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/visitation_2.png new file mode 100644 index 0000000..b509c65 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/visitation_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/visitation_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/visitation_3.png new file mode 100644 index 0000000..cee89f4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/visitation_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/visitation_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/visitation_4.png new file mode 100644 index 0000000..2fe2d65 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/visitation_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/visitation_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/visitation_5.png new file mode 100644 index 0000000..c1cf2df Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/visitation_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/vomiting_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/vomiting_1.png new file mode 100644 index 0000000..8ac2a4c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/vomiting_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/vomiting_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/vomiting_2.png new file mode 100644 index 0000000..1090bbe Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/vomiting_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/vomiting_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/vomiting_3.png new file mode 100644 index 0000000..06836f2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/vomiting_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/vomiting_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/vomiting_4.png new file mode 100644 index 0000000..096746d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/vomiting_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/vomiting_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/vomiting_5.png new file mode 100644 index 0000000..058d917 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/vomiting_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/vomiting_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/vomiting_6.png new file mode 100644 index 0000000..ddbd47b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/vomiting_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wash_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wash_1.png new file mode 100644 index 0000000..e5fe9e9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wash_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wash_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wash_2.png new file mode 100644 index 0000000..8a3ef0a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wash_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wash_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wash_3.png new file mode 100644 index 0000000..54b3597 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wash_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wash_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wash_4.png new file mode 100644 index 0000000..e2d59ae Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wash_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_1.png new file mode 100644 index 0000000..d60444d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_10.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_10.png new file mode 100644 index 0000000..4fcaa67 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_10.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_2.png new file mode 100644 index 0000000..393a011 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_3.png new file mode 100644 index 0000000..f160cb5 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_4.png new file mode 100644 index 0000000..a7105f8 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_5.png new file mode 100644 index 0000000..823b488 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_6.png new file mode 100644 index 0000000..cbe0629 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_7.png new file mode 100644 index 0000000..5117aec Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_8.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_8.png new file mode 100644 index 0000000..3fc92f2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_8.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_9.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_9.png new file mode 100644 index 0000000..a34eb87 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/diet/wheelchair_9.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/dark/bed.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/dark/bed.png new file mode 100644 index 0000000..4124c78 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/dark/bed.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/dark/clean.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/dark/clean.png new file mode 100644 index 0000000..8a19f59 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/dark/clean.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/dark/drink.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/dark/drink.png new file mode 100644 index 0000000..fab2193 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/dark/drink.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/dark/shi.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/dark/shi.png new file mode 100644 index 0000000..e582d18 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/dark/shi.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/dark/use.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/dark/use.png new file mode 100644 index 0000000..4dd9ca3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/dark/use.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/light/bed.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/light/bed.png new file mode 100644 index 0000000..b765b54 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/light/bed.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/light/clean.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/light/clean.png new file mode 100644 index 0000000..b59b3b5 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/light/clean.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/light/drink.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/light/drink.png new file mode 100644 index 0000000..be2d028 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/light/drink.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/light/shi.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/light/shi.png new file mode 100644 index 0000000..eeafa90 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/light/shi.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/light/use.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/light/use.png new file mode 100644 index 0000000..6aaf1ad Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/light/use.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videobottom/0.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videobottom/0.png new file mode 100644 index 0000000..532dcb7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videobottom/0.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videobottom/1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videobottom/1.png new file mode 100644 index 0000000..b40fe40 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videobottom/1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videobottom/2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videobottom/2.png new file mode 100644 index 0000000..0176fc0 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videobottom/2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videobottom/3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videobottom/3.png new file mode 100644 index 0000000..1e6c10d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videobottom/3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videobottom/4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videobottom/4.png new file mode 100644 index 0000000..e804cc3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videobottom/4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/00.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/00.png new file mode 100644 index 0000000..8152bed Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/00.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/01.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/01.png new file mode 100644 index 0000000..0790f5e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/01.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/10.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/10.png new file mode 100644 index 0000000..f21ccdc Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/10.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/11.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/11.png new file mode 100644 index 0000000..c8a107a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/11.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/20.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/20.png new file mode 100644 index 0000000..4870ca7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/20.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/21.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/21.png new file mode 100644 index 0000000..7b77b62 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/21.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/30.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/30.png new file mode 100644 index 0000000..c8e19c9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/30.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/31.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/31.png new file mode 100644 index 0000000..f87b98b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/31.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/40.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/40.png new file mode 100644 index 0000000..9ec148b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/40.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/41.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/41.png new file mode 100644 index 0000000..4f78dae Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/doctorsay/video/videoright/41.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/fanpink.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/fanpink.png new file mode 100644 index 0000000..edfeab9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/fanpink.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/00.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/00.png new file mode 100644 index 0000000..026d142 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/00.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/01.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/01.png new file mode 100644 index 0000000..1b51b98 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/01.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/10.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/10.png new file mode 100644 index 0000000..4bd0ee6 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/10.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/11.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/11.png new file mode 100644 index 0000000..fd8df36 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/11.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/20.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/20.png new file mode 100644 index 0000000..0bf7708 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/20.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/21.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/21.png new file mode 100644 index 0000000..a3e4c73 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/21.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/30.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/30.png new file mode 100644 index 0000000..e6871a2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/30.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/31.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/31.png new file mode 100644 index 0000000..f86a9f0 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/31.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/40.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/40.png new file mode 100644 index 0000000..ef34996 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/40.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/41.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/41.png new file mode 100644 index 0000000..86afeb9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/41.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/50.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/50.png new file mode 100644 index 0000000..f08b734 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/50.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/51.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/51.png new file mode 100644 index 0000000..f08b734 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/51.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/99.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/99.png new file mode 100644 index 0000000..97387e6 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/firstTags/99.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/getbig.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/getbig.png new file mode 100644 index 0000000..66d4ffc Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/getbig.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/getbigtarget.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/getbigtarget.png new file mode 100644 index 0000000..c7e8439 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/getbigtarget.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/getsmall.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/getsmall.png new file mode 100644 index 0000000..1bc911f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/getsmall.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/getsmalltarget.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/getsmalltarget.png new file mode 100644 index 0000000..9395483 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/getsmalltarget.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/guan.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/guan.png new file mode 100644 index 0000000..1090b41 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/guan.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/laba.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/laba.png new file mode 100644 index 0000000..6b1bc02 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/laba.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/maike.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/maike.png new file mode 100644 index 0000000..551d5d3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/maike.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/one.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/one.png new file mode 100644 index 0000000..66422f6 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/one.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/people.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/people.png new file mode 100644 index 0000000..9620688 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/people.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/three.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/three.png new file mode 100644 index 0000000..1afb8ba Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/three.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/two.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/two.png new file mode 100644 index 0000000..410e8f5 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/two.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/video.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/video.png new file mode 100644 index 0000000..982f7dc Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/video.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/xian.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/xian.png new file mode 100644 index 0000000..ed7e52c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/xian.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/zero.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/zero.png new file mode 100644 index 0000000..ce7be2f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/helpdo/zero.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/hulilei.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/hulilei.png new file mode 100644 index 0000000..f4e3258 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/hulilei.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/hulilist/genzong.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/hulilist/genzong.png new file mode 100644 index 0000000..d2b0383 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/hulilist/genzong.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/hulilist/shang.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/hulilist/shang.png new file mode 100644 index 0000000..55ee8b1 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/hulilist/shang.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/hulilist/xia.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/hulilist/xia.png new file mode 100644 index 0000000..83f08d3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/hulilist/xia.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/hulilist/xiezhu.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/hulilist/xiezhu.png new file mode 100644 index 0000000..5982a87 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/hulilist/xiezhu.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/hulilist/zhongdian.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/hulilist/zhongdian.png new file mode 100644 index 0000000..e28b037 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/hulilist/zhongdian.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/hulilist/zhuandan.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/hulilist/zhuandan.png new file mode 100644 index 0000000..0fc7c19 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/hulilist/zhuandan.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/indexvideo.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/indexvideo.png new file mode 100644 index 0000000..b9eadf9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/indexvideo.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/ji.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/ji.png new file mode 100644 index 0000000..be4056b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/ji.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/jidark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/jidark.png new file mode 100644 index 0000000..89e9e15 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/jidark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/back.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/back.png new file mode 100644 index 0000000..355504e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/back.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/bgc.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/bgc.png new file mode 100644 index 0000000..7a94702 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/bgc.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/blue.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/blue.png new file mode 100644 index 0000000..7c82631 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/blue.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/delete.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/delete.png new file mode 100644 index 0000000..c8e3ce8 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/delete.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/deletebutton.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/deletebutton.png new file mode 100644 index 0000000..d4922ae Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/deletebutton.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/deletebuttonblue.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/deletebuttonblue.png new file mode 100644 index 0000000..f3c61ea Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/deletebuttonblue.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/down1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/down1.png new file mode 100644 index 0000000..5bc53f3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/down1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key1-1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key1-1.png new file mode 100644 index 0000000..a0158c2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key1-1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key1.png new file mode 100644 index 0000000..481dfa8 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key2-2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key2-2.png new file mode 100644 index 0000000..78e2783 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key2-2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key2.png new file mode 100644 index 0000000..d4854da Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key3-1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key3-1.png new file mode 100644 index 0000000..dc6962b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key3-1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key3.png new file mode 100644 index 0000000..23b1f0b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key4-1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key4-1.png new file mode 100644 index 0000000..635e3d3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key4-1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key4.png new file mode 100644 index 0000000..f25dec8 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key5-1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key5-1.png new file mode 100644 index 0000000..d835e56 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key5-1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key5.png new file mode 100644 index 0000000..62e7c7b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/key5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/lunpan.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/lunpan.png new file mode 100644 index 0000000..8c88d5b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/lunpan.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/move.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/move.png new file mode 100644 index 0000000..f7a7289 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/move.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/movebutton.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/movebutton.png new file mode 100644 index 0000000..94431b7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/movebutton.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/movebuttonblue.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/movebuttonblue.png new file mode 100644 index 0000000..e3ffcb7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/movebuttonblue.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/notebutton.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/notebutton.png new file mode 100644 index 0000000..fae479e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/notebutton.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/notebuttonblue.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/notebuttonblue.png new file mode 100644 index 0000000..ffa5f34 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/notebuttonblue.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/okbutton.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/okbutton.png new file mode 100644 index 0000000..d257b68 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/okbutton.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/open.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/open.png new file mode 100644 index 0000000..aa0db7a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/open.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/openblue.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/openblue.png new file mode 100644 index 0000000..a3f0000 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/openblue.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/opentarget.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/opentarget.png new file mode 100644 index 0000000..82417cd Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/opentarget.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/up1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/up1.png new file mode 100644 index 0000000..c9906b0 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/up1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/where1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/where1.png new file mode 100644 index 0000000..13cc1f0 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/where1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/where10.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/where10.png new file mode 100644 index 0000000..5053675 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/where10.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/where2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/where2.png new file mode 100644 index 0000000..567fef2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/where2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/white.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/white.png new file mode 100644 index 0000000..a75cb8b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/white.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/yaogan.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/yaogan.png new file mode 100644 index 0000000..fbbec72 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/keyimg/yaogan.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/ku.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/ku.png new file mode 100644 index 0000000..37bf2d4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/ku.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/laba.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/laba.png new file mode 100644 index 0000000..e75fc69 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/laba.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/label.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/label.png new file mode 100644 index 0000000..bc3b3c3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/label.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leftbluejiao.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leftbluejiao.png new file mode 100644 index 0000000..f12364a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leftbluejiao.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticon.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticon.png new file mode 100644 index 0000000..10c6ad9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticon.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticon/back.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticon/back.png new file mode 100644 index 0000000..3971b62 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticon/back.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticon/doctor.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticon/doctor.png new file mode 100644 index 0000000..9e8d17e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticon/doctor.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticon/give.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticon/give.png new file mode 100644 index 0000000..4c65bba Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticon/give.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticon/index.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticon/index.png new file mode 100644 index 0000000..237eb8d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticon/index.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticon/nurse.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticon/nurse.png new file mode 100644 index 0000000..e1094b7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticon/nurse.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticon/wifi.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticon/wifi.png new file mode 100644 index 0000000..fe2dbb5 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticon/wifi.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticontarget/blueback.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticontarget/blueback.png new file mode 100644 index 0000000..1f16af7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticontarget/blueback.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticontarget/bluedoctor.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticontarget/bluedoctor.png new file mode 100644 index 0000000..77c6951 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticontarget/bluedoctor.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticontarget/blueindex.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticontarget/blueindex.png new file mode 100644 index 0000000..48d36ed Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticontarget/blueindex.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticontarget/bluenurse.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticontarget/bluenurse.png new file mode 100644 index 0000000..7e4ea6c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticontarget/bluenurse.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticontarget/bluewifi.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticontarget/bluewifi.png new file mode 100644 index 0000000..1590e63 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticontarget/bluewifi.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticontarget/givedark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticontarget/givedark.png new file mode 100644 index 0000000..c99dbc9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lefticontarget/givedark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leftjiao.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leftjiao.png new file mode 100644 index 0000000..426631c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leftjiao.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/00.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/00.png new file mode 100644 index 0000000..d335979 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/00.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/01.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/01.png new file mode 100644 index 0000000..b68b291 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/01.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/10.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/10.png new file mode 100644 index 0000000..2a702aa Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/10.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/11.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/11.png new file mode 100644 index 0000000..6fbb0ec Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/11.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/20.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/20.png new file mode 100644 index 0000000..5ac99d0 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/20.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/21.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/21.png new file mode 100644 index 0000000..5464313 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/21.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/30.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/30.png new file mode 100644 index 0000000..a4687af Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/30.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/31.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/31.png new file mode 100644 index 0000000..11e28f7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/31.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/QR.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/QR.png new file mode 100644 index 0000000..54829f4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/QR.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/add.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/add.png new file mode 100644 index 0000000..a442db4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/add.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/ball.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/ball.png new file mode 100644 index 0000000..11f00de Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/ball.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/bgc.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/bgc.png new file mode 100644 index 0000000..f623708 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/bgc.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/bian.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/bian.png new file mode 100644 index 0000000..c7d19dc Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/bian.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/biao.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/biao.png new file mode 100644 index 0000000..6e484a9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/biao.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/bigball.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/bigball.png new file mode 100644 index 0000000..1e8d0e4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/bigball.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/edit.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/edit.png new file mode 100644 index 0000000..66109a7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/edit.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/fourjiao.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/fourjiao.png new file mode 100644 index 0000000..8c2010e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/fourjiao.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/leftbgc.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/leftbgc.png new file mode 100644 index 0000000..a340f69 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/leftbgc.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/leidabgc.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/leidabgc.png new file mode 100644 index 0000000..a580df1 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/leidabgc.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/play.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/play.png new file mode 100644 index 0000000..4100bb9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/play.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/rename.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/rename.png new file mode 100644 index 0000000..562b4c0 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/rename.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/shallow.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/shallow.png new file mode 100644 index 0000000..2d6cdd7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/shallow.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/shan.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/shan.png new file mode 100644 index 0000000..f8dd87e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/shan.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/video.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/video.png new file mode 100644 index 0000000..6d5c56d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/leida/video.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lightbgcnew.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lightbgcnew.png new file mode 100644 index 0000000..3cd136c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/lightbgcnew.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/dian.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/dian.png new file mode 100644 index 0000000..762456d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/dian.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/doctordark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/doctordark.png new file mode 100644 index 0000000..c41d6e4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/doctordark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/doctorlight.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/doctorlight.png new file mode 100644 index 0000000..492f5d9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/doctorlight.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/doctorsay.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/doctorsay.png new file mode 100644 index 0000000..2a1aec0 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/doctorsay.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/doctorsaydark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/doctorsaydark.png new file mode 100644 index 0000000..c012c30 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/doctorsaydark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/doctorsaystartdark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/doctorsaystartdark.png new file mode 100644 index 0000000..3d6392d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/doctorsaystartdark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/doctorwdark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/doctorwdark.png new file mode 100644 index 0000000..45c2383 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/doctorwdark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/domany.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/domany.png new file mode 100644 index 0000000..6f2c375 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/domany.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/domanydark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/domanydark.png new file mode 100644 index 0000000..8a3e06a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/domanydark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/dopeopledark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/dopeopledark.png new file mode 100644 index 0000000..1d54e69 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/dopeopledark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/dotypedark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/dotypedark.png new file mode 100644 index 0000000..88b060e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/dotypedark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/howtodo.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/howtodo.png new file mode 100644 index 0000000..0ff29a3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/howtodo.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/howtododark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/howtododark.png new file mode 100644 index 0000000..f9d64a6 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/howtododark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/linshidoctorsaydark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/linshidoctorsaydark.png new file mode 100644 index 0000000..dec5490 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/linshidoctorsaydark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/nursedark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/nursedark.png new file mode 100644 index 0000000..b0085f8 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/nursedark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/peiyao.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/peiyao.png new file mode 100644 index 0000000..21c97a6 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/peiyao.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/qingling.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/qingling.png new file mode 100644 index 0000000..a8cb99f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/qingling.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/useMed.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/useMed.png new file mode 100644 index 0000000..5aa1bd0 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/useMed.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/whitedian.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/whitedian.png new file mode 100644 index 0000000..19ef043 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/whitedian.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/xinxi.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/xinxi.png new file mode 100644 index 0000000..1fde7fe Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/xinxi.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/yaopin.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/yaopin.png new file mode 100644 index 0000000..2d7099b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/yaopin.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/yongyao.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/yongyao.png new file mode 100644 index 0000000..e7cc3f8 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/medium/yongyao.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/mountain.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/mountain.png new file mode 100644 index 0000000..7daf90d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/mountain.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/arrow11.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/arrow11.png new file mode 100644 index 0000000..d9153a7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/arrow11.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/bdownicon.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/bdownicon.png new file mode 100644 index 0000000..7a647eb Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/bdownicon.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/bj.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/bj.png new file mode 100644 index 0000000..c272373 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/bj.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/blefticon.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/blefticon.png new file mode 100644 index 0000000..6d4ea65 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/blefticon.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/bluedownicon.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/bluedownicon.png new file mode 100644 index 0000000..945e171 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/bluedownicon.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/bluelefticon.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/bluelefticon.png new file mode 100644 index 0000000..f9a8965 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/bluelefticon.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/bluerighticon.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/bluerighticon.png new file mode 100644 index 0000000..379cf62 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/bluerighticon.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/blueupicon.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/blueupicon.png new file mode 100644 index 0000000..2c05f8e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/blueupicon.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/brighticon.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/brighticon.png new file mode 100644 index 0000000..17ce2da Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/brighticon.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/bupicon.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/bupicon.png new file mode 100644 index 0000000..6b06c96 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/bupicon.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/downicon.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/downicon.png new file mode 100644 index 0000000..b3ae8d6 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/downicon.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/lefticon.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/lefticon.png new file mode 100644 index 0000000..338e8ff Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/lefticon.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/righticon.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/righticon.png new file mode 100644 index 0000000..e5a7b7e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/righticon.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/upicon.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/upicon.png new file mode 100644 index 0000000..d688df0 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/movemode/upicon.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_1.png new file mode 100644 index 0000000..15e0f5a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_10.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_10.png new file mode 100644 index 0000000..c18281b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_10.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_11.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_11.png new file mode 100644 index 0000000..f4343c7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_11.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_12.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_12.png new file mode 100644 index 0000000..e943575 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_12.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_2.png new file mode 100644 index 0000000..2a74a5b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_3.png new file mode 100644 index 0000000..d613e66 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_4.png new file mode 100644 index 0000000..be2212e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_5.png new file mode 100644 index 0000000..65ff7f1 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_6.png new file mode 100644 index 0000000..ee3b173 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_7.png new file mode 100644 index 0000000..74ae4ec Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_8.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_8.png new file mode 100644 index 0000000..b17967e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_8.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_9.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_9.png new file mode 100644 index 0000000..0052ce4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/baojie/clean_9.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_1.png new file mode 100644 index 0000000..2f7bec8 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_10.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_10.png new file mode 100644 index 0000000..44a37ae Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_10.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_11.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_11.png new file mode 100644 index 0000000..4586459 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_11.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_2.png new file mode 100644 index 0000000..6275d5c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_3.png new file mode 100644 index 0000000..4d0609b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_4.png new file mode 100644 index 0000000..176c9f8 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_5.png new file mode 100644 index 0000000..b1d3f96 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_6.png new file mode 100644 index 0000000..b0c6b03 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_7.png new file mode 100644 index 0000000..1d74992 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_8.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_8.png new file mode 100644 index 0000000..7f9d896 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_8.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_9.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_9.png new file mode 100644 index 0000000..662e2af Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/breathe_9.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_1.png new file mode 100644 index 0000000..ba84f31 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_2.png new file mode 100644 index 0000000..c0c3dea Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_3.png new file mode 100644 index 0000000..f90414a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_4.png new file mode 100644 index 0000000..392eaac Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_5.png new file mode 100644 index 0000000..e513890 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_6.png new file mode 100644 index 0000000..8c243ea Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_7.png new file mode 100644 index 0000000..21dd871 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_8.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_8.png new file mode 100644 index 0000000..7cdbf08 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_8.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_9.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_9.png new file mode 100644 index 0000000..31f777b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/curve_9.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/device_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/device_1.png new file mode 100644 index 0000000..1421991 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/device_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/device_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/device_2.png new file mode 100644 index 0000000..08696e0 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/device_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/device_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/device_3.png new file mode 100644 index 0000000..56dd294 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/device_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/device_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/device_4.png new file mode 100644 index 0000000..a3bd301 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/device_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/device_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/device_5.png new file mode 100644 index 0000000..f542a40 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/device_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/device_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/device_6.png new file mode 100644 index 0000000..b32c517 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/device_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/device_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/device_7.png new file mode 100644 index 0000000..106b7f6 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/device_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/doctor_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/doctor_1.png new file mode 100644 index 0000000..efefb99 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/doctor_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/doctor_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/doctor_2.png new file mode 100644 index 0000000..60df464 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/doctor_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/doctor_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/doctor_3.png new file mode 100644 index 0000000..4a45339 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/doctor_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/doctor_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/doctor_4.png new file mode 100644 index 0000000..4e8e756 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/doctor_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/doctor_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/doctor_5.png new file mode 100644 index 0000000..64526ec Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/doctor_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/doctor_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/doctor_6.png new file mode 100644 index 0000000..6ac9cc3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/doctor_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/home_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/home_1.png new file mode 100644 index 0000000..85affba Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/home_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/home_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/home_2.png new file mode 100644 index 0000000..b69066b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/home_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/home_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/home_3.png new file mode 100644 index 0000000..bb52303 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/home_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/home_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/home_4.png new file mode 100644 index 0000000..8a0d206 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/home_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/home_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/home_5.png new file mode 100644 index 0000000..9d6bf9f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/home_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_1.png new file mode 100644 index 0000000..dee3551 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_10.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_10.png new file mode 100644 index 0000000..b813563 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_10.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_11.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_11.png new file mode 100644 index 0000000..656488f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_11.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_12.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_12.png new file mode 100644 index 0000000..7431155 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_12.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_2.png new file mode 100644 index 0000000..db9ffdf Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_3.png new file mode 100644 index 0000000..2d7e542 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_4.png new file mode 100644 index 0000000..0fc5191 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_5.png new file mode 100644 index 0000000..d6f8c17 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_6.png new file mode 100644 index 0000000..7f5cc97 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_7.png new file mode 100644 index 0000000..a463ceb Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_8.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_8.png new file mode 100644 index 0000000..d2bfce3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_8.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_9.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_9.png new file mode 100644 index 0000000..d5fb74a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/lead_9.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/nurse_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/nurse_1.png new file mode 100644 index 0000000..b18f4a7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/nurse_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/nurse_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/nurse_2.png new file mode 100644 index 0000000..c212b42 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/nurse_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/nurse_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/nurse_3.png new file mode 100644 index 0000000..1559da0 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/nurse_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/nurse_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/nurse_4.png new file mode 100644 index 0000000..1b7cecd Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/nurse_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/nurse_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/nurse_5.png new file mode 100644 index 0000000..fdb7006 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/nurse_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/nurse_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/nurse_6.png new file mode 100644 index 0000000..caf4156 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/nurse_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/nurse_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/nurse_7.png new file mode 100644 index 0000000..a0b85c2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/nurse_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/nurse_8.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/nurse_8.png new file mode 100644 index 0000000..bfb61df Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/nurse_8.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/return_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/return_1.png new file mode 100644 index 0000000..7bdad65 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/return_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/return_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/return_2.png new file mode 100644 index 0000000..9cbc515 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/return_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/return_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/return_3.png new file mode 100644 index 0000000..e6a291b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/return_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/return_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/return_4.png new file mode 100644 index 0000000..3d600b6 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/return_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/return_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/return_5.png new file mode 100644 index 0000000..9b6efc6 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/return_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/return_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/return_6.png new file mode 100644 index 0000000..ce0a151 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/return_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/return_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/return_7.png new file mode 100644 index 0000000..42d5db5 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/return_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/return_8.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/return_8.png new file mode 100644 index 0000000..cf5aaa8 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/return_8.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/shezhi.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/shezhi.png new file mode 100644 index 0000000..0b4a34a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/curve/shezhi.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care0.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care0.png new file mode 100644 index 0000000..1b2c343 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care0.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care1.png new file mode 100644 index 0000000..5db409e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care2.png new file mode 100644 index 0000000..c1bd369 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care3.png new file mode 100644 index 0000000..58659b0 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care4.png new file mode 100644 index 0000000..a03c75a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care5.png new file mode 100644 index 0000000..8066d0c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care6.png new file mode 100644 index 0000000..94698b7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care7.png new file mode 100644 index 0000000..a10c7d6 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care8.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care8.png new file mode 100644 index 0000000..99266e4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/huli/care8.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kangfu/recovery_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kangfu/recovery_1.png new file mode 100644 index 0000000..5d0ae62 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kangfu/recovery_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kangfu/recovery_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kangfu/recovery_2.png new file mode 100644 index 0000000..064ae92 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kangfu/recovery_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kangfu/recovery_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kangfu/recovery_3.png new file mode 100644 index 0000000..9d75dad Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kangfu/recovery_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kangfu/recovery_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kangfu/recovery_4.png new file mode 100644 index 0000000..0619121 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kangfu/recovery_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kangfu/recovery_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kangfu/recovery_5.png new file mode 100644 index 0000000..e0070b0 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kangfu/recovery_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kangfu/recovery_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kangfu/recovery_6.png new file mode 100644 index 0000000..70cc7fb Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kangfu/recovery_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_1.png new file mode 100644 index 0000000..e760cad Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_10.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_10.png new file mode 100644 index 0000000..1537069 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_10.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_11.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_11.png new file mode 100644 index 0000000..fa8b48a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_11.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_2.png new file mode 100644 index 0000000..5ecbe02 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_3.png new file mode 100644 index 0000000..9c8688a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_4.png new file mode 100644 index 0000000..0c67c2b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_5.png new file mode 100644 index 0000000..70da205 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_6.png new file mode 100644 index 0000000..6cc67d9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_7.png new file mode 100644 index 0000000..f024ded Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_8.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_8.png new file mode 100644 index 0000000..fbe87c6 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_8.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_9.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_9.png new file mode 100644 index 0000000..67944c1 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/kufang/storeroom_9.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/leftmenu/0.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/leftmenu/0.png new file mode 100644 index 0000000..bbcfd43 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/leftmenu/0.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/leftmenu/1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/leftmenu/1.png new file mode 100644 index 0000000..6c18236 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/leftmenu/1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/leftmenu/2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/leftmenu/2.png new file mode 100644 index 0000000..1856351 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/leftmenu/2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/rightmenu/0.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/rightmenu/0.png new file mode 100644 index 0000000..ecf9a00 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/rightmenu/0.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/rightmenu/1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/rightmenu/1.png new file mode 100644 index 0000000..b40db1f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/rightmenu/1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/rightmenu/2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/rightmenu/2.png new file mode 100644 index 0000000..297e744 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/rightmenu/2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/rightmenu/bottom.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/rightmenu/bottom.png new file mode 100644 index 0000000..c202229 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/rightmenu/bottom.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/rightmenu/top.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/rightmenu/top.png new file mode 100644 index 0000000..29c02ea Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/rightmenu/top.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/states/0.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/states/0.png new file mode 100644 index 0000000..1f1d1c1 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/states/0.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/states/1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/states/1.png new file mode 100644 index 0000000..444c5a9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/states/1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/states/2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/states/2.png new file mode 100644 index 0000000..3f2813b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/states/2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/states/3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/states/3.png new file mode 100644 index 0000000..67c04e5 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/states/3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/states/left.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/states/left.png new file mode 100644 index 0000000..dd26770 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/states/left.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/states/pao.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/states/pao.png new file mode 100644 index 0000000..2087d77 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/states/pao.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/states/right.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/states/right.png new file mode 100644 index 0000000..9509712 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/states/right.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/wendu/0.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/wendu/0.png new file mode 100644 index 0000000..dd754ff Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/wendu/0.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/wendu/1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/wendu/1.png new file mode 100644 index 0000000..ee2e6d2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/wendu/1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/wendu/2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/wendu/2.png new file mode 100644 index 0000000..cd2625c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/wendu/2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/wendu/bgc.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/wendu/bgc.png new file mode 100644 index 0000000..a19a319 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/wendu/bgc.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_1.png new file mode 100644 index 0000000..b073e16 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_10.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_10.png new file mode 100644 index 0000000..a4f30b7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_10.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_11.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_11.png new file mode 100644 index 0000000..e7d7d67 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_11.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_12.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_12.png new file mode 100644 index 0000000..a370d16 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_12.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_13.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_13.png new file mode 100644 index 0000000..7e6b250 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_13.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_14.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_14.png new file mode 100644 index 0000000..a46d1f7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_14.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_2.png new file mode 100644 index 0000000..a5ef1d6 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_3.png new file mode 100644 index 0000000..facc426 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_4.png new file mode 100644 index 0000000..5a68bc8 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_5.png new file mode 100644 index 0000000..b459f09 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_6.png new file mode 100644 index 0000000..da90e21 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_7.png new file mode 100644 index 0000000..692c142 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_8.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_8.png new file mode 100644 index 0000000..837de5a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_8.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_9.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_9.png new file mode 100644 index 0000000..ef40075 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/xiaoxi/wash_9.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_1.png new file mode 100644 index 0000000..4eed529 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_10.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_10.png new file mode 100644 index 0000000..1a005c2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_10.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_2.png new file mode 100644 index 0000000..206ac1b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_3.png new file mode 100644 index 0000000..7c124ad Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_4.png new file mode 100644 index 0000000..7d603bb Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_5.png new file mode 100644 index 0000000..a099b96 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_6.png new file mode 100644 index 0000000..b048e8e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_7.png new file mode 100644 index 0000000..a425e68 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_8.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_8.png new file mode 100644 index 0000000..f7eaa63 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_8.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_9.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_9.png new file mode 100644 index 0000000..1c9db5c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newindex/yiliao/health_9.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newpink.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newpink.png new file mode 100644 index 0000000..331fb1c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newpink.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/0.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/0.png new file mode 100644 index 0000000..e734496 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/0.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/1.png new file mode 100644 index 0000000..1ea43ea Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/arrow_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/arrow_1.png new file mode 100644 index 0000000..e99457f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/arrow_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/arrow_1_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/arrow_1_1.png new file mode 100644 index 0000000..2672a36 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/arrow_1_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/arrow_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/arrow_2.png new file mode 100644 index 0000000..473a813 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/arrow_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/arrow_2_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/arrow_2_2.png new file mode 100644 index 0000000..d0b7f79 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/arrow_2_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/arrow_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/arrow_3.png new file mode 100644 index 0000000..963ce9d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/arrow_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/arrow_3_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/arrow_3_3.png new file mode 100644 index 0000000..338ad9e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/arrow_3_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/arrow_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/arrow_4.png new file mode 100644 index 0000000..f0e01a3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/arrow_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/arrow_4_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/arrow_4_4.png new file mode 100644 index 0000000..d694eed Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/arrow_4_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/clean_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/clean_1.png new file mode 100644 index 0000000..e870b55 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/clean_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/clean_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/clean_2.png new file mode 100644 index 0000000..89fc69e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/clean_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/clean_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/clean_3.png new file mode 100644 index 0000000..a97ef17 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/clean_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/clean_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/clean_4.png new file mode 100644 index 0000000..74ddbe4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/clean_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/clean_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/clean_5.png new file mode 100644 index 0000000..4f6ba04 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/clean_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/clean_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/clean_6.png new file mode 100644 index 0000000..c1980d1 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/clean_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/clean_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/clean_7.png new file mode 100644 index 0000000..424ab6d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/clean_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/clean_8.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/clean_8.png new file mode 100644 index 0000000..8cfc049 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/clean_8.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/daily_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/daily_1.png new file mode 100644 index 0000000..23b9a3d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/daily_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/daily_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/daily_2.png new file mode 100644 index 0000000..52fe05f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/daily_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/daily_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/daily_3.png new file mode 100644 index 0000000..7fdf23e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/daily_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/daily_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/daily_4.png new file mode 100644 index 0000000..bf020c8 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/daily_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/daily_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/daily_5.png new file mode 100644 index 0000000..fa5736a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/daily_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/daily_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/daily_6.png new file mode 100644 index 0000000..742af84 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/daily_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/defecate_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/defecate_1.png new file mode 100644 index 0000000..906324b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/defecate_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/defecate_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/defecate_2.png new file mode 100644 index 0000000..414df86 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/defecate_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/defecate_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/defecate_3.png new file mode 100644 index 0000000..1f5ba37 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/defecate_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/defecate_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/defecate_4.png new file mode 100644 index 0000000..f41306a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/defecate_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/defecate_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/defecate_5.png new file mode 100644 index 0000000..b2142fc Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/defecate_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/diet_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/diet_1.png new file mode 100644 index 0000000..da2a98f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/diet_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/diet_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/diet_2.png new file mode 100644 index 0000000..b8b9908 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/diet_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/diet_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/diet_3.png new file mode 100644 index 0000000..445d4ea Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/diet_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/diet_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/diet_4.png new file mode 100644 index 0000000..6354c67 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/diet_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/diet_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/diet_5.png new file mode 100644 index 0000000..ef97723 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/diet_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/diet_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/diet_6.png new file mode 100644 index 0000000..5a27174 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/diet_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/diet_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/diet_7.png new file mode 100644 index 0000000..ce4c7b6 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/diet_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/direction_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/direction_1.png new file mode 100644 index 0000000..c8523ce Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/direction_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/direction_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/direction_2.png new file mode 100644 index 0000000..40c0a99 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/direction_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/direction_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/direction_3.png new file mode 100644 index 0000000..09a5220 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/direction_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/direction_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/direction_4.png new file mode 100644 index 0000000..89b3d65 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/direction_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/direction_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/direction_5.png new file mode 100644 index 0000000..5056091 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/direction_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/direction_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/direction_6.png new file mode 100644 index 0000000..871ee69 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/direction_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/direction_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/direction_7.png new file mode 100644 index 0000000..3ac6de9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/direction_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/fangxiang.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/fangxiang.png new file mode 100644 index 0000000..ef3af80 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/fangxiang.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/fangxiangtarget.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/fangxiangtarget.png new file mode 100644 index 0000000..c62ddd5 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/fangxiangtarget.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/fenxiang.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/fenxiang.png new file mode 100644 index 0000000..48a4031 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/fenxiang.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/guang1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/guang1.png new file mode 100644 index 0000000..c489027 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/guang1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/guang2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/guang2.png new file mode 100644 index 0000000..0beb40b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/guang2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/guang3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/guang3.png new file mode 100644 index 0000000..105e28e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/guang3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/guang4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/guang4.png new file mode 100644 index 0000000..287416c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/guang4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/guang5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/guang5.png new file mode 100644 index 0000000..12a36dd Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/guang5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/guang6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/guang6.png new file mode 100644 index 0000000..a3ab3cf Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/guang6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/guang7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/guang7.png new file mode 100644 index 0000000..c17069e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/guang7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/jiao.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/jiao.png new file mode 100644 index 0000000..8c490fe Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/jiao.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/m1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/m1.png new file mode 100644 index 0000000..d6fbe36 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/m1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/m2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/m2.png new file mode 100644 index 0000000..b1e314e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/m2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/m3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/m3.png new file mode 100644 index 0000000..821050c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/m3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/m4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/m4.png new file mode 100644 index 0000000..8c6c371 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/m4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/monitor_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/monitor_1.png new file mode 100644 index 0000000..516b695 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/monitor_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/monitor_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/monitor_2.png new file mode 100644 index 0000000..5748b69 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/monitor_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/monitor_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/monitor_3.png new file mode 100644 index 0000000..c2d02db Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/monitor_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/monitor_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/monitor_4.png new file mode 100644 index 0000000..13c3023 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/monitor_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_1.png new file mode 100644 index 0000000..f5b6d99 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_10.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_10.png new file mode 100644 index 0000000..ed38aa6 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_10.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_11.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_11.png new file mode 100644 index 0000000..44d8b61 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_11.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_12.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_12.png new file mode 100644 index 0000000..f7e64c9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_12.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_2.png new file mode 100644 index 0000000..a02670f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_3.png new file mode 100644 index 0000000..da3790f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_4.png new file mode 100644 index 0000000..5a404cf Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_5.png new file mode 100644 index 0000000..2439210 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_6.png new file mode 100644 index 0000000..3b2b0e1 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_7.png new file mode 100644 index 0000000..ff77ee3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_8.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_8.png new file mode 100644 index 0000000..cbe1275 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_8.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_9.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_9.png new file mode 100644 index 0000000..c0c43c8 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/physique_9.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sleep_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sleep_1.png new file mode 100644 index 0000000..1852831 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sleep_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sleep_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sleep_2.png new file mode 100644 index 0000000..be1cbd3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sleep_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sleep_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sleep_3.png new file mode 100644 index 0000000..3794c3c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sleep_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sleep_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sleep_4.png new file mode 100644 index 0000000..d04d4ba Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sleep_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sleep_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sleep_5.png new file mode 100644 index 0000000..34aae74 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sleep_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sleep_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sleep_6.png new file mode 100644 index 0000000..dcfd811 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sleep_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/suere.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/suere.png new file mode 100644 index 0000000..8f11d4d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/suere.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sure_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sure_1.png new file mode 100644 index 0000000..b1fa883 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sure_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sure_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sure_2.png new file mode 100644 index 0000000..0733a10 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sure_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sure_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sure_3.png new file mode 100644 index 0000000..697fed4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sure_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sure_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sure_4.png new file mode 100644 index 0000000..f37217f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/sure_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/yulan.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/yulan.png new file mode 100644 index 0000000..d7c788a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/newruler/yulan.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/niao.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/niao.png new file mode 100644 index 0000000..d741577 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/niao.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/oldman.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/oldman.png new file mode 100644 index 0000000..ef625db Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/oldman.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/ou.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/ou.png new file mode 100644 index 0000000..4add146 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/ou.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/00.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/00.png new file mode 100644 index 0000000..943b5b0 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/00.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/01.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/01.png new file mode 100644 index 0000000..934560e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/01.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/10.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/10.png new file mode 100644 index 0000000..a4bddfe Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/10.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/11.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/11.png new file mode 100644 index 0000000..a2cbf78 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/11.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/20.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/20.png new file mode 100644 index 0000000..1582c39 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/20.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/21.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/21.png new file mode 100644 index 0000000..bd3955b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/21.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/30.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/30.png new file mode 100644 index 0000000..697595e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/30.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/31.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/31.png new file mode 100644 index 0000000..9ad4625 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/31.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/40.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/40.png new file mode 100644 index 0000000..3ae9683 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/40.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/41.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/41.png new file mode 100644 index 0000000..4c9680c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/picture/41.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/pink.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/pink.png new file mode 100644 index 0000000..2044619 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/pink.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/pouplezhejiao.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/pouplezhejiao.png new file mode 100644 index 0000000..3290307 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/pouplezhejiao.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/project.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/project.png new file mode 100644 index 0000000..05f68e5 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/project.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/project3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/project3.png new file mode 100644 index 0000000..6deec5e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/project3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/puoplebian.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/puoplebian.png new file mode 100644 index 0000000..417ac41 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/puoplebian.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/quxiao.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/quxiao.png new file mode 100644 index 0000000..ceb415a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/quxiao.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/ray.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/ray.png new file mode 100644 index 0000000..587fdbe Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/ray.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/redbian.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/redbian.png new file mode 100644 index 0000000..f847e7e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/redbian.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/fuwu.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/fuwu.png new file mode 100644 index 0000000..cd2fd0c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/fuwu.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/fuwublue.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/fuwublue.png new file mode 100644 index 0000000..72cea1d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/fuwublue.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/index.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/index.png new file mode 100644 index 0000000..ffd89dc Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/index.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/indexblue.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/indexblue.png new file mode 100644 index 0000000..d15e3a2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/indexblue.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/jigou.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/jigou.png new file mode 100644 index 0000000..ba910d6 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/jigou.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/jigoublue.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/jigoublue.png new file mode 100644 index 0000000..1f7e0d2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/jigoublue.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/redcha.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/redcha.png new file mode 100644 index 0000000..bb22450 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/redcha.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/shezhi.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/shezhi.png new file mode 100644 index 0000000..d7247b0 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/shezhi.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/shezhiblue.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/shezhiblue.png new file mode 100644 index 0000000..f7e1408 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/relindex/shezhiblue.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/ren.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/ren.png new file mode 100644 index 0000000..6ce4fa9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/ren.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/ri.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/ri.png new file mode 100644 index 0000000..02b3e32 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/ri.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/ridark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/ridark.png new file mode 100644 index 0000000..68a9c43 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/ridark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/rightbgi.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/rightbgi.png new file mode 100644 index 0000000..8ad288d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/rightbgi.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/dianqi.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/dianqi.png new file mode 100644 index 0000000..cbc8965 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/dianqi.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/dianqitar.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/dianqitar.png new file mode 100644 index 0000000..c2406cd Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/dianqitar.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/kongtiao.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/kongtiao.png new file mode 100644 index 0000000..87f167c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/kongtiao.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/kongtiaotar.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/kongtiaotar.png new file mode 100644 index 0000000..9be522d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/kongtiaotar.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/nuanfeng.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/nuanfeng.png new file mode 100644 index 0000000..506436a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/nuanfeng.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/nuanfengtar.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/nuanfengtar.png new file mode 100644 index 0000000..d1421b0 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/nuanfengtar.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/shidu.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/shidu.png new file mode 100644 index 0000000..1801d8b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/shidu.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/wendu.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/wendu.png new file mode 100644 index 0000000..6f59dc8 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/wendu.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/zhaoming.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/zhaoming.png new file mode 100644 index 0000000..1bfb8c3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/zhaoming.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/zhaomingtar.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/zhaomingtar.png new file mode 100644 index 0000000..f1c637a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/roomicons/zhaomingtar.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/saveDown.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/saveDown.png new file mode 100644 index 0000000..51b0fff Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/saveDown.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/saveNumber.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/saveNumber.png new file mode 100644 index 0000000..398bbdf Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/saveNumber.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/saveUp.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/saveUp.png new file mode 100644 index 0000000..c9be3cc Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/saveUp.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/0.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/0.png new file mode 100644 index 0000000..3e88d3b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/0.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/00.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/00.png new file mode 100644 index 0000000..d3f9efe Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/00.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/1.png new file mode 100644 index 0000000..9e95024 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/2.png new file mode 100644 index 0000000..431894d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/3.png new file mode 100644 index 0000000..4932107 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/4.png new file mode 100644 index 0000000..7789bb3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/5.png new file mode 100644 index 0000000..9401c2c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/6.png new file mode 100644 index 0000000..109b0a3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/7.png new file mode 100644 index 0000000..e0e67bb Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/back.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/back.png new file mode 100644 index 0000000..ca99654 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/settings/back.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/sharebgc.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/sharebgc.png new file mode 100644 index 0000000..ad76532 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/sharebgc.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/sharelogo.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/sharelogo.png new file mode 100644 index 0000000..3b17553 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/sharelogo.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/shexiang.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/shexiang.png new file mode 100644 index 0000000..ecc45b3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/shexiang.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/subtract.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/subtract.png new file mode 100644 index 0000000..fa7ceda Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/subtract.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/superNu.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/superNu.png new file mode 100644 index 0000000..1b2b7d3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/superNu.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/00.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/00.png new file mode 100644 index 0000000..778b633 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/00.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/01.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/01.png new file mode 100644 index 0000000..2fb81fa Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/01.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/10.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/10.png new file mode 100644 index 0000000..285e5e0 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/10.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/100.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/100.png new file mode 100644 index 0000000..02fd97a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/100.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/101.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/101.png new file mode 100644 index 0000000..29e9827 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/101.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/11.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/11.png new file mode 100644 index 0000000..65bde25 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/11.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/110.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/110.png new file mode 100644 index 0000000..d6b42f0 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/110.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/111.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/111.png new file mode 100644 index 0000000..af4472b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/111.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/120.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/120.png new file mode 100644 index 0000000..5206ee4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/120.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/121.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/121.png new file mode 100644 index 0000000..0dd8fb2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/121.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/20.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/20.png new file mode 100644 index 0000000..26c9a5b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/20.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/21.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/21.png new file mode 100644 index 0000000..83b2a58 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/21.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/30.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/30.png new file mode 100644 index 0000000..598d314 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/30.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/31.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/31.png new file mode 100644 index 0000000..a69b800 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/31.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/40.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/40.png new file mode 100644 index 0000000..51bb378 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/40.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/41.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/41.png new file mode 100644 index 0000000..a49f656 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/41.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/50.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/50.png new file mode 100644 index 0000000..1c686a5 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/50.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/51.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/51.png new file mode 100644 index 0000000..e4dd679 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/51.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/60.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/60.png new file mode 100644 index 0000000..b67b1fd Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/60.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/61.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/61.png new file mode 100644 index 0000000..3118b81 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/61.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/70.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/70.png new file mode 100644 index 0000000..8931339 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/70.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/71.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/71.png new file mode 100644 index 0000000..8b36d4d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/71.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/80.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/80.png new file mode 100644 index 0000000..399a3cf Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/80.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/81.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/81.png new file mode 100644 index 0000000..1198e58 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/81.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/90.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/90.png new file mode 100644 index 0000000..9012e01 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/90.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/91.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/91.png new file mode 100644 index 0000000..06b0e2b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tagNames/91.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/teeth.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/teeth.png new file mode 100644 index 0000000..eaa17f8 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/teeth.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/scan/00.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/scan/00.png new file mode 100644 index 0000000..bf5d5be Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/scan/00.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/scan/01.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/scan/01.png new file mode 100644 index 0000000..bb22276 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/scan/01.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/scan/10.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/scan/10.png new file mode 100644 index 0000000..db6c96c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/scan/10.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/scan/11.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/scan/11.png new file mode 100644 index 0000000..bb139a9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/scan/11.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/scan/20.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/scan/20.png new file mode 100644 index 0000000..1305935 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/scan/20.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/scan/21.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/scan/21.png new file mode 100644 index 0000000..7bb4377 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/scan/21.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/scan/all.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/scan/all.png new file mode 100644 index 0000000..89255cc Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/scan/all.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/title/0.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/title/0.png new file mode 100644 index 0000000..7b44702 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/title/0.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/title/1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/title/1.png new file mode 100644 index 0000000..dca3730 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/title/1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/title/2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/title/2.png new file mode 100644 index 0000000..63c559d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/topright/title/2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tu.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tu.png new file mode 100644 index 0000000..831b75c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/tu.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/alarm.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/alarm.png new file mode 100644 index 0000000..f58661b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/alarm.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/alarmdark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/alarmdark.png new file mode 100644 index 0000000..f005c7b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/alarmdark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/doublekuai.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/doublekuai.png new file mode 100644 index 0000000..206befb Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/doublekuai.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/face.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/face.png new file mode 100644 index 0000000..5aa67f6 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/face.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/facelight.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/facelight.png new file mode 100644 index 0000000..74be720 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/facelight.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/hand.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/hand.png new file mode 100644 index 0000000..b2171ab Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/hand.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/handlight.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/handlight.png new file mode 100644 index 0000000..0d5405d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/handlight.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/linshitime.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/linshitime.png new file mode 100644 index 0000000..a26b34f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/linshitime.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/linshitimedark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/linshitimedark.png new file mode 100644 index 0000000..f10b2a2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/linshitimedark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/man.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/man.png new file mode 100644 index 0000000..1c19726 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/man.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/out.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/out.png new file mode 100644 index 0000000..bbfc103 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/out.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/outlight.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/outlight.png new file mode 100644 index 0000000..b876206 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/outlight.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/upguang.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/upguang.png new file mode 100644 index 0000000..85c9c11 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/undericons/upguang.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/update/bgc.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/update/bgc.png new file mode 100644 index 0000000..8b69f6a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/update/bgc.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/update/fly.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/update/fly.png new file mode 100644 index 0000000..28819bd Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/update/fly.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/00.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/00.png new file mode 100644 index 0000000..6149e9f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/00.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/01.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/01.png new file mode 100644 index 0000000..2038e43 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/01.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/10.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/10.png new file mode 100644 index 0000000..373b28e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/10.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/11.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/11.png new file mode 100644 index 0000000..50c9723 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/11.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/20.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/20.png new file mode 100644 index 0000000..5c18bb4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/20.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/21.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/21.png new file mode 100644 index 0000000..5d59f36 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/21.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/30.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/30.png new file mode 100644 index 0000000..c145c07 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/30.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/31.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/31.png new file mode 100644 index 0000000..cd201c2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/31.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/40.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/40.png new file mode 100644 index 0000000..3e64d10 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/40.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/41.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/41.png new file mode 100644 index 0000000..78d504c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/kufang/41.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/laba.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/laba.png new file mode 100644 index 0000000..21dce34 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/laba.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/txt.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/txt.png new file mode 100644 index 0000000..c527b8c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/txt.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/video.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/video.png new file mode 100644 index 0000000..275ce47 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/video.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videobottom/0.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videobottom/0.png new file mode 100644 index 0000000..68041f9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videobottom/0.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videobottom/1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videobottom/1.png new file mode 100644 index 0000000..a50dee2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videobottom/1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/00.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/00.png new file mode 100644 index 0000000..8152bed Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/00.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/01.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/01.png new file mode 100644 index 0000000..c17dd82 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/01.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/10.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/10.png new file mode 100644 index 0000000..f21ccdc Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/10.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/11.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/11.png new file mode 100644 index 0000000..d28da60 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/11.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/20.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/20.png new file mode 100644 index 0000000..4870ca7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/20.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/21.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/21.png new file mode 100644 index 0000000..876f1b5 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/21.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/30.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/30.png new file mode 100644 index 0000000..c8e19c9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/30.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/31.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/31.png new file mode 100644 index 0000000..9c6142f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/31.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/40.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/40.png new file mode 100644 index 0000000..9ec148b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/40.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/41.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/41.png new file mode 100644 index 0000000..a8d2c78 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/41.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/guang.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/guang.png new file mode 100644 index 0000000..61cc794 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videoright/guang.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/0.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/0.png new file mode 100644 index 0000000..288d19e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/0.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/00.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/00.png new file mode 100644 index 0000000..adadf4f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/00.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/1.png new file mode 100644 index 0000000..7ac2eba Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/11.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/11.png new file mode 100644 index 0000000..e5d9728 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/11.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/2.png new file mode 100644 index 0000000..ccc731e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/22.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/22.png new file mode 100644 index 0000000..d233871 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/22.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/3.png new file mode 100644 index 0000000..89d6065 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/33.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/33.png new file mode 100644 index 0000000..362fb0c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/33.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/4.png new file mode 100644 index 0000000..d1f1c8b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/44.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/44.png new file mode 100644 index 0000000..f006dcc Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/44.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/5.png new file mode 100644 index 0000000..ebc90c1 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/55.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/55.png new file mode 100644 index 0000000..002b691 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/55.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/goto.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/goto.png new file mode 100644 index 0000000..69072be Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/goto.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/none.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/none.png new file mode 100644 index 0000000..9e72f74 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/none.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/stop.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/stop.png new file mode 100644 index 0000000..e7c943a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/video/videotopright/stop.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/arrow.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/arrow.png new file mode 100644 index 0000000..91b8c9a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/arrow.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcblue.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcblue.png new file mode 100644 index 0000000..d363fa2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcblue.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcblueblue.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcblueblue.png new file mode 100644 index 0000000..a37e10a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcblueblue.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcbluespec.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcbluespec.png new file mode 100644 index 0000000..44f3d5f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcbluespec.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcgreen.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcgreen.png new file mode 100644 index 0000000..e3e263a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcgreen.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcgreengreen.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcgreengreen.png new file mode 100644 index 0000000..f1b57f0 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcgreengreen.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcgreenspec.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcgreenspec.png new file mode 100644 index 0000000..33c7450 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcgreenspec.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcorange.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcorange.png new file mode 100644 index 0000000..9a4a2c2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcorange.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcpouple.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcpouple.png new file mode 100644 index 0000000..2267f3f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcpouple.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcyellow.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcyellow.png new file mode 100644 index 0000000..8f77fdf Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/bgcyellow.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/blueicon.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/blueicon.png new file mode 100644 index 0000000..39b308e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/blueicon.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/orangeicon.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/orangeicon.png new file mode 100644 index 0000000..0eeb806 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/orangeicon.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/selectblue.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/selectblue.png new file mode 100644 index 0000000..a33aa74 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/selectblue.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/selectwhite.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/selectwhite.png new file mode 100644 index 0000000..1565ddf Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/warehouseCard/selectwhite.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/00.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/00.png new file mode 100644 index 0000000..7832ab7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/00.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/01.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/01.png new file mode 100644 index 0000000..5b2a1bc Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/01.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/02.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/02.png new file mode 100644 index 0000000..df649e1 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/02.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/03.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/03.png new file mode 100644 index 0000000..1cb2f81 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/03.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/00.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/00.png new file mode 100644 index 0000000..65e053d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/00.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/01.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/01.png new file mode 100644 index 0000000..f142fc7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/01.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/10.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/10.png new file mode 100644 index 0000000..921eac0 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/10.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/100.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/100.png new file mode 100644 index 0000000..7f0e617 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/100.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/101.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/101.png new file mode 100644 index 0000000..0c9199a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/101.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/11.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/11.png new file mode 100644 index 0000000..e41b001 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/11.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/110.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/110.png new file mode 100644 index 0000000..e14a8ee Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/110.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/111.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/111.png new file mode 100644 index 0000000..efabdd8 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/111.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/20.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/20.png new file mode 100644 index 0000000..74cffd6 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/20.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/200.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/200.png new file mode 100644 index 0000000..6d907be Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/200.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/201.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/201.png new file mode 100644 index 0000000..93ebe29 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/201.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/21.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/21.png new file mode 100644 index 0000000..3b8a460 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/21.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/210.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/210.png new file mode 100644 index 0000000..8b4b31c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/210.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/211.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/211.png new file mode 100644 index 0000000..05f043f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/211.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/30.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/30.png new file mode 100644 index 0000000..87da7d9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/30.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/300.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/300.png new file mode 100644 index 0000000..fbf2d93 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/300.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/301.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/301.png new file mode 100644 index 0000000..0508bc5 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/301.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/31.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/31.png new file mode 100644 index 0000000..6a67b7c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/31.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/40.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/40.png new file mode 100644 index 0000000..9578a11 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/40.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/400.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/400.png new file mode 100644 index 0000000..9a61aeb Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/400.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/401.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/401.png new file mode 100644 index 0000000..17ccb93 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/401.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/41.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/41.png new file mode 100644 index 0000000..68f3fa3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/41.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/410.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/410.png new file mode 100644 index 0000000..8739093 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/410.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/411.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/411.png new file mode 100644 index 0000000..ccb0900 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/411.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/50.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/50.png new file mode 100644 index 0000000..6449b44 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/50.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/500.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/500.png new file mode 100644 index 0000000..1069eed Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/500.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/501.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/501.png new file mode 100644 index 0000000..c8adda6 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/501.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/51.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/51.png new file mode 100644 index 0000000..0baa69e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/51.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/510.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/510.png new file mode 100644 index 0000000..21f7115 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/510.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/511.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/511.png new file mode 100644 index 0000000..641c284 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/511.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/60.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/60.png new file mode 100644 index 0000000..d5de462 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/60.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/600.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/600.png new file mode 100644 index 0000000..780f51f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/600.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/601.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/601.png new file mode 100644 index 0000000..9dd5a7a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/601.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/61.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/61.png new file mode 100644 index 0000000..5529a67 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/61.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/610.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/610.png new file mode 100644 index 0000000..48d49c5 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/610.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/611.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/611.png new file mode 100644 index 0000000..d1812ad Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/611.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/620.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/620.png new file mode 100644 index 0000000..90aabc2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/620.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/621.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/621.png new file mode 100644 index 0000000..84a4e52 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/621.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/70.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/70.png new file mode 100644 index 0000000..3b297c0 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/70.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/700.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/700.png new file mode 100644 index 0000000..95aecb7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/700.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/701.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/701.png new file mode 100644 index 0000000..488c3ad Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/701.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/71.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/71.png new file mode 100644 index 0000000..af1b364 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/71.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/710.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/710.png new file mode 100644 index 0000000..3b1454e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/710.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/711.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/711.png new file mode 100644 index 0000000..2216a06 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/711.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/720.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/720.png new file mode 100644 index 0000000..b111f20 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/720.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/721.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/721.png new file mode 100644 index 0000000..cbb44a4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/721.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/730.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/730.png new file mode 100644 index 0000000..2548a8a Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/730.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/731.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/731.png new file mode 100644 index 0000000..e0e3970 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/731.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/740.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/740.png new file mode 100644 index 0000000..e6b2640 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/740.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/741.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/741.png new file mode 100644 index 0000000..d614cb5 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/741.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/80.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/80.png new file mode 100644 index 0000000..1d387cb Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/80.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/81.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/81.png new file mode 100644 index 0000000..9353d28 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/81.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/90.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/90.png new file mode 100644 index 0000000..39c79c4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/90.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/900.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/900.png new file mode 100644 index 0000000..dcdbb5b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/900.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/901.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/901.png new file mode 100644 index 0000000..0dcc0ec Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/901.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/91.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/91.png new file mode 100644 index 0000000..159f260 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/91.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/910.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/910.png new file mode 100644 index 0000000..0e193c6 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/910.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/911.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/911.png new file mode 100644 index 0000000..c7bd91c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/Wheel/911.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/all_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/all_1.png new file mode 100644 index 0000000..c66dc44 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/all_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/all_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/all_2.png new file mode 100644 index 0000000..2acad12 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/all_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/all_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/all_3.png new file mode 100644 index 0000000..1a35055 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/all_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/all_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/all_4.png new file mode 100644 index 0000000..574e31c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/all_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/all_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/all_5.png new file mode 100644 index 0000000..08650a2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/all_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/all_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/all_6.png new file mode 100644 index 0000000..3525df7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/all_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/all_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/all_7.png new file mode 100644 index 0000000..945a50c Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/all_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/all_8.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/all_8.png new file mode 100644 index 0000000..a0ff9c7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/all_8.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/arrow.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/arrow.png new file mode 100644 index 0000000..26e51f4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/arrow.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/bgc.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/bgc.png new file mode 100644 index 0000000..ab79c12 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/bgc.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/bluetarget.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/bluetarget.png new file mode 100644 index 0000000..35b77d2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/bluetarget.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/bluexing.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/bluexing.png new file mode 100644 index 0000000..3b85256 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/bluexing.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/camera.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/camera.png new file mode 100644 index 0000000..f36a09f Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/camera.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/delivery_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/delivery_1.png new file mode 100644 index 0000000..ee266df Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/delivery_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/delivery_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/delivery_2.png new file mode 100644 index 0000000..9950fd1 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/delivery_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/delivery_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/delivery_3.png new file mode 100644 index 0000000..384bf21 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/delivery_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/delivery_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/delivery_4.png new file mode 100644 index 0000000..db68947 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/delivery_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/delivery_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/delivery_5.png new file mode 100644 index 0000000..d69684d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/delivery_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/laotai.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/laotai.png new file mode 100644 index 0000000..5b03402 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/laotai.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/laotou.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/laotou.png new file mode 100644 index 0000000..fb95c3e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/laotou.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/more.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/more.png new file mode 100644 index 0000000..3f7fe14 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/more.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_1.png new file mode 100644 index 0000000..aa139ea Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_10.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_10.png new file mode 100644 index 0000000..23c66ed Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_10.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_2.png new file mode 100644 index 0000000..c158f05 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_3.png new file mode 100644 index 0000000..1433420 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_4.png new file mode 100644 index 0000000..fa287ef Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_5.png new file mode 100644 index 0000000..fcd5fe6 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_6.png new file mode 100644 index 0000000..1db127d Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_7.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_7.png new file mode 100644 index 0000000..57755eb Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_7.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_8.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_8.png new file mode 100644 index 0000000..dafe3c4 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_8.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_9.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_9.png new file mode 100644 index 0000000..ab233a1 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/nurs_9.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/panzi.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/panzi.png new file mode 100644 index 0000000..1e82d12 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/panzi.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/pao.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/pao.png new file mode 100644 index 0000000..8245f70 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/pao.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/people0.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/people0.png new file mode 100644 index 0000000..357feff Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/people0.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/people1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/people1.png new file mode 100644 index 0000000..05326ed Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/people1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/phone.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/phone.png new file mode 100644 index 0000000..9927404 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/phone.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/phoneball.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/phoneball.png new file mode 100644 index 0000000..0e0b222 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/phoneball.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/phonebgc.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/phonebgc.png new file mode 100644 index 0000000..b76df87 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/phonebgc.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/play.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/play.png new file mode 100644 index 0000000..d41c6e0 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/play.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/service_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/service_1.png new file mode 100644 index 0000000..cb1e2bd Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/service_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/service_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/service_2.png new file mode 100644 index 0000000..e29bc6e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/service_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/service_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/service_3.png new file mode 100644 index 0000000..a0182c9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/service_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/service_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/service_4.png new file mode 100644 index 0000000..f67274b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/service_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/service_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/service_5.png new file mode 100644 index 0000000..ed76de5 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/service_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/uni.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/uni.png new file mode 100644 index 0000000..37fde56 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/uni.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/warehouse_1.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/warehouse_1.png new file mode 100644 index 0000000..165e531 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/warehouse_1.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/warehouse_2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/warehouse_2.png new file mode 100644 index 0000000..67e1786 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/warehouse_2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/warehouse_3.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/warehouse_3.png new file mode 100644 index 0000000..c224544 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/warehouse_3.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/warehouse_4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/warehouse_4.png new file mode 100644 index 0000000..d7c5d23 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/warehouse_4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/warehouse_5.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/warehouse_5.png new file mode 100644 index 0000000..70bb221 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/warehouse_5.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/warehouse_6.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/warehouse_6.png new file mode 100644 index 0000000..e8ef15b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/warehouse_6.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/whitearrow.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/whitearrow.png new file mode 100644 index 0000000..9a57679 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/watch/whitearrow.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/whitemountain.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/whitemountain.png new file mode 100644 index 0000000..d1ceba3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/whitemountain.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yellowbian.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yellowbian.png new file mode 100644 index 0000000..3965760 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yellowbian.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yiliao/doctorW.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yiliao/doctorW.png new file mode 100644 index 0000000..bae8d1b Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yiliao/doctorW.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yiliao/nurseW.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yiliao/nurseW.png new file mode 100644 index 0000000..87445d9 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yiliao/nurseW.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yiliao/project.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yiliao/project.png new file mode 100644 index 0000000..05f68e5 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yiliao/project.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yiliao/project2.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yiliao/project2.png new file mode 100644 index 0000000..9623d43 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yiliao/project2.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yiliao/project4.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yiliao/project4.png new file mode 100644 index 0000000..7a8b8b7 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yiliao/project4.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yiliao/yiliaolei.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yiliao/yiliaolei.png new file mode 100644 index 0000000..4db6924 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yiliao/yiliaolei.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yiliao/yizhu.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yiliao/yizhu.png new file mode 100644 index 0000000..ccdb2b5 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yiliao/yizhu.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yiliao/yizhudown.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yiliao/yizhudown.png new file mode 100644 index 0000000..71c70cf Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/yiliao/yizhudown.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/zhou.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/zhou.png new file mode 100644 index 0000000..91ed3b3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/zhou.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/zhoudark.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/zhoudark.png new file mode 100644 index 0000000..6ae261e Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/zhoudark.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/zuoyuan.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/zuoyuan.png new file mode 100644 index 0000000..95592d8 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/index/zuoyuan.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/kuai.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/kuai.png new file mode 100644 index 0000000..6236c28 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/kuai.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/left.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/left.png new file mode 100644 index 0000000..4f9e3e3 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/left.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/logo.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/logo.png new file mode 100644 index 0000000..e5c75f2 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/logo.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/qiu.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/qiu.png new file mode 100644 index 0000000..907b0f5 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/qiu.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/qr.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/qr.png new file mode 100644 index 0000000..76bd400 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/qr.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/sao.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/sao.png new file mode 100644 index 0000000..42fc928 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/sao.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/static/x.png b/app/src/main/assets/apps/__UNI__FB2D473/www/static/x.png new file mode 100644 index 0000000..f4f9f89 Binary files /dev/null and b/app/src/main/assets/apps/__UNI__FB2D473/www/static/x.png differ diff --git a/app/src/main/assets/apps/__UNI__FB2D473/www/uni-app-view.umd.js b/app/src/main/assets/apps/__UNI__FB2D473/www/uni-app-view.umd.js new file mode 100644 index 0000000..fdf0659 --- /dev/null +++ b/app/src/main/assets/apps/__UNI__FB2D473/www/uni-app-view.umd.js @@ -0,0 +1,7 @@ +!function(e){"function"==typeof define&&define.amd?define(e):e()}((function(){"use strict";function e(e){return e&&e.__esModule&&Object.prototype.hasOwnProperty.call(e,"default")?e.default:e}var t={exports:{}},n={exports:{}},r={exports:{}},i=r.exports={version:"2.6.12"};"number"==typeof __e&&(__e=i);var a=r.exports,o={exports:{}},s=o.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=s);var l=o.exports,u=a,c=l,d="__core-js_shared__",h=c[d]||(c[d]={});(n.exports=function(e,t){return h[e]||(h[e]=void 0!==t?t:{})})("versions",[]).push({version:u.version,mode:"global",copyright:"© 2020 Denis Pushkarev (zloirock.ru)"});var f=n.exports,p=0,v=Math.random(),g=function(e){return"Symbol(".concat(void 0===e?"":e,")_",(++p+v).toString(36))},m=f("wks"),_=g,y=l.Symbol,b="function"==typeof y;(t.exports=function(e){return m[e]||(m[e]=b&&y[e]||(b?y:_)("Symbol."+e))}).store=m;var w,x,S=t.exports,k={},C=function(e){return"object"==typeof e?null!==e:"function"==typeof e},T=C,A=function(e){if(!T(e))throw TypeError(e+" is not an object!");return e},M=function(e){try{return!!e()}catch(t){return!0}},E=!M((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}));function O(){if(x)return w;x=1;var e=C,t=l.document,n=e(t)&&e(t.createElement);return w=function(e){return n?t.createElement(e):{}}}var L=!E&&!M((function(){return 7!=Object.defineProperty(O()("div"),"a",{get:function(){return 7}}).a})),z=C,N=A,I=L,P=function(e,t){if(!z(e))return e;var n,r;if(t&&"function"==typeof(n=e.toString)&&!z(r=n.call(e)))return r;if("function"==typeof(n=e.valueOf)&&!z(r=n.call(e)))return r;if(!t&&"function"==typeof(n=e.toString)&&!z(r=n.call(e)))return r;throw TypeError("Can't convert object to primitive value")},D=Object.defineProperty;k.f=E?Object.defineProperty:function(e,t,n){if(N(e),t=P(t,!0),N(n),I)try{return D(e,t,n)}catch(r){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(e[t]=n.value),e};var B=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}},R=k,F=B,q=E?function(e,t,n){return R.f(e,t,F(1,n))}:function(e,t,n){return e[t]=n,e},j=S("unscopables"),V=Array.prototype;null==V[j]&&q(V,j,{});var $={},H={}.toString,W=function(e){return H.call(e).slice(8,-1)},U=function(e){if(null==e)throw TypeError("Can't call method on "+e);return e},Y=Object("z").propertyIsEnumerable(0)?Object:function(e){return"String"==W(e)?e.split(""):Object(e)},X=U,Z=function(e){return Y(X(e))},G={exports:{}},K={}.hasOwnProperty,J=function(e,t){return K.call(e,t)},Q=f("native-function-to-string",Function.toString),ee=l,te=q,ne=J,re=g("src"),ie=Q,ae="toString",oe=(""+ie).split(ae);a.inspectSource=function(e){return ie.call(e)},(G.exports=function(e,t,n,r){var i="function"==typeof n;i&&(ne(n,"name")||te(n,"name",t)),e[t]!==n&&(i&&(ne(n,re)||te(n,re,e[t]?""+e[t]:oe.join(String(t)))),e===ee?e[t]=n:r?e[t]?e[t]=n:te(e,t,n):(delete e[t],te(e,t,n)))})(Function.prototype,ae,(function(){return"function"==typeof this&&this[re]||ie.call(this)}));var se=G.exports,le=function(e){if("function"!=typeof e)throw TypeError(e+" is not a function!");return e},ue=le,ce=l,de=a,he=q,fe=se,pe=function(e,t,n){if(ue(e),void 0===t)return e;switch(n){case 1:return function(n){return e.call(t,n)};case 2:return function(n,r){return e.call(t,n,r)};case 3:return function(n,r,i){return e.call(t,n,r,i)}}return function(){return e.apply(t,arguments)}},ve="prototype",ge=function(e,t,n){var r,i,a,o,s=e&ge.F,l=e&ge.G,u=e&ge.S,c=e&ge.P,d=e&ge.B,h=l?ce:u?ce[t]||(ce[t]={}):(ce[t]||{})[ve],f=l?de:de[t]||(de[t]={}),p=f[ve]||(f[ve]={});for(r in l&&(n=t),n)a=((i=!s&&h&&void 0!==h[r])?h:n)[r],o=d&&i?pe(a,ce):c&&"function"==typeof a?pe(Function.call,a):a,h&&fe(h,r,a,e&ge.U),f[r]!=a&&he(f,r,o),c&&p[r]!=a&&(p[r]=a)};ce.core=de,ge.F=1,ge.G=2,ge.S=4,ge.P=8,ge.B=16,ge.W=32,ge.U=64,ge.R=128;var me,_e,ye,be=ge,we=Math.ceil,xe=Math.floor,Se=function(e){return isNaN(e=+e)?0:(e>0?xe:we)(e)},ke=Se,Ce=Math.min,Te=Se,Ae=Math.max,Me=Math.min,Ee=Z,Oe=function(e){return e>0?Ce(ke(e),9007199254740991):0},Le=function(e,t){return(e=Te(e))<0?Ae(e+t,0):Me(e,t)},ze=f("keys"),Ne=g,Ie=function(e){return ze[e]||(ze[e]=Ne(e))},Pe=J,De=Z,Be=(me=!1,function(e,t,n){var r,i=Ee(e),a=Oe(i.length),o=Le(n,a);if(me&&t!=t){for(;a>o;)if((r=i[o++])!=r)return!0}else for(;a>o;o++)if((me||o in i)&&i[o]===t)return me||o||0;return!me&&-1}),Re=Ie("IE_PROTO"),Fe="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(","),qe=function(e,t){var n,r=De(e),i=0,a=[];for(n in r)n!=Re&&Pe(r,n)&&a.push(n);for(;t.length>i;)Pe(r,n=t[i++])&&(~Be(a,n)||a.push(n));return a},je=Fe,Ve=Object.keys||function(e){return qe(e,je)},$e=k,He=A,We=Ve,Ue=E?Object.defineProperties:function(e,t){He(e);for(var n,r=We(t),i=r.length,a=0;i>a;)$e.f(e,n=r[a++],t[n]);return e};var Ye=A,Xe=Ue,Ze=Fe,Ge=Ie("IE_PROTO"),Ke=function(){},Je="prototype",Qe=function(){var e,t=O()("iframe"),n=Ze.length;for(t.style.display="none",function(){if(ye)return _e;ye=1;var e=l.document;return _e=e&&e.documentElement}().appendChild(t),t.src="javascript:",(e=t.contentWindow.document).open(),e.write(" + + + +
+ + + + + + +

We're sorry ...

+

+ +
Back
+
Close
+
Restart
+ + \ No newline at end of file diff --git a/app/src/main/assets/data/dcloud_properties.xml b/app/src/main/assets/data/dcloud_properties.xml new file mode 100644 index 0000000..f411070 --- /dev/null +++ b/app/src/main/assets/data/dcloud_properties.xml @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/app/src/main/assets/dcloud_uniplugins.json b/app/src/main/assets/dcloud_uniplugins.json new file mode 100644 index 0000000..f28e176 --- /dev/null +++ b/app/src/main/assets/dcloud_uniplugins.json @@ -0,0 +1,39 @@ +{ + "nativePlugins": [ + { + "plugins": [ + { + "type": "module", + "name": "MonitorModule", + "class": "com.cn.plugin_module.MonitorModule" + } + ] + }, + { + "plugins": [ + { + "type": "component", + "name": "myText", + "class": "com.cn.plugin_module.TestText" + } + ] + }, + { + "plugins": [ + { + "type": "component", + "name": "MonitorView", + "class": "com.cn.plugin_module.MonitorView" + } + ] + }, { + "plugins": [ + { + "type": "component", + "name": "MonitorControlView", + "class": "com.cn.plugin_module.PTZMotorJoyStickView" + } + ] + } + ] +} \ No newline at end of file diff --git a/app/src/main/java/MyApplication.kt b/app/src/main/java/MyApplication.kt new file mode 100644 index 0000000..a1e3730 --- /dev/null +++ b/app/src/main/java/MyApplication.kt @@ -0,0 +1,62 @@ +import com.android.UniPlugin.BuildConfig +import com.cn.plugin_module.bean.setSPAutoLoginType +import com.tplink.smbcloudbizcommon.TPLog +import com.tplink.smbcloudsdk.SMBCloudSDKContext +import com.tplink.smbcloudsdk.bean.CloudLoginListener +import com.tplink.smbcloudsdk.bean.NetworkType +import com.tplink.smbcloudsdk.bean.SelectServer +import com.tplink.smbcloudsdk.bean.TokenExpiredHandler +import com.tplink.smbcloudsdk.util.SMBCloudSDKLog +import io.dcloud.application.DCloudApplication + + +class MyApplication : DCloudApplication(){ + override fun onCreate() { + super.onCreate() + // 必选项 + SMBCloudSDKContext.init(applicationContext) + // 是否加载数据库信息,默认开启(设备信息可以存到数据库中,减少加载耗时)(仅公有云,私有云没有必要) (可选项) + SMBCloudSDKContext.enableDataBase = true + // 是否加载设备封面,默认开启加载。(可选项) + SMBCloudSDKContext.enableDeviceCover = true + /** + * 开启网络状态监听 (可选项) + * 作用: + * 1)切换生产环境,UAT环境、迁移环境情况下,均可登录。不注册,则只能登录生产环境 + * 2)预览画面监听网络变化、流量提醒、显示实时的流量数据(流量提醒和流量数据暂不实现,有需求再说) + */ + SMBCloudSDKContext.registerNetworkChangeReceiverAfterPrivacy() + + /*** + * 监听 oken是否过期 (可选项) + */ + SMBCloudSDKContext.setTokenExpiredHandler(object : TokenExpiredHandler { + override fun onTokenExpired() { + // token已过期,重新返回登录页面 + setSPAutoLoginType(SelectServer.INVALID) +// jumpMainActivity() + } + }) + /** + * 账号登录登出监听(可选项) + */ + SMBCloudSDKContext.setCloudLoginListener(object : CloudLoginListener { + override fun onLastAccountLoginOut(isPublic: Boolean) { + // 账号退出 + TPLog.d(SMBCloudSDKContext.tag, "onLastAccountLoginOut isPublic: $isPublic") + } + + override fun onNewAccountLogin(isPublic: Boolean) { + // 新账号登录 + TPLog.d(SMBCloudSDKContext.tag, "onNewAccountLogin isPublic: $isPublic") + } + + override fun onNetworkChanged(type: NetworkType) { + // 监听网络变化:WIFI、流量、无任何网络(由于需要监听网络状态,隐私政策需要增加相应的说明) + TPLog.d(SMBCloudSDKContext.tag, "onNetworkChanged $type") + } + }) + // debug的apk可以调试看日志.方便客户遇到bug,可以打印log排查 (可选项) + SMBCloudSDKLog.setEnableLog(BuildConfig.DEBUG) + } +} \ No newline at end of file diff --git a/app/src/main/java/com/android/UniPlugin/MainActivity.java b/app/src/main/java/com/android/UniPlugin/MainActivity.java new file mode 100644 index 0000000..9c4a4a2 --- /dev/null +++ b/app/src/main/java/com/android/UniPlugin/MainActivity.java @@ -0,0 +1,22 @@ +package com.android.UniPlugin; + +import androidx.appcompat.app.AppCompatActivity; + +import android.os.Bundle; +import android.view.View; +import io.dcloud.common.core.permission.PermissionControler; + +public class MainActivity extends AppCompatActivity { + + @Override + protected void onCreate(Bundle savedInstanceState) { + super.onCreate(savedInstanceState); + setContentView(R.layout.activity_main); + findViewById(R.id.tvClick).setOnClickListener(new View.OnClickListener() { + @Override + public void onClick(View v) { +// new TestModule().gotoNativePage(); + } + }); + } +} \ No newline at end of file diff --git a/app/src/main/res/drawable-xxhdpi/icon.png b/app/src/main/res/drawable-xxhdpi/icon.png new file mode 100644 index 0000000..96302fa Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/icon.png differ diff --git a/app/src/main/res/drawable-xxhdpi/push.png b/app/src/main/res/drawable-xxhdpi/push.png new file mode 100644 index 0000000..96302fa Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/push.png differ diff --git a/app/src/main/res/drawable-xxhdpi/splash.png b/app/src/main/res/drawable-xxhdpi/splash.png new file mode 100644 index 0000000..2330e56 Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/splash.png differ diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml new file mode 100644 index 0000000..3086be3 --- /dev/null +++ b/app/src/main/res/layout/activity_main.xml @@ -0,0 +1,17 @@ + + + + \ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..ad17803 --- /dev/null +++ b/app/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ + + 护理单元 + diff --git a/app/uniplugin.jks b/app/uniplugin.jks new file mode 100644 index 0000000..e5a3fc9 Binary files /dev/null and b/app/uniplugin.jks differ diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..463706c --- /dev/null +++ b/build.gradle @@ -0,0 +1,31 @@ +// Top-level build file where you can add configuration options common to all sub-projects/modules. + +buildscript { + + repositories { + maven { url 'https://maven.aliyun.com/nexus/content/groups/public/' } + google() + jcenter() + } + dependencies { + classpath 'com.android.tools.build:gradle:8.6.0' + classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.0' + + + // NOTE: Do not place your application dependencies here; they belong + // in the individual module build.gradle files + } +} + +allprojects { + repositories { + maven { url 'https://maven.aliyun.com/nexus/content/groups/public/' } + google() + jcenter() + maven { url = uri("https://jitpack.io") } + } +} + +task clean(type: Delete) { + delete rootProject.buildDir +} diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..a7d633c --- /dev/null +++ b/gradle.properties @@ -0,0 +1,17 @@ +# Project-wide Gradle settings. +# IDE (e.g. Android Studio) users: +# Gradle settings configured through the IDE *will override* +# any settings specified in this file. +# For more details on how to configure your build environment visit +# http://www.gradle.org/docs/current/userguide/build_environment.html +# Specifies the JVM arguments used for the daemon process. +# The setting is particularly useful for tweaking memory settings. +android.enableJetifier=true +android.useAndroidX=true +org.gradle.jvmargs=-Xmx4096m +# When configured, Gradle will run in incubating parallel mode. +# This option should only be used with decoupled projects. More details, visit +# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects +# org.gradle.parallel=true + + diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..f6b961f Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..354f1fd --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +#Wed Aug 27 11:46:34 CST 2025 +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew new file mode 100644 index 0000000..cccdd3d --- /dev/null +++ b/gradlew @@ -0,0 +1,172 @@ +#!/usr/bin/env sh + +############################################################################## +## +## Gradle start up script for UN*X +## +############################################################################## + +# Attempt to set APP_HOME +# Resolve links: $0 may be a link +PRG="$0" +# Need this for relative symlinks. +while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`"/$link" + fi +done +SAVED="`pwd`" +cd "`dirname \"$PRG\"`/" >/dev/null +APP_HOME="`pwd -P`" +cd "$SAVED" >/dev/null + +APP_NAME="Gradle" +APP_BASE_NAME=`basename "$0"` + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS="" + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD="maximum" + +warn () { + echo "$*" +} + +die () { + echo + echo "$*" + echo + exit 1 +} + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "`uname`" in + CYGWIN* ) + cygwin=true + ;; + Darwin* ) + darwin=true + ;; + MINGW* ) + msys=true + ;; + NONSTOP* ) + nonstop=true + ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD="java" + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then + MAX_FD_LIMIT=`ulimit -H -n` + if [ $? -eq 0 ] ; then + if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then + MAX_FD="$MAX_FD_LIMIT" + fi + ulimit -n $MAX_FD + if [ $? -ne 0 ] ; then + warn "Could not set maximum file descriptor limit: $MAX_FD" + fi + else + warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" + fi +fi + +# For Darwin, add options to specify how the application appears in the dock +if $darwin; then + GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" +fi + +# For Cygwin, switch paths to Windows format before running java +if $cygwin ; then + APP_HOME=`cygpath --path --mixed "$APP_HOME"` + CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + JAVACMD=`cygpath --unix "$JAVACMD"` + + # We build the pattern for arguments to be converted via cygpath + ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` + SEP="" + for dir in $ROOTDIRSRAW ; do + ROOTDIRS="$ROOTDIRS$SEP$dir" + SEP="|" + done + OURCYGPATTERN="(^($ROOTDIRS))" + # Add a user-defined pattern to the cygpath arguments + if [ "$GRADLE_CYGPATTERN" != "" ] ; then + OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" + fi + # Now convert the arguments - kludge to limit ourselves to /bin/sh + i=0 + for arg in "$@" ; do + CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` + CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option + + if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition + eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` + else + eval `echo args$i`="\"$arg\"" + fi + i=$((i+1)) + done + case $i in + (0) set -- ;; + (1) set -- "$args0" ;; + (2) set -- "$args0" "$args1" ;; + (3) set -- "$args0" "$args1" "$args2" ;; + (4) set -- "$args0" "$args1" "$args2" "$args3" ;; + (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; + (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; + (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; + (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; + (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; + esac +fi + +# Escape application args +save () { + for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done + echo " " +} +APP_ARGS=$(save "$@") + +# Collect all arguments for the java command, following the shell quoting and substitution rules +eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" + +# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong +if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then + cd "$(dirname "$0")" +fi + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..f955316 --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,84 @@ +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS= + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto init + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto init + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:init +@rem Get command-line arguments, handling Windows variants + +if not "%OS%" == "Windows_NT" goto win9xME_args + +:win9xME_args +@rem Slurp the command line arguments. +set CMD_LINE_ARGS= +set _SKIP=2 + +:win9xME_args_slurp +if "x%~1" == "x" goto execute + +set CMD_LINE_ARGS=%* + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/mylibrary/.gitignore b/mylibrary/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/mylibrary/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/mylibrary/build.gradle b/mylibrary/build.gradle new file mode 100644 index 0000000..afce4b5 --- /dev/null +++ b/mylibrary/build.gradle @@ -0,0 +1,67 @@ +plugins { + id 'com.android.library' + id 'org.jetbrains.kotlin.android' + id 'kotlin-kapt' +} + +android { + namespace 'com.cn.plugin_module' + compileSdk 35 + + defaultConfig { + minSdkVersion 21 + targetSdkVersion 33 + ndk { + //设置支持的SO库架构(开发者可以根据需要,选择一个或多个平台的so) + abiFilters "armeabi", "armeabi-v7a", "arm64-v8a", "x86","x86_64" + } + testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" + consumerProguardFiles "consumer-rules.pro" + } + sourceSets { + main { + jniLibs.srcDirs = ['libs'] + } + } + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' + } + } + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } + kotlinOptions { + jvmTarget = '1.8' + } + packagingOptions { + pickFirst 'lib/*/libc++_shared.so' + pickFirst 'lib/*/libavcodec.so' + pickFirst 'lib/*/libavutil.so' + pickFirst 'lib/*/libavformat.so' + pickFirst 'lib/*/libswresample.so' + pickFirst 'lib/*/libswscale.so' + } +} + +dependencies { + implementation 'androidx.constraintlayout:constraintlayout:2.1.4' + implementation 'androidx.core:core-ktx:1.3.2' + compileOnly 'androidx.appcompat:appcompat:1.1.0' + compileOnly 'com.google.android.material:material:1.6.1' + implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.3" + implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3" + compileOnly 'com.alibaba:fastjson:1.2.83' + + compileOnly fileTree(include: ['uniapp-v8-release.aar','lib.5plus.base-release.aar'], dir: '../app/libs') + compileOnly fileTree(include: ['TPBizCommon_Android_V1.0.0_release.aar','TUMSCloudSDK_Android_V1.0.6_release.aar','TPRender_Android_V1.0.0_release.aar'], dir: '../app/libs') + // 核心 Lifecycle 库 + implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.5.1" + implementation 'com.google.code.gson:gson:2.10.1' // 使用 api 而不是 implementation + testImplementation 'junit:junit:4.13.2' + androidTestImplementation 'androidx.test.ext:junit:1.1.5' + androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' + implementation fileTree(dir: 'libs', include: ['*.jar','*.aar']) +} \ No newline at end of file diff --git a/mylibrary/consumer-rules.pro b/mylibrary/consumer-rules.pro new file mode 100644 index 0000000..e69de29 diff --git a/mylibrary/proguard-rules.pro b/mylibrary/proguard-rules.pro new file mode 100644 index 0000000..79d89fd --- /dev/null +++ b/mylibrary/proguard-rules.pro @@ -0,0 +1,23 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile +-keep public class * extends io.dcloud.feature.uniapp.common.UniModule{*;} +-keep public class * extends io.dcloud.feature.uniapp.ui.component.UniComponent{*;} diff --git a/mylibrary/src/androidTest/java/com/cn/plugin_module/ExampleInstrumentedTest.java b/mylibrary/src/androidTest/java/com/cn/plugin_module/ExampleInstrumentedTest.java new file mode 100644 index 0000000..58df512 --- /dev/null +++ b/mylibrary/src/androidTest/java/com/cn/plugin_module/ExampleInstrumentedTest.java @@ -0,0 +1,26 @@ +package com.cn.plugin_module; + +import android.content.Context; + +import androidx.test.platform.app.InstrumentationRegistry; +import androidx.test.ext.junit.runners.AndroidJUnit4; + +import org.junit.Test; +import org.junit.runner.RunWith; + +import static org.junit.Assert.*; + +/** + * Instrumented test, which will execute on an Android device. + * + * @see Testing documentation + */ +@RunWith(AndroidJUnit4.class) +public class ExampleInstrumentedTest { + @Test + public void useAppContext() { + // Context of the app under test. + Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); + assertEquals("com.juai.plugin_module.test", appContext.getPackageName()); + } +} \ No newline at end of file diff --git a/mylibrary/src/main/AndroidManifest.xml b/mylibrary/src/main/AndroidManifest.xml new file mode 100644 index 0000000..d11dcb1 --- /dev/null +++ b/mylibrary/src/main/AndroidManifest.xml @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/mylibrary/src/main/java/com/cn/plugin_module/MonitorModule.kt b/mylibrary/src/main/java/com/cn/plugin_module/MonitorModule.kt new file mode 100644 index 0000000..cf327f5 --- /dev/null +++ b/mylibrary/src/main/java/com/cn/plugin_module/MonitorModule.kt @@ -0,0 +1,89 @@ +package com.cn.plugin_module + +import android.app.Activity +import android.util.Log +import android.view.View +import android.widget.Toast +import androidx.lifecycle.LifecycleOwner +import com.alibaba.fastjson.JSONObject +import com.cn.plugin_module.bean.PrivateUserInfoBean +import com.cn.plugin_module.bean.setSPAutoLoginType +import com.cn.plugin_module.bean.updateSPPrivateUserInfo +import com.tplink.smbcloudsdk.SMBCloudSDKContext.cloudReqLogout +import com.tplink.smbcloudsdk.SMBCloudSDKContext.cloudReqPrivateLogin +import com.tplink.smbcloudsdk.SMBCloudSDKContext.getErrorCodeMessage +import com.tplink.smbcloudsdk.SMBCloudSDKContext.getLifecycleScope +import com.tplink.smbcloudsdk.SMBCloudSDKContext.init +import com.tplink.smbcloudsdk.SMBCloudSDKContext.isRequestSuccess +import com.tplink.smbcloudsdk.bean.SMBCloudSDKPrivateLoginResponse +import com.tplink.smbcloudsdk.bean.SelectServer +import io.dcloud.feature.uniapp.annotation.UniJSMethod +import io.dcloud.feature.uniapp.bridge.UniJSCallback +import io.dcloud.feature.uniapp.common.UniModule + +class MonitorModule : UniModule() { + @UniJSMethod(uiThread = true) + fun initSMBCloudSDK(){ + MycloudInit(mUniSDKInstance.context) + } + + + @UniJSMethod(uiThread = true) + fun cloudLoginIn(options: JSONObject, callback: UniJSCallback?){ + + val userName =options.getString("userName") + val password =options.getString("password") + val serverAddress =options.getString("serverAddress") + val port =options.getInteger("port") + cloudReqPrivateLogin( + getLifecycleScope((mUniSDKInstance.context as LifecycleOwner)), + serverAddress, port, userName, password + ) { cloudLoginResponse: SMBCloudSDKPrivateLoginResponse -> + if (callback!=null){ + val data = JSONObject() + data["code"] = cloudLoginResponse.errorCode + callback?.invoke(data) + } + if (isRequestSuccess(cloudLoginResponse.errorCode)) { + // 保存token + updateSPPrivateUserInfo( + PrivateUserInfoBean( + System.currentTimeMillis(), + userName, + password, + serverAddress, + port, + cloudLoginResponse.token, + cloudLoginResponse.isSupportV2, + cloudLoginResponse.authKey, + cloudLoginResponse.authType + ) + ) + setSPAutoLoginType(SelectServer.PRIVATE) + } else { + } + Unit + } + } + @UniJSMethod(uiThread = true) + fun cloudLoginOut(callback: UniJSCallback?) { + cloudReqLogout(getLifecycleScope((mUniSDKInstance.context as LifecycleOwner))) { errorCode -> + if (callback!=null){ + val data = JSONObject() + data["code"] = errorCode + callback?.invoke(data) + } + if (isRequestSuccess(errorCode)) { + // token失效,清空token缓存 + setSPAutoLoginType(SelectServer.INVALID) + } + Unit + } + } + + + + companion object { + private const val TAG = "TestModule" + } +} \ No newline at end of file diff --git a/mylibrary/src/main/java/com/cn/plugin_module/MonitorView.kt b/mylibrary/src/main/java/com/cn/plugin_module/MonitorView.kt new file mode 100644 index 0000000..ca4e993 --- /dev/null +++ b/mylibrary/src/main/java/com/cn/plugin_module/MonitorView.kt @@ -0,0 +1,596 @@ +package com.cn.plugin_module + +import android.Manifest +import android.app.Activity +import android.content.Context +import android.content.Intent +import android.content.pm.PackageManager +import android.media.MediaScannerConnection +import android.widget.FrameLayout +import android.widget.ImageView +import android.widget.Toast +import androidx.core.view.isVisible +import androidx.lifecycle.LifecycleOwner +import com.alibaba.fastjson.JSONObject +import com.cn.plugin_module.manager.PermissionManger +import com.cn.plugin_module.utils.FileUtils +import com.tplink.render.common.DisplayMode +import com.tplink.render.common.ScaleMode +import com.tplink.smbcloudbizcommon.TPGlideUtils +import com.tplink.smbcloudbizcommon.TPScreenUtil +import com.tplink.smbcloudsdk.SMBCloudSDKConstants +import com.tplink.smbcloudsdk.SMBCloudSDKContext +import com.tplink.smbcloudsdk.bean.BizMediaFinishReason +import com.tplink.smbcloudsdk.bean.PlayerAllStatus +import com.tplink.smbcloudsdk.bean.PlayerTalkStatus +import com.tplink.smbcloudsdk.bean.Resolution +import com.tplink.smbcloudsdk.bean.SMBCloudSDKDeviceInfoBean +import com.tplink.smbcloudsdk.bean.TalkMode +import com.tplink.smbcloudsdk.manager.VMSPlayerManager +import com.tplink.smbcloudsdk.util.SMBCloudSDKCommonUtils.isLandscape +import io.dcloud.common.core.permission.PermissionControler +import io.dcloud.feature.uniapp.UniSDKInstance +import io.dcloud.feature.uniapp.annotation.UniJSMethod +import io.dcloud.feature.uniapp.bridge.UniJSCallback +import io.dcloud.feature.uniapp.ui.action.AbsComponentData +import io.dcloud.feature.uniapp.ui.component.AbsVContainer +import io.dcloud.feature.uniapp.ui.component.UniComponent +import io.dcloud.feature.uniapp.ui.component.UniComponentProp +import java.io.File + + +class MonitorView( + instance: UniSDKInstance?, + parent: AbsVContainer<*>?, + basicComponentData: AbsComponentData<*>? +) : UniComponent(instance, parent, basicComponentData) { + // 播放器管理器(一个设备对应一个管理器) + private var playerManager : VMSPlayerManager?=null + private var deviceInfoBean: SMBCloudSDKDeviceInfoBean?=null + var frameLayout: FrameLayout?=null + private var devId="" + val REQUEST_TALK_CODE: Int = 11111 + val REQUEST_SNAPSHOT_CODE: Int = 11112 + val REQUEST_RECORD_CODE: Int = 11113 + + var permissions: Array = arrayOf( + Manifest.permission.RECORD_AUDIO, + ) + var permissions1: Array = arrayOf( + Manifest.permission.WRITE_EXTERNAL_STORAGE, + Manifest.permission.READ_EXTERNAL_STORAGE + ) + override fun initComponentHostView(context: Context): FrameLayout { + frameLayout = FrameLayout(context) + return frameLayout!! + } + + @UniComponentProp(name = "init") + fun init(devId: String) { + this.devId=devId + initAutoPlay(devId) + } + @UniJSMethod + fun test(){ + openTalk() + } + /** + * 0->DisplayMode.FisheyeWinPlaneTop,1->,DisplayMode.FisheyeWinPlaneTopQuad->2,3->DisplayMode.Fisheye180D,4->DisplayMode.Fisheye360D,5-> DisplayMode.FisheyeCylinder + */ + @UniJSMethod + fun switchDisplayModeFragment(displayMode: Int){ + when(displayMode){ + 0->{ // 原图 + playerManager?.setDisplayMode(DisplayMode.Origin) + } + 1->{ // 四分屏 + playerManager?.setDisplayMode(DisplayMode.FisheyeWinPlaneTopQuad) + } + 2->{ // 180°全景 + playerManager?.setDisplayMode(DisplayMode.Fisheye180D) + } + 3->{ // 360°全景 + playerManager?.setDisplayMode(DisplayMode.Fisheye360D) + } + 4->{ // 环状全景 + playerManager?.setDisplayMode(DisplayMode.FisheyeCylinder) + } + } + + } + @UniJSMethod + fun startOrStopManualAlarm(isAlarming: Boolean, callback: UniJSCallback?) { + if (isAlarming) { + // 开启手动报警 + SMBCloudSDKContext.devReqStartDoManualAlarm( + SMBCloudSDKContext.getLifecycleScope((mUniSDKInstance.context as LifecycleOwner)), + SMBCloudSDKContext.devGetDeviceInfoBean(devId, true) + ) { + if (callback!=null){ + val data = JSONObject() + data["code"] = it.first + callback?.invoke(data) + } + } + } else { + // 关闭手动报警 + SMBCloudSDKContext.devReqStopDoManualAlarm( + SMBCloudSDKContext.getLifecycleScope((mUniSDKInstance.context as LifecycleOwner)), + SMBCloudSDKContext.devGetDeviceInfoBean(devId, true) + ) { errorCode -> + if (callback!=null){ + val data = JSONObject() + data["code"] = errorCode + callback?.invoke(data) + } + } + } + } + + /** + * 0 ->SMBCloudSDKConstants.ImageSwitchType.FLIP_LEFT_AND_RIGHT + * 1 ->SMBCloudSDKConstants.ImageSwitchType.FLIP_UP_AND_DOWN + * 2 ->SMBCloudSDKConstants.ImageSwitchType.FLIP_CENTER + * 3 -> SMBCloudSDKConstants.ImageSwitchType.ROTATE_CLOCKWISE_90 + * 4 ->SMBCloudSDKConstants.ImageSwitchType.ROTATE_ANTICLOCKWISE_90 + * 5 -> SMBCloudSDKConstants.ImageSwitchType.ROTATE_ANTICLOCKWISE_180 + * 6 -> SMBCloudSDKConstants.ImageSwitchType.SWITCH_OFF + * + */ + @UniJSMethod + fun changeImageSwitch(switchType: Int,callback: UniJSCallback?) { + var switchTypeIn= SMBCloudSDKConstants.ImageSwitchType.SWITCH_OFF + when(switchType){ + 0->{//左右翻转 + switchTypeIn =SMBCloudSDKConstants.ImageSwitchType.FLIP_LEFT_AND_RIGHT + } + 1->{//上下翻转 + switchTypeIn =SMBCloudSDKConstants.ImageSwitchType.FLIP_UP_AND_DOWN + } + 2->{//中心翻转 + switchTypeIn = SMBCloudSDKConstants.ImageSwitchType.FLIP_CENTER + } + 3->{//顺时针旋转90 + switchTypeIn =SMBCloudSDKConstants.ImageSwitchType.ROTATE_CLOCKWISE_90 + } + 4->{//逆时针旋转90 + switchTypeIn =SMBCloudSDKConstants.ImageSwitchType.ROTATE_ANTICLOCKWISE_90 + } + 5->{//逆时针旋转180 + switchTypeIn =SMBCloudSDKConstants.ImageSwitchType.ROTATE_ANTICLOCKWISE_180 + } + 6->{//不翻转 + switchTypeIn =SMBCloudSDKConstants.ImageSwitchType.SWITCH_OFF + } + + } + val deviceInfoBean: SMBCloudSDKDeviceInfoBean = SMBCloudSDKContext.devGetDeviceInfoBean(devId, true) + SMBCloudSDKContext.devReqSetImageSwitch( + SMBCloudSDKContext.getLifecycleScope((mUniSDKInstance.context as LifecycleOwner)), + deviceInfoBean, + switchTypeIn + ) { errorCode -> + if (callback!=null){ + val data = JSONObject() + data["code"] = errorCode + callback?.invoke(data) + } + if (SMBCloudSDKContext.isRequestSuccess(errorCode)) { + + } else { + + } + } + } + + /** + * 切换静音示例 + */ + @UniJSMethod + fun toggleVolume() { + val playerAllStatus = playerManager?.getPlayerStatus() + if (playerAllStatus!=null&&playerAllStatus?.playVolume!! > 0) { + playerManager?.changeVolume(false) + } else { + playerManager?.changeVolume(true) + } + // 切换成功后,playStatusCallback.onVolumeChange接口会回调,在回调处更新UI即可 + } + /** + * 切换暂时或继续 + */ + @UniJSMethod + fun resumeOrPause() { + val playerAllStatus = playerManager?.getPlayerStatus() + if (playerAllStatus?.isPlaying()==true) { + playerManager?.pause() + } else if (playerAllStatus?.isPaused()==true) { + playerManager?.resume() + } + + // 是否好奇为什么这里不需要回调?其实早已经有回调处理 + // 切换播放器暂停和继续播放后,onPlayStatusChange回调会返回最新的播放器状态,updateStatusView中已处理更新的状态 + } + /** + * 切换清晰度 + */ + @UniJSMethod + fun changeQuality(quality: Int) {// 0标清 1高清 + val playerAllStatus = playerManager?.getPlayerStatus() + when (playerAllStatus?.quality) { + Resolution.VGA.value -> { + if (quality == 0) { + return + } + // 当前清晰度为:标清。切换到高清 + playerManager?.changeQuality(Resolution.HD) + } + Resolution.HD.value -> { + if (quality == 1) { + return + } + // 当前清晰度为:高清。切换到标清 + playerManager?.changeQuality(Resolution.VGA) + } + else -> { + + } + } + // 切换成功后,playStatusCallback.onQualityChange接口会回调,在回调处更新UI即可 + } + + @UniJSMethod + fun initAutoPlay(devId:String) { + playerManager=VMSPlayerManager(SMBCloudSDKContext.getLifecycleScope(context as LifecycleOwner)) + deviceInfoBean= SMBCloudSDKContext.devGetDeviceInfoBean(devId, true) + // 开启密码校验操作,防止陌生用户预览。(可选)默认是开启。可以关闭密码校验,但需考量安全问题 + playerManager?.isDevCheckUserInfo = false + // 可以提前输入设备密码。(可选)demo是先默认校验一遍:如果校验密码不对,再回调提示重新输入密码 + playerManager?.password = "Bl20230518" + // 播放器初始化 + playerManager?.init(devId) { + // 初始化后开始播放,默认清晰度为Resolution.HD,即高清 + playerManager?.startPreview(Resolution.HD) + } + changeImageSwitch(6,null) + initCallback() + } + + private fun initCallback() { + /** + * 播放器加载成功后,返回的预览画面view。将该view加载到您的布局中(必选) + */ + playerManager?.videoViewCallback = object : VMSPlayerManager.VideoViewCallback { + override fun onVideoViewAdd() { + // 将实时画面的view加载到父布局中 + playerManager?.addVideoViewSafely(frameLayout!!) + } + + override fun onGetScaleMode(): ScaleMode { + /** + * 返回的renderView的比例模式是有要求的 + * 1)鱼眼:ScaleMode.Fill (全铺满, 1:1) + * 2)其它IPC且竖屏下:ScaleMode.AspectFit (自适应居中, 16:9) + * 3)横屏下:ScaleMode.Fill (全铺满) + * 4)走廊模式处于90°或者270°翻转时:ScaleMode.AspectFit (自适应居中, 16:9) + */ + return if (playerManager?.isCorridorRotateClockWise==true) { + ScaleMode.AspectFit + } else if (playerManager?.deviceBean?.isSupportFishEye == true || isLandscape()) { + ScaleMode.Fill + } else { + ScaleMode.AspectFit + } + } + + override fun onGetDisplayRatio(): Float { + /** + * 宽高比例 + * 鱼眼:1:1 走廊模式:9:16 其它设备:16:9 + */ + return when { + playerManager?.deviceBean?.isSupportFishEye == true -> { + SMBCloudSDKConstants.DisplayRatio.PLAYER_DISPLAY_RATIO_1_1 + } + playerManager?.isCorridorRotateClockWise == true -> { + SMBCloudSDKConstants.DisplayRatio.PLAYER_DISPLAY_RATIO_9_16 + } + else -> { + SMBCloudSDKConstants.DisplayRatio.PLAYER_DISPLAY_RATIO_16_9 + } + } + } + + override fun onGetVerticalOffset(): Int { + /** + * 由于该页面的竖屏实现了沉浸式,预览画面(鱼眼设备除外)占据了状态栏的空间。因此需要设置偏移量 + */ + return if (isLandscape() || playerManager?.deviceBean?.isSupportFishEye == true) 0 else { + TPScreenUtil.getStatusBarHeight(context) / 2 * -1 + } + } + + override fun isHandleTouchEvent(): Boolean { + val params: MutableMap = HashMap() + params["onMonitorViewClick"] = "true" + mUniSDKInstance.fireGlobalEventCallback("myEvent", params) + /** + * 是否实现双击缩放和两指缩放功能,默认是true,即sdk内部会实现缩放 + */ + return true + } + } + /** + * PlayStatusCallback回调(可选) + */ + playerManager?.playStatusCallback = object : VMSPlayerManager.PlayStatusCallback { + /** + * 当前播放状态的回调:加载中、加载成功、停止、终止、加载失败(可选) + */ + override fun onStatusChange(playerAllStatus: PlayerAllStatus) { + val params: MutableMap = HashMap() + + // 处理播放器回调 + when (playerAllStatus.channelStatus) { + SMBCloudSDKConstants.PlayerStatus.wakeup -> { + params["playerStatus"] = "wakeup" + } + SMBCloudSDKConstants.PlayerStatus.loading -> { + params["playerStatus"] = "loading" + } + SMBCloudSDKConstants.PlayerStatus.playing -> { + params["playerStatus"] = "playing" + } + SMBCloudSDKConstants.PlayerStatus.paused -> { + params["playerStatus"] = "paused" + } + SMBCloudSDKConstants.PlayerStatus.authFail -> { + params["playerStatus"] = "authFail" + } + else -> { + // 播放失败,getPlayerFinishMessage获取播放失败的信息 + params["playerStatus"] = "authFail" + } + } + mUniSDKInstance.fireGlobalEventCallback("myEvent", params) + } + + override fun onPlayTimeUpdate(progressTime: Long) { + /** + * 播放器加载成功后,每间隔一秒返回的当前时刻(可选) + * 一般而言,非鱼眼IPC原始画面都有时间刻度,这个回调值用不上。 + * 只有鱼眼IPC原始画面无时间刻度,可用该值加载出来时间 + */ + if (playerManager?.deviceBean?.isSupportFishEye == true) { + // 私有云没有osd信息,因此这里是只展示公有云 + + } + } + + override fun onQualityChange(quality: Int) { + val qualityVaule = when (quality) { + Resolution.VGA.value -> "0"//标清 + Resolution.HD.value -> "1"//超清 + Resolution.THIRD.value -> "2"//第三码流 + else -> "" + } + // 清晰度回调:播放成功后当前清晰度 和 切换清晰度后的回调(可选) + val params: MutableMap = HashMap() + params["onQualityChange"] = qualityVaule + mUniSDKInstance.fireGlobalEventCallback("myEvent", params) + } + + override fun onVolumeChange(enable: Boolean) { + // 切换静音的回调:播放成功后当前声音开关 和 切换静音开关后的回调(仅切换静音时用到)(可选) + val params: MutableMap = HashMap() + params["onVolumeChange"] = enable + mUniSDKInstance.fireGlobalEventCallback("myEvent", params) + } + + override fun onGetDeviceInfo(errorCode: Int) { + val params: MutableMap = HashMap() + params["isOnline"] = errorCode + mUniSDKInstance.fireGlobalEventCallback("myEvent", params) + // 请求设备能力集信息,用于判断设备是否支持云台、调焦、鱼眼模式等操作,以及设备是否在线(可选) + if (SMBCloudSDKContext.isRequestSuccess(errorCode)) { + + } + } + } + //对讲回调 + playerManager?.talkStatusCallback=object : VMSPlayerManager.TalkStatusCallback { + override fun onStatusChange(talkStatus: PlayerTalkStatus) { + when (talkStatus.status) { + SMBCloudSDKConstants.PlayerStatus.loading -> { + // 连接中 + val tips = if (isNVRTalk) { + "正在与录像机建立连接" + } else { + "正在与\"${deviceInfoBean?.deviceName}\"建立连接" + } + val params: MutableMap = HashMap() + params["talkStatus"] = "loading" + params["tips"] = tips + mUniSDKInstance.fireGlobalEventCallback("myEvent", params) + } + SMBCloudSDKConstants.PlayerStatus.playing -> { +// // 连接成功 +// val tips = if (talkMode == TalkMode.HalfDuplex) { +// "按住说话" +// } else { +// "请说话" +// } +// val params: MutableMap = HashMap() +// params["talkStatus"] = "playing" +// params["tips"] = tips +// mUniSDKInstance.fireGlobalEventCallback("myEvent", params) + } + SMBCloudSDKConstants.PlayerStatus.stopped -> { + val params: MutableMap = HashMap() + params["talkStatus"] = "stopped" + mUniSDKInstance.fireGlobalEventCallback("myEvent", params) + } + SMBCloudSDKConstants.PlayerStatus.fialure -> { + val params: MutableMap = HashMap() + params["talkStatus"] = "fialure" + + // 加载失败,提示错误信息 + when (talkStatus.finishReason) { + BizMediaFinishReason.DeviceInterError -> { + params["tips"] = "通话开启失败,请重试" + } + BizMediaFinishReason.UnSupportFormat -> { + params["tips"] = "抱歉,摄像机无法解析APP的语音" + } + BizMediaFinishReason.TooManyRequests, BizMediaFinishReason.ChannelTalkBusy, + BizMediaFinishReason.TooManyClient -> { + params["tips"] ="设备正在通话中,请稍后再试" + } + else -> { + params["tips"] ="网络出了点问题,请重试" + } + } + mUniSDKInstance.fireGlobalEventCallback("myEvent", params) + } + else -> { + // 其它错误,直接退出 + + } + } + } + } + } + + private var talkMode = TalkMode.HalfDuplex + private var isNVRTalk: Boolean = false + @UniJSMethod + fun openTalk(){ + // 对讲 + if (!PermissionManger.hasPermissions( mUniSDKInstance.context, permissions)){ + if (mUniSDKInstance.context != null) { + val activity = mUniSDKInstance.context as Activity + PermissionControler.requestPermissions(activity, permissions, REQUEST_TALK_CODE) + } + return + } + openTalkHandle() + } + @UniJSMethod + fun stopTalk(){ + // 停止对讲 + playerManager?.stopSpeak() + } + fun openTalkHandle(){ +// talkMode = if (talkMode == TalkMode.FullDuplex) { +// // 切换半双工(即对讲) +// TalkMode.HalfDuplex +// } else { +// // 切换全双工(即电话) +// TalkMode.FullDuplex +// } + isNVRTalk= deviceInfoBean?.isDeviceSupportVAD(isNVRTalk) == true + // 先连接对讲 isNVRTalk: 是否为NVR对讲。默认是摄像机对讲 + playerManager?.startTalk(talkMode, isNVRTalk) + // 连接成功,开始讲话(仅对讲,电话不需要调用这个,电话连接成功后即可讲话) + playerManager?.startSpeak() + } + + /*** + * 截图示例 + */ + @UniJSMethod + fun snapShot() { + if (!PermissionManger.hasPermissions( mUniSDKInstance.context, permissions1)){ + if (mUniSDKInstance.context != null) { + val activity = mUniSDKInstance.context as Activity + PermissionControler.requestPermissions(activity, permissions1, REQUEST_SNAPSHOT_CODE) + } + return + } + snapShotHandle() + } + fun snapShotHandle(){ + // 截图,格式是JPG + val filePath = FileUtils.generateFilePath(SMBCloudSDKConstants.FILE_TYPE_JPG) + playerManager?.snapShot(filePath, object : VMSPlayerManager.SnapShotCallback { + override fun onSnapShot(errorCode: Int, url: String) { + val params: MutableMap = HashMap() + if (SMBCloudSDKContext.isRequestSuccess(errorCode)) { + params["snapShotResult"] = true + params["snapShotUrl"] = url + } else { + // 截图失败,提示错误信息 + File(filePath).delete() + params["snapShotResult"] = false + params["snapShotErrorCode"] = SMBCloudSDKConstants.getSnapshotFinishReason(errorCode) + } + mUniSDKInstance.fireGlobalEventCallback("myEvent", params) + } + }) + } + + /** + * 开始录像 + */ + @UniJSMethod + fun startRecord() { + if (!PermissionManger.hasPermissions( mUniSDKInstance.context, permissions1)){ + if (mUniSDKInstance.context != null) { + val activity = mUniSDKInstance.context as Activity + PermissionControler.requestPermissions(activity, permissions1, REQUEST_RECORD_CODE) + } + return + } + // 设置录像回调 + playerManager?.recordCallback =recordCallback + if (playerManager?.isRecording() == false) { + // 开始录像 格式是MP4 + val filePath = FileUtils.generateFilePath(SMBCloudSDKConstants.FILE_TYPE_MP4) + playerManager?.startRecord(filePath) + } + } + @UniJSMethod + fun stopRecord() { // 停止录像 + if (playerManager?.isRecording() == true) { + playerManager?.stopRecord() + } + } + private val recordCallback = object : VMSPlayerManager.RecordCallback { + override fun onRecording(duration: Long) { + + } + + override fun onFinish(errorCode: Int, url: String) { + val params: MutableMap = HashMap() + if (SMBCloudSDKContext.isRequestSuccess(errorCode)) { + // 结束录制 + params["recordFinish"] = true + params["recordUrl"] = url + } else { + // 录像失败,提示错误信息 + File(url).delete() + params["recordFinish"] = false + params["recordFailedReason"] = SMBCloudSDKConstants.getSnapshotFinishReason(errorCode) + } + mUniSDKInstance.fireGlobalEventCallback("myEvent", params) + } + } + + + override fun onActivityResume() { + super.onActivityResume() + playerManager?.restartPreview() + } + + override fun onActivityPause() { + super.onActivityPause() + playerManager?.stop() + } + + override fun onActivityDestroy() { + super.onActivityDestroy() + // 退出页面,要及时释放资源 + playerManager?.release() + } +} + diff --git a/mylibrary/src/main/java/com/cn/plugin_module/MycloudInit.kt b/mylibrary/src/main/java/com/cn/plugin_module/MycloudInit.kt new file mode 100644 index 0000000..29d1322 --- /dev/null +++ b/mylibrary/src/main/java/com/cn/plugin_module/MycloudInit.kt @@ -0,0 +1,65 @@ +package com.cn.plugin_module + + +import android.content.Context +import com.cn.plugin_module.bean.setSPAutoLoginType +import com.tplink.smbcloudbizcommon.BuildConfig +import com.tplink.smbcloudbizcommon.TPLog +import com.tplink.smbcloudsdk.SMBCloudSDKContext +import com.tplink.smbcloudsdk.bean.CloudLoginListener +import com.tplink.smbcloudsdk.bean.NetworkType +import com.tplink.smbcloudsdk.bean.SelectServer +import com.tplink.smbcloudsdk.bean.TokenExpiredHandler +import com.tplink.smbcloudsdk.util.SMBCloudSDKLog + + + +class MycloudInit(var context: Context) { + init { + // 必选项 + SMBCloudSDKContext.init(context) + // 是否加载数据库信息,默认开启(设备信息可以存到数据库中,减少加载耗时)(仅公有云,私有云没有必要) (可选项) + SMBCloudSDKContext.enableDataBase = true + // 是否加载设备封面,默认开启加载。(可选项) + SMBCloudSDKContext.enableDeviceCover = true + /** + * 开启网络状态监听 (可选项) + * 作用: + * 1)切换生产环境,UAT环境、迁移环境情况下,均可登录。不注册,则只能登录生产环境 + * 2)预览画面监听网络变化、流量提醒、显示实时的流量数据(流量提醒和流量数据暂不实现,有需求再说) + */ + SMBCloudSDKContext.registerNetworkChangeReceiverAfterPrivacy() + + /*** + * 监听 oken是否过期 (可选项) + */ + SMBCloudSDKContext.setTokenExpiredHandler(object : TokenExpiredHandler { + override fun onTokenExpired() { + // token已过期,重新返回登录页面 + setSPAutoLoginType(SelectServer.INVALID) +// jumpMainActivity() + } + }) + /** + * 账号登录登出监听(可选项) + */ + SMBCloudSDKContext.setCloudLoginListener(object : CloudLoginListener { + override fun onLastAccountLoginOut(isPublic: Boolean) { + // 账号退出 + TPLog.d(SMBCloudSDKContext.tag, "onLastAccountLoginOut isPublic: $isPublic") + } + + override fun onNewAccountLogin(isPublic: Boolean) { + // 新账号登录 + TPLog.d(SMBCloudSDKContext.tag, "onNewAccountLogin isPublic: $isPublic") + } + + override fun onNetworkChanged(type: NetworkType) { + // 监听网络变化:WIFI、流量、无任何网络(由于需要监听网络状态,隐私政策需要增加相应的说明) + TPLog.d(SMBCloudSDKContext.tag, "onNetworkChanged $type") + } + }) + // debug的apk可以调试看日志.方便客户遇到bug,可以打印log排查 (可选项) + SMBCloudSDKLog.setEnableLog(BuildConfig.DEBUG) + } +} \ No newline at end of file diff --git a/mylibrary/src/main/java/com/cn/plugin_module/PTZMotorJoyStickView.kt b/mylibrary/src/main/java/com/cn/plugin_module/PTZMotorJoyStickView.kt new file mode 100644 index 0000000..ad88de2 --- /dev/null +++ b/mylibrary/src/main/java/com/cn/plugin_module/PTZMotorJoyStickView.kt @@ -0,0 +1,108 @@ +package com.cn.plugin_module + +import android.content.Context +import android.widget.Toast +import androidx.lifecycle.LifecycleOwner +import com.tplink.smbcloudsdk.SMBCloudSDKConstants +import com.tplink.smbcloudsdk.SMBCloudSDKContext.devGetDeviceInfoBean +import com.tplink.smbcloudsdk.SMBCloudSDKContext.devGetPTZMotorManager +import com.tplink.smbcloudsdk.SMBCloudSDKContext.getErrorCodeMessage +import com.tplink.smbcloudsdk.SMBCloudSDKContext.getNewMainScope +import com.tplink.smbcloudsdk.SMBCloudSDKContext.isRequestSuccess +import com.tplink.smbcloudsdk.bean.IPTZMotorManager +import com.tplink.smbcloudsdk.bean.PTZDirection +import com.tplink.smbcloudsdk.widget.PTZMotorJoyStick +import io.dcloud.feature.uniapp.UniSDKInstance +import io.dcloud.feature.uniapp.annotation.UniJSMethod +import io.dcloud.feature.uniapp.ui.action.AbsComponentData +import io.dcloud.feature.uniapp.ui.component.AbsVContainer +import io.dcloud.feature.uniapp.ui.component.UniComponent +import io.dcloud.feature.uniapp.ui.component.UniComponentProp + +class PTZMotorJoyStickView( + instance: UniSDKInstance?, + parent: AbsVContainer<*>?, + basicComponentData: AbsComponentData<*>? +) : UniComponent(instance, parent, basicComponentData) { + private var ptzMotorManager: IPTZMotorManager? = null + var ptzMotorJoyStick: PTZMotorJoyStick?=null + private var devId="" + + override fun initComponentHostView(context: Context): PTZMotorJoyStick { + ptzMotorJoyStick = PTZMotorJoyStick(context) + return ptzMotorJoyStick!! + } + + @UniComponentProp(name = "init") + fun init(devId: String) { + this.devId=devId + initManager(devId) + } + @UniJSMethod + fun initManager(devId: String) { + val deviceInfoBean = devGetDeviceInfoBean(devId, true) + ptzMotorManager = devGetPTZMotorManager(getNewMainScope(), deviceInfoBean) + + // 设置PtzMotorManager,让PtzMotorManager去帮助ptzMotorJoyStick实现所有的云台操作 + ptzMotorJoyStick?.setPtzMotorManager(ptzMotorManager) + startObserve() + } + @UniJSMethod + fun resetControl() { + ptzMotorManager?.onActionReset() + } + private fun startObserve() { + // 云台开始发出《上下左右移动》的指令 + ptzMotorManager?.ptzMotorMoveRequestDirectionLiveData?.observe( + (mUniSDKInstance.context as LifecycleOwner) + ) { responsePair: Pair -> + // 当前操作的方向 + val ptzDirection = responsePair.first + // 是否已经操作到了该方向的极限 + val isMax = responsePair.second + } + // 云台发出指令后返回的结果 + ptzMotorManager?.ptzMotorMoveResponseLiveData?.observe( + (mUniSDKInstance.context as LifecycleOwner) + ) { responsePair: Pair -> + // 当前操作的方向 + val ptzDirection = responsePair.first + val errorCode = responsePair.second + // 是否已经操作到了该方向的极限 + val isMax = errorCode == SMBCloudSDKConstants.DefaultError.TPWCOMM_EC_MOTOR_MAX + + if (isMax){ + + } + } + // 云台复位的回调监听 + ptzMotorManager?.ptzMotorResetErrorLiveData?.observe( + (mUniSDKInstance.context as LifecycleOwner) + ) { errorCode: Int? -> + if (isRequestSuccess( + errorCode!! + ) + ) { + + } else { + + } + } + } + @UniJSMethod + fun test(){ + + } + override fun onActivityResume() { + super.onActivityResume() + } + + override fun onActivityPause() { + super.onActivityPause() + } + + override fun onActivityDestroy() { + super.onActivityDestroy() + } +} + diff --git a/mylibrary/src/main/java/com/cn/plugin_module/PreviewActivity.kt b/mylibrary/src/main/java/com/cn/plugin_module/PreviewActivity.kt new file mode 100644 index 0000000..309a845 --- /dev/null +++ b/mylibrary/src/main/java/com/cn/plugin_module/PreviewActivity.kt @@ -0,0 +1,1026 @@ +//package com.cn.plugin_module +// +//import android.Manifest +//import android.app.Activity +//import android.content.Intent +//import android.content.pm.ActivityInfo +//import android.content.res.Configuration +//import android.media.MediaScannerConnection +//import android.os.Bundle +//import android.os.Environment +//import android.os.Handler +//import android.os.Looper +//import android.view.View +//import android.widget.ImageView +//import androidx.appcompat.app.AppCompatActivity +//import androidx.constraintlayout.widget.ConstraintLayout +//import androidx.core.content.ContextCompat +//import androidx.core.view.isVisible +//import androidx.core.view.updateLayoutParams +//import com.cn.plugin_module.utils.updateSPDeviceInfoID +//import com.cn.plugin_module.utils.updateSPDeviceInfoName +//import com.tplink.render.common.ScaleMode +//import com.tplink.smbcloudbizcommon.PermissionsUtils +//import com.tplink.smbcloudbizcommon.TPGlideUtils +//import com.tplink.smbcloudbizcommon.TPScreenUtil +//import com.tplink.smbcloudbizcommon.TPTransformUtil +//import com.tplink.smbcloudbizcommon.base.CommonBaseActivity +//import com.tplink.smbcloudbizcommon.dialog.CommonWithPicEditTextDialog +//import com.tplink.smbcloudbizcommon.dialog.TipsDialog +//import com.tplink.smbcloudsdk.SMBCloudSDKConstants +//import com.tplink.smbcloudsdk.SMBCloudSDKContext +//import com.tplink.smbcloudsdk.bean.* +//import com.tplink.smbcloudsdk.manager.VMSPlayerManager +//import com.tplink.smbcloudsdk.util.SMBCloudSDKCommonUtils +//import java.io.File +// +// +// +//class PreviewActivity : CommonBaseActivity() { +// companion object{ +// const val EXTRA_DEVICE_INFO_DEV_ID="devId" +// const val EXTRA_DEVICE_INFO_DEV_NAME="c" +// fun startPreviewActivity(activity: Activity, devId: String, deviceName: String) { +// val intent = Intent(activity, PreviewActivity::class.java) +// intent.putExtra(EXTRA_DEVICE_INFO_DEV_ID, devId) +// intent.putExtra(EXTRA_DEVICE_INFO_DEV_NAME, deviceName) +// activity.startActivity(intent) +// } +// } +// private var devId: String = "" +// private var devName: String = "" +// +// // 播放器管理器(一个设备对应一个管理器) +// private var playerManager :VMSPlayerManager?=null +// +// override fun onCreate(savedInstanceState: Bundle?) { +// playerManager=VMSPlayerManager(SMBCloudSDKContext.getLifecycleScope(this)) +// super.onCreate(savedInstanceState) +// setContentView(R.layout.activity_preview) +// initData() +// initView() +// initCallback() +// } +// +// /** +// * 横竖屏切换适配 +// * 如果您细心发现,某些控件用的是"?.",有些用".",这是因为有些控件id,横屏下没有,需要判空。否则会出现空指针。 +// * (横竖屏适配时,需要特别注意控件的空指针问题) +// */ +// override fun onConfigurationChanged(newConfig: Configuration) { +// super.onConfigurationChanged(newConfig) +// setContentView(R.layout.activity_preview) +// initView() +// // 横竖屏切换后,preview_video_viewHolder的控件变了,需要重新绑定videoView +// playerManager?.addVideoViewSafely(preview_video_viewHolder) +// val playerAllStatus = playerManager?.getPlayerStatus() +// // 重新更新状态 +// if (playerAllStatus != null) { +// playerManager?.playStatusCallback?.onStatusChange(playerAllStatus) +// } +// } +// +// private fun initData() { +// devId = intent.getStringExtra(EXTRA_DEVICE_INFO_DEV_ID) ?: "" +// devName = intent.getStringExtra(EXTRA_DEVICE_INFO_DEV_NAME) ?: "" +// updateSPDeviceInfoID(devId) +// updateSPDeviceInfoName(devName) +// +// updateStatusView(PlayerAllStatus()) +// // 开启密码校验操作,防止陌生用户预览。(可选)默认是开启。可以关闭密码校验,但需考量安全问题 +// playerManager?.isDevCheckUserInfo = false +// // 可以提前输入设备密码。(可选)demo是先默认校验一遍:如果校验密码不对,再回调提示重新输入密码 +// playerManager?.password = "Bl20230518" +// // 播放器初始化 +// playerManager?.init(devId) { +// // 初始化后开始播放,默认清晰度为Resolution.HD,即高清 +// playerManager?.startPreview(Resolution.HD) +// } +// } +// +// private fun initCallback() { +// /** +// * 播放器加载成功后,返回的预览画面view。将该view加载到您的布局中(必选) +// */ +// playerManager?.videoViewCallback = object : VMSPlayerManager.VideoViewCallback { +// override fun onVideoViewAdd() { +// // 将实时画面的view加载到父布局中 +// playerManager?.addVideoViewSafely(preview_video_viewHolder) +// } +// +// override fun onGetScaleMode(): ScaleMode { +// /** +// * 返回的renderView的比例模式是有要求的 +// * 1)鱼眼:ScaleMode.Fill (全铺满, 1:1) +// * 2)其它IPC且竖屏下:ScaleMode.AspectFit (自适应居中, 16:9) +// * 3)横屏下:ScaleMode.Fill (全铺满) +// * 4)走廊模式处于90°或者270°翻转时:ScaleMode.AspectFit (自适应居中, 16:9) +// */ +// return if (playerManager?.isCorridorRotateClockWise==true) { +// ScaleMode.AspectFit +// } else if (playerManager?.deviceBean?.isSupportFishEye == true || isLandscape()) { +// ScaleMode.Fill +// } else { +// ScaleMode.AspectFit +// } +// } +// +// override fun onGetDisplayRatio(): Float { +// /** +// * 宽高比例 +// * 鱼眼:1:1 走廊模式:9:16 其它设备:16:9 +// */ +// return when { +// playerManager?.deviceBean?.isSupportFishEye == true -> { +// SMBCloudSDKConstants.DisplayRatio.PLAYER_DISPLAY_RATIO_1_1 +// } +// playerManager?.isCorridorRotateClockWise == true -> { +// SMBCloudSDKConstants.DisplayRatio.PLAYER_DISPLAY_RATIO_9_16 +// } +// else -> { +// SMBCloudSDKConstants.DisplayRatio.PLAYER_DISPLAY_RATIO_16_9 +// } +// } +// } +// +// override fun onGetVerticalOffset(): Int { +// /** +// * 由于该页面的竖屏实现了沉浸式,预览画面(鱼眼设备除外)占据了状态栏的空间。因此需要设置偏移量 +// */ +// return if (isLandscape() || playerManager?.deviceBean?.isSupportFishEye == true) 0 else { +// TPScreenUtil.getStatusBarHeight(applicationContext) / 2 * -1 +// } +// } +// +// override fun isHandleTouchEvent(): Boolean { +// /** +// * 是否实现双击缩放和两指缩放功能,默认是true,即sdk内部会实现缩放 +// */ +// return true +// } +// } +// /** +// * PlayStatusCallback回调(可选) +// */ +// playerManager?.playStatusCallback = object : VMSPlayerManager.PlayStatusCallback { +// /** +// * 当前播放状态的回调:加载中、加载成功、停止、终止、加载失败(可选) +// */ +// override fun onStatusChange(playerAllStatus: PlayerAllStatus) { +// // 处理播放器回调 +// when (playerAllStatus.channelStatus) { +// SMBCloudSDKConstants.PlayerStatus.wakeup -> { +// // 低功耗唤醒的回调:仅低功耗使用。如果是普通IPC,可以自行忽略该处理 +// preview_playerStatus_loading_tv?.isVisible = false +// preview_playerStatus_wakeup_layout?.isVisible = true +// val remainTimeStr = "大约还需要${playerAllStatus.wakeUpRemainTime}秒" +// preview_playerStatus_wakeUpRemainTime_tv?.text = remainTimeStr +// } +// SMBCloudSDKConstants.PlayerStatus.loading -> { +// // 加载中 +// playerShowLoading(playerAllStatus.loadingProgress.toInt()) +// } +// SMBCloudSDKConstants.PlayerStatus.playing -> { +// // 播放成功 +// playerDismissLoading(true, "") +// } +// SMBCloudSDKConstants.PlayerStatus.paused -> { +// // 暂停 +// playerDismissLoading(true, "") +// } +// SMBCloudSDKConstants.PlayerStatus.authFail -> { +// // 未输入设备密码,或者 设备密码输入错误,需要重新输入密码 +// showInputPwdDialog(playerAllStatus.channelFinishReason) +// val errorCodeText = playerManager?.getPlayerFinishMessage(playerAllStatus.channelFinishReason) +// if (errorCodeText != null) { +// playerDismissLoading(false, errorCodeText) +// } +// } +// else -> { +// // 播放失败,getPlayerFinishMessage获取播放失败的信息 +// val errorCodeText = playerManager?.getPlayerFinishMessage(playerAllStatus.channelFinishReason) +// if (errorCodeText != null) { +// playerDismissLoading(false, errorCodeText) +// } +// } +// } +// // 更新操作栏状态:如云台、调焦、清晰度、暂停等按钮 +// updateStatusView(playerAllStatus) +// } +// +// override fun onPlayTimeUpdate(progressTime: Long) { +// /** +// * 播放器加载成功后,每间隔一秒返回的当前时刻(可选) +// * 一般而言,非鱼眼IPC原始画面都有时间刻度,这个回调值用不上。 +// * 只有鱼眼IPC原始画面无时间刻度,可用该值加载出来时间 +// */ +// if (playerManager?.deviceBean?.isSupportFishEye == true) { +// // 私有云没有osd信息,因此这里是只展示公有云 +// preview_fishEye_osd_tv.isVisible = SMBCloudSDKContext.selectServer == SelectServer.PUBLIC +// preview_fishEye_osd_tv.text = getTimeStringFromUTCLong(progressTime) +// } +// } +// +// override fun onQualityChange(quality: Int) { +// // 清晰度回调:播放成功后当前清晰度 和 切换清晰度后的回调(可选) +// updateQualityView(quality) +// } +// +// override fun onVolumeChange(enable: Boolean) { +// // 切换静音的回调:播放成功后当前声音开关 和 切换静音开关后的回调(仅切换静音时用到)(可选) +// preview_setVolume_btn?.text = if (enable) "声音:开" else "声音:关" +// } +// +// override fun onGetDeviceInfo(errorCode: Int) { +// // 请求设备能力集信息,用于判断设备是否支持云台、调焦、鱼眼模式等操作,以及设备是否在线(可选) +// if (SMBCloudSDKContext.isRequestSuccess(errorCode)) { +// playerManager?.getPlayerStatus()?.let { updateStatusView(it) } +// } +// } +// } +// } +// +// private fun initView() { +// preview_title_bar.apply { +// updateBackgroundResource(R.drawable.shape_title_bar_light) +// updateLayoutParams { +// topMargin = if (isFitSystemWindows()) 0 else TPScreenUtil.getStatusBarHeight(context) +// } +// updateLeftImage(R.drawable.tpfoundation_back_dark) { +// onBackPressed() +// } +// updateDividerVisibility(View.GONE) +// updateCenterText(devName, ContextCompat.getColor(context, R.color.white)) +// updateRightText("设置", ContextCompat.getColor(context, R.color.white)) { +//// startDeviceInfoMainActivity(this@PreviewActivity, devId, devName) +// } +// } +// preview_orientaion_btn.setOnClickListener { +// // 切换横竖屏 +// requestedOrientation = if (isLandscape()) { +// ActivityInfo.SCREEN_ORIENTATION_PORTRAIT +// } else { +// ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE +// } +// } +// preview_snapshot_btn?.setOnClickListener { +// // 截图 +// snapShot() +// } +// preview_preset_snapshot_btn?.setOnClickListener { +// // 预置点截图(截图当前画面) +// presetSnapshot() +// } +// preview_record_btn?.setOnClickListener { +// // 录像 +// record() +// } +// preview_waterMark_btn?.setOnClickListener { +// // 添加水印 +// setWaterMarkView() +// } +// preview_playerStatus_retry_btn.setOnClickListener { +// // 重新播放,建议调用init方法 +// playerManager?.init(devId) { +// playerManager?.restartPreview() +// } +// } +// preview_setVolume_btn?.setOnClickListener { +// // 切换静音 +// toggleVolume() +// } +// preview_toggle_btn?.setOnClickListener { +// // 播放/暂停 +// resumeOrPause() +// } +// preview_quality_btn?.setOnClickListener { +// // 切换清晰度 +// changeQuality() +// } +// preview_ptzMotor_btn?.setOnClickListener { +// // 云台操作 +// showPTZMotorFragment() +// } +// preview_manualAlarm_btn?.setOnClickListener { +// // 开启/关闭手动报警 +// startOrStopManualAlarm() +// } +// preview_rotateFlip_btn?.setOnClickListener { +// // 画面翻转操作 +// showSceneFlipFragment() +// } +// preview_zoom_btn?.setOnClickListener { +// // 调焦操作 +// showZoomFragment() +// } +// preview_goToPlayback_btn?.setOnClickListener { +// // 跳转回放页 +//// PlaybackActivity.startPlaybackActivity(this, devId) +// } +// preview_fishEyeMode_btn?.setOnClickListener { +// // 切换鱼眼模式 +// showFishEyeDisplayModeFragment() +// } +// preview_talkSpeak_btn?.setOnClickListener { +// // 对讲 +// requestAudioPermission { hasPermission: Boolean -> +// if (hasPermission.not()) { +// showToast("无麦克风权限,无法对讲") +// return@requestAudioPermission +// } +// showDeviceTalkFragment() +// } +// } +// } +// +// override fun onResume() { +// super.onResume() +// // 开始预览 (startPreview跟stop相对,resume跟pause相对) +// playerManager?.restartPreview() +//// playerManager.resume() +// } +// +// override fun onPause() { +// super.onPause() +// // 停止播放 +//// playerManager.pause() +// playerManager?.stop() +// } +// +// override fun onDestroy() { +// super.onDestroy() +// // 退出页面,要及时释放资源 +// playerManager?.release() +// snapShotRecordHandler.removeCallbacks(snapShotRecordRunnable) +// manualAlarmHandler.removeCallbacks(manualAlarmRunnable) +// } +// +// private fun playerShowLoading(loadingProgress: Int) { +// // 加载中 +// preview_video_viewHolder.isVisible = false +// preview_playerStatus_retry_layout.isVisible = false +// preview_playerStatus_loading_tv.isVisible = true +// preview_playerStatus_loading_tv.text = getString(R.string.preview_loading_tips, loadingProgress) +// preview_playerStatus_wakeup_layout?.isVisible = false +// } +// +// private fun playerDismissLoading(success: Boolean, errorCodeText: String) { +// preview_playerStatus_loading_tv.isVisible = false +// preview_playerStatus_wakeup_layout?.isVisible = false +// if (success) { +// // 加载成功 +// preview_video_viewHolder.isVisible = true +// preview_playerStatus_retry_layout.isVisible = false +// } else { +// // 加载失败 +// preview_video_viewHolder.isVisible = false +// preview_playerStatus_retry_layout.isVisible = true +// preview_playerStatus_failTips_tv.text = errorCodeText +// } +// } +// +// /*** +// * 根据播放器加载状态,更新操作栏的置灰状态。 +// * 一般而言:我们会默认加载成功后,才让各个操作按钮可操作。 +// * 但不代表必须预览成功才能操作。只要设备在线,都可以操作。但是设备掉线,肯定无法操作 +// */ +// private fun updateStatusView(playerAllStatus: PlayerAllStatus) { +// val loadingSuccess = playerAllStatus.isPlaying() +// /** +// * 通用功能:清晰度切换、开启/停止、静音切换、截图、录像、鱼眼模式切换 +// */ +// preview_quality_btn?.apply { +// // 更新清晰度值 (加载失败,也可以切换清晰度) +// updateQualityView(playerAllStatus.quality) +// } +// preview_toggle_btn?.apply { +// isViewEnable(playerAllStatus.isPlaying() || playerAllStatus.isPaused()) +// // 更新播放器播放状态:暂停/继续播 +// updateResumePauseView(playerAllStatus.isPaused()) +// } +// preview_snapshot_btn?.isViewEnable(loadingSuccess) +// preview_record_btn?.isViewEnable(loadingSuccess) +// preview_preset_snapshot_btn?.isViewEnable(loadingSuccess) +// preview_waterMark_btn?.isViewEnable(loadingSuccess) +// preview_fishEye_osd_tv.isVisible = +// loadingSuccess && playerManager?.deviceBean?.isSupportFishEye == true && SMBCloudSDKContext.selectServer == SelectServer.PUBLIC +// /** +// * 预览特有功能:跟设备能力集以及在线状态有关,需要请求devReqGetDeviceInfo后判断 +// */ +// val deviceInfoBean = SMBCloudSDKContext.devGetDeviceInfoBean(devId, true) +// preview_setVolume_btn?.apply { +// isViewEnable(loadingSuccess) +// isVisible = deviceInfoBean.isSupportSound +// // 更新音量状态 +// updateVolumeView(playerAllStatus.playVolume > 0) +// } +// // 加载成功,更新置灰状态isEnabled 设备支持与否,更新可见性isVisible(同下) +// preview_ptzMotor_btn?.apply { +// // 云台 +// isViewEnable(loadingSuccess) +// isVisible = deviceInfoBean.isDeviceSupportPTZOrMotor +// } +// preview_manualAlarm_btn?.apply { +// // 手动报警 +// isViewEnable(loadingSuccess) +// isVisible = deviceInfoBean.moduleSpec.isSupportManualAlarm +// } +// preview_rotateFlip_btn?.apply { +// // 画面翻转 +// isViewEnable(loadingSuccess) +// isVisible = deviceInfoBean.isSupportSceneFlip +// } +// preview_talkSpeak_btn?.apply { +// // 对讲 +// isViewEnable(loadingSuccess) +// isVisible = deviceInfoBean.isDeviceSupportSpeech || deviceInfoBean.isParentDeviceSupportSpeech +// } +// preview_zoom_btn?.apply { +// // 调焦 +// isViewEnable(loadingSuccess) +// isVisible = deviceInfoBean.isSupportSwitchZoomMultiple || deviceInfoBean.isSupportZoom +// } +// preview_cameraCover_btn?.apply { +// // 镜头遮蔽 todo +// isViewEnable(loadingSuccess) +// isVisible = false +// } +// preview_fishEyeMode_btn?.apply { +// // 鱼眼模式切换 +// isViewEnable(loadingSuccess) +// isVisible = playerManager?.deviceBean?.isSupportFishEye == true || deviceInfoBean.moduleSpec.isSupportFishEye +// } +// } +// +// /** +// * 切换静音示例 +// */ +// private fun toggleVolume() { +// val playerAllStatus = playerManager?.getPlayerStatus() +// if (playerAllStatus?.playVolume!! > 0) { +// playerManager?.changeVolume(false) +// } else { +// playerManager?.changeVolume(true) +// } +// // 切换成功后,playStatusCallback.onVolumeChange接口会回调,在回调处更新UI即可 +// } +// +// private fun updateVolumeView(enable: Boolean) { +// preview_setVolume_btn?.text = if (enable) "声音:开" else "声音:关" +// } +// +// /** +// * 暂停/播放示例 +// */ +// private fun resumeOrPause() { +// val playerAllStatus = playerManager?.getPlayerStatus() +// if (playerAllStatus?.isPlaying() == true) { +// playerManager?.pause() +// } else if (playerAllStatus?.isPaused() == true) { +// playerManager?.resume() +// } +// playerAllStatus?.isPaused()?.let { updateResumePauseView(it) } +// // 是否好奇为什么这里不需要回调?其实早已经有回调处理 +// // 切换播放器暂停和继续播放后,onPlayStatusChange回调会返回最新的播放器状态,updateStatusView中已处理更新的状态 +// } +// +// private fun updateResumePauseView(isPause: Boolean) { +// preview_toggle_btn?.text = if (isPause) "暂停" else "播放" +// } +// +// /*** +// * 清晰度切换示例 +// */ +// private fun changeQuality() { +// val playerAllStatus = playerManager?.getPlayerStatus() +// when (playerAllStatus?.quality) { +// Resolution.VGA.value -> { +// // 当前清晰度为:标清。切换到高清 +// playerManager?.changeQuality(Resolution.HD) +// } +// Resolution.HD.value -> { +// // 当前清晰度为:高清。切换到标清 +// playerManager?.changeQuality(Resolution.VGA) +// } +// else -> { +// showToast("暂无不支持第三码流") +// } +// } +// // 切换成功后,playStatusCallback.onQualityChange接口会回调,在回调处更新UI即可 +// } +// +// private fun updateQualityView(quality: Int) { +// val qualityText = when (quality) { +// Resolution.VGA.value -> "标清" +// Resolution.HD.value -> "超清" +// Resolution.THIRD.value -> "第三码流" +// else -> "" +// } +// preview_quality_btn?.text = qualityText +// } +// +// /*** +// * 截图示例 +// */ +// private fun snapShot() { +// // 保存图片/录像到手机相册,需要申请存储权限 +// requestStoragePermission { hasPermission -> +// if (hasPermission.not()) { +// showToast("无存储权限") +// return@requestStoragePermission +// } +// // 截图,格式是JPG +// val filePath = generateFilePath(SMBCloudSDKConstants.FILE_TYPE_JPG) +// playerManager?.snapShot(filePath, object : VMSPlayerManager.SnapShotCallback { +// override fun onSnapShot(errorCode: Int, url: String) { +// if (SMBCloudSDKContext.isRequestSuccess(errorCode)) { +// // 显示快照 +// preview_snapshotRecord_src_iv?.apply { +// isVisible = true +// scaleType = if (playerManager?.deviceBean?.isSupportFishEye == true) { +// ImageView.ScaleType.FIT_CENTER +// } else { +// ImageView.ScaleType.FIT_XY +// } +// TPGlideUtils.loadImageWithOutCache(this, url) +// } +// //创建的文件是手机相册里的,因此通知系统相册扫描保存的图片 +// MediaScannerConnection.scanFile(this@PreviewActivity, arrayOf(url), null, null) +// // 两秒后,自动消失 +// snapShotRecordHandler.removeCallbacks(snapShotRecordRunnable) +// snapShotRecordHandler.postDelayed(snapShotRecordRunnable, 2000) +// } else { +// // 截图失败,提示错误信息 +// File(filePath).delete() +// showToast(SMBCloudSDKConstants.getSnapshotFinishReason(errorCode)) +// } +// } +// }) +// } +// } +// +// private val snapShotRecordHandler: Handler = Handler(Looper.getMainLooper()) +// private val snapShotRecordRunnable = Runnable { +// arrayOf(preview_presetSnapshot_src_iv, preview_snapshotRecord_src_iv).forEach { +// it?.isVisible = false +// } +// } +// +// /** +// * 录像示例 +// */ +// private fun record() { +// // 设置录像回调 +// playerManager?.recordCallback = recordCallback +// // 保存图片/录像到手机相册,需要申请存储权限 +// requestStoragePermission { hasPermission -> +// if (hasPermission.not()) { +// showToast("无存储权限") +// return@requestStoragePermission +// } +// if (playerManager?.isRecording() == true) { +// // 停止录像 +// playerManager?.stopRecord() +// } else { +// // 开始录像 格式是MP4 +// val filePath = generateFilePath(SMBCloudSDKConstants.FILE_TYPE_MP4) +// playerManager?.startRecord(filePath) +// } +// } +// } +// +// private val recordCallback = object : VMSPlayerManager.RecordCallback { +// override fun onRecording(duration: Long) { +// preview_record_time_iv?.isVisible = true +// preview_record_time_iv?.text = formatTimeToString(duration) +// } +// +// override fun onFinish(errorCode: Int, url: String) { +// preview_record_time_iv?.isVisible = false +// if (SMBCloudSDKContext.isRequestSuccess(errorCode)) { +// // 显示快照 +// preview_snapshotRecord_src_iv?.apply { +// isVisible = true +// scaleType = if (playerManager?.deviceBean?.isSupportFishEye == true) { +// ImageView.ScaleType.FIT_CENTER +// } else { +// ImageView.ScaleType.FIT_XY +// } +// TPGlideUtils.loadImageWithOutCache(this, url) +// } +// //创建的文件是手机相册里的,因此通知系统相册扫描保存的图片 +// MediaScannerConnection.scanFile(this@PreviewActivity, arrayOf(url), null, null) +// // 两秒后,自动消失 +// snapShotRecordHandler.removeCallbacks(snapShotRecordRunnable) +// snapShotRecordHandler.postDelayed(snapShotRecordRunnable, 2000) +// } else { +// // 录像失败,提示错误信息 +// File(url).delete() +// showToast(SMBCloudSDKConstants.getRecordFinishReason(errorCode)) +// } +// } +// } +// +// /*** +// * 预置点截图示例:所谓预置点截图,获取当前放大画面的截图。而普通的截图功能,即便放大后截图也是正常比例的画面。 +// */ +// private fun presetSnapshot() { +// requestStoragePermission { hasPermission -> +// if (hasPermission.not()) { +// showToast("无存储权限") +// return@requestStoragePermission +// } +// // 截图,格式是JPG +// val filePath = generateFilePath(SMBCloudSDKConstants.FILE_TYPE_JPG) +// playerManager?.presetSnapshot(filePath, object : VMSPlayerManager.SnapShotCallback { +// override fun onSnapShot(errorCode: Int, url: String) { +// if (SMBCloudSDKContext.isRequestSuccess(errorCode)) { +// // 显示快照 +// preview_presetSnapshot_src_iv?.apply { +// isVisible = true +// scaleType = ImageView.ScaleType.FIT_CENTER +// TPGlideUtils.loadImageWithOutCache(this, url) +// } +// //创建的文件是手机相册里的,因此通知系统相册扫描保存的图片 +// MediaScannerConnection.scanFile(this@PreviewActivity, arrayOf(url), null, null) +// // 两秒后,自动消失 +// snapShotRecordHandler.removeCallbacks(snapShotRecordRunnable) +// snapShotRecordHandler.postDelayed(snapShotRecordRunnable, 2000) +// } else { +// // 截图失败,提示错误信息 +// File(filePath).delete() +// showToast(SMBCloudSDKConstants.getSnapshotFinishReason(errorCode)) +// } +// } +// }) +// } +// } +// +// /** +// * 添加水印代码示例 +// */ +// private fun setWaterMarkView() { +//// val waterMarkInfo = playerManager?.waterMarkInfo +//// showOperationDetailLayout(true) +//// val fragmentManager = supportFragmentManager +//// val bt = fragmentManager.beginTransaction() +//// val fragment = +//// fragmentManager.findFragmentByTag(WaterMarkViewFragment.tag) ?: WaterMarkViewFragment.newInstance( +//// waterMarkInfo +//// ).also { +//// it.listener = object : WaterMarkViewFragment.WaterMarkViewListener { +//// override fun onConfirm(waterMarkInfo: TPWatermarkView.WaterMarkInfo) { +//// // 设置水印信息 +//// playerManager?.waterMarkInfo = waterMarkInfo +//// } +//// } +//// } +//// bt.replace(R.id.preview_operation_detail_layout, fragment) +//// bt.commit() +// } +// +// /** +// * 云台示例 +// * (这里只加载云台的Fragment,具体代码示例请 进入 DevicePTZMotorFragment查看) +// * 事实上,我们已经将云台的接口封装好,交给IPTZMotorManager去处理,只需要传入devId即可。将大大优化您对我们sdk接口的使用 +// * 再上升一层,我们sdk的所有复杂接口,一律都通过Manager管理器的形式对外提供,我们的宗旨是给客户带去福音 +// */ +// private fun showPTZMotorFragment() { +//// showOperationDetailLayout(true) +//// val fragmentManager = supportFragmentManager +//// val bt = fragmentManager.beginTransaction() +//// val fragment = +//// fragmentManager.findFragmentByTag(DevicePTZMotorFragment.tag) ?: DevicePTZMotorFragment.newInstance( +//// devId, +//// null +//// ) +//// bt.replace(R.id.preview_operation_detail_layout, fragment) +//// bt.commit() +// } +// +// /** +// * 手动报警示例 +// */ +// private var lastManualAlarmTime: Long = 0 // 单位:s +// private var countDownTime: Int = 0 // 单位:s +// private var isAlarming: Boolean = false +// private val manualAlarmHandler = Handler(Looper.getMainLooper()) +// private val manualAlarmRunnable: Runnable = object : Runnable { +// override fun run() { +// val duration = System.currentTimeMillis() / 1000 - lastManualAlarmTime +// if (lastManualAlarmTime != 0L && duration <= countDownTime) { +// val remainTime = countDownTime - duration +// preview_manualAlarm_btn?.text = "$remainTime" +// preview_manualAlarm_btn?.setTextColor( +// ContextCompat.getColor(this@PreviewActivity, R.color.text_red) +// ) +// manualAlarmHandler.postDelayed(this, 1000) +// } else { +// preview_manualAlarm_btn?.text = getString(R.string.preview_manual_alarm) +// preview_manualAlarm_btn?.setTextColor( +// ContextCompat.getColor(this@PreviewActivity, R.color.black_80) +// ) +// manualAlarmHandler.removeCallbacks(this) +// } +// } +// } +// +// private fun startOrStopManualAlarm() { +// isAlarming = !isAlarming +// if (isAlarming) { +// // 开启手动报警 +// SMBCloudSDKContext.devReqStartDoManualAlarm( +// SMBCloudSDKContext.getLifecycleScope(this), +// SMBCloudSDKContext.devGetDeviceInfoBean(devId, true) +// ) { +// if (SMBCloudSDKContext.isRequestSuccess(it.first)) { +// lastManualAlarmTime = System.currentTimeMillis() / 1000 +// countDownTime = it.second +// manualAlarmHandler.post(manualAlarmRunnable) +// } else { +// showToast(SMBCloudSDKContext.getErrorCodeMessage(it.first)) +// } +// } +// } else { +// // 关闭手动报警 +// SMBCloudSDKContext.devReqStopDoManualAlarm( +// SMBCloudSDKContext.getLifecycleScope(this), +// SMBCloudSDKContext.devGetDeviceInfoBean(devId, true) +// ) { errorCode -> +// if (SMBCloudSDKContext.isRequestSuccess(errorCode)) { +// manualAlarmHandler.removeCallbacks(manualAlarmRunnable) +// preview_manualAlarm_btn?.text = getString(R.string.preview_manual_alarm) +// preview_manualAlarm_btn?.setTextColor( +// ContextCompat.getColor(this@PreviewActivity, R.color.black_80) +// ) +// } else { +// showToast(SMBCloudSDKContext.getErrorCodeMessage(errorCode)) +// } +// } +// } +// } +// +// /** +// * 画面翻转示例 +// */ +// private fun showSceneFlipFragment() { +//// showOperationDetailLayout(true) +//// val fragmentManager = supportFragmentManager +//// val bt = fragmentManager.beginTransaction() +//// val fragment = +//// fragmentManager.findFragmentByTag(SceneFlipFragment.tag) ?: SceneFlipFragment.newInstance(devId).also { +//// it.sceneFlipCallback = object : SceneFlipFragment.SceneFlipCallback { +//// override fun onChangeFlipType(switchType: Int) { +//// // 画面翻转更新后,如果是走廊模式,且翻转为90°或者180°,需要重新更新宽高比例 +//// playerManager?.updateCorridorRotateClockWise(switchType) +//// } +//// } +//// } +//// bt.replace(R.id.preview_operation_detail_layout, fragment) +//// bt.commit() +// } +// +// /** +// * 调焦示例 +// */ +// private fun showZoomFragment() { +//// showOperationDetailLayout(true) +//// val fragmentManager = supportFragmentManager +//// val bt = fragmentManager.beginTransaction() +//// val fragment = +//// fragmentManager.findFragmentByTag(ZoomFragment.tag) ?: ZoomFragment.newInstance(devId) +//// bt.replace(R.id.preview_operation_detail_layout, fragment) +//// bt.commit() +// } +// +// /** +// * 鱼眼模式UI展示:这里用FishEyeDisplayModeFragment显示支持的所有鱼眼模式,里面只有UI。接口看setDisplayMode和getDisplayMode即可 +// */ +// private fun showFishEyeDisplayModeFragment() { +// showOperationDetailLayout(true) +//// val fragmentManager = supportFragmentManager +//// val bt = fragmentManager.beginTransaction() +//// val fragment = +//// fragmentManager.findFragmentByTag(FishEyeDisplayModeFragment.displayModeTag) +//// ?: FishEyeDisplayModeFragment.newInstance(devId).also { +//// it.fishEyeModeSelectListener = object : FishEyeDisplayModeFragment.FishEyeModeSelectListener { +//// override fun onSelectDisplayMode(displayMode: DisplayMode) { +//// // 切换鱼眼模式 +//// playerManager?.setDisplayMode(displayMode) +//// } +//// +//// override fun getCurrentDisplayMode(): DisplayMode { +//// // 获取当前的鱼眼模式 +//// return playerManager?.displayMode +//// } +//// } +//// } +//// bt.replace(R.id.preview_operation_detail_layout, fragment) +//// bt.commit() +// } +// +// /** +// * 对讲UI展示(具体接口如下:startTalk startSpeak stopSpeak) +// */ +// private fun showDeviceTalkFragment() { +// showOperationDetailLayout(true) +//// val fragmentManager = supportFragmentManager +//// val bt = fragmentManager.beginTransaction() +//// val fragment = +//// fragmentManager.findFragmentByTag(DeviceTalkFragment.tag) ?: DeviceTalkFragment.newInstance( +//// devId, +//// playerManager?.talkMode.value +//// ).also { +//// it.listener = object : DeviceTalkFragment.AudioButtonListener { +//// override fun startTalkMode(talkMode: TalkMode, isNVRTalk: Boolean) { +//// // 先连接对讲 isNVRTalk: 是否为NVR对讲。默认是摄像机对讲 +//// playerManager?.startTalk(talkMode, isNVRTalk) +//// } +//// +//// override fun startSpeak() { +//// // 连接成功,开始讲话(仅对讲,电话不需要调用这个,电话连接成功后即可讲话) +//// playerManager?.startSpeak() +//// } +//// +//// override fun stopSpeak() { +//// // 松手,停止讲话(仅对讲,电话不需要调用这个,电话连接成功后即可讲话) +//// playerManager?.stopSpeak() +//// } +//// +//// override fun onFinish() { +//// // 断开连接.并退出页面 +//// playerManager?.stopTalk() +//// playerManager?.talkStatusCallback = null +//// showOperationDetailLayout(false) +//// } +//// } +//// } +//// if (fragment is VMSPlayerManager.TalkStatusCallback) { +//// // 设置对讲的回调监听 +//// playerManager?.talkStatusCallback = fragment +//// } +//// bt.replace(R.id.preview_operation_detail_layout, fragment) +//// bt.commit() +// } +// +// private fun showOperationDetailLayout(show: Boolean) { +// if (show) { +// preview_operation_layout?.isVisible = false +// preview_operation_detail_layout?.isVisible = true +// } else { +// preview_operation_layout?.isVisible = true +// preview_operation_detail_layout?.isVisible = false +// preview_operation_detail_layout?.removeAllViews() +// } +// } +// +// /*** +// * 设备密码校验 +// */ +// private fun showInputPwdDialog(finishReason: Int) { +// // 设备密码校验。当输入的设备密码跟实际有出入时,会弹窗提示 +// val helpText = if (playerManager?.deviceBean?.isSupportMediaEncrypt == true) { +// if (finishReason == BizMediaFinishReason.Authentication) { +// "视频已加密,输入密码后即可查看。" +// } else { +// "设备密码已修改,请输入新密码。" +// } +// } else { +// "设备密码已修改,请输入新密码。" +// } +// val dialog = CommonWithPicEditTextDialog.newInstance( +// getString(R.string.video_auth_dialog_title), +// true, false, +// CommonWithPicEditTextDialog.DIALOG_TYPE_DEVICE_PASSWORD, +// getString(R.string.video_auth_dialog_title), +// helpText, false, this@PreviewActivity +// ) +// dialog.setOnClickListener { view -> +// val password = dialog.editText.text +// showLoading("") +// playerManager?.devReqAuthenticate(password) { errorCode -> +// dismissLoading() +// if (SMBCloudSDKContext.isRequestSuccess(errorCode)) { +// view.dismiss() +// // 校验成功,重新预览 +// playerManager?.restartPreview() +// } else { +// showToast(SMBCloudSDKContext.getErrorCodeMessage(errorCode)) +// } +// } +// }.show(supportFragmentManager, TAG) +// } +// +// /** +// * 沉浸式实现 +// */ +// override fun isFitSystemWindows(): Boolean { +// return false +// } +// +// override fun statusBarColor(): Int { +// return R.color.black_40 +// } +// +// override fun needDarkFont(): Boolean { +// return false +// } +// +// override fun navigationBarColor(): Int { +// return R.color.black +// } +// +// override fun onBackPressed() { +// when { +// isLandscape() -> { +// requestedOrientation = ActivityInfo.SCREEN_ORIENTATION_PORTRAIT +// } +// preview_operation_detail_layout?.isVisible == true -> { +// showOperationDetailLayout(false) +// } +// else -> { +// super.onBackPressed() +// } +// } +// } +//} +// +///** +// * 创建存储截图录像的文件,postFix可以是:jpg,mp4分别代表截图 和 录像 的格式 +// */ +//fun generateFilePath(postFix: String): String { +// val context = SMBCloudSDKContext.getContext() +// val fileDir = +// Environment.getExternalStorageDirectory().absolutePath + File.separator + Environment.DIRECTORY_DCIM + File.separator + context.getString( +// R.string.app_name +// ) +// SMBCloudSDKCommonUtils.createDir(fileDir) +// val targetFileName = System.currentTimeMillis().toString() + postFix +// SMBCloudSDKCommonUtils.createFileIfNotExist(fileDir, targetFileName) +// return fileDir + File.separator + targetFileName +//} +// +//fun formatTimeToString(time: Long): String { +// val hour = (time / 3600).toInt() +// val minute = (time % 3600 / 60).toInt() +// val second = (time % 60).toInt() +// return String.format("%02d:%02d:%02d", hour, minute, second) +//} +// +//fun View?.isViewEnable(enable: Boolean) { +// this?.isEnabled = enable +// this?.alpha = if (enable) 1f else 0.5f +//} +// +///** +// * 保存图片/录像到手机相册,需要申请存储权限 +// */ +//fun AppCompatActivity.requestStoragePermission(callback: (hasPermission: Boolean) -> Unit) { +// if (PermissionsUtils.hasPermissions( +// this, Manifest.permission.READ_EXTERNAL_STORAGE, +// Manifest.permission.WRITE_EXTERNAL_STORAGE +// ) +// ) { +// callback(true) +// } else { +// PermissionsUtils.requestPermission(this, object : PermissionsUtils.PermissionListener { +// override fun onPermissionDenied(permissions: MutableList?, alwaysDenied: Boolean) { +// callback(false) +// } +// +// override fun onPermissionGranted(permissions: MutableList?) { +// // 第一次授予存储权限,会弹窗,进而触发Activity的onPause(),预览画面停止,截图/录像失败。 +// // 所以这里弹窗授予成功后,仅提示,不立即回调callback进行截图/录像操作 +// TipsDialog.newInstance("存储权限已授予,您可以开始将截图/录像的资源保存到手机系统相册中", "", false, false) +// .addButton(TipsDialog.BUTTON_CONFIRM, "好的") +// .setOnClickListener { _, view -> +// view.dismiss() +// }.show(supportFragmentManager) +// } +// }, Manifest.permission.READ_EXTERNAL_STORAGE, Manifest.permission.WRITE_EXTERNAL_STORAGE) +// } +//} +// +///** +// * 对讲需要申请音频权限 +// */ +//fun Activity.requestAudioPermission(callback: (hasPermission: Boolean) -> Unit) { +// if (PermissionsUtils.hasPermissions(this, Manifest.permission.RECORD_AUDIO)) { +// callback(true) +// } else { +// PermissionsUtils.requestPermission(this, object : PermissionsUtils.PermissionListener { +// override fun onPermissionDenied(permissions: MutableList?, alwaysDenied: Boolean) { +// callback(false) +// } +// +// override fun onPermissionGranted(permissions: MutableList?) { +// callback(true) +// } +// }, Manifest.permission.RECORD_AUDIO) +// } +//} +// +//fun getTimeStringFromUTCLong(playTime: Long): String { +// val dateFormat = TPTransformUtil.getSimpleDateFormatInGMT8("yyyy-MM-dd E HH:mm:ss") +// return TPTransformUtil.getTimeStringFromUTCLong(dateFormat, playTime).replace("周", "星期") +//} \ No newline at end of file diff --git a/mylibrary/src/main/java/com/cn/plugin_module/TestText.java b/mylibrary/src/main/java/com/cn/plugin_module/TestText.java new file mode 100644 index 0000000..7a875cc --- /dev/null +++ b/mylibrary/src/main/java/com/cn/plugin_module/TestText.java @@ -0,0 +1,67 @@ +package com.cn.plugin_module; + +import android.content.Context; +import android.graphics.Color; +import android.util.Log; +import android.widget.TextView; +import java.util.HashMap; +import java.util.Map; + +import io.dcloud.feature.uniapp.UniSDKInstance; +import io.dcloud.feature.uniapp.annotation.UniJSMethod; +import io.dcloud.feature.uniapp.ui.action.AbsComponentData; +import io.dcloud.feature.uniapp.ui.component.AbsVContainer; +import io.dcloud.feature.uniapp.ui.component.UniComponent; +import io.dcloud.feature.uniapp.ui.component.UniComponentProp; + +public class TestText extends UniComponent { + + public TestText(UniSDKInstance instance, AbsVContainer parent, AbsComponentData basicComponentData) { + super(instance, parent, basicComponentData); + + } + + @Override + protected TextView initComponentHostView(Context context) { + TextView textView = new TextView(context); + textView.setTextSize(20); + textView.setTextColor(Color.BLACK); + return textView; + } + + @UniComponentProp(name = "tel") + public void setTel(String telNumber) { + getHostView().setText("tel: " + telNumber); + Map params = new HashMap<>(); + // 直接传递 tel 到 detail 中 + // 确保直接传递 telNumber 到 detail + params.put("detail", telNumber); + Log.d("TestText", "传递的 telNumber: " + telNumber); + Log.d("TestText", "触发 onTel 事件,参数: " + params); + fireEvent("onTel", params); + } + // 检查方法绑定 + @UniJSMethod(uiThread = true) + public void setText( String text) { + getHostView().setText(text); + } + @UniJSMethod + public void clearTel() { + getHostView().setText(""); + } + + @Override + public void onActivityResume() { + super.onActivityResume(); + } + + @Override + public void onActivityPause() { + super.onActivityPause(); + } + + @Override + public void onActivityDestroy() { + super.onActivityDestroy(); + } +} diff --git a/mylibrary/src/main/java/com/cn/plugin_module/bean/UserInfoBean.kt b/mylibrary/src/main/java/com/cn/plugin_module/bean/UserInfoBean.kt new file mode 100644 index 0000000..0c73db6 --- /dev/null +++ b/mylibrary/src/main/java/com/cn/plugin_module/bean/UserInfoBean.kt @@ -0,0 +1,91 @@ +package com.cn.plugin_module.bean + +import com.tplink.smbcloudbizcommon.TPUtils.fromJson +import com.tplink.smbcloudbizcommon.TPUtils.toJson +import com.tplink.smbcloudsdk.bean.SelectServer +import com.tplink.smbcloudsdk.util.SMBCloudSDKCommonUtils +import com.tplink.smbcloudsdk.util.SMBCloudSDKStorageUtil + +/** + * Copyright (C), 2023, TP-LINK TECHNOLOGIES CO., LTD. + * + * @author liuyizhi + * @ClassName: UserInfoBean + * @Description: Version 1.0.0,2023/4/25, liuyizhi create file. + */ + +class PublicUserInfoBean( + val lastLoginTime: Long = 0L, + val userName: String = "", + val isSubAccount: Boolean = false, + val password: String = "", + val token: String = "", + val bizToken: String = "", + val stunUrl: String = "" +) + +class PrivateUserInfoBean( + val lastLoginTime: Long = 0L, + val userName: String = "", + val password: String = "", + val host: String = "", + val port: Int = 8888, + val token: String = "", + val isSupportV2: Boolean = false, + val authkey: String = "", + val authType: String = "" +) + +private const val SP_KEY_PUBLIC_USER_INFO = "sp_key_public_user_info" +private const val SP_KEY_PRIVATE_USER_INFO = "sp_key_private_user_info" +private const val SP_KEY_AUTO_LOGIN = "sp_key_auto_login" + +/********************* + * 保存token相关的缓存信息,这里保存到SP中。 + * 由于root过的手机 或者 debug版的APP 可以查看SharedPreference.xml下的token信息,出于安全考虑,需要加密处理 + * 加密方案:采用DES对称加密,这里用登录时缓存的UUID作为key生成密钥.同一台手机只会保存一个UUID,更换了手机或者卸载重装,则会重新生成UUID。 + * + * 此外:如果客户有更好的方案,可以另行设计 + ***********************/ + +fun getSPPublicUserInfo(): PublicUserInfoBean { + val defaultJson = SMBCloudSDKCommonUtils.desEncryptWithUUID("{}") + val userInfoBeanStr = SMBCloudSDKStorageUtil.getString(SP_KEY_PUBLIC_USER_INFO, defaultJson) ?: defaultJson + // 解密后的字符串 + val decryptUserInfoBeanStr = SMBCloudSDKCommonUtils.desDecryptWithUUID(userInfoBeanStr) + return fromJson(decryptUserInfoBeanStr, PublicUserInfoBean::class.java) ?: PublicUserInfoBean() +} + +fun updateSPPublicUserInfo(userInfoBean: PublicUserInfoBean?) { + val userInfoBeanStr = toJson(userInfoBean ?: PublicUserInfoBean()) ?: "" + // 加密后的字符串 + val encryptUserInfoBeanStr = SMBCloudSDKCommonUtils.desEncryptWithUUID(userInfoBeanStr) + SMBCloudSDKStorageUtil.putString(SP_KEY_PUBLIC_USER_INFO, encryptUserInfoBeanStr) +} + +fun getSPPrivateUserInfo(): PrivateUserInfoBean { + val defaultJson = SMBCloudSDKCommonUtils.desEncryptWithUUID("{}") + val userInfoBeanStr = SMBCloudSDKStorageUtil.getString(SP_KEY_PRIVATE_USER_INFO, defaultJson) ?: defaultJson + // 解密后的字符串 + val decryptUserInfoBeanStr = SMBCloudSDKCommonUtils.desDecryptWithUUID(userInfoBeanStr) + return fromJson(decryptUserInfoBeanStr, PrivateUserInfoBean::class.java) ?: PrivateUserInfoBean() +} + +fun updateSPPrivateUserInfo(userInfoBean: PrivateUserInfoBean?) { + val userInfoBeanStr = toJson(userInfoBean ?: PrivateUserInfoBean()) ?: "" + // 加密后的字符串 + val encryptUserInfoBeanStr = SMBCloudSDKCommonUtils.desEncryptWithUUID(userInfoBeanStr) + SMBCloudSDKStorageUtil.putString(SP_KEY_PRIVATE_USER_INFO, encryptUserInfoBeanStr) +} + +fun getSPAutoLoginType(): SelectServer { + return when (SMBCloudSDKStorageUtil.getString(SP_KEY_AUTO_LOGIN, "")) { + SelectServer.PUBLIC.name -> SelectServer.PUBLIC + SelectServer.PRIVATE.name -> SelectServer.PRIVATE + else -> SelectServer.INVALID + } +} + +fun setSPAutoLoginType(selectServer: SelectServer) { + return SMBCloudSDKStorageUtil.putString(SP_KEY_AUTO_LOGIN, selectServer.name) +} \ No newline at end of file diff --git a/mylibrary/src/main/java/com/cn/plugin_module/manager/PermissionManger.kt b/mylibrary/src/main/java/com/cn/plugin_module/manager/PermissionManger.kt new file mode 100644 index 0000000..573f4f6 --- /dev/null +++ b/mylibrary/src/main/java/com/cn/plugin_module/manager/PermissionManger.kt @@ -0,0 +1,21 @@ +package com.cn.plugin_module.manager + +import android.content.Context +import android.content.pm.PackageManager +import androidx.core.content.ContextCompat + +object PermissionManger { + /** + * 检查是否拥有某些权限 + * @param context 上下文 + * @param permissions 需要检查的权限列表 + * @return 如果所有权限都被授予则返回true,否则返回false + */ + fun hasPermissions(context: Context, permissions: Array): Boolean { + return permissions.all { + ContextCompat.checkSelfPermission(context, it) == PackageManager.PERMISSION_GRANTED + } + } + + +} \ No newline at end of file diff --git a/mylibrary/src/main/java/com/cn/plugin_module/utils/FileUtils.kt b/mylibrary/src/main/java/com/cn/plugin_module/utils/FileUtils.kt new file mode 100644 index 0000000..07494ef --- /dev/null +++ b/mylibrary/src/main/java/com/cn/plugin_module/utils/FileUtils.kt @@ -0,0 +1,19 @@ +package com.cn.plugin_module.utils + +import com.tplink.smbcloudsdk.SMBCloudSDKContext +import com.tplink.smbcloudsdk.util.SMBCloudSDKCommonUtils +import java.io.File + +object FileUtils { + /** + * 创建存储截图录像的文件,postFix可以是:jpg,mp4分别代表截图 和 录像 的格式 + */ + fun generateFilePath(postFix: String): String { + val context = SMBCloudSDKContext.getContext() + val fileDir = context?.getExternalFilesDir(null)?.absolutePath + SMBCloudSDKCommonUtils.createDir(fileDir) + val targetFileName = System.currentTimeMillis().toString() + postFix + SMBCloudSDKCommonUtils.createFileIfNotExist(fileDir, targetFileName) + return fileDir + File.separator + targetFileName + } +} \ No newline at end of file diff --git a/mylibrary/src/main/java/com/cn/plugin_module/utils/StorageUtils.kt b/mylibrary/src/main/java/com/cn/plugin_module/utils/StorageUtils.kt new file mode 100644 index 0000000..a8e57d3 --- /dev/null +++ b/mylibrary/src/main/java/com/cn/plugin_module/utils/StorageUtils.kt @@ -0,0 +1,78 @@ +package com.cn.plugin_module.utils + +import com.tplink.smbcloudsdk.SMBCloudSDKContext +import com.tplink.smbcloudsdk.bean.SelectServer +import com.tplink.smbcloudsdk.util.SMBCloudSDKCommonUtils +import com.tplink.smbcloudsdk.util.SMBCloudSDKStorageUtil + +/** + * Copyright (C), 2023, TP-LINK TECHNOLOGIES CO., LTD. + * + * @author liuyizhi + * @ClassName: StorageUtils.kt + * @Description: Version 1.0.0,2023/6/14, liuyizhi create file. + */ + +private const val SP_KEY_PUBLIC_PROJECT_ID = "sp_public_project_id" +private const val SP_KEY_PUBLIC_DEVICE_INFO_ID = "sp_public_device_info_id" +private const val SP_KEY_PUBLIC_DEVICE_INFO_NAME = "sp_public_device_info_name" + +private const val SP_KEY_PRIVATE_PROJECT_ID = "sp_private_project_id" +private const val SP_KEY_PRIVATE_DEVICE_INFO_ID = "sp_private_device_info_id" +private const val SP_KEY_PRIVATE_DEVICE_INFO_NAME = "sp_private_device_info_name" + +fun getSPDeviceInfoID(): String { + return (if (SMBCloudSDKContext.selectServer == SelectServer.PUBLIC) { + SMBCloudSDKStorageUtil.getString(SP_KEY_PUBLIC_DEVICE_INFO_ID, "") ?: "" + } else { + SMBCloudSDKStorageUtil.getString(SP_KEY_PRIVATE_DEVICE_INFO_ID, "") ?: "" + }).let { + // 解密后再返回 + SMBCloudSDKCommonUtils.desDecryptWithUUID(it) + } +} + +fun updateSPDeviceInfoID(devId: String) { + // deviceId比较重要,拿到就能预览,因此建议加密后再保持 + val encryptDevId = SMBCloudSDKCommonUtils.desEncryptWithUUID(devId) + if (SMBCloudSDKContext.selectServer == SelectServer.PUBLIC) { + SMBCloudSDKStorageUtil.putString(SP_KEY_PUBLIC_DEVICE_INFO_ID, encryptDevId) + } else { + SMBCloudSDKStorageUtil.putString(SP_KEY_PRIVATE_DEVICE_INFO_ID, encryptDevId) + } +} + +fun getSPDeviceInfoName(): String { + return if (SMBCloudSDKContext.selectServer == SelectServer.PUBLIC) { + SMBCloudSDKStorageUtil.getString(SP_KEY_PUBLIC_DEVICE_INFO_NAME, "") ?: "" + } else { + SMBCloudSDKStorageUtil.getString(SP_KEY_PRIVATE_DEVICE_INFO_NAME, "") ?: "" + } +} + +fun updateSPDeviceInfoName(devName: String) { + if (SMBCloudSDKContext.selectServer == SelectServer.PUBLIC) { + SMBCloudSDKStorageUtil.putString(SP_KEY_PUBLIC_DEVICE_INFO_NAME, devName) + } else { + SMBCloudSDKStorageUtil.putString(SP_KEY_PRIVATE_DEVICE_INFO_NAME, devName) + } +} + +fun getSPSelectProjectId(): String { + return (if (SMBCloudSDKContext.selectServer == SelectServer.PUBLIC) { + SMBCloudSDKStorageUtil.getString(SP_KEY_PUBLIC_PROJECT_ID, "") ?: "" + } else { + SMBCloudSDKStorageUtil.getString(SP_KEY_PRIVATE_PROJECT_ID, "") ?: "" + }).let { + SMBCloudSDKCommonUtils.desDecryptWithUUID(it) + } +} + +fun updateSPSelectProjectId(projectId: String) { + val encryptProjectId = SMBCloudSDKCommonUtils.desEncryptWithUUID(projectId) + if (SMBCloudSDKContext.selectServer == SelectServer.PUBLIC) { + SMBCloudSDKStorageUtil.putString(SP_KEY_PUBLIC_PROJECT_ID, encryptProjectId) + } else { + SMBCloudSDKStorageUtil.putString(SP_KEY_PRIVATE_PROJECT_ID, encryptProjectId) + } +} \ No newline at end of file diff --git a/mylibrary/src/main/res/drawable/selector_common_list_bg.xml b/mylibrary/src/main/res/drawable/selector_common_list_bg.xml new file mode 100644 index 0000000..1c1accc --- /dev/null +++ b/mylibrary/src/main/res/drawable/selector_common_list_bg.xml @@ -0,0 +1,21 @@ + + + + + + + + + + \ No newline at end of file diff --git a/mylibrary/src/main/res/drawable/shape_title_bar_light.xml b/mylibrary/src/main/res/drawable/shape_title_bar_light.xml new file mode 100644 index 0000000..5994752 --- /dev/null +++ b/mylibrary/src/main/res/drawable/shape_title_bar_light.xml @@ -0,0 +1,15 @@ + + + + + + + \ No newline at end of file diff --git a/mylibrary/src/main/res/drawable/tpfoundation_back_dark.png b/mylibrary/src/main/res/drawable/tpfoundation_back_dark.png new file mode 100644 index 0000000..c4b8455 Binary files /dev/null and b/mylibrary/src/main/res/drawable/tpfoundation_back_dark.png differ diff --git a/mylibrary/src/main/res/drawable/tpfoundation_back_dark_dis.png b/mylibrary/src/main/res/drawable/tpfoundation_back_dark_dis.png new file mode 100644 index 0000000..7180bbd Binary files /dev/null and b/mylibrary/src/main/res/drawable/tpfoundation_back_dark_dis.png differ diff --git a/mylibrary/src/main/res/drawable/tpfoundation_back_light.png b/mylibrary/src/main/res/drawable/tpfoundation_back_light.png new file mode 100644 index 0000000..d5bbd52 Binary files /dev/null and b/mylibrary/src/main/res/drawable/tpfoundation_back_light.png differ diff --git a/mylibrary/src/main/res/drawable/tpfoundation_back_light_dis.png b/mylibrary/src/main/res/drawable/tpfoundation_back_light_dis.png new file mode 100644 index 0000000..3ca6e3d Binary files /dev/null and b/mylibrary/src/main/res/drawable/tpfoundation_back_light_dis.png differ diff --git a/mylibrary/src/main/res/drawable/tpfoundation_red_dot.png b/mylibrary/src/main/res/drawable/tpfoundation_red_dot.png new file mode 100644 index 0000000..966ea30 Binary files /dev/null and b/mylibrary/src/main/res/drawable/tpfoundation_red_dot.png differ diff --git a/mylibrary/src/main/res/layout-land/activity_preview.xml b/mylibrary/src/main/res/layout-land/activity_preview.xml new file mode 100644 index 0000000..c6c32b7 --- /dev/null +++ b/mylibrary/src/main/res/layout-land/activity_preview.xml @@ -0,0 +1,139 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/mylibrary/src/main/res/layout/activity_map.xml b/mylibrary/src/main/res/layout/activity_map.xml new file mode 100644 index 0000000..07826e5 --- /dev/null +++ b/mylibrary/src/main/res/layout/activity_map.xml @@ -0,0 +1,16 @@ + + + + + \ No newline at end of file diff --git a/mylibrary/src/main/res/layout/activity_preview.xml b/mylibrary/src/main/res/layout/activity_preview.xml new file mode 100644 index 0000000..4ae6db7 --- /dev/null +++ b/mylibrary/src/main/res/layout/activity_preview.xml @@ -0,0 +1,412 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ] + \ No newline at end of file diff --git a/mylibrary/src/main/res/values/colors.xml b/mylibrary/src/main/res/values/colors.xml new file mode 100644 index 0000000..b394ff1 --- /dev/null +++ b/mylibrary/src/main/res/values/colors.xml @@ -0,0 +1,19 @@ + + + #FFBB86FC + #FF6200EE + #FF3700B3 + #FF03DAC5 + #FF018786 + #FF000000 + #FFFFFFFF + #66000000 + #FFE6E6E6 + #FFF7F7F7 + #FF1492FF + #FFE0E0E0 + #CC000000 + #FFF0F0F0 + #FF5447 + #FF4133 + \ No newline at end of file diff --git a/mylibrary/src/main/res/values/strings.xml b/mylibrary/src/main/res/values/strings.xml new file mode 100644 index 0000000..431c4fc --- /dev/null +++ b/mylibrary/src/main/res/values/strings.xml @@ -0,0 +1,46 @@ + + + 手动报警 + 当前画面翻转类型:\n%1$s + 切换成功 + 左右翻转 + 上下翻转 + 中心翻转 + 顺时针旋转90° + 逆时针旋转90° + 逆时针旋转180° + 不翻转 + 正在进行安全连接(%d%%) + 10dp + 11dp + 12dp + 13dp + 14dp + 15dp + 16dp + 17dp + 18dp + 19dp + 20dp + 21dp + 22dp + 23dp + 24dp + 25dp + 26dp + 28dp + 20dp + 32dp + 35dp + 36dp + 40dp + 5dp + 6dp + 7dp + 8dp + 9dp + 44dp + 300 + 请输入设备密码 + TP + \ No newline at end of file diff --git a/mylibrary/src/test/java/com/cn/plugin_module/ExampleUnitTest.java b/mylibrary/src/test/java/com/cn/plugin_module/ExampleUnitTest.java new file mode 100644 index 0000000..0bccc00 --- /dev/null +++ b/mylibrary/src/test/java/com/cn/plugin_module/ExampleUnitTest.java @@ -0,0 +1,17 @@ +package com.cn.plugin_module; + +import org.junit.Test; + +import static org.junit.Assert.*; + +/** + * Example local unit test, which will execute on the development machine (host). + * + * @see Testing documentation + */ +public class ExampleUnitTest { + @Test + public void addition_isCorrect() { + assertEquals(4, 2 + 2); + } +} \ No newline at end of file diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..4f937ba --- /dev/null +++ b/settings.gradle @@ -0,0 +1,2 @@ +include ':app' +include ':mylibrary'