diff --git a/compiler/nodejs/wcsc b/compiler/nodejs/wcsc index f0fda23..6ef39e8 100755 --- a/compiler/nodejs/wcsc +++ b/compiler/nodejs/wcsc @@ -2,9 +2,11 @@ // wcsc.exe md5 = "3999c590c57c764b152bc6db3b3288c4" const version = "20220308"; const { spawn } = require("child_process"); +const fs = require("fs"); const path = require("path"); const args = process.argv.slice(2); const wcscPath = path.resolve(__dirname, "./wcsc.bin"); +const DEBUG_OUTPUT = process.env["WX_DEBUG_COMPILER_OUTPUT"]; function encode1(s) { return encodeURI(s).replace( @@ -28,10 +30,10 @@ if (args.includes("-ll")) { }); wcsc.on("close", (n) => { if (0 === n) { - const str = Buffer.concat(spwanData) + let str = Buffer.concat(spwanData) .toString() - .replace(/\\\\/g, "\\\\u005c"); - const resultSplit = encode1(str).split("="); + DEBUG_OUTPUT && fs.writeFileSync(`${DEBUG_OUTPUT}/linux_output.js`, str) + const resultSplit = str.split("="); const tempObj = {}; for ( let i = 0, total = resultSplit.length; @@ -41,8 +43,9 @@ if (args.includes("-ll")) { // a=b ---> a: b const key = resultSplit[i]; if (key === "version") continue; - tempObj[key] = resultSplit[i + 1].replace( - /((\\x[\da-f]{2}|\\u[\da-f]{4})){1,}/gi, + tempObj[key] = resultSplit[i + 1] + .replace( + /[^\\]((\\x[\da-f]{2}|\\u[\da-f]{4})){1,}/g, function ($0, $1, $2) { return eval('"' + $0 + '"'); } @@ -58,17 +61,32 @@ if (args.includes("-ll")) { } } let result = JSON.stringify(resultObj); - String.prototype.splice = function (start, newStr) { - return this.slice(0, start) + newStr + this.slice(start + 1); - }; result = result.replace(/\\\\/g, "\\"); - result = result.replace(/\\[\s\S]{1}/gi, function ($0, $1, $2) { - const c = $0 === "\\n" ? "\n" : $0[1]; - return "\\u" + c.charCodeAt(0).toString(16).padStart(4, "0"); - }); + // result = result.replace(/\\[\s\S]{1}/g, function ($0, $1, $2) { + // let c; + // process.stderr.write($0 + "\n=====\n") + // switch ($0) { + // case "\\n": + // c = "\n"; + // break; + // case "\\t": + // c = "\t"; + // break; + + // default: + // c = $0[1]; + // break; + // } + // process.stderr.write("\\u" + c.charCodeAt(0).toString(16).padStart(4, "0") + "\n=====\n") + // return "\\u" + c.charCodeAt(0).toString(16).padStart(4, "0"); + // }); process.stdout.write(result); + // process.stderr.write(result); } else { - process.stderr.write(Buffer.concat(errData).toString()); + const err = Buffer.concat(errData).toString() + DEBUG_OUTPUT && + fs.writeFileSync(`${DEBUG_OUTPUT}/linux_err.js`, err); + process.stderr.write(err); process.exitCode = n; } }); diff --git a/compiler/test/wcsc/ll/4/linux_output.js b/compiler/test/wcsc/ll/4/linux_output.js new file mode 100644 index 0000000..a9b38c4 --- /dev/null +++ b/compiler/test/wcsc/ll/4/linux_output.js @@ -0,0 +1 @@ +version=v0.4me_20190328_db=comm=var BASE_DEVICE_WIDTH \x3d 750;\nvar isIOS\x3dnavigator.userAgent.match(\x22iPhone\x22);\nvar deviceWidth \x3d window.screen.width || 375;\nvar deviceDPR \x3d window.devicePixelRatio || 2;\nvar checkDeviceWidth \x3d window.__checkDeviceWidth__ || function() {\nvar newDeviceWidth \x3d window.screen.width || 375\nvar newDeviceDPR \x3d window.devicePixelRatio || 2\nvar newDeviceHeight \x3d window.screen.height || 375\nif (window.screen.orientation \x26\x26 /^landscape/.test(window.screen.orientation.type || \x27\x27)) newDeviceWidth \x3d newDeviceHeight\nif (newDeviceWidth !\x3d\x3d deviceWidth || newDeviceDPR !\x3d\x3d deviceDPR) {\ndeviceWidth \x3d newDeviceWidth\ndeviceDPR \x3d newDeviceDPR\n}\n}\ncheckDeviceWidth()\nvar eps \x3d 1e-4;\nvar transformRPX \x3d window.__transformRpx__ || function(number, newDeviceWidth) {\nif ( number \x3d\x3d\x3d 0 ) return 0;\nnumber \x3d number / BASE_DEVICE_WIDTH * ( newDeviceWidth || deviceWidth );\nnumber \x3d Math.floor(number + eps);\nif (number \x3d\x3d\x3d 0) {\nif (deviceDPR \x3d\x3d\x3d 1 || !isIOS) {\nreturn 1;\n} else {\nreturn 0.5;\n}\n}\nreturn number;\n}\nwindow.__rpxRecalculatingFuncs__ \x3d window.__rpxRecalculatingFuncs__ || [];\nvar __COMMON_STYLESHEETS__ \x3d __COMMON_STYLESHEETS__||{}\n\nvar setCssToHead \x3d function(file, _xcInvalid, info) {\nvar Ca \x3d {};\nvar css_id;\nvar info \x3d info || {};\nvar _C \x3d __COMMON_STYLESHEETS__\nfunction makeup(file, opt) {\nvar _n \x3d typeof(file) \x3d\x3d\x3d \x22string\x22;\nif ( _n \x26\x26 Ca.hasOwnProperty(file)) return \x22\x22;\nif ( _n ) Ca[file] \x3d 1;\nvar ex \x3d _n ? _C[file] : file;\nvar res\x3d\x22\x22;\nfor (var i \x3d ex.length - 1; i \x3e\x3d 0; i--) {\nvar content \x3d ex[i];\nif (typeof(content) \x3d\x3d\x3d \x22object\x22)\n{\nvar op \x3d content[0];\nif ( op \x3d\x3d 0 )\nres \x3d transformRPX(content[1], opt.deviceWidth) + \x22px\x22 + res;\nelse if ( op \x3d\x3d 1)\nres \x3d opt.suffix + res;\nelse if ( op \x3d\x3d 2 )\nres \x3d makeup(content[1], opt) + res;\n}\nelse\nres \x3d content + res\n}\nreturn res;\n}\nvar styleSheetManager \x3d window.__styleSheetManager2__\nvar rewritor \x3d function(suffix, opt, style){\nopt \x3d opt || {};\nsuffix \x3d suffix || \x22\x22;\nopt.suffix \x3d suffix;\nif ( opt.allowIllegalSelector !\x3d undefined \x26\x26 _xcInvalid !\x3d undefined )\n{\nif ( opt.allowIllegalSelector )\nconsole.warn( \x22For developer:\x22 + _xcInvalid );\nelse\n{\nconsole.error( _xcInvalid );\n}\n}\nCa\x3d{};\ncss \x3d makeup(file, opt);\nif (styleSheetManager) {\nvar key \x3d (info.path || Math.random()) + \x27:\x27 + suffix\nif (!style) {\nstyleSheetManager.addItem(key, info.path);\nwindow.__rpxRecalculatingFuncs__.push(function(size){\nopt.deviceWidth \x3d size.width;\nrewritor(suffix, opt, true);\n});\n}\nstyleSheetManager.setCss(key, css);\nreturn;\n}\nif ( !style )\n{\nvar head \x3d document.head || document.getElementsByTagName(\x27head\x27)[0];\nstyle \x3d document.createElement(\x27style\x27);\nstyle.type \x3d \x27text/css\x27;\nstyle.setAttribute( \x22wxss:path\x22, info.path );\nhead.appendChild(style);\nwindow.__rpxRecalculatingFuncs__.push(function(size){\nopt.deviceWidth \x3d size.width;\nrewritor(suffix, opt, style);\n});\n}\nif (style.styleSheet) {\nstyle.styleSheet.cssText \x3d css;\n} else {\nif ( style.childNodes.length \x3d\x3d 0 )\nstyle.appendChild(document.createTextNode(css));\nelse\nstyle.childNodes[0].nodeValue \x3d css;\n}\n}\nreturn rewritor;\n}\nsetCssToHead([\x22[is\\x3d\\x22common/lib/weui\\x22]{width: 100% ;wxcs_fileinfo: ./common/lib/weui.wxss 4082 1;}\\n[is\\x3d\\x22miniprogram_npm/miniprogram-recycle-view/recycle-item\\x22]{display: inline-block; ;wxcs_fileinfo: ./miniprogram_npm/miniprogram-recycle-view/recycle-item.wxss 2 1;}\\n[is\\x3d\\x22miniprogram_npm/miniprogram-recycle-view/recycle-view\\x22]{display: block; width: 100%; ;wxcs_fileinfo: ./miniprogram_npm/miniprogram-recycle-view/recycle-view.wxss 2 1;}\\n[is\\x3d\\x22page/common/lib/weui\\x22]{width: 100% ;wxcs_fileinfo: ./page/common/lib/weui.wxss 4082 1;}\\n\x22,])();setCssToHead([],undefined,{path:\x22./packageAPI/app.wxss\x22})();=./packageAPI/pages/api/login/login.wxss=setCssToHead([\x22.\x22,[1],\x22page-section { margin-top: 100px; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; padding: 0 25px; box-sizing: border-box; ;wxcs_originclass: .page-section;;wxcs_fileinfo: ./packageAPI/pages/api/login/login.wxss 3 1; }\\n.\x22,[1],\x22page-body-title { font-size: 30px; line-height: 100px; ;wxcs_originclass: .page-body-title;;wxcs_fileinfo: ./packageAPI/pages/api/login/login.wxss 13 1; }\\n.\x22,[1],\x22page-body-text { color: #bbb; font-size: 14px; line-height: 20px; margin: 0 0 50px 0; text-align: center; ;wxcs_originclass: .page-body-text;;wxcs_fileinfo: ./packageAPI/pages/api/login/login.wxss 17 1; }\\n.\x22,[1],\x22page-body-button { width: 100%; ;wxcs_originclass: .page-body-button;;wxcs_fileinfo: ./packageAPI/pages/api/login/login.wxss 24 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/api/login/login.wxss\x22})=./packageAPI/pages/api/get-user-info/get-user-info.wxss=setCssToHead([\x22.\x22,[1],\x22page-body-info { padding-bottom: 0; height: 230px; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/api/get-user-info/get-user-info.wxss 1 1; }\\n.\x22,[1],\x22userinfo-avatar { border-radius: 114px; width: 114px; height: 114px; ;wxcs_originclass: .userinfo-avatar;;wxcs_fileinfo: ./packageAPI/pages/api/get-user-info/get-user-info.wxss 5 1; }\\n.\x22,[1],\x22userinfo-nickname { margin-top: 10px; font-size: 19px; ;wxcs_originclass: .userinfo-nickname;;wxcs_fileinfo: ./packageAPI/pages/api/get-user-info/get-user-info.wxss 10 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/api/get-user-info/get-user-info.wxss\x22})=./packageAPI/pages/api/request-payment/request-payment.wxss=setCssToHead([\x22.\x22,[1],\x22page-section{ width: auto; margin: 15px; padding: 62px 15px; background-color: var(--weui-BG-2); text-align: center; font-size: 14px; ;wxcs_originclass: .page-section;;wxcs_fileinfo: ./packageAPI/pages/api/request-payment/request-payment.wxss 1 1; }\\n.\x22,[1],\x22desc{ color: var(--weui-FG-1); ;wxcs_originclass: .desc;;wxcs_fileinfo: ./packageAPI/pages/api/request-payment/request-payment.wxss 9 1; }\\n.\x22,[1],\x22price{ margin-top: 15px; margin-bottom: 13px; position: relative; display: inline-block; font-size: 39px; line-height: 1; ;wxcs_originclass: .price;;wxcs_fileinfo: ./packageAPI/pages/api/request-payment/request-payment.wxss 12 1; }\\n.\x22,[1],\x22price:before{ content: \\x22¥\\x22; position: absolute; font-size: 20px; top: 4px; left: -20px; ;wxcs_originclass: .price:before;;wxcs_fileinfo: ./packageAPI/pages/api/request-payment/request-payment.wxss 20 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/api/request-payment/request-payment.wxss\x22})=./packageAPI/pages/api/jump/jump.wxss=setCssToHead([],undefined,{path:\x22./packageAPI/pages/api/jump/jump.wxss\x22})=./packageAPI/pages/api/share/share.wxss=setCssToHead([],undefined,{path:\x22./packageAPI/pages/api/share/share.wxss\x22})=./packageAPI/pages/api/share-button/share-button.wxss=setCssToHead([\x22.\x22,[1],\x22button-share { display: none; ;wxcs_originclass: .button-share;;wxcs_fileinfo: ./packageAPI/pages/api/share-button/share-button.wxss 1 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/api/share-button/share-button.wxss\x22})=./packageAPI/pages/api/custom-message/custom-message.wxss=setCssToHead([],undefined,{path:\x22./packageAPI/pages/api/custom-message/custom-message.wxss\x22})=./packageAPI/pages/api/subscribe-message/subscribe-message.wxss=setCssToHead([\x22.\x22,[1],\x22page-section { margin-top: 100px; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; padding: 0 25px; box-sizing: border-box; ;wxcs_originclass: .page-section;;wxcs_fileinfo: ./packageAPI/pages/api/subscribe-message/subscribe-message.wxss 1 1; }\\n.\x22,[1],\x22page-body-title { font-size: 30px; line-height: 100px; ;wxcs_originclass: .page-body-title;;wxcs_fileinfo: ./packageAPI/pages/api/subscribe-message/subscribe-message.wxss 11 1; }\\n.\x22,[1],\x22page-body-text { color: var(--weui-FG-1); font-size: 14px; line-height: 20px; margin: 0 0 50px 0; text-align: center; ;wxcs_originclass: .page-body-text;;wxcs_fileinfo: ./packageAPI/pages/api/subscribe-message/subscribe-message.wxss 15 1; }\\n.\x22,[1],\x22page-body-button { width: 100%; ;wxcs_originclass: .page-body-button;;wxcs_fileinfo: ./packageAPI/pages/api/subscribe-message/subscribe-message.wxss 22 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/api/subscribe-message/subscribe-message.wxss\x22})=./packageAPI/pages/api/choose-address/choose-address.wxss=setCssToHead([\x22wx-form { margin-top: 15px; ;wxcs_originclass: form;;wxcs_fileinfo: ./packageAPI/pages/api/choose-address/choose-address.wxss 3 1; }\\n.\x22,[1],\x22weui-cell__bd { display: flex; justify-content: flex-start; align-items: center; padding: 10px 0; min-height: 30px; ;wxcs_originclass: .weui-cell__bd;;wxcs_fileinfo: ./packageAPI/pages/api/choose-address/choose-address.wxss 7 1; }\\n\x22,],\x22Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/api/choose-address/choose-address.wxss:3:1)\x22,{path:\x22./packageAPI/pages/api/choose-address/choose-address.wxss\x22})=./packageAPI/pages/api/choose-invoice-title/choose-invoice-title.wxss=setCssToHead([\x22wx-form { margin-top: 15px; ;wxcs_originclass: form;;wxcs_fileinfo: ./packageAPI/pages/api/choose-invoice-title/choose-invoice-title.wxss 3 1; }\\n.\x22,[1],\x22weui-cell__bd { display: flex; justify-content: flex-start; padding: 10px 0; min-height: 30px; align-items: center; ;wxcs_originclass: .weui-cell__bd;;wxcs_fileinfo: ./packageAPI/pages/api/choose-invoice-title/choose-invoice-title.wxss 7 1; }\\n\x22,],\x22Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/api/choose-invoice-title/choose-invoice-title.wxss:3:1)\x22,{path:\x22./packageAPI/pages/api/choose-invoice-title/choose-invoice-title.wxss\x22})=./packageAPI/pages/api/soter-authentication/soter-authentication.wxss=setCssToHead([],undefined,{path:\x22./packageAPI/pages/api/soter-authentication/soter-authentication.wxss\x22})=./packageAPI/pages/api/setting/setting.wxss=setCssToHead([\x22wx-form { margin-top: 15px; ;wxcs_originclass: form;;wxcs_fileinfo: ./packageAPI/pages/api/setting/setting.wxss 3 1; }\\n.\x22,[1],\x22weui-cell__bd { display: flex; justify-content: center; padding: 10px 0; min-height: 30px; ;wxcs_originclass: .weui-cell__bd;;wxcs_fileinfo: ./packageAPI/pages/api/setting/setting.wxss 7 1; }\\n\x22,],\x22Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/api/setting/setting.wxss:3:1)\x22,{path:\x22./packageAPI/pages/api/setting/setting.wxss\x22})=./packageAPI/pages/page/set-navigation-bar-title/set-navigation-bar-title.wxss=setCssToHead([\x22.\x22,[1],\x22weui-label{ width: 5em; ;wxcs_originclass: .weui-label;;wxcs_fileinfo: ./packageAPI/pages/page/set-navigation-bar-title/set-navigation-bar-title.wxss 3 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/page/set-navigation-bar-title/set-navigation-bar-title.wxss\x22})=./packageAPI/pages/page/navigation-bar-loading/navigation-bar-loading.wxss=setCssToHead([],undefined,{path:\x22./packageAPI/pages/page/navigation-bar-loading/navigation-bar-loading.wxss\x22})=./packageAPI/pages/page/navigator/navigator.wxss=setCssToHead([],undefined,{path:\x22./packageAPI/pages/page/navigator/navigator.wxss\x22})=./packageAPI/pages/page/pull-down-refresh/pull-down-refresh.wxss=setCssToHead([\x22.\x22,[1],\x22page-body-info { background-color: transparent; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/page/pull-down-refresh/pull-down-refresh.wxss 1 1; }\\n.\x22,[1],\x22btn-area{ margin-top: 150px; ;wxcs_originclass: .btn-area;;wxcs_fileinfo: ./packageAPI/pages/page/pull-down-refresh/pull-down-refresh.wxss 4 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/page/pull-down-refresh/pull-down-refresh.wxss\x22})=./packageAPI/pages/page/animation/animation.wxss=setCssToHead([\x22.\x22,[1],\x22animation-element-wrapper { display: flex; width: 100%; padding-top: 75px; padding-bottom: 75px; justify-content: center; overflow: hidden; background-color: #ffffff; ;wxcs_originclass: .animation-element-wrapper;;wxcs_fileinfo: ./packageAPI/pages/page/animation/animation.wxss 1 1; }\\n.\x22,[1],\x22animation-element { width: 100px; height: 100px; background-color: #1AAD19; ;wxcs_originclass: .animation-element;;wxcs_fileinfo: ./packageAPI/pages/page/animation/animation.wxss 10 1; }\\n.\x22,[1],\x22animation-buttons { padding: 15px 25px 5px; width: 100%; height: 330px; box-sizing: border-box; ;wxcs_originclass: .animation-buttons;;wxcs_fileinfo: ./packageAPI/pages/page/animation/animation.wxss 15 1; }\\n.\x22,[1],\x22animation-button { float: left; line-height: 2; width: 150px; margin: 8px 11px; ;wxcs_originclass: .animation-button;;wxcs_fileinfo: ./packageAPI/pages/page/animation/animation.wxss 21 1; }\\n.\x22,[1],\x22animation-button-reset { width: 610px; ;wxcs_originclass: .animation-button-reset;;wxcs_fileinfo: ./packageAPI/pages/page/animation/animation.wxss 28 1; }\\n.\x22,[1],\x22btn-row { display: flex; justify-content: space-between; ;wxcs_originclass: .btn-row;;wxcs_fileinfo: ./packageAPI/pages/page/animation/animation.wxss 32 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/page/animation/animation.wxss\x22})=./packageAPI/pages/page/action-sheet/action-sheet.wxss=setCssToHead([],undefined,{path:\x22./packageAPI/pages/page/action-sheet/action-sheet.wxss\x22})=./packageAPI/pages/page/modal/modal.wxss=setCssToHead([],undefined,{path:\x22./packageAPI/pages/page/modal/modal.wxss\x22})=./packageAPI/pages/page/toast/toast.wxss=setCssToHead([],undefined,{path:\x22./packageAPI/pages/page/toast/toast.wxss\x22})=./packageAPI/pages/page/canvas/canvas.wxss=setCssToHead([\x22.\x22,[1],\x22canvas-element-wrapper { display: block; margin-bottom: 50px; ;wxcs_originclass: .canvas-element-wrapper;;wxcs_fileinfo: ./packageAPI/pages/page/canvas/canvas.wxss 1 1; }\\n.\x22,[1],\x22canvas-element { width: 100%; height: 250px; background-color: #ffffff; ;wxcs_originclass: .canvas-element;;wxcs_fileinfo: ./packageAPI/pages/page/canvas/canvas.wxss 5 1; }\\n.\x22,[1],\x22canvas-buttons { padding: 15px 25px 5px; width: 100%; height: 330px; box-sizing: border-box; ;wxcs_originclass: .canvas-buttons;;wxcs_fileinfo: ./packageAPI/pages/page/canvas/canvas.wxss 10 1; }\\n.\x22,[1],\x22canvas-button { float: left; line-height: 2; width: 150px; margin: 8px 11px; ;wxcs_originclass: .canvas-button;;wxcs_fileinfo: ./packageAPI/pages/page/canvas/canvas.wxss 16 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/page/canvas/canvas.wxss\x22})=./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss=setCssToHead([\x22wx-movable-view { display: flex; align-items: center; justify-content: center; height: 50px; width: 50px; background: #1AAD19; color: #fff; ;wxcs_originclass: movable-view;;wxcs_fileinfo: ./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss 1 1; }\\nwx-movable-area { height: 200px; width: 200px; background-color: #ccc; overflow: hidden; ;wxcs_originclass: movable-area;;wxcs_fileinfo: ./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss 11 1; }\\n.\x22,[1],\x22page-section { display: flex; justify-content: center; ;wxcs_originclass: .page-section;;wxcs_fileinfo: ./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss 18 1; }\\n.\x22,[1],\x22page-body { display: flex; flex-direction: column; align-items: center; ;wxcs_originclass: .page-body;;wxcs_fileinfo: ./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss 23 1; }\\n.\x22,[1],\x22metric { width: 200px; display: flex; justify-content: center; flex-direction:column; align-items:center; ;wxcs_originclass: .metric;;wxcs_fileinfo: ./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss 29 1; }\\n.\x22,[1],\x22b { display: inline-block; width: 75px; font-weight: bold; ;wxcs_originclass: .b;;wxcs_fileinfo: ./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss 37 1; }\\n.\x22,[1],\x22span { display: inline-block; width: 50px; ;wxcs_originclass: .span;;wxcs_fileinfo: ./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss 43 1; }\\n\x22,],\x22Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss:11:1)\x22,{path:\x22./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss\x22})=./packageAPI/pages/page/page-scroll/page-scroll.wxss=setCssToHead([\x22.\x22,[1],\x22rect { width: 50px; height: 50px; background-color: #ccc; ;wxcs_originclass: .rect;;wxcs_fileinfo: ./packageAPI/pages/page/page-scroll/page-scroll.wxss 1 1; }\\n.\x22,[1],\x22filling-area { height: 1250px; ;wxcs_originclass: .filling-area;;wxcs_fileinfo: ./packageAPI/pages/page/page-scroll/page-scroll.wxss 7 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/page/page-scroll/page-scroll.wxss\x22})=./packageAPI/pages/page/intersection-observer/intersection-observer.wxss=setCssToHead([\x22.\x22,[1],\x22scroll-view { height: 200px; background: var(--weui-BG-2); ;wxcs_originclass: .scroll-view;;wxcs_fileinfo: ./packageAPI/pages/page/intersection-observer/intersection-observer.wxss 1 1; }\\n.\x22,[1],\x22scroll-area { height: 1150px; display: flex; flex-direction: column; align-items: center; transition: .5s; ;wxcs_originclass: .scroll-area;;wxcs_fileinfo: ./packageAPI/pages/page/intersection-observer/intersection-observer.wxss 6 1; }\\n.\x22,[1],\x22notice { margin-top: 75px; ;wxcs_originclass: .notice;;wxcs_fileinfo: ./packageAPI/pages/page/intersection-observer/intersection-observer.wxss 14 1; }\\n.\x22,[1],\x22ball { width: 100px; height: 100px; background: #1AAD19; border-radius: 50%; ;wxcs_originclass: .ball;;wxcs_fileinfo: ./packageAPI/pages/page/intersection-observer/intersection-observer.wxss 18 1; }\\n.\x22,[1],\x22filling { height: 200px; ;wxcs_originclass: .filling;;wxcs_fileinfo: ./packageAPI/pages/page/intersection-observer/intersection-observer.wxss 25 1; }\\n.\x22,[1],\x22message { width: 100%; display: flex; justify-content: center; ;wxcs_originclass: .message;;wxcs_fileinfo: ./packageAPI/pages/page/intersection-observer/intersection-observer.wxss 29 1; }\\n.\x22,[1],\x22message wx-text { font-size: 20px; font-family: -apple-system-font, Helvetica Neue,Helvetica,sans-serif; ;wxcs_originclass: .message text;;wxcs_fileinfo: ./packageAPI/pages/page/intersection-observer/intersection-observer.wxss 35 1; }\\n\x22,],\x22Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/page/intersection-observer/intersection-observer.wxss:35:10)\x22,{path:\x22./packageAPI/pages/page/intersection-observer/intersection-observer.wxss\x22})=./packageAPI/pages/device/clipboard-data/clipboard-data.wxss=setCssToHead([\x22.\x22,[1],\x22page-body-info { padding: 5px; height: 100px; overflow: scroll-y; text-align: left; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/device/clipboard-data/clipboard-data.wxss 3 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/device/clipboard-data/clipboard-data.wxss\x22})=./packageAPI/pages/device/bluetooth/bluetooth.wxss=setCssToHead([\x22.\x22,[1],\x22devices_summary { padding: 5px; font-size: 15px; ;wxcs_originclass: .devices_summary;;wxcs_fileinfo: ./packageAPI/pages/device/bluetooth/bluetooth.wxss 2 1; }\\n.\x22,[1],\x22device_list { height: 150px; border-radius: 3px; flex: 1; ;wxcs_originclass: .device_list;;wxcs_fileinfo: ./packageAPI/pages/device/bluetooth/bluetooth.wxss 6 1; }\\n.\x22,[1],\x22device_item { border-bottom: 1px solid var(--weui-FG-3); padding: 5px; color: var(--weui-FG-HALF); ;wxcs_originclass: .device_item;;wxcs_fileinfo: ./packageAPI/pages/device/bluetooth/bluetooth.wxss 11 1; }\\n.\x22,[1],\x22device_item_hover { background-color: rgba(0, 0, 0, .1); ;wxcs_originclass: .device_item_hover;;wxcs_fileinfo: ./packageAPI/pages/device/bluetooth/bluetooth.wxss 16 1; }\\n.\x22,[1],\x22connected_info { position: fixed; bottom: 0; width: 100%; background-color: var(--weui-BG-4); padding: 5px; padding-bottom: 10px; margin-bottom: env(safe-area-inset-bottom); font-size: 14px; min-height: 50px; box-shadow: 0px 0px 2px 0px; ;wxcs_originclass: .connected_info;;wxcs_fileinfo: ./packageAPI/pages/device/bluetooth/bluetooth.wxss 19 1; }\\n.\x22,[1],\x22connected_info .\x22,[1],\x22operation { position: absolute; display: inline-block; right: 15px; ;wxcs_originclass: .connected_info .operation;;wxcs_fileinfo: ./packageAPI/pages/device/bluetooth/bluetooth.wxss 31 1; }\\n.\x22,[1],\x22page-body-info { padding: 15px; box-sizing: border-box; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/device/bluetooth/bluetooth.wxss 36 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/device/bluetooth/bluetooth.wxss\x22})=./packageAPI/pages/device/bluetooth/slave/slave.wxss=setCssToHead([\x22.\x22,[1],\x22action-area { display: flex; flex-direction: row; justify-content: space-around; ;wxcs_originclass: .action-area;;wxcs_fileinfo: ./packageAPI/pages/device/bluetooth/slave/slave.wxss 1 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/device/bluetooth/slave/slave.wxss\x22})=./packageAPI/pages/device/screen-brightness/screen-brightness.wxss=setCssToHead([\x22.\x22,[1],\x22page-body-text-screen-brightness { font-size: 40px; font-family: -apple-system-font, Helvetica Neue,Helvetica,sans-serif; ;wxcs_originclass: .page-body-text-screen-brightness;;wxcs_fileinfo: ./packageAPI/pages/device/screen-brightness/screen-brightness.wxss 1 1; }\\n.\x22,[1],\x22page-section-gap { padding: 15px; ;wxcs_originclass: .page-section-gap;;wxcs_fileinfo: ./packageAPI/pages/device/screen-brightness/screen-brightness.wxss 6 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/device/screen-brightness/screen-brightness.wxss\x22})=./packageAPI/pages/device/vibrate/vibrate.wxss=setCssToHead([],undefined,{path:\x22./packageAPI/pages/device/vibrate/vibrate.wxss\x22})=./packageAPI/pages/device/add-contact/add-contact.wxss=setCssToHead([\x22wx-input { width: 100%; ;wxcs_originclass: input;;wxcs_fileinfo: ./packageAPI/pages/device/add-contact/add-contact.wxss 3 1; }\\n\x22,],\x22Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/device/add-contact/add-contact.wxss:3:1)\x22,{path:\x22./packageAPI/pages/device/add-contact/add-contact.wxss\x22})=./packageAPI/pages/device/wifi/wifi.wxss=setCssToHead([\x22.\x22,[1],\x22page-body-info { padding: 15px 30px; width: auto; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 1 1; }\\n.\x22,[1],\x22device-list { height: 150px; text-align: center; ;wxcs_originclass: .device-list;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 6 1; }\\n.\x22,[1],\x22item { width: 100%; margin-bottom: 10px; ;wxcs_originclass: .item;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 11 1; }\\n.\x22,[1],\x22list { width: 100%; text-align: left; display:flex; flex-direction:row; align-items:center; justify-content:space-between; font-size: 15px; ;wxcs_originclass: .list;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 16 1; }\\n.\x22,[1],\x22list wx-text { display: inline-block; max-width: 80%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; ;wxcs_originclass: .list text;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 26 1; }\\n.\x22,[1],\x22strength-ready { color: #26a69a; ;wxcs_originclass: .strength-ready;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 34 1; }\\n.\x22,[1],\x22strength-no { color: #37474f; ;wxcs_originclass: .strength-no;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 35 1; }\\n.\x22,[1],\x22wifi-icon{ width: 20px; height:20px; display: inline-block; position: relative; overflow: hidden; margin: 0 10px; float: right; ;wxcs_originclass: .wifi-icon;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 36 1; }\\n.\x22,[1],\x22wifi-icon wx-span{ display: block; position: absolute; border-radius: 50%; ;wxcs_originclass: .wifi-icon span;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 45 1; }\\n.\x22,[1],\x22wifi-icon .\x22,[1],\x22wifi-1{ width: 4px; height: 4px; left: 8px; bottom: 3px; background: currentcolor; ;wxcs_originclass: .wifi-icon .wifi-1;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 50 1; }\\n.\x22,[1],\x22wifi-icon .\x22,[1],\x22wifi-2,.\x22,[1],\x22wifi-icon .\x22,[1],\x22wifi-3,.\x22,[1],\x22wifi-icon .\x22,[1],\x22wifi-4{ border: 2px solid; border-color: currentcolor transparent transparent; ;wxcs_originclass: .wifi-icon .wifi-2,.wifi-icon .wifi-3,.wifi-icon .wifi-4;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 57 1; }\\n.\x22,[1],\x22wifi-icon .\x22,[1],\x22wifi-2{ width: 12px; height: 12px; left: 2px; bottom: -4px; ;wxcs_originclass: .wifi-icon .wifi-2;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 61 1; }\\n.\x22,[1],\x22wifi-icon .\x22,[1],\x22wifi-3{ width: 20px; height: 20px; left: -2px; bottom: -8px; ;wxcs_originclass: .wifi-icon .wifi-3;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 67 1; }\\n.\x22,[1],\x22wifi-icon .\x22,[1],\x22wifi-4{ width: 28px; height: 28px; left: -6px; bottom: -12px; ;wxcs_originclass: .wifi-icon .wifi-4;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 73 1; }\\n.\x22,[1],\x22wifi-icon wx-span:after{ content: \\x22\\x22; display: block; position: absolute; ;wxcs_originclass: .wifi-icon span:after;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 79 1; }\\n.\x22,[1],\x22wifi-icon .\x22,[1],\x22lock{ width: 6px; height: 5px; background: currentcolor; display: block; right: 1px; bottom: 2px; border-radius: 0; ;wxcs_originclass: .wifi-icon .lock;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 84 1; }\\n.\x22,[1],\x22wifi-icon .\x22,[1],\x22lock:after{ width: 4px; height: 3px; border: 1px solid; border-radius: 100px 100px 0 0; border-bottom: none; left: 0px; bottom: 100%; ;wxcs_originclass: .wifi-icon .lock:after;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 93 1; }\\n.\x22,[1],\x22off { border-color: #b0bec5 transparent transparent !important; ;wxcs_originclass: .off;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 102 1; }\\n\x22,],\x22Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/device/wifi/wifi.wxss:79:12)\x22,{path:\x22./packageAPI/pages/device/wifi/wifi.wxss\x22})=./packageAPI/pages/device/get-network-type/get-network-type.wxss=setCssToHead([\x22.\x22,[1],\x22page-body-info { height: 100px; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/device/get-network-type/get-network-type.wxss 1 1; }\\n.\x22,[1],\x22page-body-text-network-type { font-size: 40px; font-family: -apple-system-font,Helvetica Neue,Helvetica,sans-serif; ;wxcs_originclass: .page-body-text-network-type;;wxcs_fileinfo: ./packageAPI/pages/device/get-network-type/get-network-type.wxss 4 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/device/get-network-type/get-network-type.wxss\x22})=./packageAPI/pages/device/on-network-status-change/on-network-status-change.wxss=setCssToHead([\x22.\x22,[1],\x22page-body-info { height: 100px; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/device/on-network-status-change/on-network-status-change.wxss 1 1; }\\n.\x22,[1],\x22page-body-text-network-type { font-size: 40px; font-family: -apple-system-font,Helvetica Neue,Helvetica,sans-serif; ;wxcs_originclass: .page-body-text-network-type;;wxcs_fileinfo: ./packageAPI/pages/device/on-network-status-change/on-network-status-change.wxss 4 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/device/on-network-status-change/on-network-status-change.wxss\x22})=./packageAPI/pages/device/get-system-info/get-system-info.wxss=setCssToHead([],undefined,{path:\x22./packageAPI/pages/device/get-system-info/get-system-info.wxss\x22})=./packageAPI/pages/device/on-compass-change/on-compass-change.wxss=setCssToHead([\x22.\x22,[1],\x22direction { position: relative; margin-top: 35px; display: flex; width: 520px; height: 520px; align-items: center; justify-content: center; ;wxcs_originclass: .direction;;wxcs_fileinfo: ./packageAPI/pages/device/on-compass-change/on-compass-change.wxss 1 1; }\\n.\x22,[1],\x22direction-value { position: relative; font-size: 100px; color: #353535; line-height: 1; z-index: 1; ;wxcs_originclass: .direction-value;;wxcs_fileinfo: ./packageAPI/pages/device/on-compass-change/on-compass-change.wxss 10 1; }\\n.\x22,[1],\x22direction-degree { position: absolute; top: 0; right: -20px; font-size: 30px; ;wxcs_originclass: .direction-degree;;wxcs_fileinfo: ./packageAPI/pages/device/on-compass-change/on-compass-change.wxss 17 1; }\\n.\x22,[1],\x22bg-compass{ position: absolute; top: 0; left: 0; width: 520px; height: 520px; transition: .1s; ;wxcs_originclass: .bg-compass;;wxcs_fileinfo: ./packageAPI/pages/device/on-compass-change/on-compass-change.wxss 23 1; }\\n.\x22,[1],\x22bg-compass-line{ position: absolute; left: 134px; top: -5px; width: 3px; height: 28px; background-color: #1AAD19; border-radius: 500px; z-index: 1; ;wxcs_originclass: .bg-compass-line;;wxcs_fileinfo: ./packageAPI/pages/device/on-compass-change/on-compass-change.wxss 31 1; }\\n.\x22,[1],\x22controls{ margin-top: 35px; ;wxcs_originclass: .controls;;wxcs_fileinfo: ./packageAPI/pages/device/on-compass-change/on-compass-change.wxss 41 1; }\\n.\x22,[1],\x22controls wx-button{ margin-left: 10px; float: left; ;wxcs_originclass: .controls button;;wxcs_fileinfo: ./packageAPI/pages/device/on-compass-change/on-compass-change.wxss 44 1; }\\n\x22,],\x22Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/device/on-compass-change/on-compass-change.wxss:44:11)\x22,{path:\x22./packageAPI/pages/device/on-compass-change/on-compass-change.wxss\x22})=./packageAPI/pages/device/make-phone-call/make-phone-call.wxss=setCssToHead([\x22.\x22,[1],\x22page-section{ width: auto; margin: 15px; padding: 42px 30px 30px; background-color: var(--weui-BG-2); font-size: 14px; ;wxcs_originclass: .page-section;;wxcs_fileinfo: ./packageAPI/pages/device/make-phone-call/make-phone-call.wxss 1 1; }\\n.\x22,[1],\x22desc{ margin-bottom: 10px; ;wxcs_originclass: .desc;;wxcs_fileinfo: ./packageAPI/pages/device/make-phone-call/make-phone-call.wxss 8 1; }\\n.\x22,[1],\x22input{ height: 60px; line-height: 60px; font-size: 39px; border-bottom: 1px solid var(--weui-FG-3); ;wxcs_originclass: .input;;wxcs_fileinfo: ./packageAPI/pages/device/make-phone-call/make-phone-call.wxss 11 1; }\\n.\x22,[1],\x22btn-area{ padding: 0; ;wxcs_originclass: .btn-area;;wxcs_fileinfo: ./packageAPI/pages/device/make-phone-call/make-phone-call.wxss 17 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/device/make-phone-call/make-phone-call.wxss\x22})=./packageAPI/pages/device/scan-code/scan-code.wxss=setCssToHead([\x22.\x22,[1],\x22weui-cell__bd{ min-height: 24px; word-break: break-all; ;wxcs_originclass: .weui-cell__bd;;wxcs_fileinfo: ./packageAPI/pages/device/scan-code/scan-code.wxss 3 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/device/scan-code/scan-code.wxss\x22})=./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss=setCssToHead([\x22.\x22,[1],\x22page-body-xyz { display: flex; justify-content: space-between; width: 350px; margin-top: 45px; box-sizing: border-box; text-align: center; ;wxcs_originclass: .page-body-xyz;;wxcs_fileinfo: ./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss 1 1; }\\n.\x22,[1],\x22page-body-canvas { margin-top: 15px; width: 302px; height: 302px; position: relative; ;wxcs_originclass: .page-body-canvas;;wxcs_fileinfo: ./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss 9 1; }\\n.\x22,[1],\x22page-body-ball { position: absolute; top: 0; left: 0; width: 302px; height: 302px; ;wxcs_originclass: .page-body-ball;;wxcs_fileinfo: ./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss 15 1; }\\n.\x22,[1],\x22page-body-title { margin-bottom: 0; font-size: 16px; width: 225px; ;wxcs_originclass: .page-body-title;;wxcs_fileinfo: ./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss 22 1; }\\n.\x22,[1],\x22page-body-controls { margin-top: 15px; ;wxcs_originclass: .page-body-controls;;wxcs_fileinfo: ./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss 27 1; }\\n.\x22,[1],\x22page-body-controls wx-button { margin-left: 10px; float: left; ;wxcs_originclass: .page-body-controls button;;wxcs_fileinfo: ./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss 30 1; }\\n\x22,],\x22Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss:30:21)\x22,{path:\x22./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss\x22})=./packageAPI/pages/device/capture-screen/capture-screen.wxss=setCssToHead([\x22.\x22,[1],\x22page-body-text { font-size: 20px; font-family: -apple-system-font, Helvetica Neue,Helvetica,sans-serif; ;wxcs_originclass: .page-body-text;;wxcs_fileinfo: ./packageAPI/pages/device/capture-screen/capture-screen.wxss 1 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/device/capture-screen/capture-screen.wxss\x22})=./packageAPI/pages/device/ibeacon/ibeacon.wxss=setCssToHead([\x22.\x22,[1],\x22page-body-info { margin-top: 25px; padding: 15px 30px; width: auto; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/device/ibeacon/ibeacon.wxss 3 1; }\\n.\x22,[1],\x22devices_summary { padding: 5px; font-size: 15px; ;wxcs_originclass: .devices_summary;;wxcs_fileinfo: ./packageAPI/pages/device/ibeacon/ibeacon.wxss 9 1; }\\n.\x22,[1],\x22device_list { height: 150px; border-radius: 3px; flex: 1; ;wxcs_originclass: .device_list;;wxcs_fileinfo: ./packageAPI/pages/device/ibeacon/ibeacon.wxss 13 1; }\\n.\x22,[1],\x22device_item { border-bottom: 1px solid var(--weui-FG-3); padding: 5px; color: var(--weui-FG-HALF); ;wxcs_originclass: .device_item;;wxcs_fileinfo: ./packageAPI/pages/device/ibeacon/ibeacon.wxss 18 1; }\\n.\x22,[1],\x22device_item_hover { background-color: rgba(0, 0, 0, .1); ;wxcs_originclass: .device_item_hover;;wxcs_fileinfo: ./packageAPI/pages/device/ibeacon/ibeacon.wxss 23 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/device/ibeacon/ibeacon.wxss\x22})=./packageAPI/pages/device/get-battery-info/get-battery-info.wxss=setCssToHead([],undefined,{path:\x22./packageAPI/pages/device/get-battery-info/get-battery-info.wxss\x22})=./packageAPI/pages/media/image/image.wxss=setCssToHead([],undefined,{path:\x22./packageAPI/pages/media/image/image.wxss\x22})=./packageAPI/pages/media/voice/voice.wxss=setCssToHead([\x22wx-image { width: 75px; height: 75px; ;wxcs_originclass: image;;wxcs_fileinfo: ./packageAPI/pages/media/voice/voice.wxss 1 1; }\\n.\x22,[1],\x22page-body-wrapper { justify-content: space-between; flex-grow: 1; margin-bottom: 150px; ;wxcs_originclass: .page-body-wrapper;;wxcs_fileinfo: ./packageAPI/pages/media/voice/voice.wxss 6 1; }\\n.\x22,[1],\x22page-body-time { display: flex; flex-direction: column; align-items: center; ;wxcs_originclass: .page-body-time;;wxcs_fileinfo: ./packageAPI/pages/media/voice/voice.wxss 11 1; }\\n.\x22,[1],\x22time-big { font-size: 30px; margin: 10px; ;wxcs_originclass: .time-big;;wxcs_fileinfo: ./packageAPI/pages/media/voice/voice.wxss 16 1; }\\n.\x22,[1],\x22time-small { font-size: 15px; ;wxcs_originclass: .time-small;;wxcs_fileinfo: ./packageAPI/pages/media/voice/voice.wxss 20 1; }\\n.\x22,[1],\x22page-body-buttons { margin-top: 30px; display: flex; justify-content: space-around; ;wxcs_originclass: .page-body-buttons;;wxcs_fileinfo: ./packageAPI/pages/media/voice/voice.wxss 24 1; }\\n.\x22,[1],\x22page-body-button { width: 225px; text-align: center; ;wxcs_originclass: .page-body-button;;wxcs_fileinfo: ./packageAPI/pages/media/voice/voice.wxss 29 1; }\\n.\x22,[1],\x22button-stop-record { width: 15px; height: 15px; border: 10px solid #fff; background-color: #f55c23; border-radius: 115px; margin: 0 auto; ;wxcs_originclass: .button-stop-record;;wxcs_fileinfo: ./packageAPI/pages/media/voice/voice.wxss 33 1; }\\n\x22,],\x22Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/media/voice/voice.wxss:1:1)\x22,{path:\x22./packageAPI/pages/media/voice/voice.wxss\x22})=./packageAPI/pages/media/file/file.wxss=setCssToHead([\x22.\x22,[1],\x22image { width: 100%; height: 330px; ;wxcs_originclass: .image;;wxcs_fileinfo: ./packageAPI/pages/media/file/file.wxss 1 1; }\\n.\x22,[1],\x22page-body-info { display: flex; box-sizing: border-box; padding: 15px; height: 410px; border-top: 1px solid var(--weui-FG-3); border-bottom: 1px solid var(--weui-FG-3); align-items: center; justify-content: center; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/media/file/file.wxss 5 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/media/file/file.wxss\x22})=./packageAPI/pages/media/load-font-face/load-font-face.wxss=setCssToHead([\x22.\x22,[1],\x22page-body-info { align-items: center; padding: 100px 0; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/media/load-font-face/load-font-face.wxss 1 1; }\\n.\x22,[1],\x22font-loaded { font-family: \\x22Bitstream Vera Serif Bold\\x22; ;wxcs_originclass: .font-loaded;;wxcs_fileinfo: ./packageAPI/pages/media/load-font-face/load-font-face.wxss 6 1; }\\n.\x22,[1],\x22display-area { font-size: 20px; ;wxcs_originclass: .display-area;;wxcs_fileinfo: ./packageAPI/pages/media/load-font-face/load-font-face.wxss 10 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/media/load-font-face/load-font-face.wxss\x22})=./packageAPI/pages/media/background-audio/background-audio.wxss=setCssToHead([\x22wx-image { width: 75px; height: 75px; ;wxcs_originclass: image;;wxcs_fileinfo: ./packageAPI/pages/media/background-audio/background-audio.wxss 1 1; }\\n.\x22,[1],\x22page-body-wrapper { margin-top: 0; ;wxcs_originclass: .page-body-wrapper;;wxcs_fileinfo: ./packageAPI/pages/media/background-audio/background-audio.wxss 6 1; }\\n.\x22,[1],\x22page-body-info { padding-bottom: 25px; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/media/background-audio/background-audio.wxss 9 1; }\\n.\x22,[1],\x22time-big { font-size: 30px; margin: 10px; ;wxcs_originclass: .time-big;;wxcs_fileinfo: ./packageAPI/pages/media/background-audio/background-audio.wxss 12 1; }\\n.\x22,[1],\x22slider { width: 90%; ;wxcs_originclass: .slider;;wxcs_fileinfo: ./packageAPI/pages/media/background-audio/background-audio.wxss 16 1; }\\n.\x22,[1],\x22play-time { font-size: 14px; width: 350px; padding: 10px 0; display: flex; justify-content: space-between; box-sizing: border-box; ;wxcs_originclass: .play-time;;wxcs_fileinfo: ./packageAPI/pages/media/background-audio/background-audio.wxss 19 1; }\\n.\x22,[1],\x22page-body-buttons { display: flex; justify-content: space-around; margin-top: 50px; ;wxcs_originclass: .page-body-buttons;;wxcs_fileinfo: ./packageAPI/pages/media/background-audio/background-audio.wxss 27 1; }\\n.\x22,[1],\x22page-body-button { width: 225px; text-align: center; ;wxcs_originclass: .page-body-button;;wxcs_fileinfo: ./packageAPI/pages/media/background-audio/background-audio.wxss 32 1; }\\n\x22,],\x22Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/media/background-audio/background-audio.wxss:1:1)\x22,{path:\x22./packageAPI/pages/media/background-audio/background-audio.wxss\x22})=./packageAPI/pages/media/video/video.wxss=setCssToHead([\x22.\x22,[1],\x22page-body-info { display: flex; margin-top: 20px; padding: 0; height: 330px; border-top: 1px solid var(--weui-FG-3); border-bottom: 1px solid var(--weui-FG-3); align-items: center; justify-content: center; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/media/video/video.wxss 3 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/media/video/video.wxss\x22})=./packageAPI/pages/media/audio/audio.wxss=setCssToHead([],undefined,{path:\x22./packageAPI/pages/media/audio/audio.wxss\x22})=./packageAPI/pages/media/media-container/media-container.wxss=setCssToHead([\x22.\x22,[1],\x22page-section { display: flex; flex-direction: column; align-items: center; ;wxcs_originclass: .page-section;;wxcs_fileinfo: ./packageAPI/pages/media/media-container/media-container.wxss 1 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/media/media-container/media-container.wxss\x22})=./packageAPI/pages/location/get-location/get-location.wxss=setCssToHead([\x22.\x22,[1],\x22page-body-info { height: 225px; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/location/get-location/get-location.wxss 1 1; }\\n.\x22,[1],\x22page-body-text-small { font-size: 12px; color: var(--weui-FG-0); margin-bottom: 50px; ;wxcs_originclass: .page-body-text-small;;wxcs_fileinfo: ./packageAPI/pages/location/get-location/get-location.wxss 4 1; }\\n.\x22,[1],\x22page-body-text-location { display: flex; font-size: 25px; ;wxcs_originclass: .page-body-text-location;;wxcs_fileinfo: ./packageAPI/pages/location/get-location/get-location.wxss 9 1; }\\n.\x22,[1],\x22page-body-text-location wx-text { margin: 5px; ;wxcs_originclass: .page-body-text-location text;;wxcs_fileinfo: ./packageAPI/pages/location/get-location/get-location.wxss 13 1; }\\n\x22,],\x22Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/location/get-location/get-location.wxss:13:26)\x22,{path:\x22./packageAPI/pages/location/get-location/get-location.wxss\x22})=./packageAPI/pages/location/open-location/open-location.wxss=setCssToHead([],undefined,{path:\x22./packageAPI/pages/location/open-location/open-location.wxss\x22})=./packageAPI/pages/location/choose-location/choose-location.wxss=setCssToHead([\x22.\x22,[1],\x22page-body-info{ padding-bottom: 0; height: 420px; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/location/choose-location/choose-location.wxss 1 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/location/choose-location/choose-location.wxss\x22})=./packageAPI/pages/network/request/request.wxss=setCssToHead([],undefined,{path:\x22./packageAPI/pages/network/request/request.wxss\x22})=./packageAPI/pages/network/web-socket/web-socket.wxss=setCssToHead([],undefined,{path:\x22./packageAPI/pages/network/web-socket/web-socket.wxss\x22})=./packageAPI/pages/network/upload-file/upload-file.wxss=setCssToHead([\x22.\x22,[1],\x22image { width: 100%; height: 330px; ;wxcs_originclass: .image;;wxcs_fileinfo: ./packageAPI/pages/network/upload-file/upload-file.wxss 1 1; }\\n.\x22,[1],\x22page-body-info { display: flex; box-sizing: border-box; padding: 15px; height: 410px; border-top: 1px solid var(--weui-FG-3); border-bottom: 1px solid var(--weui-FG-3); align-items: center; justify-content: center; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/network/upload-file/upload-file.wxss 5 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/network/upload-file/upload-file.wxss\x22})=./packageAPI/pages/network/download-file/download-file.wxss=setCssToHead([\x22.\x22,[1],\x22page-body wx-image { width: 300px; height: 300px; margin: 0 38px; ;wxcs_originclass: .page-body image;;wxcs_fileinfo: ./packageAPI/pages/network/download-file/download-file.wxss 1 1; }\\n\x22,],\x22Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/network/download-file/download-file.wxss:1:12)\x22,{path:\x22./packageAPI/pages/network/download-file/download-file.wxss\x22})=./packageAPI/pages/network/mdns/mdns.wxss=setCssToHead([],undefined,{path:\x22./packageAPI/pages/network/mdns/mdns.wxss\x22})=./packageAPI/pages/network/udp-socket/udp-socket.wxss=setCssToHead([],undefined,{path:\x22./packageAPI/pages/network/udp-socket/udp-socket.wxss\x22})=./packageAPI/pages/storage/storage/storage.wxss=setCssToHead([],undefined,{path:\x22./packageAPI/pages/storage/storage/storage.wxss\x22})=./packageAPI/pages/storage/get-background-fetch-data/get-background-fetch-data.wxss=setCssToHead([\x22.\x22,[1],\x22page-body-info { padding-bottom: 0; height: 300px; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/storage/get-background-fetch-data/get-background-fetch-data.wxss 1 1; }\\n.\x22,[1],\x22page-body-text { padding: 0 15px; text-align: center; ;wxcs_originclass: .page-body-text;;wxcs_fileinfo: ./packageAPI/pages/storage/get-background-fetch-data/get-background-fetch-data.wxss 5 1; }\\n.\x22,[1],\x22page-body-title { margin-bottom: 20px; ;wxcs_originclass: .page-body-title;;wxcs_fileinfo: ./packageAPI/pages/storage/get-background-fetch-data/get-background-fetch-data.wxss 9 1; }\\n.\x22,[1],\x22context-value { font-size: 19px; ;wxcs_originclass: .context-value;;wxcs_fileinfo: ./packageAPI/pages/storage/get-background-fetch-data/get-background-fetch-data.wxss 12 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/storage/get-background-fetch-data/get-background-fetch-data.wxss\x22})=./packageAPI/pages/storage/get-background-prefetch-data/get-background-prefetch-data.wxss=setCssToHead([\x22.\x22,[1],\x22page-body-info { padding-bottom: 0; height: 340px; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/storage/get-background-prefetch-data/get-background-prefetch-data.wxss 1 1; }\\n.\x22,[1],\x22page-body-title { margin-bottom: 20px; ;wxcs_originclass: .page-body-title;;wxcs_fileinfo: ./packageAPI/pages/storage/get-background-prefetch-data/get-background-prefetch-data.wxss 5 1; }\\n.\x22,[1],\x22page-body-text { padding: 0 15px; text-align: center; ;wxcs_originclass: .page-body-text;;wxcs_fileinfo: ./packageAPI/pages/storage/get-background-prefetch-data/get-background-prefetch-data.wxss 8 1; }\\n.\x22,[1],\x22context-value { font-size: 19px; ;wxcs_originclass: .context-value;;wxcs_fileinfo: ./packageAPI/pages/storage/get-background-prefetch-data/get-background-prefetch-data.wxss 12 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/storage/get-background-prefetch-data/get-background-prefetch-data.wxss\x22})=./packageAPI/pages/performance/get-performance/get-performance.wxss=setCssToHead([\x22.\x22,[1],\x22container { display: block; ;wxcs_originclass: .container;;wxcs_fileinfo: ./packageAPI/pages/performance/get-performance/get-performance.wxss 1 1; }\\n.\x22,[1],\x22performance-list { display: flex; flex-direction: column; width: 100%; align-items: center; ;wxcs_originclass: .performance-list;;wxcs_fileinfo: ./packageAPI/pages/performance/get-performance/get-performance.wxss 4 1; }\\n.\x22,[1],\x22performance-item { margin: 15px 0; width: 80%; ;wxcs_originclass: .performance-item;;wxcs_fileinfo: ./packageAPI/pages/performance/get-performance/get-performance.wxss 10 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/performance/get-performance/get-performance.wxss\x22})=./packageAPI/pages/worker/worker/worker.wxss=setCssToHead([\x22.\x22,[1],\x22canvas { width: 305px; height: 305px; background-color: #fff; ;wxcs_originclass: .canvas;;wxcs_fileinfo: ./packageAPI/pages/worker/worker/worker.wxss 3 1; }\\n.\x22,[1],\x22page-section-title { margin-top: 15px; ;wxcs_originclass: .page-section-title;;wxcs_fileinfo: ./packageAPI/pages/worker/worker/worker.wxss 9 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/worker/worker/worker.wxss\x22})=./packageAPI/pages/framework/two-way-bindings/two-way-bindings.wxss=setCssToHead([\x22.\x22,[1],\x22input { margin: 15px auto; width: 80%; ;wxcs_originclass: .input;;wxcs_fileinfo: ./packageAPI/pages/framework/two-way-bindings/two-way-bindings.wxss 1 1; }\\n.\x22,[1],\x22text { margin: 15px auto; width: 80%; ;wxcs_originclass: .text;;wxcs_fileinfo: ./packageAPI/pages/framework/two-way-bindings/two-way-bindings.wxss 6 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/framework/two-way-bindings/two-way-bindings.wxss\x22})=./packageAPI/pages/framework/wxs/wxs.wxss=setCssToHead([],undefined,{path:\x22./packageAPI/pages/framework/wxs/wxs.wxss\x22})=./packageAPI/pages/framework/resizable/resizable.wxss=setCssToHead([],undefined,{path:\x22./packageAPI/pages/framework/resizable/resizable.wxss\x22})=./packageAPI/pages/framework/wxs/movable.wxss=setCssToHead([],undefined,{path:\x22./packageAPI/pages/framework/wxs/movable.wxss\x22})=./packageAPI/pages/framework/wxs/sidebar.wxss=setCssToHead([\x22.\x22,[1],\x22container { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 100px 0; box-sizing: border-box; ;wxcs_originclass: .container;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 1 1; }\\nbody,.\x22,[1],\x22page { height: 100%; font-family: \\x27PingFang SC\\x27, \\x27Helvetica Neue\\x27, Helvetica, \\x27Droid Sans Fallback\\x27, \\x27Microsoft Yahei\\x27, sans-serif; ;wxcs_originclass: page,.page;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 10 1; }\\n.\x22,[1],\x22page-bottom{ height: 100%; width: 725px; position: fixed; background-color: #07c160; z-index: 0; ;wxcs_originclass: .page-bottom;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 14 1; }\\n.\x22,[1],\x22wc{ color: white; padding: 15px 0 15px 20px; ;wxcs_originclass: .wc;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 21 1; }\\n.\x22,[1],\x22page-content{ padding-top: 150px; ;wxcs_originclass: .page-content;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 25 1; }\\n.\x22,[1],\x22page-top{ height: 100%; position: fixed; width: 725px; background-color: var(--weui-BG-1); z-index: 0; transition: All 0.4s ease; -webkit-transition: All 0.4s ease; ;wxcs_originclass: .page-top;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 28 1; }\\n.\x22,[1],\x22c-state1{ transform: rotate(0deg) scale(1) translate(40%,0%); -webkit-transform: rotate(0deg) scale(1) translate(40%,0%); ;wxcs_originclass: .c-state1;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 38 1; }\\n.\x22,[1],\x22c-state2{ transform: rotate(0deg) scale(.8) translate(40%,0%); -webkit-transform: rotate(0deg) scale(.8) translate(40%,0%); ;wxcs_originclass: .c-state2;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 42 1; }\\n.\x22,[1],\x22item-title { margin: 10px 10px 5px; font-size: 18px; width: 100%; ;wxcs_originclass: .item-title;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 47 1; }\\n.\x22,[1],\x22item-desc { margin: 5px 10px 0; width: 100%; color: #00000080 ;wxcs_originclass: .item-desc;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 52 1; }\\n\x22,],\x22Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/framework/wxs/sidebar.wxss:10:1)\x22,{path:\x22./packageAPI/pages/framework/wxs/sidebar.wxss\x22})=./packageAPI/pages/framework/wxs/stick-top.wxss=setCssToHead([\x22.\x22,[1],\x22page-banner{ height:200px; background-color: #fff; color:#fff; ;wxcs_originclass: .page-banner;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/stick-top.wxss 1 1; }\\n.\x22,[1],\x22page-group{ display: table; width: 100%; table-layout: fixed; position: relative; top: 0; left: 0; ;wxcs_originclass: .page-group;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/stick-top.wxss 6 1; }\\n.\x22,[1],\x22page-group-position{ position: fixed; ;wxcs_originclass: .page-group-position;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/stick-top.wxss 15 1; }\\n.\x22,[1],\x22page-nav-list{ padding:15px 0 ; display: table-cell; text-align: center; color: #07c160; ;wxcs_originclass: .page-nav-list;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/stick-top.wxss 18 1; }\\n.\x22,[1],\x22goods-list{ height: 300px; background-color: var(--weui-BG-2); padding: 10px; display: flex; flex-direction: column; align-items: center; ;wxcs_originclass: .goods-list;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/stick-top.wxss 24 1; }\\n.\x22,[1],\x22item-title { margin: 10px 10px 5px; font-size: 18px; width: 100%; ;wxcs_originclass: .item-title;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/stick-top.wxss 32 1; }\\n.\x22,[1],\x22item-desc { margin: 5px 10px 0; width: 100%; color: var(--weui-FG-2) ;wxcs_originclass: .item-desc;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/stick-top.wxss 37 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/framework/wxs/stick-top.wxss\x22})=./packageAPI/pages/framework/wxs/nearby.wxss=setCssToHead([\x22.\x22,[1],\x22swiper { width: 100%; max-width: 600px; ;wxcs_originclass: .swiper;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/nearby.wxss 2 1; }\\n\x22,],undefined,{path:\x22./packageAPI/pages/framework/wxs/nearby.wxss\x22})=./packageAPI/app.wxss=setCssToHead([],undefined,{path:\x22./packageAPI/app.wxss\x22})= \ No newline at end of file diff --git a/compiler/test/wcsc/ll/4/ll4.js b/compiler/test/wcsc/ll/4/ll4.js new file mode 100644 index 0000000..077ef42 --- /dev/null +++ b/compiler/test/wcsc/ll/4/ll4.js @@ -0,0 +1,208 @@ +#!/usr/bin/env node + +const { spawn, spawnSync } = require("child_process"); +const path = require("path"); +const fs = require("fs"); +const { exit } = require("process"); +const util = require('util') + +const projectPath = "/mnt/disk1/WeChatProjects/miniprogram-demo/miniprogram/"; +const config = [ + "-db", + "-pc", + "70", + "./packageAPI/pages/api/login/login.wxss", + "./packageAPI/pages/api/get-user-info/get-user-info.wxss", + "./packageAPI/pages/api/request-payment/request-payment.wxss", + "./packageAPI/pages/api/jump/jump.wxss", + "./packageAPI/pages/api/share/share.wxss", + "./packageAPI/pages/api/share-button/share-button.wxss", + "./packageAPI/pages/api/custom-message/custom-message.wxss", + "./packageAPI/pages/api/subscribe-message/subscribe-message.wxss", + "./packageAPI/pages/api/choose-address/choose-address.wxss", + "./packageAPI/pages/api/choose-invoice-title/choose-invoice-title.wxss", + "./packageAPI/pages/api/soter-authentication/soter-authentication.wxss", + "./packageAPI/pages/api/setting/setting.wxss", + "./packageAPI/pages/page/set-navigation-bar-title/set-navigation-bar-title.wxss", + "./packageAPI/pages/page/navigation-bar-loading/navigation-bar-loading.wxss", + "./packageAPI/pages/page/navigator/navigator.wxss", + "./packageAPI/pages/page/pull-down-refresh/pull-down-refresh.wxss", + "./packageAPI/pages/page/animation/animation.wxss", + "./packageAPI/pages/page/action-sheet/action-sheet.wxss", + "./packageAPI/pages/page/modal/modal.wxss", + "./packageAPI/pages/page/toast/toast.wxss", + "./packageAPI/pages/page/canvas/canvas.wxss", + "./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss", + "./packageAPI/pages/page/page-scroll/page-scroll.wxss", + "./packageAPI/pages/page/intersection-observer/intersection-observer.wxss", + "./packageAPI/pages/device/clipboard-data/clipboard-data.wxss", + "./packageAPI/pages/device/bluetooth/bluetooth.wxss", + "./packageAPI/pages/device/bluetooth/slave/slave.wxss", + "./packageAPI/pages/device/screen-brightness/screen-brightness.wxss", + "./packageAPI/pages/device/vibrate/vibrate.wxss", + "./packageAPI/pages/device/add-contact/add-contact.wxss", + "./packageAPI/pages/device/wifi/wifi.wxss", + "./packageAPI/pages/device/get-network-type/get-network-type.wxss", + "./packageAPI/pages/device/on-network-status-change/on-network-status-change.wxss", + "./packageAPI/pages/device/get-system-info/get-system-info.wxss", + "./packageAPI/pages/device/on-compass-change/on-compass-change.wxss", + "./packageAPI/pages/device/make-phone-call/make-phone-call.wxss", + "./packageAPI/pages/device/scan-code/scan-code.wxss", + "./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss", + "./packageAPI/pages/device/capture-screen/capture-screen.wxss", + "./packageAPI/pages/device/ibeacon/ibeacon.wxss", + "./packageAPI/pages/device/get-battery-info/get-battery-info.wxss", + "./packageAPI/pages/media/image/image.wxss", + "./packageAPI/pages/media/voice/voice.wxss", + "./packageAPI/pages/media/file/file.wxss", + "./packageAPI/pages/media/load-font-face/load-font-face.wxss", + "./packageAPI/pages/media/background-audio/background-audio.wxss", + "./packageAPI/pages/media/video/video.wxss", + "./packageAPI/pages/media/audio/audio.wxss", + "./packageAPI/pages/media/media-container/media-container.wxss", + "./packageAPI/pages/location/get-location/get-location.wxss", + "./packageAPI/pages/location/open-location/open-location.wxss", + "./packageAPI/pages/location/choose-location/choose-location.wxss", + "./packageAPI/pages/network/request/request.wxss", + "./packageAPI/pages/network/web-socket/web-socket.wxss", + "./packageAPI/pages/network/upload-file/upload-file.wxss", + "./packageAPI/pages/network/download-file/download-file.wxss", + "./packageAPI/pages/network/mdns/mdns.wxss", + "./packageAPI/pages/network/udp-socket/udp-socket.wxss", + "./packageAPI/pages/storage/storage/storage.wxss", + "./packageAPI/pages/storage/get-background-fetch-data/get-background-fetch-data.wxss", + "./packageAPI/pages/storage/get-background-prefetch-data/get-background-prefetch-data.wxss", + "./packageAPI/pages/performance/get-performance/get-performance.wxss", + "./packageAPI/pages/worker/worker/worker.wxss", + "./packageAPI/pages/framework/two-way-bindings/two-way-bindings.wxss", + "./packageAPI/pages/framework/wxs/wxs.wxss", + "./packageAPI/pages/framework/resizable/resizable.wxss", + "./packageAPI/pages/framework/wxs/movable.wxss", + "./packageAPI/pages/framework/wxs/sidebar.wxss", + "./packageAPI/pages/framework/wxs/stick-top.wxss", + "./packageAPI/pages/framework/wxs/nearby.wxss", + "./app.wxss", + "./common/lib/weui.wxss", + "./miniprogram_npm/miniprogram-barrage/index.wxss", + "./miniprogram_npm/miniprogram-recycle-view/recycle-item.wxss", + "./miniprogram_npm/miniprogram-recycle-view/recycle-view.wxss", + "./miniprogram_npm/wxml-to-canvas/index.wxss", + "./page/API/components/set-tab-bar/set-tab-bar.wxss", + "./page/API/index.wxss", + "./page/cloud/index.wxss", + "./page/common/common.wxss", + "./page/common/index.wxss", + "./page/common/lib/weui.wxss", + "./page/component/index.wxss", + "./page/extend/index.wxss", + "--subpackage", + "packageAPI", + "-ll", +]; + +const test_wine = () => { + const wine = spawn( + path.resolve(__dirname, "../../../../../package.nw/js/vendor/wcsc.exe"), + config, + { + cwd: projectPath, + } + ); + const spwanData = [], + errData = []; + wine.stdout.on("data", (e) => { + spwanData.push(e); + }); + wine.stderr.on("data", (e) => { + errData.push(e); + }); + return new Promise((resolve, reject) => { + wine.on("close", (n) => { + console.log("wine n: ", n); + if (0 === n) { + let result = Buffer.concat(spwanData).toString(); + result = JSON.parse(result); + // delete result.generateFunctionContent["__COMMON__"]; + result = JSON.stringify(result, null, 4); + // result = result.common; + fs.writeFileSync( + path.resolve(__dirname, "./wine_output.json"), + result + ); + // process.stdout.write(result); + resolve(result); + } else { + process.stderr.write( + "wine error:", + Buffer.concat(errData).toString() + ); + // process.stderr.write(Buffer.concat(spwanData).toString()); + reject(n); + } + }); + }); +}; +const test_node = () => { + const node_exec = spawn( + path.resolve(__dirname, "../../../../nodejs/wcsc"), + config, + { + cwd: projectPath, + env: { + WX_DEBUG_COMPILER_OUTPUT: __dirname, + }, + // stdio: 'inherit' + } + ); + const spwanData = [], + errData = []; + node_exec.stdout.on("data", (e) => { + spwanData.push(e); + // console.log(e.toString()) + }); + node_exec.stderr.on("data", (e) => { + errData.push(e); + // console.log(e.toString()) + }); + return new Promise((resolve, reject) => { + node_exec.on("close", (n) => { + console.log("node n: ", n); + if (0 === n) { + let result = Buffer.concat(spwanData).toString(); + // require('fs').writeFileSync('/mnt/disk2/wechat-web-devtools-linux/tmp/llw2.json', result) + // process.stdout.write(result); + result = JSON.parse(result); + // delete result.generateFunctionContent["__COMMON__"]; + result = JSON.stringify(result, null, 4); + // result = result.common; + fs.writeFileSync( + path.resolve(__dirname, "./node_output.json"), + result + ); + fs.writeFileSync( + path.resolve(__dirname, "./node_stderr.json"), + Buffer.concat(errData) + ); + resolve(result); + } else { + console.error("错误"); + process.stderr.write(Buffer.concat(errData).toString()); + // process.stderr.write(Buffer.concat(spwanData).toString()); + reject(n); + } + }); + }); +}; + +const test = async () => { + try { + const node_result = await test_node(); + const wine_result = await test_wine(); + const t1 = JSON.parse(node_result); + const t2 = JSON.parse(wine_result); + console.log(util.isDeepStrictEqual(t1, t2)) + } catch (err) { + console.error("错误:", err); + } +}; +test(); diff --git a/compiler/test/wcsc/ll/4/node_output.json b/compiler/test/wcsc/ll/4/node_output.json new file mode 100644 index 0000000..87184cc --- /dev/null +++ b/compiler/test/wcsc/ll/4/node_output.json @@ -0,0 +1,76 @@ +{ + "common": "var BASE_DEVICE_WIDTH = 750;\nvar isIOS=navigator.userAgent.match(\"iPhone\");\nvar deviceWidth = window.screen.width || 375;\nvar deviceDPR = window.devicePixelRatio || 2;\nvar checkDeviceWidth = window.__checkDeviceWidth__ || function() {\nvar newDeviceWidth = window.screen.width || 375\nvar newDeviceDPR = window.devicePixelRatio || 2\nvar newDeviceHeight = window.screen.height || 375\nif (window.screen.orientation && /^landscape/.test(window.screen.orientation.type || '')) newDeviceWidth = newDeviceHeight\nif (newDeviceWidth !== deviceWidth || newDeviceDPR !== deviceDPR) {\ndeviceWidth = newDeviceWidth\ndeviceDPR = newDeviceDPR\n}\n}\ncheckDeviceWidth()\nvar eps = 1e-4;\nvar transformRPX = window.__transformRpx__ || function(number, newDeviceWidth) {\nif ( number === 0 ) return 0;\nnumber = number / BASE_DEVICE_WIDTH * ( newDeviceWidth || deviceWidth );\nnumber = Math.floor(number + eps);\nif (number === 0) {\nif (deviceDPR === 1 || !isIOS) {\nreturn 1;\n} else {\nreturn 0.5;\n}\n}\nreturn number;\n}\nwindow.__rpxRecalculatingFuncs__ = window.__rpxRecalculatingFuncs__ || [];\nvar __COMMON_STYLESHEETS__ = __COMMON_STYLESHEETS__||{}\n\nvar setCssToHead = function(file, _xcInvalid, info) {\nvar Ca = {};\nvar css_id;\nvar info = info || {};\nvar _C = __COMMON_STYLESHEETS__\nfunction makeup(file, opt) {\nvar _n = typeof(file) === \"string\";\nif ( _n && Ca.hasOwnProperty(file)) return \"\";\nif ( _n ) Ca[file] = 1;\nvar ex = _n ? _C[file] : file;\nvar res=\"\";\nfor (var i = ex.length - 1; i >= 0; i--) {\nvar content = ex[i];\nif (typeof(content) === \"object\")\n{\nvar op = content[0];\nif ( op == 0 )\nres = transformRPX(content[1], opt.deviceWidth) + \"px\" + res;\nelse if ( op == 1)\nres = opt.suffix + res;\nelse if ( op == 2 )\nres = makeup(content[1], opt) + res;\n}\nelse\nres = content + res\n}\nreturn res;\n}\nvar styleSheetManager = window.__styleSheetManager2__\nvar rewritor = function(suffix, opt, style){\nopt = opt || {};\nsuffix = suffix || \"\";\nopt.suffix = suffix;\nif ( opt.allowIllegalSelector != undefined && _xcInvalid != undefined )\n{\nif ( opt.allowIllegalSelector )\nconsole.warn( \"For developer:\" + _xcInvalid );\nelse\n{\nconsole.error( _xcInvalid );\n}\n}\nCa={};\ncss = makeup(file, opt);\nif (styleSheetManager) {\nvar key = (info.path || Math.random()) + ':' + suffix\nif (!style) {\nstyleSheetManager.addItem(key, info.path);\nwindow.__rpxRecalculatingFuncs__.push(function(size){\nopt.deviceWidth = size.width;\nrewritor(suffix, opt, true);\n});\n}\nstyleSheetManager.setCss(key, css);\nreturn;\n}\nif ( !style )\n{\nvar head = document.head || document.getElementsByTagName('head')[0];\nstyle = document.createElement('style');\nstyle.type = 'text/css';\nstyle.setAttribute( \"wxss:path\", info.path );\nhead.appendChild(style);\nwindow.__rpxRecalculatingFuncs__.push(function(size){\nopt.deviceWidth = size.width;\nrewritor(suffix, opt, style);\n});\n}\nif (style.styleSheet) {\nstyle.styleSheet.cssText = css;\n} else {\nif ( style.childNodes.length == 0 )\nstyle.appendChild(document.createTextNode(css));\nelse\nstyle.childNodes[0].nodeValue = css;\n}\n}\nreturn rewritor;\n}\nsetCssToHead([\"[is\\x3d\\x22common/lib/weui\\x22]{width: 100% ;wxcs_fileinfo: ./common/lib/weui.wxss 4082 1;}\\n[is\\x3d\\x22miniprogram_npm/miniprogram-recycle-view/recycle-item\\x22]{display: inline-block; ;wxcs_fileinfo: ./miniprogram_npm/miniprogram-recycle-view/recycle-item.wxss 2 1;}\\n[is\\x3d\\x22miniprogram_npm/miniprogram-recycle-view/recycle-view\\x22]{display: block; width: 100%; ;wxcs_fileinfo: ./miniprogram_npm/miniprogram-recycle-view/recycle-view.wxss 2 1;}\\n[is\\x3d\\x22page/common/lib/weui\\x22]{width: 100% ;wxcs_fileinfo: ./page/common/lib/weui.wxss 4082 1;}\\n\",])();setCssToHead([],undefined,{path:\"./packageAPI/app.wxss\"})();", + "pageWxss": { + "./packageAPI/pages/api/login/login.wxss": "setCssToHead([\".\",[1],\"page-section { margin-top: 100px; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; padding: 0 25px; box-sizing: border-box; ;wxcs_originclass: .page-section;;wxcs_fileinfo: ./packageAPI/pages/api/login/login.wxss 3 1; }\\n.\",[1],\"page-body-title { font-size: 30px; line-height: 100px; ;wxcs_originclass: .page-body-title;;wxcs_fileinfo: ./packageAPI/pages/api/login/login.wxss 13 1; }\\n.\",[1],\"page-body-text { color: #bbb; font-size: 14px; line-height: 20px; margin: 0 0 50px 0; text-align: center; ;wxcs_originclass: .page-body-text;;wxcs_fileinfo: ./packageAPI/pages/api/login/login.wxss 17 1; }\\n.\",[1],\"page-body-button { width: 100%; ;wxcs_originclass: .page-body-button;;wxcs_fileinfo: ./packageAPI/pages/api/login/login.wxss 24 1; }\\n\",],undefined,{path:\"./packageAPI/pages/api/login/login.wxss\"})", + "./packageAPI/pages/api/get-user-info/get-user-info.wxss": "setCssToHead([\".\",[1],\"page-body-info { padding-bottom: 0; height: 230px; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/api/get-user-info/get-user-info.wxss 1 1; }\\n.\",[1],\"userinfo-avatar { border-radius: 114px; width: 114px; height: 114px; ;wxcs_originclass: .userinfo-avatar;;wxcs_fileinfo: ./packageAPI/pages/api/get-user-info/get-user-info.wxss 5 1; }\\n.\",[1],\"userinfo-nickname { margin-top: 10px; font-size: 19px; ;wxcs_originclass: .userinfo-nickname;;wxcs_fileinfo: ./packageAPI/pages/api/get-user-info/get-user-info.wxss 10 1; }\\n\",],undefined,{path:\"./packageAPI/pages/api/get-user-info/get-user-info.wxss\"})", + "./packageAPI/pages/api/request-payment/request-payment.wxss": "setCssToHead([\".\",[1],\"page-section{ width: auto; margin: 15px; padding: 62px 15px; background-color: var(--weui-BG-2); text-align: center; font-size: 14px; ;wxcs_originclass: .page-section;;wxcs_fileinfo: ./packageAPI/pages/api/request-payment/request-payment.wxss 1 1; }\\n.\",[1],\"desc{ color: var(--weui-FG-1); ;wxcs_originclass: .desc;;wxcs_fileinfo: ./packageAPI/pages/api/request-payment/request-payment.wxss 9 1; }\\n.\",[1],\"price{ margin-top: 15px; margin-bottom: 13px; position: relative; display: inline-block; font-size: 39px; line-height: 1; ;wxcs_originclass: .price;;wxcs_fileinfo: ./packageAPI/pages/api/request-payment/request-payment.wxss 12 1; }\\n.\",[1],\"price:before{ content: \\x22¥\\x22; position: absolute; font-size: 20px; top: 4px; left: -20px; ;wxcs_originclass: .price:before;;wxcs_fileinfo: ./packageAPI/pages/api/request-payment/request-payment.wxss 20 1; }\\n\",],undefined,{path:\"./packageAPI/pages/api/request-payment/request-payment.wxss\"})", + "./packageAPI/pages/api/jump/jump.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/api/jump/jump.wxss\"})", + "./packageAPI/pages/api/share/share.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/api/share/share.wxss\"})", + "./packageAPI/pages/api/share-button/share-button.wxss": "setCssToHead([\".\",[1],\"button-share { display: none; ;wxcs_originclass: .button-share;;wxcs_fileinfo: ./packageAPI/pages/api/share-button/share-button.wxss 1 1; }\\n\",],undefined,{path:\"./packageAPI/pages/api/share-button/share-button.wxss\"})", + "./packageAPI/pages/api/custom-message/custom-message.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/api/custom-message/custom-message.wxss\"})", + "./packageAPI/pages/api/subscribe-message/subscribe-message.wxss": "setCssToHead([\".\",[1],\"page-section { margin-top: 100px; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; padding: 0 25px; box-sizing: border-box; ;wxcs_originclass: .page-section;;wxcs_fileinfo: ./packageAPI/pages/api/subscribe-message/subscribe-message.wxss 1 1; }\\n.\",[1],\"page-body-title { font-size: 30px; line-height: 100px; ;wxcs_originclass: .page-body-title;;wxcs_fileinfo: ./packageAPI/pages/api/subscribe-message/subscribe-message.wxss 11 1; }\\n.\",[1],\"page-body-text { color: var(--weui-FG-1); font-size: 14px; line-height: 20px; margin: 0 0 50px 0; text-align: center; ;wxcs_originclass: .page-body-text;;wxcs_fileinfo: ./packageAPI/pages/api/subscribe-message/subscribe-message.wxss 15 1; }\\n.\",[1],\"page-body-button { width: 100%; ;wxcs_originclass: .page-body-button;;wxcs_fileinfo: ./packageAPI/pages/api/subscribe-message/subscribe-message.wxss 22 1; }\\n\",],undefined,{path:\"./packageAPI/pages/api/subscribe-message/subscribe-message.wxss\"})", + "./packageAPI/pages/api/choose-address/choose-address.wxss": "setCssToHead([\"wx-form { margin-top: 15px; ;wxcs_originclass: form;;wxcs_fileinfo: ./packageAPI/pages/api/choose-address/choose-address.wxss 3 1; }\\n.\",[1],\"weui-cell__bd { display: flex; justify-content: flex-start; align-items: center; padding: 10px 0; min-height: 30px; ;wxcs_originclass: .weui-cell__bd;;wxcs_fileinfo: ./packageAPI/pages/api/choose-address/choose-address.wxss 7 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/api/choose-address/choose-address.wxss:3:1)\",{path:\"./packageAPI/pages/api/choose-address/choose-address.wxss\"})", + "./packageAPI/pages/api/choose-invoice-title/choose-invoice-title.wxss": "setCssToHead([\"wx-form { margin-top: 15px; ;wxcs_originclass: form;;wxcs_fileinfo: ./packageAPI/pages/api/choose-invoice-title/choose-invoice-title.wxss 3 1; }\\n.\",[1],\"weui-cell__bd { display: flex; justify-content: flex-start; padding: 10px 0; min-height: 30px; align-items: center; ;wxcs_originclass: .weui-cell__bd;;wxcs_fileinfo: ./packageAPI/pages/api/choose-invoice-title/choose-invoice-title.wxss 7 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/api/choose-invoice-title/choose-invoice-title.wxss:3:1)\",{path:\"./packageAPI/pages/api/choose-invoice-title/choose-invoice-title.wxss\"})", + "./packageAPI/pages/api/soter-authentication/soter-authentication.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/api/soter-authentication/soter-authentication.wxss\"})", + "./packageAPI/pages/api/setting/setting.wxss": "setCssToHead([\"wx-form { margin-top: 15px; ;wxcs_originclass: form;;wxcs_fileinfo: ./packageAPI/pages/api/setting/setting.wxss 3 1; }\\n.\",[1],\"weui-cell__bd { display: flex; justify-content: center; padding: 10px 0; min-height: 30px; ;wxcs_originclass: .weui-cell__bd;;wxcs_fileinfo: ./packageAPI/pages/api/setting/setting.wxss 7 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/api/setting/setting.wxss:3:1)\",{path:\"./packageAPI/pages/api/setting/setting.wxss\"})", + "./packageAPI/pages/page/set-navigation-bar-title/set-navigation-bar-title.wxss": "setCssToHead([\".\",[1],\"weui-label{ width: 5em; ;wxcs_originclass: .weui-label;;wxcs_fileinfo: ./packageAPI/pages/page/set-navigation-bar-title/set-navigation-bar-title.wxss 3 1; }\\n\",],undefined,{path:\"./packageAPI/pages/page/set-navigation-bar-title/set-navigation-bar-title.wxss\"})", + "./packageAPI/pages/page/navigation-bar-loading/navigation-bar-loading.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/page/navigation-bar-loading/navigation-bar-loading.wxss\"})", + "./packageAPI/pages/page/navigator/navigator.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/page/navigator/navigator.wxss\"})", + "./packageAPI/pages/page/pull-down-refresh/pull-down-refresh.wxss": "setCssToHead([\".\",[1],\"page-body-info { background-color: transparent; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/page/pull-down-refresh/pull-down-refresh.wxss 1 1; }\\n.\",[1],\"btn-area{ margin-top: 150px; ;wxcs_originclass: .btn-area;;wxcs_fileinfo: ./packageAPI/pages/page/pull-down-refresh/pull-down-refresh.wxss 4 1; }\\n\",],undefined,{path:\"./packageAPI/pages/page/pull-down-refresh/pull-down-refresh.wxss\"})", + "./packageAPI/pages/page/animation/animation.wxss": "setCssToHead([\".\",[1],\"animation-element-wrapper { display: flex; width: 100%; padding-top: 75px; padding-bottom: 75px; justify-content: center; overflow: hidden; background-color: #ffffff; ;wxcs_originclass: .animation-element-wrapper;;wxcs_fileinfo: ./packageAPI/pages/page/animation/animation.wxss 1 1; }\\n.\",[1],\"animation-element { width: 100px; height: 100px; background-color: #1AAD19; ;wxcs_originclass: .animation-element;;wxcs_fileinfo: ./packageAPI/pages/page/animation/animation.wxss 10 1; }\\n.\",[1],\"animation-buttons { padding: 15px 25px 5px; width: 100%; height: 330px; box-sizing: border-box; ;wxcs_originclass: .animation-buttons;;wxcs_fileinfo: ./packageAPI/pages/page/animation/animation.wxss 15 1; }\\n.\",[1],\"animation-button { float: left; line-height: 2; width: 150px; margin: 8px 11px; ;wxcs_originclass: .animation-button;;wxcs_fileinfo: ./packageAPI/pages/page/animation/animation.wxss 21 1; }\\n.\",[1],\"animation-button-reset { width: 610px; ;wxcs_originclass: .animation-button-reset;;wxcs_fileinfo: ./packageAPI/pages/page/animation/animation.wxss 28 1; }\\n.\",[1],\"btn-row { display: flex; justify-content: space-between; ;wxcs_originclass: .btn-row;;wxcs_fileinfo: ./packageAPI/pages/page/animation/animation.wxss 32 1; }\\n\",],undefined,{path:\"./packageAPI/pages/page/animation/animation.wxss\"})", + "./packageAPI/pages/page/action-sheet/action-sheet.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/page/action-sheet/action-sheet.wxss\"})", + "./packageAPI/pages/page/modal/modal.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/page/modal/modal.wxss\"})", + "./packageAPI/pages/page/toast/toast.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/page/toast/toast.wxss\"})", + "./packageAPI/pages/page/canvas/canvas.wxss": "setCssToHead([\".\",[1],\"canvas-element-wrapper { display: block; margin-bottom: 50px; ;wxcs_originclass: .canvas-element-wrapper;;wxcs_fileinfo: ./packageAPI/pages/page/canvas/canvas.wxss 1 1; }\\n.\",[1],\"canvas-element { width: 100%; height: 250px; background-color: #ffffff; ;wxcs_originclass: .canvas-element;;wxcs_fileinfo: ./packageAPI/pages/page/canvas/canvas.wxss 5 1; }\\n.\",[1],\"canvas-buttons { padding: 15px 25px 5px; width: 100%; height: 330px; box-sizing: border-box; ;wxcs_originclass: .canvas-buttons;;wxcs_fileinfo: ./packageAPI/pages/page/canvas/canvas.wxss 10 1; }\\n.\",[1],\"canvas-button { float: left; line-height: 2; width: 150px; margin: 8px 11px; ;wxcs_originclass: .canvas-button;;wxcs_fileinfo: ./packageAPI/pages/page/canvas/canvas.wxss 16 1; }\\n\",],undefined,{path:\"./packageAPI/pages/page/canvas/canvas.wxss\"})", + "./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss": "setCssToHead([\"wx-movable-view { display: flex; align-items: center; justify-content: center; height: 50px; width: 50px; background: #1AAD19; color: #fff; ;wxcs_originclass: movable-view;;wxcs_fileinfo: ./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss 1 1; }\\nwx-movable-area { height: 200px; width: 200px; background-color: #ccc; overflow: hidden; ;wxcs_originclass: movable-area;;wxcs_fileinfo: ./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss 11 1; }\\n.\",[1],\"page-section { display: flex; justify-content: center; ;wxcs_originclass: .page-section;;wxcs_fileinfo: ./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss 18 1; }\\n.\",[1],\"page-body { display: flex; flex-direction: column; align-items: center; ;wxcs_originclass: .page-body;;wxcs_fileinfo: ./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss 23 1; }\\n.\",[1],\"metric { width: 200px; display: flex; justify-content: center; flex-direction:column; align-items:center; ;wxcs_originclass: .metric;;wxcs_fileinfo: ./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss 29 1; }\\n.\",[1],\"b { display: inline-block; width: 75px; font-weight: bold; ;wxcs_originclass: .b;;wxcs_fileinfo: ./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss 37 1; }\\n.\",[1],\"span { display: inline-block; width: 50px; ;wxcs_originclass: .span;;wxcs_fileinfo: ./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss 43 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss:11:1)\",{path:\"./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss\"})", + "./packageAPI/pages/page/page-scroll/page-scroll.wxss": "setCssToHead([\".\",[1],\"rect { width: 50px; height: 50px; background-color: #ccc; ;wxcs_originclass: .rect;;wxcs_fileinfo: ./packageAPI/pages/page/page-scroll/page-scroll.wxss 1 1; }\\n.\",[1],\"filling-area { height: 1250px; ;wxcs_originclass: .filling-area;;wxcs_fileinfo: ./packageAPI/pages/page/page-scroll/page-scroll.wxss 7 1; }\\n\",],undefined,{path:\"./packageAPI/pages/page/page-scroll/page-scroll.wxss\"})", + "./packageAPI/pages/page/intersection-observer/intersection-observer.wxss": "setCssToHead([\".\",[1],\"scroll-view { height: 200px; background: var(--weui-BG-2); ;wxcs_originclass: .scroll-view;;wxcs_fileinfo: ./packageAPI/pages/page/intersection-observer/intersection-observer.wxss 1 1; }\\n.\",[1],\"scroll-area { height: 1150px; display: flex; flex-direction: column; align-items: center; transition: .5s; ;wxcs_originclass: .scroll-area;;wxcs_fileinfo: ./packageAPI/pages/page/intersection-observer/intersection-observer.wxss 6 1; }\\n.\",[1],\"notice { margin-top: 75px; ;wxcs_originclass: .notice;;wxcs_fileinfo: ./packageAPI/pages/page/intersection-observer/intersection-observer.wxss 14 1; }\\n.\",[1],\"ball { width: 100px; height: 100px; background: #1AAD19; border-radius: 50%; ;wxcs_originclass: .ball;;wxcs_fileinfo: ./packageAPI/pages/page/intersection-observer/intersection-observer.wxss 18 1; }\\n.\",[1],\"filling { height: 200px; ;wxcs_originclass: .filling;;wxcs_fileinfo: ./packageAPI/pages/page/intersection-observer/intersection-observer.wxss 25 1; }\\n.\",[1],\"message { width: 100%; display: flex; justify-content: center; ;wxcs_originclass: .message;;wxcs_fileinfo: ./packageAPI/pages/page/intersection-observer/intersection-observer.wxss 29 1; }\\n.\",[1],\"message wx-text { font-size: 20px; font-family: -apple-system-font, Helvetica Neue,Helvetica,sans-serif; ;wxcs_originclass: .message text;;wxcs_fileinfo: ./packageAPI/pages/page/intersection-observer/intersection-observer.wxss 35 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/page/intersection-observer/intersection-observer.wxss:35:10)\",{path:\"./packageAPI/pages/page/intersection-observer/intersection-observer.wxss\"})", + "./packageAPI/pages/device/clipboard-data/clipboard-data.wxss": "setCssToHead([\".\",[1],\"page-body-info { padding: 5px; height: 100px; overflow: scroll-y; text-align: left; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/device/clipboard-data/clipboard-data.wxss 3 1; }\\n\",],undefined,{path:\"./packageAPI/pages/device/clipboard-data/clipboard-data.wxss\"})", + "./packageAPI/pages/device/bluetooth/bluetooth.wxss": "setCssToHead([\".\",[1],\"devices_summary { padding: 5px; font-size: 15px; ;wxcs_originclass: .devices_summary;;wxcs_fileinfo: ./packageAPI/pages/device/bluetooth/bluetooth.wxss 2 1; }\\n.\",[1],\"device_list { height: 150px; border-radius: 3px; flex: 1; ;wxcs_originclass: .device_list;;wxcs_fileinfo: ./packageAPI/pages/device/bluetooth/bluetooth.wxss 6 1; }\\n.\",[1],\"device_item { border-bottom: 1px solid var(--weui-FG-3); padding: 5px; color: var(--weui-FG-HALF); ;wxcs_originclass: .device_item;;wxcs_fileinfo: ./packageAPI/pages/device/bluetooth/bluetooth.wxss 11 1; }\\n.\",[1],\"device_item_hover { background-color: rgba(0, 0, 0, .1); ;wxcs_originclass: .device_item_hover;;wxcs_fileinfo: ./packageAPI/pages/device/bluetooth/bluetooth.wxss 16 1; }\\n.\",[1],\"connected_info { position: fixed; bottom: 0; width: 100%; background-color: var(--weui-BG-4); padding: 5px; padding-bottom: 10px; margin-bottom: env(safe-area-inset-bottom); font-size: 14px; min-height: 50px; box-shadow: 0px 0px 2px 0px; ;wxcs_originclass: .connected_info;;wxcs_fileinfo: ./packageAPI/pages/device/bluetooth/bluetooth.wxss 19 1; }\\n.\",[1],\"connected_info .\",[1],\"operation { position: absolute; display: inline-block; right: 15px; ;wxcs_originclass: .connected_info .operation;;wxcs_fileinfo: ./packageAPI/pages/device/bluetooth/bluetooth.wxss 31 1; }\\n.\",[1],\"page-body-info { padding: 15px; box-sizing: border-box; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/device/bluetooth/bluetooth.wxss 36 1; }\\n\",],undefined,{path:\"./packageAPI/pages/device/bluetooth/bluetooth.wxss\"})", + "./packageAPI/pages/device/bluetooth/slave/slave.wxss": "setCssToHead([\".\",[1],\"action-area { display: flex; flex-direction: row; justify-content: space-around; ;wxcs_originclass: .action-area;;wxcs_fileinfo: ./packageAPI/pages/device/bluetooth/slave/slave.wxss 1 1; }\\n\",],undefined,{path:\"./packageAPI/pages/device/bluetooth/slave/slave.wxss\"})", + "./packageAPI/pages/device/screen-brightness/screen-brightness.wxss": "setCssToHead([\".\",[1],\"page-body-text-screen-brightness { font-size: 40px; font-family: -apple-system-font, Helvetica Neue,Helvetica,sans-serif; ;wxcs_originclass: .page-body-text-screen-brightness;;wxcs_fileinfo: ./packageAPI/pages/device/screen-brightness/screen-brightness.wxss 1 1; }\\n.\",[1],\"page-section-gap { padding: 15px; ;wxcs_originclass: .page-section-gap;;wxcs_fileinfo: ./packageAPI/pages/device/screen-brightness/screen-brightness.wxss 6 1; }\\n\",],undefined,{path:\"./packageAPI/pages/device/screen-brightness/screen-brightness.wxss\"})", + "./packageAPI/pages/device/vibrate/vibrate.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/device/vibrate/vibrate.wxss\"})", + "./packageAPI/pages/device/add-contact/add-contact.wxss": "setCssToHead([\"wx-input { width: 100%; ;wxcs_originclass: input;;wxcs_fileinfo: ./packageAPI/pages/device/add-contact/add-contact.wxss 3 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/device/add-contact/add-contact.wxss:3:1)\",{path:\"./packageAPI/pages/device/add-contact/add-contact.wxss\"})", + "./packageAPI/pages/device/wifi/wifi.wxss": "setCssToHead([\".\",[1],\"page-body-info { padding: 15px 30px; width: auto; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 1 1; }\\n.\",[1],\"device-list { height: 150px; text-align: center; ;wxcs_originclass: .device-list;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 6 1; }\\n.\",[1],\"item { width: 100%; margin-bottom: 10px; ;wxcs_originclass: .item;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 11 1; }\\n.\",[1],\"list { width: 100%; text-align: left; display:flex; flex-direction:row; align-items:center; justify-content:space-between; font-size: 15px; ;wxcs_originclass: .list;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 16 1; }\\n.\",[1],\"list wx-text { display: inline-block; max-width: 80%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; ;wxcs_originclass: .list text;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 26 1; }\\n.\",[1],\"strength-ready { color: #26a69a; ;wxcs_originclass: .strength-ready;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 34 1; }\\n.\",[1],\"strength-no { color: #37474f; ;wxcs_originclass: .strength-no;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 35 1; }\\n.\",[1],\"wifi-icon{ width: 20px; height:20px; display: inline-block; position: relative; overflow: hidden; margin: 0 10px; float: right; ;wxcs_originclass: .wifi-icon;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 36 1; }\\n.\",[1],\"wifi-icon wx-span{ display: block; position: absolute; border-radius: 50%; ;wxcs_originclass: .wifi-icon span;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 45 1; }\\n.\",[1],\"wifi-icon .\",[1],\"wifi-1{ width: 4px; height: 4px; left: 8px; bottom: 3px; background: currentcolor; ;wxcs_originclass: .wifi-icon .wifi-1;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 50 1; }\\n.\",[1],\"wifi-icon .\",[1],\"wifi-2,.\",[1],\"wifi-icon .\",[1],\"wifi-3,.\",[1],\"wifi-icon .\",[1],\"wifi-4{ border: 2px solid; border-color: currentcolor transparent transparent; ;wxcs_originclass: .wifi-icon .wifi-2,.wifi-icon .wifi-3,.wifi-icon .wifi-4;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 57 1; }\\n.\",[1],\"wifi-icon .\",[1],\"wifi-2{ width: 12px; height: 12px; left: 2px; bottom: -4px; ;wxcs_originclass: .wifi-icon .wifi-2;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 61 1; }\\n.\",[1],\"wifi-icon .\",[1],\"wifi-3{ width: 20px; height: 20px; left: -2px; bottom: -8px; ;wxcs_originclass: .wifi-icon .wifi-3;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 67 1; }\\n.\",[1],\"wifi-icon .\",[1],\"wifi-4{ width: 28px; height: 28px; left: -6px; bottom: -12px; ;wxcs_originclass: .wifi-icon .wifi-4;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 73 1; }\\n.\",[1],\"wifi-icon wx-span:after{ content: \\x22\\x22; display: block; position: absolute; ;wxcs_originclass: .wifi-icon span:after;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 79 1; }\\n.\",[1],\"wifi-icon .\",[1],\"lock{ width: 6px; height: 5px; background: currentcolor; display: block; right: 1px; bottom: 2px; border-radius: 0; ;wxcs_originclass: .wifi-icon .lock;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 84 1; }\\n.\",[1],\"wifi-icon .\",[1],\"lock:after{ width: 4px; height: 3px; border: 1px solid; border-radius: 100px 100px 0 0; border-bottom: none; left: 0px; bottom: 100%; ;wxcs_originclass: .wifi-icon .lock:after;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 93 1; }\\n.\",[1],\"off { border-color: #b0bec5 transparent transparent !important; ;wxcs_originclass: .off;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 102 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/device/wifi/wifi.wxss:79:12)\",{path:\"./packageAPI/pages/device/wifi/wifi.wxss\"})", + "./packageAPI/pages/device/get-network-type/get-network-type.wxss": "setCssToHead([\".\",[1],\"page-body-info { height: 100px; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/device/get-network-type/get-network-type.wxss 1 1; }\\n.\",[1],\"page-body-text-network-type { font-size: 40px; font-family: -apple-system-font,Helvetica Neue,Helvetica,sans-serif; ;wxcs_originclass: .page-body-text-network-type;;wxcs_fileinfo: ./packageAPI/pages/device/get-network-type/get-network-type.wxss 4 1; }\\n\",],undefined,{path:\"./packageAPI/pages/device/get-network-type/get-network-type.wxss\"})", + "./packageAPI/pages/device/on-network-status-change/on-network-status-change.wxss": "setCssToHead([\".\",[1],\"page-body-info { height: 100px; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/device/on-network-status-change/on-network-status-change.wxss 1 1; }\\n.\",[1],\"page-body-text-network-type { font-size: 40px; font-family: -apple-system-font,Helvetica Neue,Helvetica,sans-serif; ;wxcs_originclass: .page-body-text-network-type;;wxcs_fileinfo: ./packageAPI/pages/device/on-network-status-change/on-network-status-change.wxss 4 1; }\\n\",],undefined,{path:\"./packageAPI/pages/device/on-network-status-change/on-network-status-change.wxss\"})", + "./packageAPI/pages/device/get-system-info/get-system-info.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/device/get-system-info/get-system-info.wxss\"})", + "./packageAPI/pages/device/on-compass-change/on-compass-change.wxss": "setCssToHead([\".\",[1],\"direction { position: relative; margin-top: 35px; display: flex; width: 520px; height: 520px; align-items: center; justify-content: center; ;wxcs_originclass: .direction;;wxcs_fileinfo: ./packageAPI/pages/device/on-compass-change/on-compass-change.wxss 1 1; }\\n.\",[1],\"direction-value { position: relative; font-size: 100px; color: #353535; line-height: 1; z-index: 1; ;wxcs_originclass: .direction-value;;wxcs_fileinfo: ./packageAPI/pages/device/on-compass-change/on-compass-change.wxss 10 1; }\\n.\",[1],\"direction-degree { position: absolute; top: 0; right: -20px; font-size: 30px; ;wxcs_originclass: .direction-degree;;wxcs_fileinfo: ./packageAPI/pages/device/on-compass-change/on-compass-change.wxss 17 1; }\\n.\",[1],\"bg-compass{ position: absolute; top: 0; left: 0; width: 520px; height: 520px; transition: .1s; ;wxcs_originclass: .bg-compass;;wxcs_fileinfo: ./packageAPI/pages/device/on-compass-change/on-compass-change.wxss 23 1; }\\n.\",[1],\"bg-compass-line{ position: absolute; left: 134px; top: -5px; width: 3px; height: 28px; background-color: #1AAD19; border-radius: 500px; z-index: 1; ;wxcs_originclass: .bg-compass-line;;wxcs_fileinfo: ./packageAPI/pages/device/on-compass-change/on-compass-change.wxss 31 1; }\\n.\",[1],\"controls{ margin-top: 35px; ;wxcs_originclass: .controls;;wxcs_fileinfo: ./packageAPI/pages/device/on-compass-change/on-compass-change.wxss 41 1; }\\n.\",[1],\"controls wx-button{ margin-left: 10px; float: left; ;wxcs_originclass: .controls button;;wxcs_fileinfo: ./packageAPI/pages/device/on-compass-change/on-compass-change.wxss 44 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/device/on-compass-change/on-compass-change.wxss:44:11)\",{path:\"./packageAPI/pages/device/on-compass-change/on-compass-change.wxss\"})", + "./packageAPI/pages/device/make-phone-call/make-phone-call.wxss": "setCssToHead([\".\",[1],\"page-section{ width: auto; margin: 15px; padding: 42px 30px 30px; background-color: var(--weui-BG-2); font-size: 14px; ;wxcs_originclass: .page-section;;wxcs_fileinfo: ./packageAPI/pages/device/make-phone-call/make-phone-call.wxss 1 1; }\\n.\",[1],\"desc{ margin-bottom: 10px; ;wxcs_originclass: .desc;;wxcs_fileinfo: ./packageAPI/pages/device/make-phone-call/make-phone-call.wxss 8 1; }\\n.\",[1],\"input{ height: 60px; line-height: 60px; font-size: 39px; border-bottom: 1px solid var(--weui-FG-3); ;wxcs_originclass: .input;;wxcs_fileinfo: ./packageAPI/pages/device/make-phone-call/make-phone-call.wxss 11 1; }\\n.\",[1],\"btn-area{ padding: 0; ;wxcs_originclass: .btn-area;;wxcs_fileinfo: ./packageAPI/pages/device/make-phone-call/make-phone-call.wxss 17 1; }\\n\",],undefined,{path:\"./packageAPI/pages/device/make-phone-call/make-phone-call.wxss\"})", + "./packageAPI/pages/device/scan-code/scan-code.wxss": "setCssToHead([\".\",[1],\"weui-cell__bd{ min-height: 24px; word-break: break-all; ;wxcs_originclass: .weui-cell__bd;;wxcs_fileinfo: ./packageAPI/pages/device/scan-code/scan-code.wxss 3 1; }\\n\",],undefined,{path:\"./packageAPI/pages/device/scan-code/scan-code.wxss\"})", + "./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss": "setCssToHead([\".\",[1],\"page-body-xyz { display: flex; justify-content: space-between; width: 350px; margin-top: 45px; box-sizing: border-box; text-align: center; ;wxcs_originclass: .page-body-xyz;;wxcs_fileinfo: ./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss 1 1; }\\n.\",[1],\"page-body-canvas { margin-top: 15px; width: 302px; height: 302px; position: relative; ;wxcs_originclass: .page-body-canvas;;wxcs_fileinfo: ./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss 9 1; }\\n.\",[1],\"page-body-ball { position: absolute; top: 0; left: 0; width: 302px; height: 302px; ;wxcs_originclass: .page-body-ball;;wxcs_fileinfo: ./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss 15 1; }\\n.\",[1],\"page-body-title { margin-bottom: 0; font-size: 16px; width: 225px; ;wxcs_originclass: .page-body-title;;wxcs_fileinfo: ./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss 22 1; }\\n.\",[1],\"page-body-controls { margin-top: 15px; ;wxcs_originclass: .page-body-controls;;wxcs_fileinfo: ./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss 27 1; }\\n.\",[1],\"page-body-controls wx-button { margin-left: 10px; float: left; ;wxcs_originclass: .page-body-controls button;;wxcs_fileinfo: ./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss 30 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss:30:21)\",{path:\"./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss\"})", + "./packageAPI/pages/device/capture-screen/capture-screen.wxss": "setCssToHead([\".\",[1],\"page-body-text { font-size: 20px; font-family: -apple-system-font, Helvetica Neue,Helvetica,sans-serif; ;wxcs_originclass: .page-body-text;;wxcs_fileinfo: ./packageAPI/pages/device/capture-screen/capture-screen.wxss 1 1; }\\n\",],undefined,{path:\"./packageAPI/pages/device/capture-screen/capture-screen.wxss\"})", + "./packageAPI/pages/device/ibeacon/ibeacon.wxss": "setCssToHead([\".\",[1],\"page-body-info { margin-top: 25px; padding: 15px 30px; width: auto; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/device/ibeacon/ibeacon.wxss 3 1; }\\n.\",[1],\"devices_summary { padding: 5px; font-size: 15px; ;wxcs_originclass: .devices_summary;;wxcs_fileinfo: ./packageAPI/pages/device/ibeacon/ibeacon.wxss 9 1; }\\n.\",[1],\"device_list { height: 150px; border-radius: 3px; flex: 1; ;wxcs_originclass: .device_list;;wxcs_fileinfo: ./packageAPI/pages/device/ibeacon/ibeacon.wxss 13 1; }\\n.\",[1],\"device_item { border-bottom: 1px solid var(--weui-FG-3); padding: 5px; color: var(--weui-FG-HALF); ;wxcs_originclass: .device_item;;wxcs_fileinfo: ./packageAPI/pages/device/ibeacon/ibeacon.wxss 18 1; }\\n.\",[1],\"device_item_hover { background-color: rgba(0, 0, 0, .1); ;wxcs_originclass: .device_item_hover;;wxcs_fileinfo: ./packageAPI/pages/device/ibeacon/ibeacon.wxss 23 1; }\\n\",],undefined,{path:\"./packageAPI/pages/device/ibeacon/ibeacon.wxss\"})", + "./packageAPI/pages/device/get-battery-info/get-battery-info.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/device/get-battery-info/get-battery-info.wxss\"})", + "./packageAPI/pages/media/image/image.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/media/image/image.wxss\"})", + "./packageAPI/pages/media/voice/voice.wxss": "setCssToHead([\"wx-image { width: 75px; height: 75px; ;wxcs_originclass: image;;wxcs_fileinfo: ./packageAPI/pages/media/voice/voice.wxss 1 1; }\\n.\",[1],\"page-body-wrapper { justify-content: space-between; flex-grow: 1; margin-bottom: 150px; ;wxcs_originclass: .page-body-wrapper;;wxcs_fileinfo: ./packageAPI/pages/media/voice/voice.wxss 6 1; }\\n.\",[1],\"page-body-time { display: flex; flex-direction: column; align-items: center; ;wxcs_originclass: .page-body-time;;wxcs_fileinfo: ./packageAPI/pages/media/voice/voice.wxss 11 1; }\\n.\",[1],\"time-big { font-size: 30px; margin: 10px; ;wxcs_originclass: .time-big;;wxcs_fileinfo: ./packageAPI/pages/media/voice/voice.wxss 16 1; }\\n.\",[1],\"time-small { font-size: 15px; ;wxcs_originclass: .time-small;;wxcs_fileinfo: ./packageAPI/pages/media/voice/voice.wxss 20 1; }\\n.\",[1],\"page-body-buttons { margin-top: 30px; display: flex; justify-content: space-around; ;wxcs_originclass: .page-body-buttons;;wxcs_fileinfo: ./packageAPI/pages/media/voice/voice.wxss 24 1; }\\n.\",[1],\"page-body-button { width: 225px; text-align: center; ;wxcs_originclass: .page-body-button;;wxcs_fileinfo: ./packageAPI/pages/media/voice/voice.wxss 29 1; }\\n.\",[1],\"button-stop-record { width: 15px; height: 15px; border: 10px solid #fff; background-color: #f55c23; border-radius: 115px; margin: 0 auto; ;wxcs_originclass: .button-stop-record;;wxcs_fileinfo: ./packageAPI/pages/media/voice/voice.wxss 33 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/media/voice/voice.wxss:1:1)\",{path:\"./packageAPI/pages/media/voice/voice.wxss\"})", + "./packageAPI/pages/media/file/file.wxss": "setCssToHead([\".\",[1],\"image { width: 100%; height: 330px; ;wxcs_originclass: .image;;wxcs_fileinfo: ./packageAPI/pages/media/file/file.wxss 1 1; }\\n.\",[1],\"page-body-info { display: flex; box-sizing: border-box; padding: 15px; height: 410px; border-top: 1px solid var(--weui-FG-3); border-bottom: 1px solid var(--weui-FG-3); align-items: center; justify-content: center; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/media/file/file.wxss 5 1; }\\n\",],undefined,{path:\"./packageAPI/pages/media/file/file.wxss\"})", + "./packageAPI/pages/media/load-font-face/load-font-face.wxss": "setCssToHead([\".\",[1],\"page-body-info { align-items: center; padding: 100px 0; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/media/load-font-face/load-font-face.wxss 1 1; }\\n.\",[1],\"font-loaded { font-family: \\x22Bitstream Vera Serif Bold\\x22; ;wxcs_originclass: .font-loaded;;wxcs_fileinfo: ./packageAPI/pages/media/load-font-face/load-font-face.wxss 6 1; }\\n.\",[1],\"display-area { font-size: 20px; ;wxcs_originclass: .display-area;;wxcs_fileinfo: ./packageAPI/pages/media/load-font-face/load-font-face.wxss 10 1; }\\n\",],undefined,{path:\"./packageAPI/pages/media/load-font-face/load-font-face.wxss\"})", + "./packageAPI/pages/media/background-audio/background-audio.wxss": "setCssToHead([\"wx-image { width: 75px; height: 75px; ;wxcs_originclass: image;;wxcs_fileinfo: ./packageAPI/pages/media/background-audio/background-audio.wxss 1 1; }\\n.\",[1],\"page-body-wrapper { margin-top: 0; ;wxcs_originclass: .page-body-wrapper;;wxcs_fileinfo: ./packageAPI/pages/media/background-audio/background-audio.wxss 6 1; }\\n.\",[1],\"page-body-info { padding-bottom: 25px; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/media/background-audio/background-audio.wxss 9 1; }\\n.\",[1],\"time-big { font-size: 30px; margin: 10px; ;wxcs_originclass: .time-big;;wxcs_fileinfo: ./packageAPI/pages/media/background-audio/background-audio.wxss 12 1; }\\n.\",[1],\"slider { width: 90%; ;wxcs_originclass: .slider;;wxcs_fileinfo: ./packageAPI/pages/media/background-audio/background-audio.wxss 16 1; }\\n.\",[1],\"play-time { font-size: 14px; width: 350px; padding: 10px 0; display: flex; justify-content: space-between; box-sizing: border-box; ;wxcs_originclass: .play-time;;wxcs_fileinfo: ./packageAPI/pages/media/background-audio/background-audio.wxss 19 1; }\\n.\",[1],\"page-body-buttons { display: flex; justify-content: space-around; margin-top: 50px; ;wxcs_originclass: .page-body-buttons;;wxcs_fileinfo: ./packageAPI/pages/media/background-audio/background-audio.wxss 27 1; }\\n.\",[1],\"page-body-button { width: 225px; text-align: center; ;wxcs_originclass: .page-body-button;;wxcs_fileinfo: ./packageAPI/pages/media/background-audio/background-audio.wxss 32 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/media/background-audio/background-audio.wxss:1:1)\",{path:\"./packageAPI/pages/media/background-audio/background-audio.wxss\"})", + "./packageAPI/pages/media/video/video.wxss": "setCssToHead([\".\",[1],\"page-body-info { display: flex; margin-top: 20px; padding: 0; height: 330px; border-top: 1px solid var(--weui-FG-3); border-bottom: 1px solid var(--weui-FG-3); align-items: center; justify-content: center; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/media/video/video.wxss 3 1; }\\n\",],undefined,{path:\"./packageAPI/pages/media/video/video.wxss\"})", + "./packageAPI/pages/media/audio/audio.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/media/audio/audio.wxss\"})", + "./packageAPI/pages/media/media-container/media-container.wxss": "setCssToHead([\".\",[1],\"page-section { display: flex; flex-direction: column; align-items: center; ;wxcs_originclass: .page-section;;wxcs_fileinfo: ./packageAPI/pages/media/media-container/media-container.wxss 1 1; }\\n\",],undefined,{path:\"./packageAPI/pages/media/media-container/media-container.wxss\"})", + "./packageAPI/pages/location/get-location/get-location.wxss": "setCssToHead([\".\",[1],\"page-body-info { height: 225px; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/location/get-location/get-location.wxss 1 1; }\\n.\",[1],\"page-body-text-small { font-size: 12px; color: var(--weui-FG-0); margin-bottom: 50px; ;wxcs_originclass: .page-body-text-small;;wxcs_fileinfo: ./packageAPI/pages/location/get-location/get-location.wxss 4 1; }\\n.\",[1],\"page-body-text-location { display: flex; font-size: 25px; ;wxcs_originclass: .page-body-text-location;;wxcs_fileinfo: ./packageAPI/pages/location/get-location/get-location.wxss 9 1; }\\n.\",[1],\"page-body-text-location wx-text { margin: 5px; ;wxcs_originclass: .page-body-text-location text;;wxcs_fileinfo: ./packageAPI/pages/location/get-location/get-location.wxss 13 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/location/get-location/get-location.wxss:13:26)\",{path:\"./packageAPI/pages/location/get-location/get-location.wxss\"})", + "./packageAPI/pages/location/open-location/open-location.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/location/open-location/open-location.wxss\"})", + "./packageAPI/pages/location/choose-location/choose-location.wxss": "setCssToHead([\".\",[1],\"page-body-info{ padding-bottom: 0; height: 420px; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/location/choose-location/choose-location.wxss 1 1; }\\n\",],undefined,{path:\"./packageAPI/pages/location/choose-location/choose-location.wxss\"})", + "./packageAPI/pages/network/request/request.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/network/request/request.wxss\"})", + "./packageAPI/pages/network/web-socket/web-socket.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/network/web-socket/web-socket.wxss\"})", + "./packageAPI/pages/network/upload-file/upload-file.wxss": "setCssToHead([\".\",[1],\"image { width: 100%; height: 330px; ;wxcs_originclass: .image;;wxcs_fileinfo: ./packageAPI/pages/network/upload-file/upload-file.wxss 1 1; }\\n.\",[1],\"page-body-info { display: flex; box-sizing: border-box; padding: 15px; height: 410px; border-top: 1px solid var(--weui-FG-3); border-bottom: 1px solid var(--weui-FG-3); align-items: center; justify-content: center; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/network/upload-file/upload-file.wxss 5 1; }\\n\",],undefined,{path:\"./packageAPI/pages/network/upload-file/upload-file.wxss\"})", + "./packageAPI/pages/network/download-file/download-file.wxss": "setCssToHead([\".\",[1],\"page-body wx-image { width: 300px; height: 300px; margin: 0 38px; ;wxcs_originclass: .page-body image;;wxcs_fileinfo: ./packageAPI/pages/network/download-file/download-file.wxss 1 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/network/download-file/download-file.wxss:1:12)\",{path:\"./packageAPI/pages/network/download-file/download-file.wxss\"})", + "./packageAPI/pages/network/mdns/mdns.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/network/mdns/mdns.wxss\"})", + "./packageAPI/pages/network/udp-socket/udp-socket.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/network/udp-socket/udp-socket.wxss\"})", + "./packageAPI/pages/storage/storage/storage.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/storage/storage/storage.wxss\"})", + "./packageAPI/pages/storage/get-background-fetch-data/get-background-fetch-data.wxss": "setCssToHead([\".\",[1],\"page-body-info { padding-bottom: 0; height: 300px; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/storage/get-background-fetch-data/get-background-fetch-data.wxss 1 1; }\\n.\",[1],\"page-body-text { padding: 0 15px; text-align: center; ;wxcs_originclass: .page-body-text;;wxcs_fileinfo: ./packageAPI/pages/storage/get-background-fetch-data/get-background-fetch-data.wxss 5 1; }\\n.\",[1],\"page-body-title { margin-bottom: 20px; ;wxcs_originclass: .page-body-title;;wxcs_fileinfo: ./packageAPI/pages/storage/get-background-fetch-data/get-background-fetch-data.wxss 9 1; }\\n.\",[1],\"context-value { font-size: 19px; ;wxcs_originclass: .context-value;;wxcs_fileinfo: ./packageAPI/pages/storage/get-background-fetch-data/get-background-fetch-data.wxss 12 1; }\\n\",],undefined,{path:\"./packageAPI/pages/storage/get-background-fetch-data/get-background-fetch-data.wxss\"})", + "./packageAPI/pages/storage/get-background-prefetch-data/get-background-prefetch-data.wxss": "setCssToHead([\".\",[1],\"page-body-info { padding-bottom: 0; height: 340px; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/storage/get-background-prefetch-data/get-background-prefetch-data.wxss 1 1; }\\n.\",[1],\"page-body-title { margin-bottom: 20px; ;wxcs_originclass: .page-body-title;;wxcs_fileinfo: ./packageAPI/pages/storage/get-background-prefetch-data/get-background-prefetch-data.wxss 5 1; }\\n.\",[1],\"page-body-text { padding: 0 15px; text-align: center; ;wxcs_originclass: .page-body-text;;wxcs_fileinfo: ./packageAPI/pages/storage/get-background-prefetch-data/get-background-prefetch-data.wxss 8 1; }\\n.\",[1],\"context-value { font-size: 19px; ;wxcs_originclass: .context-value;;wxcs_fileinfo: ./packageAPI/pages/storage/get-background-prefetch-data/get-background-prefetch-data.wxss 12 1; }\\n\",],undefined,{path:\"./packageAPI/pages/storage/get-background-prefetch-data/get-background-prefetch-data.wxss\"})", + "./packageAPI/pages/performance/get-performance/get-performance.wxss": "setCssToHead([\".\",[1],\"container { display: block; ;wxcs_originclass: .container;;wxcs_fileinfo: ./packageAPI/pages/performance/get-performance/get-performance.wxss 1 1; }\\n.\",[1],\"performance-list { display: flex; flex-direction: column; width: 100%; align-items: center; ;wxcs_originclass: .performance-list;;wxcs_fileinfo: ./packageAPI/pages/performance/get-performance/get-performance.wxss 4 1; }\\n.\",[1],\"performance-item { margin: 15px 0; width: 80%; ;wxcs_originclass: .performance-item;;wxcs_fileinfo: ./packageAPI/pages/performance/get-performance/get-performance.wxss 10 1; }\\n\",],undefined,{path:\"./packageAPI/pages/performance/get-performance/get-performance.wxss\"})", + "./packageAPI/pages/worker/worker/worker.wxss": "setCssToHead([\".\",[1],\"canvas { width: 305px; height: 305px; background-color: #fff; ;wxcs_originclass: .canvas;;wxcs_fileinfo: ./packageAPI/pages/worker/worker/worker.wxss 3 1; }\\n.\",[1],\"page-section-title { margin-top: 15px; ;wxcs_originclass: .page-section-title;;wxcs_fileinfo: ./packageAPI/pages/worker/worker/worker.wxss 9 1; }\\n\",],undefined,{path:\"./packageAPI/pages/worker/worker/worker.wxss\"})", + "./packageAPI/pages/framework/two-way-bindings/two-way-bindings.wxss": "setCssToHead([\".\",[1],\"input { margin: 15px auto; width: 80%; ;wxcs_originclass: .input;;wxcs_fileinfo: ./packageAPI/pages/framework/two-way-bindings/two-way-bindings.wxss 1 1; }\\n.\",[1],\"text { margin: 15px auto; width: 80%; ;wxcs_originclass: .text;;wxcs_fileinfo: ./packageAPI/pages/framework/two-way-bindings/two-way-bindings.wxss 6 1; }\\n\",],undefined,{path:\"./packageAPI/pages/framework/two-way-bindings/two-way-bindings.wxss\"})", + "./packageAPI/pages/framework/wxs/wxs.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/framework/wxs/wxs.wxss\"})", + "./packageAPI/pages/framework/resizable/resizable.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/framework/resizable/resizable.wxss\"})", + "./packageAPI/pages/framework/wxs/movable.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/framework/wxs/movable.wxss\"})", + "./packageAPI/pages/framework/wxs/sidebar.wxss": "setCssToHead([\".\",[1],\"container { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 100px 0; box-sizing: border-box; ;wxcs_originclass: .container;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 1 1; }\\nbody,.\",[1],\"page { height: 100%; font-family: \\x27PingFang SC\\x27, \\x27Helvetica Neue\\x27, Helvetica, \\x27Droid Sans Fallback\\x27, \\x27Microsoft Yahei\\x27, sans-serif; ;wxcs_originclass: page,.page;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 10 1; }\\n.\",[1],\"page-bottom{ height: 100%; width: 725px; position: fixed; background-color: #07c160; z-index: 0; ;wxcs_originclass: .page-bottom;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 14 1; }\\n.\",[1],\"wc{ color: white; padding: 15px 0 15px 20px; ;wxcs_originclass: .wc;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 21 1; }\\n.\",[1],\"page-content{ padding-top: 150px; ;wxcs_originclass: .page-content;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 25 1; }\\n.\",[1],\"page-top{ height: 100%; position: fixed; width: 725px; background-color: var(--weui-BG-1); z-index: 0; transition: All 0.4s ease; -webkit-transition: All 0.4s ease; ;wxcs_originclass: .page-top;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 28 1; }\\n.\",[1],\"c-state1{ transform: rotate(0deg) scale(1) translate(40%,0%); -webkit-transform: rotate(0deg) scale(1) translate(40%,0%); ;wxcs_originclass: .c-state1;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 38 1; }\\n.\",[1],\"c-state2{ transform: rotate(0deg) scale(.8) translate(40%,0%); -webkit-transform: rotate(0deg) scale(.8) translate(40%,0%); ;wxcs_originclass: .c-state2;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 42 1; }\\n.\",[1],\"item-title { margin: 10px 10px 5px; font-size: 18px; width: 100%; ;wxcs_originclass: .item-title;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 47 1; }\\n.\",[1],\"item-desc { margin: 5px 10px 0; width: 100%; color: #00000080 ;wxcs_originclass: .item-desc;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 52 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/framework/wxs/sidebar.wxss:10:1)\",{path:\"./packageAPI/pages/framework/wxs/sidebar.wxss\"})", + "./packageAPI/pages/framework/wxs/stick-top.wxss": "setCssToHead([\".\",[1],\"page-banner{ height:200px; background-color: #fff; color:#fff; ;wxcs_originclass: .page-banner;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/stick-top.wxss 1 1; }\\n.\",[1],\"page-group{ display: table; width: 100%; table-layout: fixed; position: relative; top: 0; left: 0; ;wxcs_originclass: .page-group;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/stick-top.wxss 6 1; }\\n.\",[1],\"page-group-position{ position: fixed; ;wxcs_originclass: .page-group-position;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/stick-top.wxss 15 1; }\\n.\",[1],\"page-nav-list{ padding:15px 0 ; display: table-cell; text-align: center; color: #07c160; ;wxcs_originclass: .page-nav-list;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/stick-top.wxss 18 1; }\\n.\",[1],\"goods-list{ height: 300px; background-color: var(--weui-BG-2); padding: 10px; display: flex; flex-direction: column; align-items: center; ;wxcs_originclass: .goods-list;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/stick-top.wxss 24 1; }\\n.\",[1],\"item-title { margin: 10px 10px 5px; font-size: 18px; width: 100%; ;wxcs_originclass: .item-title;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/stick-top.wxss 32 1; }\\n.\",[1],\"item-desc { margin: 5px 10px 0; width: 100%; color: var(--weui-FG-2) ;wxcs_originclass: .item-desc;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/stick-top.wxss 37 1; }\\n\",],undefined,{path:\"./packageAPI/pages/framework/wxs/stick-top.wxss\"})", + "./packageAPI/pages/framework/wxs/nearby.wxss": "setCssToHead([\".\",[1],\"swiper { width: 100%; max-width: 600px; ;wxcs_originclass: .swiper;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/nearby.wxss 2 1; }\\n\",],undefined,{path:\"./packageAPI/pages/framework/wxs/nearby.wxss\"})", + "./packageAPI/app.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/app.wxss\"})" + } +} \ No newline at end of file diff --git a/compiler/test/wcsc/ll/4/node_stderr.json b/compiler/test/wcsc/ll/4/node_stderr.json new file mode 100644 index 0000000..e69de29 diff --git a/compiler/test/wcsc/ll/4/wine_output.json b/compiler/test/wcsc/ll/4/wine_output.json new file mode 100644 index 0000000..1e70cf7 --- /dev/null +++ b/compiler/test/wcsc/ll/4/wine_output.json @@ -0,0 +1,76 @@ +{ + "common": "var BASE_DEVICE_WIDTH = 750;\nvar isIOS=navigator.userAgent.match(\"iPhone\");\nvar deviceWidth = window.screen.width || 375;\nvar deviceDPR = window.devicePixelRatio || 2;\nvar checkDeviceWidth = window.__checkDeviceWidth__ || function() {\nvar newDeviceWidth = window.screen.width || 375\nvar newDeviceDPR = window.devicePixelRatio || 2\nvar newDeviceHeight = window.screen.height || 375\nif (window.screen.orientation && /^landscape/.test(window.screen.orientation.type || '')) newDeviceWidth = newDeviceHeight\nif (newDeviceWidth !== deviceWidth || newDeviceDPR !== deviceDPR) {\ndeviceWidth = newDeviceWidth\ndeviceDPR = newDeviceDPR\n}\n}\ncheckDeviceWidth()\nvar eps = 1e-4;\nvar transformRPX = window.__transformRpx__ || function(number, newDeviceWidth) {\nif ( number === 0 ) return 0;\nnumber = number / BASE_DEVICE_WIDTH * ( newDeviceWidth || deviceWidth );\nnumber = Math.floor(number + eps);\nif (number === 0) {\nif (deviceDPR === 1 || !isIOS) {\nreturn 1;\n} else {\nreturn 0.5;\n}\n}\nreturn number;\n}\nwindow.__rpxRecalculatingFuncs__ = window.__rpxRecalculatingFuncs__ || [];\nvar __COMMON_STYLESHEETS__ = __COMMON_STYLESHEETS__||{}\n\nvar setCssToHead = function(file, _xcInvalid, info) {\nvar Ca = {};\nvar css_id;\nvar info = info || {};\nvar _C = __COMMON_STYLESHEETS__\nfunction makeup(file, opt) {\nvar _n = typeof(file) === \"string\";\nif ( _n && Ca.hasOwnProperty(file)) return \"\";\nif ( _n ) Ca[file] = 1;\nvar ex = _n ? _C[file] : file;\nvar res=\"\";\nfor (var i = ex.length - 1; i >= 0; i--) {\nvar content = ex[i];\nif (typeof(content) === \"object\")\n{\nvar op = content[0];\nif ( op == 0 )\nres = transformRPX(content[1], opt.deviceWidth) + \"px\" + res;\nelse if ( op == 1)\nres = opt.suffix + res;\nelse if ( op == 2 )\nres = makeup(content[1], opt) + res;\n}\nelse\nres = content + res\n}\nreturn res;\n}\nvar styleSheetManager = window.__styleSheetManager2__\nvar rewritor = function(suffix, opt, style){\nopt = opt || {};\nsuffix = suffix || \"\";\nopt.suffix = suffix;\nif ( opt.allowIllegalSelector != undefined && _xcInvalid != undefined )\n{\nif ( opt.allowIllegalSelector )\nconsole.warn( \"For developer:\" + _xcInvalid );\nelse\n{\nconsole.error( _xcInvalid );\n}\n}\nCa={};\ncss = makeup(file, opt);\nif (styleSheetManager) {\nvar key = (info.path || Math.random()) + ':' + suffix\nif (!style) {\nstyleSheetManager.addItem(key, info.path);\nwindow.__rpxRecalculatingFuncs__.push(function(size){\nopt.deviceWidth = size.width;\nrewritor(suffix, opt, true);\n});\n}\nstyleSheetManager.setCss(key, css);\nreturn;\n}\nif ( !style )\n{\nvar head = document.head || document.getElementsByTagName('head')[0];\nstyle = document.createElement('style');\nstyle.type = 'text/css';\nstyle.setAttribute( \"wxss:path\", info.path );\nhead.appendChild(style);\nwindow.__rpxRecalculatingFuncs__.push(function(size){\nopt.deviceWidth = size.width;\nrewritor(suffix, opt, style);\n});\n}\nif (style.styleSheet) {\nstyle.styleSheet.cssText = css;\n} else {\nif ( style.childNodes.length == 0 )\nstyle.appendChild(document.createTextNode(css));\nelse\nstyle.childNodes[0].nodeValue = css;\n}\n}\nreturn rewritor;\n}\nsetCssToHead([\"[is\\x3d\\x22common/lib/weui\\x22]{width: 100% ;wxcs_fileinfo: ./common/lib/weui.wxss 4082 1;}\\n[is\\x3d\\x22miniprogram_npm/miniprogram-recycle-view/recycle-item\\x22]{display: inline-block; ;wxcs_fileinfo: ./miniprogram_npm/miniprogram-recycle-view/recycle-item.wxss 2 1;}\\n[is\\x3d\\x22miniprogram_npm/miniprogram-recycle-view/recycle-view\\x22]{display: block; width: 100%; ;wxcs_fileinfo: ./miniprogram_npm/miniprogram-recycle-view/recycle-view.wxss 2 1;}\\n[is\\x3d\\x22page/common/lib/weui\\x22]{width: 100% ;wxcs_fileinfo: ./page/common/lib/weui.wxss 4082 1;}\\n\",])();setCssToHead([],undefined,{path:\"./packageAPI/app.wxss\"})();", + "pageWxss": { + "./packageAPI/app.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/app.wxss\"})", + "./packageAPI/pages/api/choose-address/choose-address.wxss": "setCssToHead([\"wx-form { margin-top: 15px; ;wxcs_originclass: form;;wxcs_fileinfo: ./packageAPI/pages/api/choose-address/choose-address.wxss 3 1; }\\n.\",[1],\"weui-cell__bd { display: flex; justify-content: flex-start; align-items: center; padding: 10px 0; min-height: 30px; ;wxcs_originclass: .weui-cell__bd;;wxcs_fileinfo: ./packageAPI/pages/api/choose-address/choose-address.wxss 7 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/api/choose-address/choose-address.wxss:3:1)\",{path:\"./packageAPI/pages/api/choose-address/choose-address.wxss\"})", + "./packageAPI/pages/api/choose-invoice-title/choose-invoice-title.wxss": "setCssToHead([\"wx-form { margin-top: 15px; ;wxcs_originclass: form;;wxcs_fileinfo: ./packageAPI/pages/api/choose-invoice-title/choose-invoice-title.wxss 3 1; }\\n.\",[1],\"weui-cell__bd { display: flex; justify-content: flex-start; padding: 10px 0; min-height: 30px; align-items: center; ;wxcs_originclass: .weui-cell__bd;;wxcs_fileinfo: ./packageAPI/pages/api/choose-invoice-title/choose-invoice-title.wxss 7 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/api/choose-invoice-title/choose-invoice-title.wxss:3:1)\",{path:\"./packageAPI/pages/api/choose-invoice-title/choose-invoice-title.wxss\"})", + "./packageAPI/pages/api/custom-message/custom-message.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/api/custom-message/custom-message.wxss\"})", + "./packageAPI/pages/api/get-user-info/get-user-info.wxss": "setCssToHead([\".\",[1],\"page-body-info { padding-bottom: 0; height: 230px; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/api/get-user-info/get-user-info.wxss 1 1; }\\n.\",[1],\"userinfo-avatar { border-radius: 114px; width: 114px; height: 114px; ;wxcs_originclass: .userinfo-avatar;;wxcs_fileinfo: ./packageAPI/pages/api/get-user-info/get-user-info.wxss 5 1; }\\n.\",[1],\"userinfo-nickname { margin-top: 10px; font-size: 19px; ;wxcs_originclass: .userinfo-nickname;;wxcs_fileinfo: ./packageAPI/pages/api/get-user-info/get-user-info.wxss 10 1; }\\n\",],undefined,{path:\"./packageAPI/pages/api/get-user-info/get-user-info.wxss\"})", + "./packageAPI/pages/api/jump/jump.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/api/jump/jump.wxss\"})", + "./packageAPI/pages/api/login/login.wxss": "setCssToHead([\".\",[1],\"page-section { margin-top: 100px; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; padding: 0 25px; box-sizing: border-box; ;wxcs_originclass: .page-section;;wxcs_fileinfo: ./packageAPI/pages/api/login/login.wxss 3 1; }\\n.\",[1],\"page-body-title { font-size: 30px; line-height: 100px; ;wxcs_originclass: .page-body-title;;wxcs_fileinfo: ./packageAPI/pages/api/login/login.wxss 13 1; }\\n.\",[1],\"page-body-text { color: #bbb; font-size: 14px; line-height: 20px; margin: 0 0 50px 0; text-align: center; ;wxcs_originclass: .page-body-text;;wxcs_fileinfo: ./packageAPI/pages/api/login/login.wxss 17 1; }\\n.\",[1],\"page-body-button { width: 100%; ;wxcs_originclass: .page-body-button;;wxcs_fileinfo: ./packageAPI/pages/api/login/login.wxss 24 1; }\\n\",],undefined,{path:\"./packageAPI/pages/api/login/login.wxss\"})", + "./packageAPI/pages/api/request-payment/request-payment.wxss": "setCssToHead([\".\",[1],\"page-section{ width: auto; margin: 15px; padding: 62px 15px; background-color: var(--weui-BG-2); text-align: center; font-size: 14px; ;wxcs_originclass: .page-section;;wxcs_fileinfo: ./packageAPI/pages/api/request-payment/request-payment.wxss 1 1; }\\n.\",[1],\"desc{ color: var(--weui-FG-1); ;wxcs_originclass: .desc;;wxcs_fileinfo: ./packageAPI/pages/api/request-payment/request-payment.wxss 9 1; }\\n.\",[1],\"price{ margin-top: 15px; margin-bottom: 13px; position: relative; display: inline-block; font-size: 39px; line-height: 1; ;wxcs_originclass: .price;;wxcs_fileinfo: ./packageAPI/pages/api/request-payment/request-payment.wxss 12 1; }\\n.\",[1],\"price:before{ content: \\x22¥\\x22; position: absolute; font-size: 20px; top: 4px; left: -20px; ;wxcs_originclass: .price:before;;wxcs_fileinfo: ./packageAPI/pages/api/request-payment/request-payment.wxss 20 1; }\\n\",],undefined,{path:\"./packageAPI/pages/api/request-payment/request-payment.wxss\"})", + "./packageAPI/pages/api/setting/setting.wxss": "setCssToHead([\"wx-form { margin-top: 15px; ;wxcs_originclass: form;;wxcs_fileinfo: ./packageAPI/pages/api/setting/setting.wxss 3 1; }\\n.\",[1],\"weui-cell__bd { display: flex; justify-content: center; padding: 10px 0; min-height: 30px; ;wxcs_originclass: .weui-cell__bd;;wxcs_fileinfo: ./packageAPI/pages/api/setting/setting.wxss 7 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/api/setting/setting.wxss:3:1)\",{path:\"./packageAPI/pages/api/setting/setting.wxss\"})", + "./packageAPI/pages/api/share-button/share-button.wxss": "setCssToHead([\".\",[1],\"button-share { display: none; ;wxcs_originclass: .button-share;;wxcs_fileinfo: ./packageAPI/pages/api/share-button/share-button.wxss 1 1; }\\n\",],undefined,{path:\"./packageAPI/pages/api/share-button/share-button.wxss\"})", + "./packageAPI/pages/api/share/share.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/api/share/share.wxss\"})", + "./packageAPI/pages/api/soter-authentication/soter-authentication.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/api/soter-authentication/soter-authentication.wxss\"})", + "./packageAPI/pages/api/subscribe-message/subscribe-message.wxss": "setCssToHead([\".\",[1],\"page-section { margin-top: 100px; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; padding: 0 25px; box-sizing: border-box; ;wxcs_originclass: .page-section;;wxcs_fileinfo: ./packageAPI/pages/api/subscribe-message/subscribe-message.wxss 1 1; }\\n.\",[1],\"page-body-title { font-size: 30px; line-height: 100px; ;wxcs_originclass: .page-body-title;;wxcs_fileinfo: ./packageAPI/pages/api/subscribe-message/subscribe-message.wxss 11 1; }\\n.\",[1],\"page-body-text { color: var(--weui-FG-1); font-size: 14px; line-height: 20px; margin: 0 0 50px 0; text-align: center; ;wxcs_originclass: .page-body-text;;wxcs_fileinfo: ./packageAPI/pages/api/subscribe-message/subscribe-message.wxss 15 1; }\\n.\",[1],\"page-body-button { width: 100%; ;wxcs_originclass: .page-body-button;;wxcs_fileinfo: ./packageAPI/pages/api/subscribe-message/subscribe-message.wxss 22 1; }\\n\",],undefined,{path:\"./packageAPI/pages/api/subscribe-message/subscribe-message.wxss\"})", + "./packageAPI/pages/device/add-contact/add-contact.wxss": "setCssToHead([\"wx-input { width: 100%; ;wxcs_originclass: input;;wxcs_fileinfo: ./packageAPI/pages/device/add-contact/add-contact.wxss 3 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/device/add-contact/add-contact.wxss:3:1)\",{path:\"./packageAPI/pages/device/add-contact/add-contact.wxss\"})", + "./packageAPI/pages/device/bluetooth/bluetooth.wxss": "setCssToHead([\".\",[1],\"devices_summary { padding: 5px; font-size: 15px; ;wxcs_originclass: .devices_summary;;wxcs_fileinfo: ./packageAPI/pages/device/bluetooth/bluetooth.wxss 2 1; }\\n.\",[1],\"device_list { height: 150px; border-radius: 3px; flex: 1; ;wxcs_originclass: .device_list;;wxcs_fileinfo: ./packageAPI/pages/device/bluetooth/bluetooth.wxss 6 1; }\\n.\",[1],\"device_item { border-bottom: 1px solid var(--weui-FG-3); padding: 5px; color: var(--weui-FG-HALF); ;wxcs_originclass: .device_item;;wxcs_fileinfo: ./packageAPI/pages/device/bluetooth/bluetooth.wxss 11 1; }\\n.\",[1],\"device_item_hover { background-color: rgba(0, 0, 0, .1); ;wxcs_originclass: .device_item_hover;;wxcs_fileinfo: ./packageAPI/pages/device/bluetooth/bluetooth.wxss 16 1; }\\n.\",[1],\"connected_info { position: fixed; bottom: 0; width: 100%; background-color: var(--weui-BG-4); padding: 5px; padding-bottom: 10px; margin-bottom: env(safe-area-inset-bottom); font-size: 14px; min-height: 50px; box-shadow: 0px 0px 2px 0px; ;wxcs_originclass: .connected_info;;wxcs_fileinfo: ./packageAPI/pages/device/bluetooth/bluetooth.wxss 19 1; }\\n.\",[1],\"connected_info .\",[1],\"operation { position: absolute; display: inline-block; right: 15px; ;wxcs_originclass: .connected_info .operation;;wxcs_fileinfo: ./packageAPI/pages/device/bluetooth/bluetooth.wxss 31 1; }\\n.\",[1],\"page-body-info { padding: 15px; box-sizing: border-box; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/device/bluetooth/bluetooth.wxss 36 1; }\\n\",],undefined,{path:\"./packageAPI/pages/device/bluetooth/bluetooth.wxss\"})", + "./packageAPI/pages/device/bluetooth/slave/slave.wxss": "setCssToHead([\".\",[1],\"action-area { display: flex; flex-direction: row; justify-content: space-around; ;wxcs_originclass: .action-area;;wxcs_fileinfo: ./packageAPI/pages/device/bluetooth/slave/slave.wxss 1 1; }\\n\",],undefined,{path:\"./packageAPI/pages/device/bluetooth/slave/slave.wxss\"})", + "./packageAPI/pages/device/capture-screen/capture-screen.wxss": "setCssToHead([\".\",[1],\"page-body-text { font-size: 20px; font-family: -apple-system-font, Helvetica Neue,Helvetica,sans-serif; ;wxcs_originclass: .page-body-text;;wxcs_fileinfo: ./packageAPI/pages/device/capture-screen/capture-screen.wxss 1 1; }\\n\",],undefined,{path:\"./packageAPI/pages/device/capture-screen/capture-screen.wxss\"})", + "./packageAPI/pages/device/clipboard-data/clipboard-data.wxss": "setCssToHead([\".\",[1],\"page-body-info { padding: 5px; height: 100px; overflow: scroll-y; text-align: left; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/device/clipboard-data/clipboard-data.wxss 3 1; }\\n\",],undefined,{path:\"./packageAPI/pages/device/clipboard-data/clipboard-data.wxss\"})", + "./packageAPI/pages/device/get-battery-info/get-battery-info.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/device/get-battery-info/get-battery-info.wxss\"})", + "./packageAPI/pages/device/get-network-type/get-network-type.wxss": "setCssToHead([\".\",[1],\"page-body-info { height: 100px; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/device/get-network-type/get-network-type.wxss 1 1; }\\n.\",[1],\"page-body-text-network-type { font-size: 40px; font-family: -apple-system-font,Helvetica Neue,Helvetica,sans-serif; ;wxcs_originclass: .page-body-text-network-type;;wxcs_fileinfo: ./packageAPI/pages/device/get-network-type/get-network-type.wxss 4 1; }\\n\",],undefined,{path:\"./packageAPI/pages/device/get-network-type/get-network-type.wxss\"})", + "./packageAPI/pages/device/get-system-info/get-system-info.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/device/get-system-info/get-system-info.wxss\"})", + "./packageAPI/pages/device/ibeacon/ibeacon.wxss": "setCssToHead([\".\",[1],\"page-body-info { margin-top: 25px; padding: 15px 30px; width: auto; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/device/ibeacon/ibeacon.wxss 3 1; }\\n.\",[1],\"devices_summary { padding: 5px; font-size: 15px; ;wxcs_originclass: .devices_summary;;wxcs_fileinfo: ./packageAPI/pages/device/ibeacon/ibeacon.wxss 9 1; }\\n.\",[1],\"device_list { height: 150px; border-radius: 3px; flex: 1; ;wxcs_originclass: .device_list;;wxcs_fileinfo: ./packageAPI/pages/device/ibeacon/ibeacon.wxss 13 1; }\\n.\",[1],\"device_item { border-bottom: 1px solid var(--weui-FG-3); padding: 5px; color: var(--weui-FG-HALF); ;wxcs_originclass: .device_item;;wxcs_fileinfo: ./packageAPI/pages/device/ibeacon/ibeacon.wxss 18 1; }\\n.\",[1],\"device_item_hover { background-color: rgba(0, 0, 0, .1); ;wxcs_originclass: .device_item_hover;;wxcs_fileinfo: ./packageAPI/pages/device/ibeacon/ibeacon.wxss 23 1; }\\n\",],undefined,{path:\"./packageAPI/pages/device/ibeacon/ibeacon.wxss\"})", + "./packageAPI/pages/device/make-phone-call/make-phone-call.wxss": "setCssToHead([\".\",[1],\"page-section{ width: auto; margin: 15px; padding: 42px 30px 30px; background-color: var(--weui-BG-2); font-size: 14px; ;wxcs_originclass: .page-section;;wxcs_fileinfo: ./packageAPI/pages/device/make-phone-call/make-phone-call.wxss 1 1; }\\n.\",[1],\"desc{ margin-bottom: 10px; ;wxcs_originclass: .desc;;wxcs_fileinfo: ./packageAPI/pages/device/make-phone-call/make-phone-call.wxss 8 1; }\\n.\",[1],\"input{ height: 60px; line-height: 60px; font-size: 39px; border-bottom: 1px solid var(--weui-FG-3); ;wxcs_originclass: .input;;wxcs_fileinfo: ./packageAPI/pages/device/make-phone-call/make-phone-call.wxss 11 1; }\\n.\",[1],\"btn-area{ padding: 0; ;wxcs_originclass: .btn-area;;wxcs_fileinfo: ./packageAPI/pages/device/make-phone-call/make-phone-call.wxss 17 1; }\\n\",],undefined,{path:\"./packageAPI/pages/device/make-phone-call/make-phone-call.wxss\"})", + "./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss": "setCssToHead([\".\",[1],\"page-body-xyz { display: flex; justify-content: space-between; width: 350px; margin-top: 45px; box-sizing: border-box; text-align: center; ;wxcs_originclass: .page-body-xyz;;wxcs_fileinfo: ./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss 1 1; }\\n.\",[1],\"page-body-canvas { margin-top: 15px; width: 302px; height: 302px; position: relative; ;wxcs_originclass: .page-body-canvas;;wxcs_fileinfo: ./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss 9 1; }\\n.\",[1],\"page-body-ball { position: absolute; top: 0; left: 0; width: 302px; height: 302px; ;wxcs_originclass: .page-body-ball;;wxcs_fileinfo: ./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss 15 1; }\\n.\",[1],\"page-body-title { margin-bottom: 0; font-size: 16px; width: 225px; ;wxcs_originclass: .page-body-title;;wxcs_fileinfo: ./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss 22 1; }\\n.\",[1],\"page-body-controls { margin-top: 15px; ;wxcs_originclass: .page-body-controls;;wxcs_fileinfo: ./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss 27 1; }\\n.\",[1],\"page-body-controls wx-button { margin-left: 10px; float: left; ;wxcs_originclass: .page-body-controls button;;wxcs_fileinfo: ./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss 30 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss:30:21)\",{path:\"./packageAPI/pages/device/on-accelerometer-change/on-accelerometer-change.wxss\"})", + "./packageAPI/pages/device/on-compass-change/on-compass-change.wxss": "setCssToHead([\".\",[1],\"direction { position: relative; margin-top: 35px; display: flex; width: 520px; height: 520px; align-items: center; justify-content: center; ;wxcs_originclass: .direction;;wxcs_fileinfo: ./packageAPI/pages/device/on-compass-change/on-compass-change.wxss 1 1; }\\n.\",[1],\"direction-value { position: relative; font-size: 100px; color: #353535; line-height: 1; z-index: 1; ;wxcs_originclass: .direction-value;;wxcs_fileinfo: ./packageAPI/pages/device/on-compass-change/on-compass-change.wxss 10 1; }\\n.\",[1],\"direction-degree { position: absolute; top: 0; right: -20px; font-size: 30px; ;wxcs_originclass: .direction-degree;;wxcs_fileinfo: ./packageAPI/pages/device/on-compass-change/on-compass-change.wxss 17 1; }\\n.\",[1],\"bg-compass{ position: absolute; top: 0; left: 0; width: 520px; height: 520px; transition: .1s; ;wxcs_originclass: .bg-compass;;wxcs_fileinfo: ./packageAPI/pages/device/on-compass-change/on-compass-change.wxss 23 1; }\\n.\",[1],\"bg-compass-line{ position: absolute; left: 134px; top: -5px; width: 3px; height: 28px; background-color: #1AAD19; border-radius: 500px; z-index: 1; ;wxcs_originclass: .bg-compass-line;;wxcs_fileinfo: ./packageAPI/pages/device/on-compass-change/on-compass-change.wxss 31 1; }\\n.\",[1],\"controls{ margin-top: 35px; ;wxcs_originclass: .controls;;wxcs_fileinfo: ./packageAPI/pages/device/on-compass-change/on-compass-change.wxss 41 1; }\\n.\",[1],\"controls wx-button{ margin-left: 10px; float: left; ;wxcs_originclass: .controls button;;wxcs_fileinfo: ./packageAPI/pages/device/on-compass-change/on-compass-change.wxss 44 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/device/on-compass-change/on-compass-change.wxss:44:11)\",{path:\"./packageAPI/pages/device/on-compass-change/on-compass-change.wxss\"})", + "./packageAPI/pages/device/on-network-status-change/on-network-status-change.wxss": "setCssToHead([\".\",[1],\"page-body-info { height: 100px; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/device/on-network-status-change/on-network-status-change.wxss 1 1; }\\n.\",[1],\"page-body-text-network-type { font-size: 40px; font-family: -apple-system-font,Helvetica Neue,Helvetica,sans-serif; ;wxcs_originclass: .page-body-text-network-type;;wxcs_fileinfo: ./packageAPI/pages/device/on-network-status-change/on-network-status-change.wxss 4 1; }\\n\",],undefined,{path:\"./packageAPI/pages/device/on-network-status-change/on-network-status-change.wxss\"})", + "./packageAPI/pages/device/scan-code/scan-code.wxss": "setCssToHead([\".\",[1],\"weui-cell__bd{ min-height: 24px; word-break: break-all; ;wxcs_originclass: .weui-cell__bd;;wxcs_fileinfo: ./packageAPI/pages/device/scan-code/scan-code.wxss 3 1; }\\n\",],undefined,{path:\"./packageAPI/pages/device/scan-code/scan-code.wxss\"})", + "./packageAPI/pages/device/screen-brightness/screen-brightness.wxss": "setCssToHead([\".\",[1],\"page-body-text-screen-brightness { font-size: 40px; font-family: -apple-system-font, Helvetica Neue,Helvetica,sans-serif; ;wxcs_originclass: .page-body-text-screen-brightness;;wxcs_fileinfo: ./packageAPI/pages/device/screen-brightness/screen-brightness.wxss 1 1; }\\n.\",[1],\"page-section-gap { padding: 15px; ;wxcs_originclass: .page-section-gap;;wxcs_fileinfo: ./packageAPI/pages/device/screen-brightness/screen-brightness.wxss 6 1; }\\n\",],undefined,{path:\"./packageAPI/pages/device/screen-brightness/screen-brightness.wxss\"})", + "./packageAPI/pages/device/vibrate/vibrate.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/device/vibrate/vibrate.wxss\"})", + "./packageAPI/pages/device/wifi/wifi.wxss": "setCssToHead([\".\",[1],\"page-body-info { padding: 15px 30px; width: auto; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 1 1; }\\n.\",[1],\"device-list { height: 150px; text-align: center; ;wxcs_originclass: .device-list;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 6 1; }\\n.\",[1],\"item { width: 100%; margin-bottom: 10px; ;wxcs_originclass: .item;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 11 1; }\\n.\",[1],\"list { width: 100%; text-align: left; display:flex; flex-direction:row; align-items:center; justify-content:space-between; font-size: 15px; ;wxcs_originclass: .list;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 16 1; }\\n.\",[1],\"list wx-text { display: inline-block; max-width: 80%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; ;wxcs_originclass: .list text;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 26 1; }\\n.\",[1],\"strength-ready { color: #26a69a; ;wxcs_originclass: .strength-ready;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 34 1; }\\n.\",[1],\"strength-no { color: #37474f; ;wxcs_originclass: .strength-no;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 35 1; }\\n.\",[1],\"wifi-icon{ width: 20px; height:20px; display: inline-block; position: relative; overflow: hidden; margin: 0 10px; float: right; ;wxcs_originclass: .wifi-icon;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 36 1; }\\n.\",[1],\"wifi-icon wx-span{ display: block; position: absolute; border-radius: 50%; ;wxcs_originclass: .wifi-icon span;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 45 1; }\\n.\",[1],\"wifi-icon .\",[1],\"wifi-1{ width: 4px; height: 4px; left: 8px; bottom: 3px; background: currentcolor; ;wxcs_originclass: .wifi-icon .wifi-1;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 50 1; }\\n.\",[1],\"wifi-icon .\",[1],\"wifi-2,.\",[1],\"wifi-icon .\",[1],\"wifi-3,.\",[1],\"wifi-icon .\",[1],\"wifi-4{ border: 2px solid; border-color: currentcolor transparent transparent; ;wxcs_originclass: .wifi-icon .wifi-2,.wifi-icon .wifi-3,.wifi-icon .wifi-4;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 57 1; }\\n.\",[1],\"wifi-icon .\",[1],\"wifi-2{ width: 12px; height: 12px; left: 2px; bottom: -4px; ;wxcs_originclass: .wifi-icon .wifi-2;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 61 1; }\\n.\",[1],\"wifi-icon .\",[1],\"wifi-3{ width: 20px; height: 20px; left: -2px; bottom: -8px; ;wxcs_originclass: .wifi-icon .wifi-3;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 67 1; }\\n.\",[1],\"wifi-icon .\",[1],\"wifi-4{ width: 28px; height: 28px; left: -6px; bottom: -12px; ;wxcs_originclass: .wifi-icon .wifi-4;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 73 1; }\\n.\",[1],\"wifi-icon wx-span:after{ content: \\x22\\x22; display: block; position: absolute; ;wxcs_originclass: .wifi-icon span:after;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 79 1; }\\n.\",[1],\"wifi-icon .\",[1],\"lock{ width: 6px; height: 5px; background: currentcolor; display: block; right: 1px; bottom: 2px; border-radius: 0; ;wxcs_originclass: .wifi-icon .lock;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 84 1; }\\n.\",[1],\"wifi-icon .\",[1],\"lock:after{ width: 4px; height: 3px; border: 1px solid; border-radius: 100px 100px 0 0; border-bottom: none; left: 0px; bottom: 100%; ;wxcs_originclass: .wifi-icon .lock:after;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 93 1; }\\n.\",[1],\"off { border-color: #b0bec5 transparent transparent !important; ;wxcs_originclass: .off;;wxcs_fileinfo: ./packageAPI/pages/device/wifi/wifi.wxss 102 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/device/wifi/wifi.wxss:79:12)\",{path:\"./packageAPI/pages/device/wifi/wifi.wxss\"})", + "./packageAPI/pages/framework/resizable/resizable.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/framework/resizable/resizable.wxss\"})", + "./packageAPI/pages/framework/two-way-bindings/two-way-bindings.wxss": "setCssToHead([\".\",[1],\"input { margin: 15px auto; width: 80%; ;wxcs_originclass: .input;;wxcs_fileinfo: ./packageAPI/pages/framework/two-way-bindings/two-way-bindings.wxss 1 1; }\\n.\",[1],\"text { margin: 15px auto; width: 80%; ;wxcs_originclass: .text;;wxcs_fileinfo: ./packageAPI/pages/framework/two-way-bindings/two-way-bindings.wxss 6 1; }\\n\",],undefined,{path:\"./packageAPI/pages/framework/two-way-bindings/two-way-bindings.wxss\"})", + "./packageAPI/pages/framework/wxs/movable.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/framework/wxs/movable.wxss\"})", + "./packageAPI/pages/framework/wxs/nearby.wxss": "setCssToHead([\".\",[1],\"swiper { width: 100%; max-width: 600px; ;wxcs_originclass: .swiper;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/nearby.wxss 2 1; }\\n\",],undefined,{path:\"./packageAPI/pages/framework/wxs/nearby.wxss\"})", + "./packageAPI/pages/framework/wxs/sidebar.wxss": "setCssToHead([\".\",[1],\"container { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: space-between; padding: 100px 0; box-sizing: border-box; ;wxcs_originclass: .container;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 1 1; }\\nbody,.\",[1],\"page { height: 100%; font-family: \\x27PingFang SC\\x27, \\x27Helvetica Neue\\x27, Helvetica, \\x27Droid Sans Fallback\\x27, \\x27Microsoft Yahei\\x27, sans-serif; ;wxcs_originclass: page,.page;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 10 1; }\\n.\",[1],\"page-bottom{ height: 100%; width: 725px; position: fixed; background-color: #07c160; z-index: 0; ;wxcs_originclass: .page-bottom;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 14 1; }\\n.\",[1],\"wc{ color: white; padding: 15px 0 15px 20px; ;wxcs_originclass: .wc;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 21 1; }\\n.\",[1],\"page-content{ padding-top: 150px; ;wxcs_originclass: .page-content;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 25 1; }\\n.\",[1],\"page-top{ height: 100%; position: fixed; width: 725px; background-color: var(--weui-BG-1); z-index: 0; transition: All 0.4s ease; -webkit-transition: All 0.4s ease; ;wxcs_originclass: .page-top;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 28 1; }\\n.\",[1],\"c-state1{ transform: rotate(0deg) scale(1) translate(40%,0%); -webkit-transform: rotate(0deg) scale(1) translate(40%,0%); ;wxcs_originclass: .c-state1;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 38 1; }\\n.\",[1],\"c-state2{ transform: rotate(0deg) scale(.8) translate(40%,0%); -webkit-transform: rotate(0deg) scale(.8) translate(40%,0%); ;wxcs_originclass: .c-state2;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 42 1; }\\n.\",[1],\"item-title { margin: 10px 10px 5px; font-size: 18px; width: 100%; ;wxcs_originclass: .item-title;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 47 1; }\\n.\",[1],\"item-desc { margin: 5px 10px 0; width: 100%; color: #00000080 ;wxcs_originclass: .item-desc;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/sidebar.wxss 52 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/framework/wxs/sidebar.wxss:10:1)\",{path:\"./packageAPI/pages/framework/wxs/sidebar.wxss\"})", + "./packageAPI/pages/framework/wxs/stick-top.wxss": "setCssToHead([\".\",[1],\"page-banner{ height:200px; background-color: #fff; color:#fff; ;wxcs_originclass: .page-banner;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/stick-top.wxss 1 1; }\\n.\",[1],\"page-group{ display: table; width: 100%; table-layout: fixed; position: relative; top: 0; left: 0; ;wxcs_originclass: .page-group;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/stick-top.wxss 6 1; }\\n.\",[1],\"page-group-position{ position: fixed; ;wxcs_originclass: .page-group-position;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/stick-top.wxss 15 1; }\\n.\",[1],\"page-nav-list{ padding:15px 0 ; display: table-cell; text-align: center; color: #07c160; ;wxcs_originclass: .page-nav-list;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/stick-top.wxss 18 1; }\\n.\",[1],\"goods-list{ height: 300px; background-color: var(--weui-BG-2); padding: 10px; display: flex; flex-direction: column; align-items: center; ;wxcs_originclass: .goods-list;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/stick-top.wxss 24 1; }\\n.\",[1],\"item-title { margin: 10px 10px 5px; font-size: 18px; width: 100%; ;wxcs_originclass: .item-title;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/stick-top.wxss 32 1; }\\n.\",[1],\"item-desc { margin: 5px 10px 0; width: 100%; color: var(--weui-FG-2) ;wxcs_originclass: .item-desc;;wxcs_fileinfo: ./packageAPI/pages/framework/wxs/stick-top.wxss 37 1; }\\n\",],undefined,{path:\"./packageAPI/pages/framework/wxs/stick-top.wxss\"})", + "./packageAPI/pages/framework/wxs/wxs.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/framework/wxs/wxs.wxss\"})", + "./packageAPI/pages/location/choose-location/choose-location.wxss": "setCssToHead([\".\",[1],\"page-body-info{ padding-bottom: 0; height: 420px; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/location/choose-location/choose-location.wxss 1 1; }\\n\",],undefined,{path:\"./packageAPI/pages/location/choose-location/choose-location.wxss\"})", + "./packageAPI/pages/location/get-location/get-location.wxss": "setCssToHead([\".\",[1],\"page-body-info { height: 225px; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/location/get-location/get-location.wxss 1 1; }\\n.\",[1],\"page-body-text-small { font-size: 12px; color: var(--weui-FG-0); margin-bottom: 50px; ;wxcs_originclass: .page-body-text-small;;wxcs_fileinfo: ./packageAPI/pages/location/get-location/get-location.wxss 4 1; }\\n.\",[1],\"page-body-text-location { display: flex; font-size: 25px; ;wxcs_originclass: .page-body-text-location;;wxcs_fileinfo: ./packageAPI/pages/location/get-location/get-location.wxss 9 1; }\\n.\",[1],\"page-body-text-location wx-text { margin: 5px; ;wxcs_originclass: .page-body-text-location text;;wxcs_fileinfo: ./packageAPI/pages/location/get-location/get-location.wxss 13 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/location/get-location/get-location.wxss:13:26)\",{path:\"./packageAPI/pages/location/get-location/get-location.wxss\"})", + "./packageAPI/pages/location/open-location/open-location.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/location/open-location/open-location.wxss\"})", + "./packageAPI/pages/media/audio/audio.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/media/audio/audio.wxss\"})", + "./packageAPI/pages/media/background-audio/background-audio.wxss": "setCssToHead([\"wx-image { width: 75px; height: 75px; ;wxcs_originclass: image;;wxcs_fileinfo: ./packageAPI/pages/media/background-audio/background-audio.wxss 1 1; }\\n.\",[1],\"page-body-wrapper { margin-top: 0; ;wxcs_originclass: .page-body-wrapper;;wxcs_fileinfo: ./packageAPI/pages/media/background-audio/background-audio.wxss 6 1; }\\n.\",[1],\"page-body-info { padding-bottom: 25px; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/media/background-audio/background-audio.wxss 9 1; }\\n.\",[1],\"time-big { font-size: 30px; margin: 10px; ;wxcs_originclass: .time-big;;wxcs_fileinfo: ./packageAPI/pages/media/background-audio/background-audio.wxss 12 1; }\\n.\",[1],\"slider { width: 90%; ;wxcs_originclass: .slider;;wxcs_fileinfo: ./packageAPI/pages/media/background-audio/background-audio.wxss 16 1; }\\n.\",[1],\"play-time { font-size: 14px; width: 350px; padding: 10px 0; display: flex; justify-content: space-between; box-sizing: border-box; ;wxcs_originclass: .play-time;;wxcs_fileinfo: ./packageAPI/pages/media/background-audio/background-audio.wxss 19 1; }\\n.\",[1],\"page-body-buttons { display: flex; justify-content: space-around; margin-top: 50px; ;wxcs_originclass: .page-body-buttons;;wxcs_fileinfo: ./packageAPI/pages/media/background-audio/background-audio.wxss 27 1; }\\n.\",[1],\"page-body-button { width: 225px; text-align: center; ;wxcs_originclass: .page-body-button;;wxcs_fileinfo: ./packageAPI/pages/media/background-audio/background-audio.wxss 32 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/media/background-audio/background-audio.wxss:1:1)\",{path:\"./packageAPI/pages/media/background-audio/background-audio.wxss\"})", + "./packageAPI/pages/media/file/file.wxss": "setCssToHead([\".\",[1],\"image { width: 100%; height: 330px; ;wxcs_originclass: .image;;wxcs_fileinfo: ./packageAPI/pages/media/file/file.wxss 1 1; }\\n.\",[1],\"page-body-info { display: flex; box-sizing: border-box; padding: 15px; height: 410px; border-top: 1px solid var(--weui-FG-3); border-bottom: 1px solid var(--weui-FG-3); align-items: center; justify-content: center; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/media/file/file.wxss 5 1; }\\n\",],undefined,{path:\"./packageAPI/pages/media/file/file.wxss\"})", + "./packageAPI/pages/media/image/image.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/media/image/image.wxss\"})", + "./packageAPI/pages/media/load-font-face/load-font-face.wxss": "setCssToHead([\".\",[1],\"page-body-info { align-items: center; padding: 100px 0; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/media/load-font-face/load-font-face.wxss 1 1; }\\n.\",[1],\"font-loaded { font-family: \\x22Bitstream Vera Serif Bold\\x22; ;wxcs_originclass: .font-loaded;;wxcs_fileinfo: ./packageAPI/pages/media/load-font-face/load-font-face.wxss 6 1; }\\n.\",[1],\"display-area { font-size: 20px; ;wxcs_originclass: .display-area;;wxcs_fileinfo: ./packageAPI/pages/media/load-font-face/load-font-face.wxss 10 1; }\\n\",],undefined,{path:\"./packageAPI/pages/media/load-font-face/load-font-face.wxss\"})", + "./packageAPI/pages/media/media-container/media-container.wxss": "setCssToHead([\".\",[1],\"page-section { display: flex; flex-direction: column; align-items: center; ;wxcs_originclass: .page-section;;wxcs_fileinfo: ./packageAPI/pages/media/media-container/media-container.wxss 1 1; }\\n\",],undefined,{path:\"./packageAPI/pages/media/media-container/media-container.wxss\"})", + "./packageAPI/pages/media/video/video.wxss": "setCssToHead([\".\",[1],\"page-body-info { display: flex; margin-top: 20px; padding: 0; height: 330px; border-top: 1px solid var(--weui-FG-3); border-bottom: 1px solid var(--weui-FG-3); align-items: center; justify-content: center; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/media/video/video.wxss 3 1; }\\n\",],undefined,{path:\"./packageAPI/pages/media/video/video.wxss\"})", + "./packageAPI/pages/media/voice/voice.wxss": "setCssToHead([\"wx-image { width: 75px; height: 75px; ;wxcs_originclass: image;;wxcs_fileinfo: ./packageAPI/pages/media/voice/voice.wxss 1 1; }\\n.\",[1],\"page-body-wrapper { justify-content: space-between; flex-grow: 1; margin-bottom: 150px; ;wxcs_originclass: .page-body-wrapper;;wxcs_fileinfo: ./packageAPI/pages/media/voice/voice.wxss 6 1; }\\n.\",[1],\"page-body-time { display: flex; flex-direction: column; align-items: center; ;wxcs_originclass: .page-body-time;;wxcs_fileinfo: ./packageAPI/pages/media/voice/voice.wxss 11 1; }\\n.\",[1],\"time-big { font-size: 30px; margin: 10px; ;wxcs_originclass: .time-big;;wxcs_fileinfo: ./packageAPI/pages/media/voice/voice.wxss 16 1; }\\n.\",[1],\"time-small { font-size: 15px; ;wxcs_originclass: .time-small;;wxcs_fileinfo: ./packageAPI/pages/media/voice/voice.wxss 20 1; }\\n.\",[1],\"page-body-buttons { margin-top: 30px; display: flex; justify-content: space-around; ;wxcs_originclass: .page-body-buttons;;wxcs_fileinfo: ./packageAPI/pages/media/voice/voice.wxss 24 1; }\\n.\",[1],\"page-body-button { width: 225px; text-align: center; ;wxcs_originclass: .page-body-button;;wxcs_fileinfo: ./packageAPI/pages/media/voice/voice.wxss 29 1; }\\n.\",[1],\"button-stop-record { width: 15px; height: 15px; border: 10px solid #fff; background-color: #f55c23; border-radius: 115px; margin: 0 auto; ;wxcs_originclass: .button-stop-record;;wxcs_fileinfo: ./packageAPI/pages/media/voice/voice.wxss 33 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/media/voice/voice.wxss:1:1)\",{path:\"./packageAPI/pages/media/voice/voice.wxss\"})", + "./packageAPI/pages/network/download-file/download-file.wxss": "setCssToHead([\".\",[1],\"page-body wx-image { width: 300px; height: 300px; margin: 0 38px; ;wxcs_originclass: .page-body image;;wxcs_fileinfo: ./packageAPI/pages/network/download-file/download-file.wxss 1 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/network/download-file/download-file.wxss:1:12)\",{path:\"./packageAPI/pages/network/download-file/download-file.wxss\"})", + "./packageAPI/pages/network/mdns/mdns.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/network/mdns/mdns.wxss\"})", + "./packageAPI/pages/network/request/request.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/network/request/request.wxss\"})", + "./packageAPI/pages/network/udp-socket/udp-socket.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/network/udp-socket/udp-socket.wxss\"})", + "./packageAPI/pages/network/upload-file/upload-file.wxss": "setCssToHead([\".\",[1],\"image { width: 100%; height: 330px; ;wxcs_originclass: .image;;wxcs_fileinfo: ./packageAPI/pages/network/upload-file/upload-file.wxss 1 1; }\\n.\",[1],\"page-body-info { display: flex; box-sizing: border-box; padding: 15px; height: 410px; border-top: 1px solid var(--weui-FG-3); border-bottom: 1px solid var(--weui-FG-3); align-items: center; justify-content: center; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/network/upload-file/upload-file.wxss 5 1; }\\n\",],undefined,{path:\"./packageAPI/pages/network/upload-file/upload-file.wxss\"})", + "./packageAPI/pages/network/web-socket/web-socket.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/network/web-socket/web-socket.wxss\"})", + "./packageAPI/pages/page/action-sheet/action-sheet.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/page/action-sheet/action-sheet.wxss\"})", + "./packageAPI/pages/page/animation/animation.wxss": "setCssToHead([\".\",[1],\"animation-element-wrapper { display: flex; width: 100%; padding-top: 75px; padding-bottom: 75px; justify-content: center; overflow: hidden; background-color: #ffffff; ;wxcs_originclass: .animation-element-wrapper;;wxcs_fileinfo: ./packageAPI/pages/page/animation/animation.wxss 1 1; }\\n.\",[1],\"animation-element { width: 100px; height: 100px; background-color: #1AAD19; ;wxcs_originclass: .animation-element;;wxcs_fileinfo: ./packageAPI/pages/page/animation/animation.wxss 10 1; }\\n.\",[1],\"animation-buttons { padding: 15px 25px 5px; width: 100%; height: 330px; box-sizing: border-box; ;wxcs_originclass: .animation-buttons;;wxcs_fileinfo: ./packageAPI/pages/page/animation/animation.wxss 15 1; }\\n.\",[1],\"animation-button { float: left; line-height: 2; width: 150px; margin: 8px 11px; ;wxcs_originclass: .animation-button;;wxcs_fileinfo: ./packageAPI/pages/page/animation/animation.wxss 21 1; }\\n.\",[1],\"animation-button-reset { width: 610px; ;wxcs_originclass: .animation-button-reset;;wxcs_fileinfo: ./packageAPI/pages/page/animation/animation.wxss 28 1; }\\n.\",[1],\"btn-row { display: flex; justify-content: space-between; ;wxcs_originclass: .btn-row;;wxcs_fileinfo: ./packageAPI/pages/page/animation/animation.wxss 32 1; }\\n\",],undefined,{path:\"./packageAPI/pages/page/animation/animation.wxss\"})", + "./packageAPI/pages/page/canvas/canvas.wxss": "setCssToHead([\".\",[1],\"canvas-element-wrapper { display: block; margin-bottom: 50px; ;wxcs_originclass: .canvas-element-wrapper;;wxcs_fileinfo: ./packageAPI/pages/page/canvas/canvas.wxss 1 1; }\\n.\",[1],\"canvas-element { width: 100%; height: 250px; background-color: #ffffff; ;wxcs_originclass: .canvas-element;;wxcs_fileinfo: ./packageAPI/pages/page/canvas/canvas.wxss 5 1; }\\n.\",[1],\"canvas-buttons { padding: 15px 25px 5px; width: 100%; height: 330px; box-sizing: border-box; ;wxcs_originclass: .canvas-buttons;;wxcs_fileinfo: ./packageAPI/pages/page/canvas/canvas.wxss 10 1; }\\n.\",[1],\"canvas-button { float: left; line-height: 2; width: 150px; margin: 8px 11px; ;wxcs_originclass: .canvas-button;;wxcs_fileinfo: ./packageAPI/pages/page/canvas/canvas.wxss 16 1; }\\n\",],undefined,{path:\"./packageAPI/pages/page/canvas/canvas.wxss\"})", + "./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss": "setCssToHead([\"wx-movable-view { display: flex; align-items: center; justify-content: center; height: 50px; width: 50px; background: #1AAD19; color: #fff; ;wxcs_originclass: movable-view;;wxcs_fileinfo: ./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss 1 1; }\\nwx-movable-area { height: 200px; width: 200px; background-color: #ccc; overflow: hidden; ;wxcs_originclass: movable-area;;wxcs_fileinfo: ./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss 11 1; }\\n.\",[1],\"page-section { display: flex; justify-content: center; ;wxcs_originclass: .page-section;;wxcs_fileinfo: ./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss 18 1; }\\n.\",[1],\"page-body { display: flex; flex-direction: column; align-items: center; ;wxcs_originclass: .page-body;;wxcs_fileinfo: ./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss 23 1; }\\n.\",[1],\"metric { width: 200px; display: flex; justify-content: center; flex-direction:column; align-items:center; ;wxcs_originclass: .metric;;wxcs_fileinfo: ./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss 29 1; }\\n.\",[1],\"b { display: inline-block; width: 75px; font-weight: bold; ;wxcs_originclass: .b;;wxcs_fileinfo: ./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss 37 1; }\\n.\",[1],\"span { display: inline-block; width: 50px; ;wxcs_originclass: .span;;wxcs_fileinfo: ./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss 43 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss:11:1)\",{path:\"./packageAPI/pages/page/get-wxml-node-info/get-wxml-node-info.wxss\"})", + "./packageAPI/pages/page/intersection-observer/intersection-observer.wxss": "setCssToHead([\".\",[1],\"scroll-view { height: 200px; background: var(--weui-BG-2); ;wxcs_originclass: .scroll-view;;wxcs_fileinfo: ./packageAPI/pages/page/intersection-observer/intersection-observer.wxss 1 1; }\\n.\",[1],\"scroll-area { height: 1150px; display: flex; flex-direction: column; align-items: center; transition: .5s; ;wxcs_originclass: .scroll-area;;wxcs_fileinfo: ./packageAPI/pages/page/intersection-observer/intersection-observer.wxss 6 1; }\\n.\",[1],\"notice { margin-top: 75px; ;wxcs_originclass: .notice;;wxcs_fileinfo: ./packageAPI/pages/page/intersection-observer/intersection-observer.wxss 14 1; }\\n.\",[1],\"ball { width: 100px; height: 100px; background: #1AAD19; border-radius: 50%; ;wxcs_originclass: .ball;;wxcs_fileinfo: ./packageAPI/pages/page/intersection-observer/intersection-observer.wxss 18 1; }\\n.\",[1],\"filling { height: 200px; ;wxcs_originclass: .filling;;wxcs_fileinfo: ./packageAPI/pages/page/intersection-observer/intersection-observer.wxss 25 1; }\\n.\",[1],\"message { width: 100%; display: flex; justify-content: center; ;wxcs_originclass: .message;;wxcs_fileinfo: ./packageAPI/pages/page/intersection-observer/intersection-observer.wxss 29 1; }\\n.\",[1],\"message wx-text { font-size: 20px; font-family: -apple-system-font, Helvetica Neue,Helvetica,sans-serif; ;wxcs_originclass: .message text;;wxcs_fileinfo: ./packageAPI/pages/page/intersection-observer/intersection-observer.wxss 35 1; }\\n\",],\"Some selectors are not allowed in component wxss, including tag name selectors, ID selectors, and attribute selectors.(./packageAPI/pages/page/intersection-observer/intersection-observer.wxss:35:10)\",{path:\"./packageAPI/pages/page/intersection-observer/intersection-observer.wxss\"})", + "./packageAPI/pages/page/modal/modal.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/page/modal/modal.wxss\"})", + "./packageAPI/pages/page/navigation-bar-loading/navigation-bar-loading.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/page/navigation-bar-loading/navigation-bar-loading.wxss\"})", + "./packageAPI/pages/page/navigator/navigator.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/page/navigator/navigator.wxss\"})", + "./packageAPI/pages/page/page-scroll/page-scroll.wxss": "setCssToHead([\".\",[1],\"rect { width: 50px; height: 50px; background-color: #ccc; ;wxcs_originclass: .rect;;wxcs_fileinfo: ./packageAPI/pages/page/page-scroll/page-scroll.wxss 1 1; }\\n.\",[1],\"filling-area { height: 1250px; ;wxcs_originclass: .filling-area;;wxcs_fileinfo: ./packageAPI/pages/page/page-scroll/page-scroll.wxss 7 1; }\\n\",],undefined,{path:\"./packageAPI/pages/page/page-scroll/page-scroll.wxss\"})", + "./packageAPI/pages/page/pull-down-refresh/pull-down-refresh.wxss": "setCssToHead([\".\",[1],\"page-body-info { background-color: transparent; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/page/pull-down-refresh/pull-down-refresh.wxss 1 1; }\\n.\",[1],\"btn-area{ margin-top: 150px; ;wxcs_originclass: .btn-area;;wxcs_fileinfo: ./packageAPI/pages/page/pull-down-refresh/pull-down-refresh.wxss 4 1; }\\n\",],undefined,{path:\"./packageAPI/pages/page/pull-down-refresh/pull-down-refresh.wxss\"})", + "./packageAPI/pages/page/set-navigation-bar-title/set-navigation-bar-title.wxss": "setCssToHead([\".\",[1],\"weui-label{ width: 5em; ;wxcs_originclass: .weui-label;;wxcs_fileinfo: ./packageAPI/pages/page/set-navigation-bar-title/set-navigation-bar-title.wxss 3 1; }\\n\",],undefined,{path:\"./packageAPI/pages/page/set-navigation-bar-title/set-navigation-bar-title.wxss\"})", + "./packageAPI/pages/page/toast/toast.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/page/toast/toast.wxss\"})", + "./packageAPI/pages/performance/get-performance/get-performance.wxss": "setCssToHead([\".\",[1],\"container { display: block; ;wxcs_originclass: .container;;wxcs_fileinfo: ./packageAPI/pages/performance/get-performance/get-performance.wxss 1 1; }\\n.\",[1],\"performance-list { display: flex; flex-direction: column; width: 100%; align-items: center; ;wxcs_originclass: .performance-list;;wxcs_fileinfo: ./packageAPI/pages/performance/get-performance/get-performance.wxss 4 1; }\\n.\",[1],\"performance-item { margin: 15px 0; width: 80%; ;wxcs_originclass: .performance-item;;wxcs_fileinfo: ./packageAPI/pages/performance/get-performance/get-performance.wxss 10 1; }\\n\",],undefined,{path:\"./packageAPI/pages/performance/get-performance/get-performance.wxss\"})", + "./packageAPI/pages/storage/get-background-fetch-data/get-background-fetch-data.wxss": "setCssToHead([\".\",[1],\"page-body-info { padding-bottom: 0; height: 300px; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/storage/get-background-fetch-data/get-background-fetch-data.wxss 1 1; }\\n.\",[1],\"page-body-text { padding: 0 15px; text-align: center; ;wxcs_originclass: .page-body-text;;wxcs_fileinfo: ./packageAPI/pages/storage/get-background-fetch-data/get-background-fetch-data.wxss 5 1; }\\n.\",[1],\"page-body-title { margin-bottom: 20px; ;wxcs_originclass: .page-body-title;;wxcs_fileinfo: ./packageAPI/pages/storage/get-background-fetch-data/get-background-fetch-data.wxss 9 1; }\\n.\",[1],\"context-value { font-size: 19px; ;wxcs_originclass: .context-value;;wxcs_fileinfo: ./packageAPI/pages/storage/get-background-fetch-data/get-background-fetch-data.wxss 12 1; }\\n\",],undefined,{path:\"./packageAPI/pages/storage/get-background-fetch-data/get-background-fetch-data.wxss\"})", + "./packageAPI/pages/storage/get-background-prefetch-data/get-background-prefetch-data.wxss": "setCssToHead([\".\",[1],\"page-body-info { padding-bottom: 0; height: 340px; ;wxcs_originclass: .page-body-info;;wxcs_fileinfo: ./packageAPI/pages/storage/get-background-prefetch-data/get-background-prefetch-data.wxss 1 1; }\\n.\",[1],\"page-body-title { margin-bottom: 20px; ;wxcs_originclass: .page-body-title;;wxcs_fileinfo: ./packageAPI/pages/storage/get-background-prefetch-data/get-background-prefetch-data.wxss 5 1; }\\n.\",[1],\"page-body-text { padding: 0 15px; text-align: center; ;wxcs_originclass: .page-body-text;;wxcs_fileinfo: ./packageAPI/pages/storage/get-background-prefetch-data/get-background-prefetch-data.wxss 8 1; }\\n.\",[1],\"context-value { font-size: 19px; ;wxcs_originclass: .context-value;;wxcs_fileinfo: ./packageAPI/pages/storage/get-background-prefetch-data/get-background-prefetch-data.wxss 12 1; }\\n\",],undefined,{path:\"./packageAPI/pages/storage/get-background-prefetch-data/get-background-prefetch-data.wxss\"})", + "./packageAPI/pages/storage/storage/storage.wxss": "setCssToHead([],undefined,{path:\"./packageAPI/pages/storage/storage/storage.wxss\"})", + "./packageAPI/pages/worker/worker/worker.wxss": "setCssToHead([\".\",[1],\"canvas { width: 305px; height: 305px; background-color: #fff; ;wxcs_originclass: .canvas;;wxcs_fileinfo: ./packageAPI/pages/worker/worker/worker.wxss 3 1; }\\n.\",[1],\"page-section-title { margin-top: 15px; ;wxcs_originclass: .page-section-title;;wxcs_fileinfo: ./packageAPI/pages/worker/worker/worker.wxss 9 1; }\\n\",],undefined,{path:\"./packageAPI/pages/worker/worker/worker.wxss\"})" + } +} \ No newline at end of file