├── .gitignore
├── App.vue
├── LICENSE
├── README-zh.md
├── README.md
├── api
└── api.js
├── common
├── animation.css
├── icon.css
└── main.css
├── components
├── loading
│ └── loading.vue
└── modal
│ └── modal.vue
├── main.js
├── manifest.json
├── pages.json
├── pages
├── index
│ └── index.vue
└── web-view
│ └── web-view.vue
├── static
├── 1.png
├── b3log.png
├── index.png
├── language.png
└── since.png
├── uni.scss
└── utils
├── index.js
└── request.js
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | node_modules
3 | /dist
4 | /unpackage
5 |
6 | # local env files
7 | .env.local
8 | .env.*.local
9 |
10 | # Log files
11 | npm-debug.log*
12 | yarn-debug.log*
13 | yarn-error.log*
14 |
15 | # Editor directories and files
16 | .idea
17 | .vscode
18 | *.suo
19 | *.ntvs*
20 | *.njsproj
21 | *.sln
22 | *.sw?
23 |
--------------------------------------------------------------------------------
/App.vue:
--------------------------------------------------------------------------------
1 |
11 |
12 |
16 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2019 忑啦米
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
--------------------------------------------------------------------------------
/README-zh.md:
--------------------------------------------------------------------------------
1 | ## Github4All
2 |
3 | - [English version](./README.md)
4 |
5 | >没错, 这就是又一个 GitHub trending,本来想写成一个小程序的。
6 |
7 | >当微信小程序支持web-view时,我觉得时机到了,后来才注意到原来只支持企业用户。。。
8 |
9 | >现在只能等着了,先上线h5版
10 |
11 | 
12 |
13 |  
14 |
15 |  
16 |
17 |
18 | ## 线上
19 |
20 | > 需要打开Chrome开发者模式并使用手机模式预览,或者用手机浏览
21 | * [Click ME~](https://www.telami.cn/trending/)
22 |
23 |
24 | ## 支持 Github4All
25 |
26 | 如果你喜欢github4all的话, 可以给我点个 ⭐ [GitHub](https://github.com/telami/github4all), 或者推荐给朋友一下。
27 |
28 | ## 感谢
29 |
30 | * [uniapp](https://uniapp.dcloud.io/): 是一个使用 Vue.js 开发所有前端应用的框架,开发者编写一套代码,可编译到iOS、Android、H5、以及各种小程序等多个平台。
31 | * [huchenme/github-trending-api](https://github.com/huchenme/github-trending-api): Api提供者
32 |
33 | ## 协议
34 |
35 | [MIT](https://github.com/telami/github4all/blob/master/LICENSE).
36 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | ## Github4All
2 |
3 | - [中文版](./README-zh.md)
4 |
5 | >Yeah, it's GitHub trending,and it should be a mini program.
6 |
7 | >The reason it was published as H5 instead of mini program is that web-view only supports enterprise users.
8 |
9 | >I have no choice,just waiting for someday Individuals can use webviews
10 |
11 | 
12 |
13 |  
14 |
15 |  
16 |
17 |
18 | ## Online
19 |
20 | > Open developer mode or use the phone
21 | * [Click ME~](https://www.telami.cn/trending/)
22 |
23 |
24 | ## Supporting Github4All
25 |
26 | If you like Github4All, you can give a star ⭐ on [GitHub](https://github.com/telami/github4all), or help spread Github4All to more people you know.
27 |
28 | ## Thanks
29 |
30 | * [uniapp](https://uniapp.dcloud.io/): Uni -app is a front-end framework for developing cross-platform applications using ue.js.
31 | * [huchenme/github-trending-api](https://github.com/huchenme/github-trending-api): api
32 |
33 | ## License
34 |
35 | This project is licensed under the terms of the [MIT license](https://github.com/telami/github4all/blob/master/LICENSE).
36 |
--------------------------------------------------------------------------------
/api/api.js:
--------------------------------------------------------------------------------
1 | import {
2 | http
3 | } from '@/utils/index.js'
4 |
5 | /**
6 | * Get repositories
7 | */
8 | export function getRepositories(language, since) {
9 |
10 | let data = {
11 | language: language === undefined ? '' : language,
12 | since: since === undefined ? '' : since,
13 | }
14 |
15 | return http.get('/repositories', data).then(res => res.data)
16 | }
17 |
18 | /**
19 | * Get all languages
20 | */
21 | export function getLanguages() {
22 | return http.get('/languages').then(res => res.data)
23 | }
24 |
25 | /**
26 | * Get all languages
27 | */
28 | export function getReadme(author, repository) {
29 | return http.get('https://api.github.com/repos/' + author + '/' + repository + '/contents/README.md').then(res => res.data)
30 | }
31 |
--------------------------------------------------------------------------------
/common/animation.css:
--------------------------------------------------------------------------------
1 | /*
2 | Animation 微动画
3 | 基于ColorUI组建库的动画模块 by 文晓港 2019年3月26日19:52:28
4 | */
5 |
6 | /* css 滤镜 控制黑白底色gif的 */
7 | .gif-black{
8 | mix-blend-mode: screen;
9 | }
10 | .gif-white{
11 | mix-blend-mode: multiply;
12 | }
13 |
14 |
15 | /* Animation css */
16 | [class*=animation-] {
17 | animation-duration: .5s;
18 | animation-timing-function: ease-out;
19 | animation-fill-mode: both
20 | }
21 |
22 | .animation-fade {
23 | animation-name: fade;
24 | animation-duration: .8s;
25 | animation-timing-function: linear
26 | }
27 |
28 | .animation-scale-up {
29 | animation-name: scale-up
30 | }
31 |
32 | .animation-scale-down {
33 | animation-name: scale-down
34 | }
35 |
36 | .animation-slide-top {
37 | animation-name: slide-top
38 | }
39 |
40 | .animation-slide-bottom {
41 | animation-name: slide-bottom
42 | }
43 |
44 | .animation-slide-left {
45 | animation-name: slide-left
46 | }
47 |
48 | .animation-slide-right {
49 | animation-name: slide-right
50 | }
51 |
52 | .animation-shake {
53 | animation-name: shake
54 | }
55 |
56 | .animation-reverse {
57 | animation-direction: reverse
58 | }
59 |
60 | @keyframes fade {
61 | 0% {
62 | opacity: 0
63 | }
64 |
65 | 100% {
66 | opacity: 1
67 | }
68 | }
69 |
70 | @keyframes scale-up {
71 | 0% {
72 | opacity: 0;
73 | transform: scale(.2)
74 | }
75 |
76 | 100% {
77 | opacity: 1;
78 | transform: scale(1)
79 | }
80 | }
81 |
82 | @keyframes scale-down {
83 | 0% {
84 | opacity: 0;
85 | transform: scale(1.8)
86 | }
87 |
88 | 100% {
89 | opacity: 1;
90 | transform: scale(1)
91 | }
92 | }
93 |
94 | @keyframes slide-top {
95 | 0% {
96 | opacity: 0;
97 | transform: translateY(-100%)
98 | }
99 |
100 | 100% {
101 | opacity: 1;
102 | transform: translateY(0)
103 | }
104 | }
105 |
106 | @keyframes slide-bottom {
107 | 0% {
108 | opacity: 0;
109 | transform: translateY(100%)
110 | }
111 |
112 | 100% {
113 | opacity: 1;
114 | transform: translateY(0)
115 | }
116 | }
117 |
118 | @keyframes shake {
119 |
120 | 0%,
121 | 100% {
122 | transform: translateX(0)
123 | }
124 |
125 | 10% {
126 | transform: translateX(-9px)
127 | }
128 |
129 | 20% {
130 | transform: translateX(8px)
131 | }
132 |
133 | 30% {
134 | transform: translateX(-7px)
135 | }
136 |
137 | 40% {
138 | transform: translateX(6px)
139 | }
140 |
141 | 50% {
142 | transform: translateX(-5px)
143 | }
144 |
145 | 60% {
146 | transform: translateX(4px)
147 | }
148 |
149 | 70% {
150 | transform: translateX(-3px)
151 | }
152 |
153 | 80% {
154 | transform: translateX(2px)
155 | }
156 |
157 | 90% {
158 | transform: translateX(-1px)
159 | }
160 | }
161 |
162 | @keyframes slide-left {
163 | 0% {
164 | opacity: 0;
165 | transform: translateX(-100%)
166 | }
167 |
168 | 100% {
169 | opacity: 1;
170 | transform: translateX(0)
171 | }
172 | }
173 |
174 | @keyframes slide-right {
175 | 0% {
176 | opacity: 0;
177 | transform: translateX(100%)
178 | }
179 |
180 | 100% {
181 | opacity: 1;
182 | transform: translateX(0)
183 | }
184 | }
--------------------------------------------------------------------------------
/common/icon.css:
--------------------------------------------------------------------------------
1 | @keyframes cuIcon-spin {
2 | 0% {
3 | -webkit-transform: rotate(0);
4 | transform: rotate(0);
5 | }
6 |
7 | 100% {
8 | -webkit-transform: rotate(359deg);
9 | transform: rotate(359deg);
10 | }
11 | }
12 |
13 | .cuIconfont-spin {
14 | -webkit-animation: cuIcon-spin 2s infinite linear;
15 | animation: cuIcon-spin 2s infinite linear;
16 | display: inline-block;
17 | }
18 |
19 | .cuIconfont-pulse {
20 | -webkit-animation: cuIcon-spin 1s infinite steps(8);
21 | animation: cuIcon-spin 1s infinite steps(8);
22 | display: inline-block;
23 | }
24 |
25 | [class*="cuIcon-"] {
26 | font-family: "cuIcon";
27 | font-size: inherit;
28 | font-style: normal;
29 | }
30 |
31 | @font-face {
32 | font-family: "cuIcon";
33 | src: url('//at.alicdn.com/t/font_533566_yfq2d9wdij.eot?t=1545239985831');
34 | /* IE9*/
35 | src: url('//at.alicdn.com/t/font_533566_yfq2d9wdij.eot?t=1545239985831#iefix') format('embedded-opentype'),
36 | /* IE6-IE8 */
37 | url('data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAAKQcAAsAAAABNKAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABHU1VCAAABCAAAADMAAABCsP6z7U9TLzIAAAE8AAAARAAAAFY8dkoiY21hcAAAAYAAAAiaAAATkilZPq9nbHlmAAAKHAAAjqoAAQkUOjYlCmhlYWQAAJjIAAAALwAAADYUMoFgaGhlYQAAmPgAAAAfAAAAJAhwBcpobXR4AACZGAAAABkAAAScnSIAAGxvY2EAAJk0AAACUAAAAlAhX2C+bWF4cAAAm4QAAAAfAAAAIAJAAOpuYW1lAACbpAAAAUUAAAJtPlT+fXBvc3QAAJzsAAAHLQAADMYi8KXJeJxjYGRgYOBikGPQYWB0cfMJYeBgYGGAAJAMY05meiJQDMoDyrGAaQ4gZoOIAgCKIwNPAHicY2BkYWScwMDKwMHUyXSGgYGhH0IzvmYwYuRgYGBiYGVmwAoC0lxTGByeMbzQZ27438AQw9zA0AAUZgTJAQDhHQwVeJzN1/nf1mMaxvHP9ZQiSUKWbCXZ1+w7Q0NqImNJhSSSZSyTlMQYs9hlLGPKMoRBMyU1tlIiIrKUfeycZyOpkCVLc1zPYbz8BzPdr7fb8/yQ2/29zuM6TmA5oIlsIU31460U6r+O1m9L4++b0KLx902bnq6fL+ICmtE0GqJltIl20TE6R5foHj3jmDgtzoohMSyGx4i4MC6KS+LquD5uiFvizhgb42NCTIwpMS1mxOx4IyJLtsiNc8vcN7vnodkr+2a/HJCD8oK8MkfmdTk6b8oxeUeOzUk5M1/IuTk/F+Ti/CqXztt62TIIfvIp9osDo0ccHv3ijBgcQ3/8FBfHVY2fYlTcFvfEuMZPcX9MjenxVLwYb8ZH2SRb5aa5TXbNHnlY9s5js38OzMF5qT7FNTnqh09xV47LyTkr5zR+ioW55L+f4n/+p+ip/PEnr8u4hr8wlid4mtk8/+PrRV5ufL3DPD7i48bXVywtlBZlnbJV6VMGldFlTJlZZpeXy1vlvfJBmVc+bmhoaKFXq4bWP7zaNnRo2LWhS8MBja9uDT0beupDtC+dSseyHpNKB+aVVfWpGnR2muqENaN52ZDlWUEnaUVashKtWJnWrEIbVmU1Vqcta7Ama7E27ViHdVmP9dmA9nRgQzqyEZ3YmE3YlM34ls11JrdkK7ZmG7Zlu7IandmeHdiRndiZXdiV3didPdizbFDashd7sw/78jP2Y3+68HMO4EC6chDd6M4v6MHBHEJPDuWXHMbhHMGR9OIoetOHvhzNMRxLP46jP8czgBM4kYGcxN8YxMmcwqmcxq84nTM4k7P4NYM5myGcw1CGcS7DOY8RnK+J+YbfcCG/1XP6Hb/nD3pGF3MJl+pJXc4VXMlVjORq/qTndi3XcT1/5gY9wVGM5kZu4mZu4a/cym2M4Xbu4E7u4m7u0RP+O/9gHOO5lwncx0T+yf08wIM8xMNMZgqPMJVpPMp0HuNxZuhEPMlMntK5mMUzPKvT8ZzOxQs6GXOYq9Pwkk7HK7zKa7zOG/yLN3mLt3Vexum/8y7v8T4f8KHGLvm3TtB8PmEhi1jMp3zG5yzhC77UifqapXzH9yzTySqloTQpTctypVlpXpYvK+isrVhalpVKq7JyaV1WKW3K6mWNsmZZq2xU1i7tdBLXLeuzQCeq2f96sP4P/rSs/1hpkX8om9TMs9Je78VKJ703WOmo95amaSTaGJP03s40oURHUxYQnU1TS+xnNf1jf6P+3V2s3hZxoNUbI7pavUniINPEE92M5nrvbkoBoocpD4iDTclAHGL1tomeprQgDrf6TcQRpgQhjjRlCdHLlCrEUaZ8IXqbkoboY9Tvo69R/3+PNuUQcYwpkYh+pmwijjOlFNHflFfE8abkIgaYMow4wajf94mmXCMGmhKOOMmoz2iQKfWIk035R5xi1Gd9qlGf3WlG/T7PMOrzPNOUmMRZRj0bg00pSpxt1LM0xJSsxFBTxhLDTGlLDDflLjHCaluIC01ZTFxkSmXiYlM+E5eYkpq4ypTZxEhjO71fbaV+/9cb9TzeYMp2YpQp5YnRprwnbjQlP3GT6Q4gbjbdBsQtpnuBuM10QxBjTHcFcbvp1iDuMPbU+51W6rO4x0o9D2NNtwsxznTPEONNNw4xwXT3EBNNtxBxv1Hn7AGjztmDRp2zh0y3FfGw6d4iJht1/qYYdf6mGnX+phl1/qYbdf4eM915xONGncUZRp3Fp4w6i08bdRZnmW5J4hnTfUk8a7o5idlGndcXjTqvc4w6r3ONOq8vGXVeXzbqvL5i1Hl91ajz+ppR5/V1o87rG6Z7mnjTqLP7llFn922jzu47Rp3dd406u+8ZdXbfN+rsfmDU2f3QqLMbpi5AfGTUOZ5v1Dn+2KhzvMCoc/yJUed4oalHEItMjYJYbNT5/tSo8/2ZUef7c1PzIJYYdda/MOqsf2nUWf/K1FCIr40690uNOvffmPoL8a1RM+A7U6chvjdqHiwz9RzVAlPjIYup+5BNTC2IbGrqQ+RypmZENjN1JLK5qS2Ry5t6E7mCqUGRLUxdimxlalXkyqZ+RbY2NS1yFVPnItuY2he5qqmHkauZGhm5uqmbkW1NLY1cw9TXyDVNzY1cy9ThyLVNbY5sZ+p15Dqmhkeua+p65Hqm1keub+p/5AamJki2N3VCsoOpHZIbmnoi2dHUGMmNTN2R7GRqkeTGpj5JbmpqluRmpo5Jbm5qm+QWpt5JbmlqoOQ2pi5KbmtqpeR2pn5KdjY1VXJ7U2cldzC1SnJHU8ckdzI1WnJnU7cldzG1XHJXU98ldzM1X3J3Uwcm9zC1YXJPUy8m9zI1ZHJvU1cm9zG1ZnJfU38mu5qaNHmQqVOT3Uztmuxu6tlkD1PjJg82dW/yEFMLJ3ua+jh5qKmZk4eZOjp5uKmtk0eYejt5pKnBk71MXZ7sbWr1ZB9Tvyf7mpo+eayp85P9TO2f7G/aA8jjTRsBOcC0G5ADTVsCeZJpXyAHmTYHcrBphyDPNm0T5BDTXkGeY9owyKGmXYMcZto6yHNN+wc53LSJkOeZdhJyhGk7Ic837SnkBaaNhbzUGs/VZdZ43i437TPkFabNhrzStOOQI03bDnmNae8hr7VawPM6q4GXo0xbETnatB+RN5k2JXKMaWci7zBtT+Rdpj2KvNu0UZH3mHYrcqxpyyLHmfYtcrxp8yLvNe1g5ATTNkbeZ9rLyImmDY2cZNrVyMmmrY2cYtrfyEcM5XtOtRrpOc1KzfhHrWhHyOlWat4/ZqXm/eNWat7PsLrd5RNWat4/aaXm/UwrNe9nWal5/4wV7QX5rBXtBTnbivaCfM5KvROet1LvhBes1DthjpV6J8y1Uu+E+VZq9i+wUvN+oZWa94us1LxfbKVm7RIrNfu/sFKz/0srNfu/slKzf6lp12Xe1saC/wB/IDDcAAB4nLy9CZgcxXkw3FXV93T3TE/PTM+xMzvHzsze1+zO7EraS7u67wMJSSBWiFMgzGGDESCtwICQAQMO2A4YLRK2Hx/gA4MdbGBB+CAE25+dL4njfGFt57Jx8j8h32/HCdP66+ienV20Aiff/4G2u7qnu7rqrar3ft/iEMedeRPNoCYuwy3nNnEcyA2DYicoFkTJAH5AjlIuK4bNUKSUKQf7OwHK5MzSMKgMo8owsFPAjoiSGLEjdqk3YosQsId7y/1mXwEdeEH1i0JPMdlvWraiS0pivXah3zT9MLf3ItB/tzM6viE0mdUChqnBsF9PimIOQcD7/P8sWEA8rzqAH06ZJpjN7h/oHPUrSiC0oliK+psL0PQ7o34zCi5oaS87E+A2vq/fqgwv8UHIw1TTppuQbEp+EDSWO78DT7OHTT+Y8Zsc7ib+49Ad8CLOxhe4s7jHWTFkC5FGEOkdAeUKKPehD6txxTnvV2rcUgFAPBI1kUc8eFmBOxSgOkv+QQnF1CoCCCIIEXhTjXG1usfgi1yC4xRcTyErKYBWrwARg6ai4G+U+4qwA6iKFVed3zm/V2MhFUjO71R8DRSg4G8q4AiQFXx2/h2frZjq/Lvz72oM35ed/5e8hz/D4/GbQafRCJfjurll3GqOEzJ4+Ew8QJneSEjMZbzBoyNS7o2ETQOgbKEP9xA/IAGxDeCr8lJAHrczpFyir6J0daalDEC5BcwYwaDhjJIjJMeGICj/vY5bMkza6byiPkifIIevOVOkCMhxFL8Lp3Ad+IWgUaU/QI7WxeG7Z0hfhykEXlHIIw3BGXbiBNqvl9Ao58Mj1M4Ncitxz3DHcL/wlMM9wPMSF/BlJ+lNsTAMIngy9pbxpEwBiXax2D+MO2WHDZCpvwBnXqwKQvVFdjz1U57/6Sl6PDnxoVYZheNyZs+BCzJyPIzk1hv/PJQAINFMDkCbK4/WKnixipZ6NeBj9chgvy8eQGpre0erDwXivvISABPh0VAiERoNJ+ZK7lw58208fqNcmszDYh4Vij2ihAQDNAIkRkbw8lpKetVXRJUyekG0nH/9sGqFlEPOv1qa/moXTJtvvy3JQA8C2PEdHfwmiFoBMgEwHaeFbzL+1PklXnh33sUHDVEA9mvG3DfHMFQ5IdsFJLFQsYqFMp72KSD68Sf9oFJuxEtiBP91EWh2gopVrvREbEtIYbRgRSQRnpGlt98207DrVV0LPqaHecO46LMqLH7fH/heAfqe/LkpXXKJGI0qwu1KyFI/DPxBXf9OJwzIo/xddyq2BZJ/ajTxcWgkwijwBS3w1jWycs1vAr7PZ5H/f/65pmhRDQRpV6qtKG+8hruiiRwHafufR1sx/LrICsOD2wnLlXITxUYGBiNBYDxuNrluqrhzguIyET3qXLr62LLVu+Jt5RvBxY8Nn2chPRFBgTXlO53/cWlXPrJh+E7QdWlvEEXiBgwvqXxiVwbMVKsd7ZVPPPOF1Y/0XtN1dL0eEXV97APNe9umhh/61O1de9unxjcbuhDRL9q4erfOk7GFdA5P4rENcA0Y7PjrEY4O5wgIkmlbN50h9/D3eAtEU4oBDOXgXwP+ew9P7IZw9wQ9olF8/ajzeEz13Qa0ex/+nsN7P+EjQTe1b5H1gscVLL5W+ipl8vkivhuKMHhB91mRw+PKbTkI4cEt7FheA8CaMjtqIWX9rA+dOnToFLpyv4LCMYU2lDTd+aeUCtK117YcBMO198prqvuCcXUj6LwGv4nfH3zhZl/cRCrtCu91jXP78W1Mj4YwPVrHXcdx+bBEBnMYVkq9dqRMpmOh2FeulBjhMUAxQoYXj3jOAGF8M0xIEcUAGCkUaTfx3e6eSq+dxZeYZEVKFBL1/e8E/R6wwHVmeRUEwVxHnG/Odu6JqzJqhCvLfMe4T9d3736kGJjavtGnihm7IQdUURR5aJk9ubFum+dFS0/mYC6BhE/u2aapvqi2amMNwaSSkmjH5EzOQx3LAQAry7GuQghEA4eykopyHeW1CJTb408dvX50Qui+8roHAtEG2JQwQiLAH+IDe1Z1pIACkSADmO/PAvDdnBCNKXyqhoIql3dqMUPQ+m8e9RAUm4svY3w6gudHjs1Fb0ZYIIzXvIjxAIFtXxlTwEq5N4Wn5AvvCMI7L9Bj/AyHKR+mf5gKHiFU7/JfY0oE0LD3AD46DzpVQIghoYa3Y8IAlAO/wdidq83PGXd+di2Oy61C1k9GUwxhQjxHiwuQWwRp96kx9deXY/KpHJmj0JwKFkXQzn8qym8OKACTndshI9wI8ErcXa+sjcX5MEKYHFJEiVcPwYmYjlIoRUJ+MK9lEqFm9xwnHMPx43VlVN+c6rcItT9+D/n92PG68kI4lc5B8yqEr/AztqWRTHcCKpvxFYvB6sbjhL3AH8NE+9g9CsDjeJy0T1kcWHccI7/fcw/hP+45Rtp67F6X96iHV+MCeM2HVMTuiYjzWtU8TcCCK8RNOMEj/F99E5yOx8kPx2hDp3lRsd49h9rPAZvuHjKVGWAIwzWCl/2iQMFT+gTtFxkv5QkJLQ6Mj4n8NHmIAeJxyaK09AVKS0l7cGv6GWLBTenFaKkTfz9Xa2UIM8qhRhTpHQbo+U919gpvfeWrb/H8W1/dvVVTfFF9xfpHvsvz330E48RSl6Ii+Fn8GaCdGrh7LXvuK28JeRGvdiGNcSZ7dsVtvXgBQP6rapAsNEwez7xIYSRzJpfk9nJXcCc5zhqm3F22kCccIClU6hi9Sn9fF+gjuDKHC+REWP9QGPP9figmycASzFoKMwD3zxXIoRNg6BLusRHkQIhwk/QVwnH1Fd51VRgCuAnl/iKGTimTwlxOOJSC4VnQVG7C/8BMU6UJ/0vXcZFfxXQluDKfA5bUkXo61SGGmppWB0EaYPyLGcw0ozNT7JQmHGuu+h9AlZ+WfSDwW/CfQQOzrKR+QDlUt4TvWQkLNCp5C8yYBV+KMLVcgny8qYGdHmPM6DIBzxAe4XFEaDieASAdG+FRS5swjXje150+3dwPIKN00DuD/ubT6W6wAsqyUKr+rW4GjSyuNJElvfJKpn4aN8Jo+FQoDKLmJ5OYhwsa89dVw4J1lXMBGEmCEhm6ebO68SXdwu09gb8xfzkJln6GfPhNwlovWEfNC75Qv6ZyeMyY+EB40L7FkTCaphz+zMIvv/OduuUDbp0ljTjDUQHCk5M+Akc4cjEnJBEsRsWvQ3hmO990vk7lr30QC2Ngrwr7FcV5FqwhCMI5CRUFXIzFLtKnWbwOG+msL2C+Ac/jLBbrCPXHs3wYFAATfsjk77fJ5KcyzpedL5pd/V2m86UASvRl4clsXwI5GTbyacypNycSR+C+VCaTqp5IDXbFYl2D4E0qwtDezCZaEvgf6YpAZWnWhhTXhjFCP5HGsp2EglHhA7cFMxi4VVhezmCmBRQwO+ZJZRg75LxlirZU95KGBMB22jpwHmmdc1+QtDNEWhkKOF8MBCkkg0Y3EUrwv0y8c0mq1tglnXHEgWT18SRmE7JJeHHSyeIllfYaf22ItDxBYIfHYQal8WzIETwGMgwHSOTPxFMBt7Vi4nVeNzesTuBCcNKZxqtwFK+7SSYtQiY1OjfV8ZFvMkhCT6Ast1AJkDyNz9Wfz2ccWW84hs/ctpG5Os5NcBu4C/HoLoL5gSf70sXRBubJvoWci/Pw00QGrkE7Tx8t9PcwKTi8KAcMWqujrNWTBIj0AJlsPE3RFYPALm88nDeDBsVj+DC9GG/sZFwoMCnZ4WpSMpGyKZxgFwPf35GfyB+V+2fRNB66MJ5rRSz741FzR6tkE4pXqo0ZGyf7XQU0Wp1ivfnJDjWu7vgJvaj+I/vWl+ad8ERyh2ynoux0G+wcdfsJFpy5uvb1c8PcKm4zkzQ9xomgE3dEPPRCx8vTXLARknJYXFu8/ZDT1UnCi6xZo+p0MTINAxsbd3bN9fCFs/UrrUwS/mbtWmVOM+FBHroz1O02mF60t0ymnkWzuL+YCuNp53clEjIzAVVLADpB4Wzv7qburqY9vQcfQKA7AYastt42C4wk2wF6AHFN2e6ubB49cHD4ggbnJSsSCYHl2a2jBx9wv/Em/cYAhqZYdJdjr02wSrGQY/IMIMiTCThZytcTPgzTWrpWMOaBXFu78zL93MEty31CIKb1DOGJmUqCZXaTDYbCTQBP0qbxxF2E+7o7v6ubNLWrwTndngatYJw2B3XJsQgv5fCT7ctyzst2FIyGV3bieuLRuwiTeXcm5/Zips3l3X6J13ESz9duPB/obCCcEZG7SpUy0R3iEa8QEY00t48wcMNEAqDtxv2wMR6tsH65uh7SHxEajYXntrGB2vZcPh1sBCD1MVXx8bIWz6WjpsxHYkog0YpXQkLzXegLAbl3NYSre2UQjqn92yHc3u9ryH8Dv0+Q0zfyiUx1NJN4RZRjvmB6xf6xlO2LBXhfOLN9fGxX1tQPmnG1fOfOnXeW1XgQqksevfzyR5f4XF2c18cit5zbtVgvKU9EJ30jNHHXcuD/TLedE3Tm6+qMosyoOnjgvw8G2ECpujKjwCfxwfnsHw4Wws/gCfAE/AVncS1U2+oHjCuv6YkBEWVMj9nAEjoR+/rAesWSZqgUhVekDy7HWOpKUlJEUVenFfi3CEkzZP0er/4zxZqTasAZUpQD0KLoYFoN8FDBooaLj57AdARxMdyKJbgdpXAOzOfYyxUqQIF+RgiSjJ0tCKGajrSf0mowOTUFKw+1dde4m1WHSw/ihlSnGBNE+czJoEGpwhRuMkxPOTc9WDq8qsY0dbc9hHsGbqgpTrdSvEMxGFfXXj+GWhPBn8Dl/byWFUv9OXKv1ixyE1AkW5kvhxCt3gI5xKb4s/btp6emAFdrLGZDdfVzitLZjZ49duxZhI9LK7qtqvryufZ3teP2kz56lYxOObNeB3BVzqzyOTxenTeMsRrwMcyrsagQqwFtxZE+AjSPd/pbSucDXCuWe5dxB1iP5/VOIDSh1jGypjzCL3hEoVawCDkM+zFqDJspRm5GYJkssn4s71DJx7NTYCo5ySgH7fzmrhW+W30rugbWArB2oHNCO6xNdNILZ2OyUBgsFMDeBnzO5+90urMd4DSfSIJgIpj4MY8gDyFQJPAjl4iAUXyadFmAPWCgvX2AVEpq629r62fl7wBS6WABAFLpYAET247sBRfD0GDOeZHyFcsLoSsRhAISkXCtpFhG9Qk63y9qqXCurvw4Gsd8Z45by13OfZBgHoxSpB4CwEqZarlKDJNgDBIScz0FPCOKOfJQkd7Gs8rGT1Z6ykRcp5OM6dfwY0sJPcHsKn6F6NSo1g2fCDJq9CQ6pll/xFBXPCDjpunaU9sVEHpds4Cy40s+HTdWemCluvIygd96Z0cpkuX9qrpn4+Aqng/4+VUDm/aqqp/Phvs67tzKX7ob7jgQa7HD56/S4mLP4JJuMa6tPC9st8QO7OjCtSeCAASbfOMpRIp8fpsaN4Mx37YmnowDSk2op4Bvz/rdr29X1OzlfQhKCl+6sklVtr++Z90eHxjVzu9a9cQEKkqyvr+nd1JTpDyaeGJV1/namaDxEm6t/pIR9Oblf6IZeMbl51dwa+otLETfSDhIItzWW1qGKL9PBF+U8yRu+la/95YB8uFMP2qsHnUZldsJA5ggEmD1MB3bIxiFkBvlZxqDCdPEJdWZSTQB0JQAo/TsfAaM8uTd5ayOveQ9eqjSaXMxPeDfjuIexYPB6/CrU6wGfHppasrjr1/G5NnHJbgsxozdxNLirTzS8hpf6UoBUjjXjwlZvmQWC35AERJGpBksx5TCIYa67Ui50l8yQ6BxmDSBHODKajzdDkBzCr6dagag3Xrzx4LsjJxcpWnjzsuy8PYZ+PuqIZ0xZFUU91/ubwBvgikmhmHZvj1d/XiqCEAxBQ+m29ff8YAsO59s4PkGsEeQH3ACQABf+H5AFVFzs2gFvu/sEBgOfZPilAZuFEsOV1DOjOARIgjgWVsgV27H8ABaeFJnKM8Utqm+o4yRJTW+kBN+ZggU8hk7I+TwMmAv44VALpiYTC7IEGdwCU36TU2qflbSzJQJurNwd7YbmBsPKKHqlBqA23kAtw+1rilaYy0tLWNWaKCpdWg7BFUD7hivdsNPtAaHEX6TXxNoMVfzwaQJe9JFXAVBDSBi+k9LmiadJgbN0/gu/gAug443/EBXfiTK2ubhbRC0R2yM5iNw2/A2Qz05NQsj7eQFPW9BaOVVMjJNSQC6cps3ZLtd/uU0ehEt55q59Zh7uczj2amqEa99WgZUoUc0WSmiAcVlYkMsujJ7F+Zmsp2w0lch6AcQKxYGH5JCRcqHMo2paNdfgKdzsQlFjbQNRXwxdcKOgW/FJ/AdoJBbmITgW86K2GS3GBDBt0QBA6Kh1BwCYXLDmRCA2J3Bd4phkNMt9WuEHXhG3aaTYwwflKHYSlxJeLg9jKtcGVsRBc/Y0VVqTI0MtYOwQm7FnI3RD/eKIvgarrI3FGnubWjO9OKanY3khgVAuLnUUPxfVhzXZ8XUZ5RJzJR8TaUHypf/P/BHKIDxL8G7oGZbVQAhs9OWH4uHWDj0F5KG8woYNpIBeuUHk0ay4HdecV7BP3GyKzMRmt/IdXEj3CbuIu4D3BGyHj0mkuEOVOMgy2Qe58z3+H3h+8UFv/fnPLnZlY3ntD5UTANTruDOTr/y+AZjkdtg5g98frp2k55G5tiKKrfoT86Mq3hgp5eoUo8epoiOwf3FIW/h3xz2pVGK2GVXB7aJ6knjmG42cR2Ybh6llrMsYU/LRQ9zY3pHrvsKkqc2Emq6A8JP9BWYu0SKUMkSpZo5QnYJs+GalnrtyDAxSLlCGn7CjlQoZiFyOmGAi5TGViLEGJgG5a1l/O8Iw3/XZjs6Jjo6spKiGIoC1ox6ytJKKusTU3uafZIe0/JFETz25S+9lYs0QQglKDQ0YB5r12YtqsnahVe8WBWSCVCKxsx4akPbwOEJfCPvXHrF+Zc8EZk4XOoC/E8hFprJh1uYWukhQL460XER+aqhYNpDPgv+pXN9woyIsURUikYlKaSnf/Hlz52QByoIyXJI6by0H3N3RVGJRsVOofri4DW9YMO+WABkGgpFfL38luppUFrz8cj4/eM7Ljn1U65u3vuoBmpu5nOgTkst1bsmLHL/v7tO0BTT6s0pyd6jXH37D5vo0CVp0+x0hpt3CSb/K8vAtY3gwxSYdeczZy2uN5llo/y7eSfgzTmw4Mx4oFlXB9eIefPVRANXPzLI4xbKnm7aAAKFtMu4u/odRKhuvXKO0GKXFHsCFuOo0PQ7tHeILOhramIK4airv5v2VGVEYPkXg6hqpl2hIwjfnjcCRAijkHWmam8Y0wyKtXeIdMbu1j3jKYGmGXx5ald5BdNGAt8Pct+leILBs8jQBWYgMLUUi4w7JvJ8ocgYZuJZUaAUkboiEJKI71UIY47LNmHKCS/tx4w35dUx4+0nZNV2nRZwrRL1spLEPHkEo44yq4TU4ZX6iLsG+ST5oleSRPYyedcrhYh/B6sHXxItV92ivzKgrgmF1oiW2tcpYw7er9+qmkLcD0X5UgAulUXojwumeqvuDwFF7uxTLbH2vCK/9/OC8xdhe6XPamy0fCvtsAWNmKUFb1LlfRjvQWDsk9WbgpoVM6D1Pp8DC7Clk9YvhfDsLVVD6tmb+p4v1MMC7KTN4Pl3N9ef9r+7ve9+UAviB4Pa3IML7ZshrrLALuORHouItYTyDDGprELtHNSqMedMUm+mYYrOFZEsmd6gsyHcSJc2uWI+JKBtvnVaYCYNsCrcGioTWahcHImHCoGWSn8LuZzYBeGeidwSTz5ibeY4hQtzGSwhcfkadbQXs9B2gsWbL7EeQs5To3ctYnU6ZSzSnwTprGveeHRRR61fgEW61jQYZ11nY+LgdZ/mClwvdz4ek75+YiIlwh6eOGGqrOqhhJxRc2L17e+rp0kWpitZqccAzBkFC4uYPcCCeRcWsubkD/QncJ3am63+a6Zb3QyU3ramruYVsdiKTfiwsrm7qa37tMORJlIt9Q1BQ+CDrWZhKNEwvn6iIbGiEMliUkgAkoO7Me6FGCrCt5KZdPJFIZHo3Rq1MqlUOo3/QvbWngbBoz9GEEoSgJZtx8N21FYkFDS+iN8HXVkyvirF/VMuT9qGZ+UAN8Yt59ZhCeG8BZIw02zOM7jU02k7QxCmR6drdujaXJkrzTkeQsbDVT9R8zw0TjAtJ9iHj5udMVp+SbcsZ6KbzdszeNrML6TrDAHE5AHP1JwR8dE5YiWCwYT1EpG2icD9NJs44XknNtepLYqjc51oEc9j/rIuJ7gQFvPF5iJV8lbYJKecIvlHXTTZlBeptxK7AKMejwfXVg/0jAMw3gMfoefqYCQFQCoCH2Hn6sOCoGkI7r4g3hFO9DX6g6q26gLSuUqHoTR3tE40WPkQ6BpRkQk5xsM5CVJfhNVb/XXPOHyJ1PRrt+YIPldfAkJENx9XgIrZTh5ms737eQwoMFDKTyiipooyEPZnfRqzS8ygOzBcCkT+KRRNLNxl7EjYpJYJLDX2m4h4XuGxJ5pIZOLFPakHgfKj6hs/lksqCsZ8w9rvRST7VfiKGpCg9PvgKB7XWU156y1Fc95sUWJhhJ/0gyZgS8GgqgaDkvMrp51QZ0KbH0On0QbXPngRxkAFo6YrzxaYkksi0EdYFsWkMAUo+e1EBiS+y2X6LOPF8dSfm5LukLkWFvwiutEXM6EvmAGg0hptNfjRht6Dwv7rfWLX5snLdg7HRMEvSdGYFBblzMarbrvxsmFFv+82cVcuOSTY44UVeyDoeudf8OhSN4cfmYaf19G9d4XCcjq0+0Lo/wuFOKAGhqOtFRCxpJ3pLhNG7trWMtEd9Heu2NTS2KBFDUkrtFWu3DUYjAzvqRz8cgPQG9M7xFQG7lnRfD6YYoP8YZ+RD2g7LT7dHOH1shSY80mconaqAvGdLEhFYiafp4+nSnCrnsFb4syqOpI0wakSofcHGHX8BgvayepozQQKzgMZFeMc8kgspP6g+mf0p/5/xi+AD7luvQt8D7rfww/MtQi4Pk7UF6xvUR+EkGsduJJoAKaxfD+tLu7Jc0hRrgAlgk+d168irgRPqNROML99vedoH54ZfrDQkkEht2gLrcclS4E88yG6gjY1Flq8jc9PS5hzgMw76XLnhxTVlQ6oxKOOrLkzxO2ci+ALPJULRUDnvAIMagHEoIK/B0DkNeeEv9iA2zrkvGqAZMEP9uI6wdUAGikf2Iil1oLf+Z+49kJKB1shEFxb5quojxtyrTV17rSExLG1AyhDyte53hZJC/A4LSUwwg0ooC9qUT4WGW9/yPn6B3pbotsnBqeWX/yVkYqFjHgEBbr2Ov9wy5JVoVzrXhC/tW04eI0eVVTtpCgCXg3wS3gfnOJ9+oqe7ZnLuj46/vhn7+ttbTlvy5rz9YigG2uHPtS8o+2m++4cxOf0eb1tvBqzxREIgE99QreZTAQvRpwnEwFvXUvvKoCToLylUtlCaMS8M5w+m7Tk+t2TeRKmnMEwoQTE5kKtDjkiERAi2FeQMj1kCnt0AEv6lNdhPh9WXRlNT4Nys/MSJlPTNdHn/uqMblEHfCKdOA/Nc5KH057ug11PYck07fpXYAmVueuDyXr3BGpcgtTW8guUwfjyw1SO8YPyPCtYmcopxHmNyh91liMJT3sDNEI2zL2VElVy5IdpJe74s+4vnTuTtTFE5g0R8/q9M/prOaYN+vnffPWrbwnCW1+tXNklCIkoJlNxnxVGqOWC7oe/z/Pff/iR76NohxCNqcJqnhehIAqIBzz6lI93bqNunJs3UWfT3Uz7w44YHvWXoNfHyy3lwa/+hmcfbEgAFAhhsgJlvw5ALMZ/75FHiC/yI+NDBzXVZ+tPSQLxDIXwoBL7pYI/oG7YoOLPKTuJk1Ua/42TqsfdC8PFHcSXv4dbgmGL1w5hE8lMoB7JiCieMSgRpfPkBxIy0wgsd3JY5QJ1FSBIT/AK6KlYsfpvNGJGV0W84LsDqhPHhLCcFEr5AvmhoAZQsiT25MA/5HrEElSqazHzkM+Xm8A7HhexP0n00AJSZOcrkgaCKrjh09kOYMUsYGiPOffmuwFoSYNtVr76RUY+EuxEeR2GD4jt1MJYsYj5wKXcasz9XIz7aGbM/AILgbDgHrXwnuU5q975yV70Apw6g3HSGc61fbAz+M6Cm/m8I5zluc/gMUqa1gM0jMh6hF3BWfIkJsKJ+qdHznbTAWe9+4TpBxwB/hlOs8CiF5yEYfc36Ak0wmmYYyR2zSFukruaWCI8bxiMf/L1+nCBOfYWspJL98RwikWA1NSPRVDzYMfQpNFXxOxCHyNFYqwDNXEKi1tTrqcMPrzzv3ULnzGNnFThGnJzymq3qBfMPpUKUuoOpgqwQBeuiH8LLxcejAz0yKJPVky1vf+2e4/0daoBVfYJUnWCBQDQI/w0c6chB8g+Rw43k3tHVXUfvbQiGIe2RKw1mOfGDGXa+dvBPzrvKwQFfGXHwwNrtZgsGOPFtvbmcYM4G4CrvNrxsU7eJPDs4gYJD56vny25eVPnrDg5z/iaJMgwnt19ekGMFJxkYPgBO4G3z4Kfqw9hrDqmB50pMO2MehokEi5FWOXy1NnwLynD9HzUzZBUNe2iboLI6QvM0TDTUvZk7ZeonjSGaU4Z45iVLM6DTQMiQhCMQlB3pUSRsjsBMP4WMkzTyYyTmCzl+kuSi4mzmB1GHDp5yy0nEdg4ccGRMNT9SDNR9Es3irecdBA8PDl5GMLb9ip7D8HDZ+jspnO8a2ZmKk2u8AFYkMMV4Gq23pHPP3yZZiNdv/4BHt8gLx+evPCwIBz+pemfIS9gsjYzNUki+1Kmx5eyOMQI8Q6yRKIgwyuCuUwWyWogrpPUBaITikQ/wLzF3LGzS254VylSN4STfp+CVHBzw/IYuFlFoajq3CNHZOcuQYGv/wi3ua2zGQSNP23qBAQ7PAU3Tm6BX5FljCNQO5gGhpqQQRnLlm/IiRCuqIPnnT/joTNq+h8JxkEs9AixumVBN+mS8yM/uLFn6dKeG4FogA52q6mNq6MLhA/p4rjMu7C8hSnFOagCWojPv4SJwn32ogRgHgaHq5PXnh3V1/Q3p9FyroHLc53UV48DfVTWIXyfa68wqMha5irlYE3tWfEKeSa/9tRsGTUHwydQdCDhy8dKHyKhKJlULsNDXbgJrG8/9sPqJ5hV4ypX//zJvoc2J35wQ/+t4/jRnPNz1njU4sNoRxei/nQWs8jDN/T2b4oLPDBBpOtOoDpjro3iTYB5NcyxXbXu8xsbvrk2V8APj97otLrwcn3nvovXTpFKPVnmGbwUUIdJz2Bvhz2bF2Vy0TPO8fh43LlbFeSAmgadTW/g8W7ubMNz5kf5tjQGuwj+GpTwBHlNCFmq8/F8B0b/Hw/G48GP+832IjioKyE6/i/R8ScyxdYFVo06S3u+tpapsahO8vADamCSykSdTIbEXe0M1+N/cIq6VRuAHNedJkVyANcx6QLs2qbF/IJvxTpQkzAELcSLfU0aL/gsLIwLKKjxvKTokpi+Ofet34NZj6ukp0n20vmPDUpCJCZ3T62uufUA6PMZxXBrWvADENQVyV9JKZakIH1Fm/RX9fYDjRvAEvpm7l68wucc2YmLQb2xoM5dl1oIXFWnp1apAxiqK9vUz5oFJPT3lVJMjZhyZXeqAcCfIA+U8YKzieKOVE41L0zbH4Rfq9aCVeFUzaGUOYMy/VG1Muf5Wztc5zMFXZeuHOjtnPngJgQ3dFeukHRDDBvi4bIeAHrLKgiGjg2BYrtu6uUjIg/Sc3YGYsVspnqsMd39sE8kXi5GF+6Sp7IacZXbrqVonxGNIBiRQq137JtBN628/CNNISkMScgigjEemvpYQE18YM/E0NDE+QczSgDXDfgYBLWYYUJDG7kRbh23k3AjVCHJXA8rRTd6h1n6iQuVlCVKT+pH2kOQUyRE9DqSXfEM+otIyTALdFvJKyAUV/JP966mvrZWf7A3CIJfUewfxEKlILCeUWwdP9ZK2IOWZ0rrCHOyzrprESkacAG1zUf48eZnKuuIKL0uaPWHStafKP4brJ5gv/UtNRBQOtQElglanu2mPM4a643F5GwXHtOUp2jg2gkGzNfPzvdQcrKgFrZ05xTzzI7lunEHQa/nau3No51GbZLhKcTfuHrN9Qg/yX/y4slPC0SU82YXsXF7nvUOMVK9OZ+duH3blRDs3307LX/4TgCPX3/7nM2K9GvM7deKP6xfufxcV9wgSUyepPfbqyrmY/jpyzZ8JCfK0aiUuHTpxpvRuzrmvu+Q8xncMfoqifrBC2Ts5jsB2DyhRTVJ6xu+dDdeIy4ufdnFpZXF9TMgizGlWcMPYbPilVM0AGNRJY1TlSQTjLqN/CfizGbsU01JlJ0Ti8fJVU8iJQSWMw/+X7yIz5plSc6bMh4HieqNvw//iUtyLdwYdz53CXeQu5HyboRTp6idaHBoIVzrAbEdMuc9kcjiPdTBoJyCUg/VX/aUC5i1Z24HPXO3ywWhwBIykDIN3SbRzxWvAH+qmrwP+Oz9EzCCfEKg+OTOkRXi337sGz+BcJnzzHXTKn/vtfQI9nbdPGIEJNvfvnPM1AW9ISaEYndHljZquhDS/ckwFsV90TCvas7nBi6P2cXK0mvika5rtWKTYhea1DzvN5BsGDz4GFS0RMlMKQ2Q92f7zNzI9pHDgwcPAeGxnb1LnB8q29asuVanR9jfldNQpAG/GRvf3mzYss8Y/FDWDoqYgdMgUuwGQwtLqtaw9JTe3t1zvmV29pV2fszUApmMZmRaJQFjY/znrYFZNIlpTw5LXgzXdaKiAamQwLTx1Nma0IWIbYYwwPLuLcwCmET5gcjKxuvEyriMJSXcmTraA3/Ysza0riW/Np30KcJFlYFdAoJLWloGQCAN/HCN893yhQIPl7XEW3Wzze5dba1uSQ2F7MFrKT6nngTO10bIVCMHwMGEzwYgbFgmID7MKAlhCkEQhdCGCn520lRR+jBMIgijUBfBBaLCXjEk55SkObjDdA2mGbWgqlc3bn4KJbkEt5xY6fqZE9tZ1DQScQgiUdaYKFfYCpsnZxA1YKZYQJOjmG+meTW8wpfTJLgtbfoxjl++GbhSxeblF0yFeFUwJNgq8pNDpHFD+I1x8uo4LtyRo2F5SatBMqNS8+2bmSix7XYiSvgJ/yW7seGk/UT+Wf6+ZR9wjo6i9AK5R9SCkMg9Nz+xQO4ZfldXQZU1cstHPHlHu+FjAnry5snbyKt7D/PSYefFea/Qgjcvn0evubLcam6y1hvKbZ+rN4UuWMj6IXGto8t8hCplybNdBJ1IYtgudtIQlEoZ3+ktE3/MRoBU1tNNExceCUHdkKiA9yHJ6+htCN12oXrhIfi8ENpWVPD/20KqbyiAZCkQWrOWlwRFlWSoD0nCEVVMY05REtKS4E8WJYMPBMRQ4f3If87vgry+2bI263xeH9qtmoIitrZCYjcw1d1DktmvWoUAvoaBguFPipqUThuCSHnIM5iH5jC88lhK2cJd+v7GH4u+WTJdl9ZiYiTKExKRhqW5EV3jD3ki76owazcwJOGn0YNXkxCYiYEtHwpBTSOQi5+4HF19vzNeC+raejVw/Ljhloa2HIDwyk1GEIGARoK81n5RbktqMVmSVDMpIFMT/brzRUuPGbwWahvWyR3d4M21kLv6QYQ/tvK6XPYjuykALzsK0QMH6sLRNoX8mildt3XLB5SAjr8hbigPbvjr9PIQrl2LSb7OkGag8J26JERjspbe06/ryNYmPuD6F7yEXkVLaCQdyfXTV6AeqzTUryCGkStyEut10SqFKTHCzEBfod5nau5eySL+zWxR0cX0WUu/J3zH+dau28PH/WZSXNkDj/esQLdVD0UyyL6Mxt7mTT+8YoO18TLoXe6PgzRz9yGqATipBcC2KyC8YhsM+Ks/KY0AMNZTSkWhepecMgl2MVPyvZsuw09seEDy7kjHq7+NpuCUq1JgupLr0EbuSu567hT3Ze5bGOOV6Yogk6SfJJKolGmiEKK4Jp4y5EzFAbKw/IBICI3uVQqSRURCKTBXTIolXItdLLA4L7IUiSxGfxnG0rNAjUOViF2hmrwiJsQkbQVdokRDR2ohk2wEv4bnXyOgTDY+ScXFGOl/FEUfQL0BOYyxvN4al8XQcIvu77FE//6LA6LV49dbhkOijCkMwK2QAr0I+LQdItBDvk29vgDiQ2KLKOTzii4M9eNZYssJQbDjPiEshRAK+Ho3+8K66CyJybYW6kjn7lSjaud4Pw/8+kgS9PsEMZPqH9YiQnT58qgQ0Yb7UxlR8PWD5IjuB3z/+MRessz3suP4Lgh3jdPj01jA9JdkpLfs7jQDSrJT93duSim8v9vPNzTQk5La1OnXO5NKwOzc3aIjueT3KfeqYVNEkUENI4fQPVDIZhXgS60RMOZJG7pPtfWlFg+ANhhBYjCsCElF4oU1Qe1iRWnzt43qFlSHJ/Ky7Rscard4n7YsEFim+XirfWjQZ8v5iWEVWvpom39TrdF7D4NDXqvx0fPJIXHFae4Q9xHuY3gOoU5i0R5yw+Qll5h4YTku62Dlil4Yfc4apoJTpX/uGdvTvOFFVKuHCVoIzzWCeEZcR7lG9vgwFDC/MQJKhD+h0UhdoGRH0EwrFuEFC/Q3Z5oHiORqGRndhB1h3oyj9OuqMNh8W8OQpL4eQglTTxdASE8bJujMXkvW27UIT5b+ljR+NRTQ0x1CHGmxbOh4cYlgIVu8zR+BlrCkeF8oG/NV9x/XDAhfw1InXC1p9xk2QK/zYBw8kV+mAr6dKjQ7st26Zendgi9ojC7rQkBImc7pS4p9AK+KS8CoVVQkczRPmZOhVtrgoDnEZIB0MCeL5ljeudBqSvpBX/OMHgYh/0xzH/AnmwIBI5s0wrIcNpJNmsvXvYx6sVRzHrcbc9TUEwOv6Jov7gjN9SJR5ZSfaA1cNwCRsi82db7BuL9mjxgm+oFCnmkKCpTvbgQ5IZyR+ol+ot/MmESltc6wRaMRwg0n2328P+ZDiQ/3KbzUpLe1B4VdAIKG7f5dn+xDMGWItrFVDwHVxugG3lXsB7YKzOpzZnuHlpN4ue9wXgh3HYbhKs/D09VDmglnMPqDzaHOFgQHBnNyzBZkiAUyjOhTfEAFgIfx9b6hYDtELZ2hZmgZ01isd77XtgSApa1gEAT1acMCAHP4SUvXs90NfLBtdBLscziCUJY43/VHGB/o+ZkX6+KGXasMWiQfzFy4sCvtPbRITpi0q7PwHnW+uHhemPq2NL4Pf6KFbaiXOM/t5uOt5Wka516k/nWL5Jqx3qMV8C8XyTkzeY7Wgd+dPe1M9d/eo9nz8kHYi0u8i0q0iwqtbt2v4LqHuQCN/MeMowFDKYgRDqbnOVefMT8Oj7rvoqHRU18/dWRi4gg7PUaM0oyIuwX4rdHx8SMnv37yCDs5fzfvZ1qgY/Ky+/0M8TcQsp2wbxj2pmDIgGiuMZ3QOgcbD7nddW05cmr3xo8eXLLk4EcfvZeeHnpX44brW3ZkHC1bcvD4Hx8nD9OTc/IsbWX5KkbhDMnrBzKuc4pr4XUdQDJMqKB+3Z5GliYWIWLdND0ZC3+st39kuCCJMLO8lCvERRezDUNAoaGqfQXKbmD8hUdGKpYr9AZFaGF8bdJIBDcpkE2TDM609mMU37rtG5msovpN5wvwzwYbm4YG8eRFanc5Eb3QD7IZOabFrHgDEA6ZfqsjcuC4Gg2pcFZuCMJRjIlP40peyGL0I8fNWbDWiVQqt4ztPDmBKWhMXXL/uv79bbv6+ytXdGq8Goo17WhPRW8ALaGEIPmjB+5SQ1G1OoqPNXpK9PCruG3UU4vSU3GOECYBDaD4w4hjvk4YrxfM0ekeAdNH3odh0NzUjEGBJKD6NvOaR/dsSvcS0BfPhqYp3Qvwk5i2hTDlPBXKxn3VP6YGOXKAwVrRJXvATHt0T1AaVSiF/KMtJQBKmJrllfnUzAjNUbPumlzujj+bW0fhFIkhUsgASvWpItFNzgmS/8Q5SXyVwGqwnqBRG+yFiuqcoDkh1znPuTiVxfT9A/w7bj13BeV/b+Bu5bhKNuc5szF9XqFYUxRR37xIzS2xRig9r3xXDeW6KeIhOddinHP/nUto8oYgbt2jGjdvy5eCMm/H5Gysa5cuj3U3rwoj0wfafSaKrG6JNBumT8vEIl12slEN0KDuv+no23rElPRQeLx1+PLGdxouGiBqDcpDeAXwY89fcswrZHxvfOJTz/N8Z1yLBQS1B8BHjh49KaLdm3267tuyi4fthfZrbj7QnMtBvsPAFQ0Kwp98YuK20uAoL1560e5LwOPzvkELo8wsdannHMG7/nSjnMWluCXcQaJLL+Zd92Y3PlQS8kLeixA9l8kZMbZwfmqvc3vTQB4h5zGf33OW9fucJ53nwARYhqkIxl1wkvrSMpvGqGvN+BVxfOtbr+LVu2EN8S5bW1rgOkMeGIVpMApNzVU+T2L+ZPTQkiUryEPvzC40VbtlGprSECS1KmvWkGC5ta6DTK3ytKv/eAEdxfLZGLeBm+Q+hOH2/kUyGnhM40ypPceT6eopI/X8LNKstCwetVzM02hn+jYV4ag0h6bevzhV2NMr6Eo+r/l79xQ8acx5YN1+CPevo8cvF3f3iEKDFBKxQLXXFxJ13TmEUOnC4lZNlyzfha4k1gh+Krx/USjbLgMlm/UhuT1bE6We8r6Jjw82tirggCVoS2wkyRam0Upb9saQJUvIHtQBH76cY3roMy+iz6BULc5qKcbC1y+eK/IPvj8vm0Kpd54Rk5ra8PBBmmGhxJq+9hIIL1nbjUX8ke6uUQBGwUF2i/3cNQLhSBf92elZdwkAl8x/g/wMly0Phd0fdq7gtSAK6O2DgL0XCatIFkS0gSRSe6EOYkQ+6Ga1dI84P1/sl2pjrZH0l9Eur63Oz1bYS9Lsp4l9qj8ehuJwG+1DV6LDlOOqiIRNNCnbnG9Dhut8PxmW839ICuV3/uL9ZUgG8zIgo7p8kDbNPVsfnVHnllicy7ZTlw7y0/PyY83LAlm93KgFyk3WMuQI874XZZBYjJOdIxvzPMTmteCFk3/F8391kh1rgSLMLlXfHFSpPXXyr77A2utM1Efyuf7rL6PlBA4KIAwWzXmHpyu1qBCxiCUloVnJvulMSZblu/a5sd4igHIwJPM/fpakJDEUMKWAh8ApmZcC6s+l6y7bflRULcwVKLcEnL8juUhU8Gkl6uULIt8cpjYsgpj6TcNNtFug9NiLDKBBAnhBA5cX7yNZYFjQNUyLouJ79sdIxksdgmLvyu/eQnr11W80Dn33I0YQ9Dl/RtKlWJYEpmTFmVJGIREjG81bFQnhlolHt19zHX5Cfm1vcSUMGv8C1oJNbaSK29QAllCdSTWqOPvV+TLI6ILZwqL5FogK3plkrel1JUg/CLuhf+F5wsoQoTb7cDsuIp++iB1vVAEmHldfShgd9cZ99JEFWe1qbxDqgv9CNxL78tVX4VWn3uonNxf4c68/R647l54Sx2ZGe4lC7j1cWRcVuWiav303EWlPuewq1oWLSBcuYkdqwSePnCtbHn7If6saD6pXXU1M2DeG3G7O9ZnSURKTAmdr8Tlc/j2k1/nxsnW88p7q2rZBAAbb4HP0XG0MhMMB+Bw5Lq3O1EJwnGDN8yGNnwa/ZW85atsgPBIOOCp5Afw2EHb9lJ2ZOT7Xy1M8wulYippgmdxMNggmwwImGx6SlaXfy7IgUecNL19DvS9fGwmvhtzWqyG8eutZErbh77KExaTwzHHaC5bOfOb4My/ip4H77hmS9I3kZTvDlUlipDLgymucU1QQn7rlSYSevIWV73s14DpjjARerc/zTPpUxj1y431YV/Lvvw91Wn7w1T+o3bPv2Ure1f2nXdvZzvfvOZjFgmXBfTIcKdEIAJpGh7p80/B2ojwpUwfWcEREyTmT2lSImtSYK2GdpenWvcTStDTU5Ncb0h14+gRVAC9XIqptXeY3wbLA/v2SCOwGJaeGZUvJh6G0iHXpyZtr1iXp1tO6rvoBGGiNZzQAJxXV2u9vCrUO3DqJy5I/BARbQhg3h/yy7q2dV+A0F6IZoUaIVxIVkUjuG4zOqBlNEknqinfdBNQjxr1N9GVFG2OU/03y3Sz9xOceXkpWbM/h+470qid0S9n1i/94cxeJnNn02uzrm1XwoKZMKkC2h1eN2DJUL1aWdvfaWDLEGG9oZGgJQWO9pf6Segrf2LX3gp3EI2bj1u2bFec+5Xwl5osnG5NqTDlP/nBHmzHn03MU47lOjANGiQ4BcxFSvtzfV8x7gU1kECO2UEtMV64IYs3dAKWoq1VfuRYlMefHBxJdpvOnfhH0mG0xd3mthkByfhzsjLPrYiMYE8DqCl07AwnirdhU/Znnfj7GbsyEgl+Kpy3zBX+wlgAxYn3bDLlXoWcCQbb4KqvhmPuyc9QNWnvUDZryfGHPoFmEMC/RgSWIa7h7SNQXC9eiCRlYsrQwZTszWcrGUG8lmsyBjKREdOjkNtH6sRRZ7m8sfXiG+UB59bm5w2t10tSEEjMASQakuoilbBkUEKcqKi8lk/mMirDA3tJRaIK6o+lKe09XJxHXs82FJiU4JmhC95LRsWURn6bFLaTawf6BSiloq0iFOhw0gmrRlNvaSt12g4rwXMhGK8tK3XprQL7f32Q1R+Px2PqM34SaNoknOoo0+yej8inclYSa397ZvSePv4XUzuuXDRxoEwS17QM3X9NOZLL8zgt2NmGe+BQPu1d97ptfmLA1EhEdU4P20oemHxiyg2pMFeRQVG0OqoN3rt7wsSUNUTUaQkoyOXFq19ZHlpvtfhX8WtOgmEynG+W4nivmzZsCFgyZN2U2143PELeDu4r7KPcl6n3UBQqVYWRTnXKlzKLeDepaRl0bvcSJWeIIQ0O+vNT9wv/dsQVVjJsmbQADSQbnaLPV5E/K0Q45agGpVUFKQJV0uHalYEh+nyApk2pBlaIhvLDawf//wz8TNG9KtodyMTYASRFqesPmdLeKzIRa0ht8ApCFXbsEWeVJ+240DBXiX7KYs/2/NDk8e/MMGsMUZy1eo0S3CypWjiXEZZuPYH7Q77p0utGhQMyTABk8UXJFiar9/GQjDMJ+49EseeENFRuMKkGJv/ZtzKkiCczSjUh2/CRgCZvAR37CZBD6U3VWhQdvQ1BEvMAjfOSRAOEkr+qCiHnywK22YsmipjyfKo76wj7Q7wtifnmWbkuyMxH4K3AH4aHxveqs0gk4+jYg/9Eqz3C6LUCf2tYZRFJ076ZNHq09Rfvdi+nK8vfd83rmlMRalYkba1/FJrn7/oDugu8MbYFwy9DQVgC2WuKVhpntOCFcphvZjvfsIUh7Lw4Nbbnf9F8pgY6soV8mgI45ueV2LCslKAdBlFUkEtD1pkYiDYHHqwkdxpLGv1egbIVlJy0Siejta3kpqOgqTEsIaorv9z5LRZKTlqygz3kdN0yFjXKwxtNiXoXwsztINjvgatndEI8MEwuZ10HbgkDrfC2sIRSxqJanwDAEFbv9tKU25mDwz8ANE2a6CY+xYfFwWPKerPezrHougXO5ZVmQevUbjOPCh72yHFRFUcs1N+c0URRD6uOGIQR9CC1tGAQBLaaLWlNLc86HfzPxg49qqhrV24JL4Exwsdy/Xo5kNyV19VU+oEXl8MqtK8NyVFMllEaRmA6A1vPB/WC3KNkxKbxy24qIFNNkFY2INl6rwZbOpZfUxm6MxWm/vxn5/mfde04tMqx6nS844URLmFfZwO2mOQuPcvdzj3KfI1xYnf4jU39RWvBLErjmd/LL3MW8X/Ls5Ma//Hcv7Mwc3+66jYOvsfPb7FR1L6/3nGTn375/3ukHZ7u5sS75DcmwOZe5avHy7DkOM3O5gv7ww2hNeGM85go6do1UezjfnxgUSKRVIwupIGuxUpbIcLHk2mZfF8gU650mPS/iTsWqzlhB9RY3tdEtyksC/bRwEXjtzlpjZudch8EPAwBkAt901rrhrl9/PvBlWXGWMylJle930/648uZHqG93D4nSXdBiUUL1TSwi5s1T14WCUP9GrdGX+2LKyxJtmfiiEosg6Ztu878lI4eFDdQ3Gdoy8p3hFNVrpE8GnA8FYr5/d9a5vXjmd774x+YCA7hazonTcIaLcFnM29OYr/w8PWst5K8+4q+4WJREfVT/8/fkW9EDB5nT2YqB4z6/qvhQ1aHubEyevr0G/o01LPfjOrS49etNeysHH0CsGpB+VhOVGPhwnTj+Yy/TCDvPzukCeDeerYkL4H5dyd1CItk7qULUVbdEyhWWNMVPdXJsRROmzVUpk2Bjb5nPKRMjkqe2O7tHJQWe7WWIqPn5oXFBiUYFfdcE0ZKqY7dd3Kq/+rEHX/VZgkyiwwSZybW60oovdefg+isguGzThssh4KGesBFCAB0/cOVH4VDpvBuCri9p+NFrMX9u/b2a8EMtN86c/fwwsBWU9KiqaMQBxQS57wfufR6hFz+mY3btbsM0jQ9qgl9hEq8aQIGrSZvukv3/A162CX8XXrbRCmm2oPu1hHb5vQgePzB2IJuc2qXbyNAu+SAApuE3l0kwkpDj24d1HYWNDVewWF48n6axzMtsACTrXaeb1QVTWYLVWMyykKmPYZ8rzyXHsM9SAlN1SdRhPT2rL1d7PSPdyLsK0MU30/OmC5hmMuB35p1q/iMkPw3NZwEWZo0g8YPEL29BPouYGleIavTXdNu9RkGTTOWMMlyfzuKPVfV12EMp/xtvEdHdeVMQgOGoMWfz3Bwm+61Mo1E0SfVvzVw7t4zoR9/Tj6UWydvdE6647IzH3uQzZgbOOqPe3ntsNwV7TgM068b3zdRtkuI8BEadGZI/DrlMQxWf0RHcfAp4hI/vzDIBejQ9hXvJPMQxeRgFsy5uT2M8Cbkg5u0aMZbp77EWugZ5za6QJnK4jW5INMtL+5+sXZ9xpsBUOo04/EvVDZpG+PzOy+zzMzBN4cbspn6aU86NQ3ov3WVtEOuMpmBejqGz5wWE0+cA51SdBZOwXc5f1sXS9S5CcEfnshO1EAsrfInZW5mO9B3Gz0HGOU7jn4/Mm9bT3gySXDiQ3HoZvBYHuRXML6JeM2u7BuGa4oaGWeY9moRnz7x8va6dgCaYkMRctrazn11PfUdr+Pzvmwi7lum7e0NNg93i3OOhbWb6Jiuil936o2kFEwoZqdO+mIlur/0O3bX6fI5wiZmewZoye+yDH/UeMjxlMMuhyAB/95SkYXI6JaNw7IH59GEONmuozvI9oeLpjPE8cuUAfNslEszrjxAWAyBqjfQY/veCxmu4SR/8tJ4iD6X0T39w/qU8rSJZ9fsUfDZj54KDs1gV7BL86ZQS82nSFEl3RHmXaXQHXiPEVjvAdOVEiUw1kGE3a5RLxDzS5nIqRP6RrGyhGOmt4M4ekq+Q4N5xGt4/vhdKV8iyqIu37zNXXbDKnLwDl529hFFXI6ovbaZ8ySVJX+oh+bmLbzse9ZNwfX/0+G0XPydpDZIwaPcuW9ZrD/JSA9xNxw+AKrACCAWsujYTu/6Od7eZxhEvBZ4PvsSodp+bTyZ8th5lJdfxjOLNs/RIlpAQ0ROpyM5JgNY3dnx274Wf7UyvQzlRjEbltrP19gbVR/vrO1tnTdFSdR9SwK3XbT/VFemDsD/SeWr73mUk9ZJv3QfOBggIGSiqnAsJz9eJ5Asr4XU9QmYvUcey5HG4ryEyG4n+tXI2e0CFzWehFLE7gVCulHCnp/djHiOoVb+jBwFC+zEjfOUOoXjtxNQcipqauLaZ33ElCL7z56t9odYyvD/kWy2V4WQm25DTAwE915DNBI1Lb4ZgyyW+o2yqHvVdsgXAmy/FtGB8qbx87dLxvjEvdspr/zjRKf/XewAKsNhXydgirPyX+wJuuuohBIAD0ENf+sN75fybAOALur/hBcd5kfWQ6ZFfQGN4vrIsPixCrFAsV6jvmWeml5gXms3IIeljxSzUI6NKXbnoFYhQkZ+XJ1VW8RSpNH9Azvl9jaqeFG/AFMQIxwBY1gaeaV2GOzdVM671eoJA8Ad1os9UHdGHY7IQaSA+NzAV0oAeTCLiSJ2IGB0NTkfbMlzpT1qd4WB9ILcrtD49h2fnYLCMW0+jE69dCIOsBwOa6LS81BU1Siztfy7j7RTlQgYxHQ2h5JSpEepUMnZdwIhUHzxSDxw17QGH0tEbwsWA2Rb5gE7y/uvOlBBtG5gD2YgdcDaYEYBxEPhGwHYuqkHw6RoEN9buzYOZTw+mIHBzn4JE0GwAlCgBsKR9DoAoYNsB8BMzYgc+ycA2Og+kC3x0JxZYmb10t8ShGuY8EzibL6brUku2finObU9FoD3PuNxBA8JHRQEKvHDjprRHrahTGklR1eLxLGxTWH5+Ss878VMQQF74mpdSn9YwOT9xJrcwP9vmxe3lFsmrwhY81Z95W8XVjSjJ9dToJgRj18XSOfZhHMKN8DpBOjTt+d2xfm66EfccCiLFDF3n8RO7z2E7/xvcG8rL4e7RkXe8bAZfE3gMCFKCu2vyw/dQhrOI7RYw3OYngQFk10qiG5MybM84M8OGjBoLiP2C7pXMnKFnruADavVpS7lTABJ4Qg34VfC473N1nr6vT6swGPO98ZovFoTqp79PZqL9W0UN/JtsydV/0wDQoOLPO7S1gPT9GElOpTz9tALDMeVYHU/ktTeCuaL2s7e5KBUl28XHpgJMFylX7EVa+vNf/GjlzA8Y7J3Pg08wR+XTP950ljb+7Lnn7M8TDu528GVnJSCM4uefn/Pln0GI4lLOQ52dntqVcPIjoCZO2BG29U89gvz8L40o1LaNVPYEhbBvVtVt/yEvTPyQ39adf65jweFLo8hvDK8EwuU5VcFCmOk7w/ktFHU+5/L6g1Fk+UHaZ1afdFfqXBtX0+ydbhvJBuKuPoDQrTC+XadoLvhBf4XphRfthUf5CGVk3fDtXGYXTS1miL7IQG7dddEv4R6wEPeoceg1XZNs/d09rN5XL2ywLi5dAwI+snewZGAst22i++ekX64WZor0+OVB3o5r5wbBqwzxM5n1FHoCy6xMB0s4tauI3+rcDuBihpq3h2k0kzhPZyYxhEAIvqsk6/cS+dYrmiySiInumOvuHz7irhqCD0Q0aVhAzZCdopSMUu3T8BEGMdutAguwjZCCxrFnET8k2WliJZ4i5uG0LQ3x6NnVNV59mSCoJgosVePq0gCGgI9Pi1l9zRo9K6ZJ7kC8cFIKDMXUpCwnsagP8WUsPOXKHfgQQc8e234ZH9+eG2B254Hc9jh/2fZjz1YHXUSZhZratUxRlnXpPtnWJ01ZW7tWk81J3XZ9Khks41w/ltwmuYPcIe4uTFRzjOutD+ijGUlqrm5ng6B1DphJovX+RsiaL+bVQe5YHUhvJFq7br6xBXi7wrQ08t0IPWCdA6S68LP3Hrje2vhcWA9RVA9rJMAHDy7fBHMHugaYhmCg60AObh47+KDzyUUBjlH36HuOqRf0Xrf/ehPdH7GmMT2r13obddme55I4ydKOoa/fw3oUdHe3mrrn684ptpM5PYJZlqLsvlf8VH2V9gjzKPS/8nHvKXxkufReQS/TvZpINoh+uvp2cZeSvc5BnUM9U2rW50+uj3Hw2IeFrGdpkTgIa7GYISyFT9ZorJsxkmBY5+2aXP90rfTQWUrO12rFry1C2El2faqPJ1/x5H+XDznLhWvn+iXveMTdQcvqo5bmYsY66E73hT663XMX6O5xecylhOrUawWKngqgD9VkzhRAJwCJxEKCKFFtxEc/2XFgWS3bXG/747gdM3XDhyT8ODH/IuKVdXc2X0t9t+JQ10dvpppy3llWNzNquXbGqO00QXaEzRct2rJGsCCHE1n/EmMUqdqmtv6JCwS449JfkERO52/diYIamkvU9O8YRMmjigkC6gWrVEuSNFncpzSpk5eS8MHrW+BnSNqmRwdW+cvJuaxMT5z6qfPUtw3j/o+aSIpqLwSg/+GHNd4f47y94l9Fy7kl3Pb6deNmpaolaq/PSkVSw7wrK1Xe3Q2KOuETCZ84VhLkFUGna4mpfHG/4Fu5brG8VDwM6vXdrX5Kkix11QW0x0clEkty6aSal/eJMniF1bDr0UF6v3tq9d3P8vyzd5MkVUDV9OYQSVIVNGSSokoNSgo0MDD+EiHz3vsNYLzgiwUE38N/5IeBb+vR978XOwiVaPgg2f4oQzj5XMbVTS3MxV+fZ+YITe0bt5QrAFUzOz84QLwvzrkB+YeBIJwgyujLSbJymun4hBR8F99+jrZadXuju/z7e2+RvgSdJQmxOi3x771VupfmmO6WXtunBJ/YHkdEozdvqyFhwfXC30G6Rl1A8GxFOMm02kzDPVOfLInYUudU/G6cFGuLxeVoTOhSjsvkat4FVB1fLJl0n8X3dW+uddeMjoKpxa8WKOCrs/XpIUdB2pn2thYmLR6FU54+9Ek3VnYLySBUIU5NJRKb1UttWDT1TwqQ5WeT8AtiASszBwiS+aKHbSkaFoPUnYbeTtGNzoapbEZOWcYJY36DCP4scp0FjblOEnhCHSGJyoTLhmks78Y74P9SHt1BI1tXHJIMC5odofHssgZekDf//bV77sjLQR9QBeXin6g+/Kt60bWJLT/czZtqNMSH1+1CujaTzaqmgiQfH5z8yUjFArwl5D/Yf+Hp1clBg9caxmKhylEy42HDsBqMqRuzgpDcSlyjx23eTFhvdm5Ot0+oIWl0E1gyoOTTQnMrCjvTr8mRmHLeU+s2X6EDo7C2EQSBEDMQUCxL1gaaQod3b1sLfC0KKOUAGC71JeWMLzZeQKK7P9SsuydRiVuF5YUt3IXczYtLxPYiXilUuTFvt0kmOM/tIVXvsXKuZDVgdpF9qVudmnrDc06hSUo3UkmCuZJQo1aqtjP1RXMLhhrL2btuAabrNqt2XqnbrPqJd7mnEO3BqLurO5XcyZ3NLNDiVZeWT8+rnRbm5aEj+50sozH89VEgtfySuTnPaRYrQwBDQ+siLHNjhYHnfar+IVcHurK7q9WdwP/nj+F2PfbnGGuTnsy7dK4n+sSvGG6Kpq8cnX8JuToQveRaMi86e1XepXN0kcrYZU2n9ApqxHzDKLHHDYNaRKxIFW9SKMK8mjC2Z7IG5nAYJ0FzBbtiR5idoDTagMA1l4iTlwCUWXvhMf7Jz/zoXkF8COwygvxN67SA1tIP0PZeEqKw9wAAS7rXPiSCoP621PvgSmP/QQCuurTymaWitmbp1i0AXbJ0eCWmQ3p4XANBbdyvZm8e3VyBdHfOKy5Yc19HzL9j0DCBp2N8nK6nFN3fdYTbc7Z95jFOIsgmwjZlna9umtv+Zi5O6Bzx6aO13eG8FXHSsBB/8np/7Ox70zcwzRk98u+KMF24c304oV9zR5S3AqBtsf3rnapXHT5+e15ttEDgIrv7/Gbe155/kiswLraX2bzf82ff6+xc78/7Hdwx01whCll3DzOmfKUkadEfwAvz9z0jyUDYG2e/DaZr1bSQSsmuZrXqqtw5fpz6r77I1tWreC5ejKG9nmq6qdsAi5gn7GrITX/B4oD8YG7zCRJp2mv3uK6C7Looki0fMS4nUVloFiSce5Ibk8caGsBNDZuSubgqT6ox9ffJDSllWImrjzc0XIfLjyvKPpXcN5qChYbJhobEQOJWLHQ7L9Ic82BcAR8tJsFNicQx/LRzTyLRlFBj8lZV/X1DgzqsKCeSG5LXNzScwFXuU/Bdw0hsxU/GKw10j0BMmlXnG2rMxbMncX9HueV0dl31fvrc3SMt7Hb/vG7TJ2gSc/x6XqJAoDlDCRgACZ9iCQiKC0CyueFdIIkcOxtMLkoSmFQ/OoHvXKcoxx4H/3Q3AdBxVSVncKPqTNG0/GA54YPBlecEl33Mg1cCf0RRwX/MAcz5l3FVvQ5/5tiJN4/hn24iRUVxjilxcCXmdBUSWh9TuRr/OkN5xijhsxdmTxFqYRQhMSdkC+/e8Cdso3UL9/R50k3VvBSze68ELB6cv6ehKxwvpwxL9ZHdfCDi3K16gLt1zwkvPGIMo9hYIPBptX6nnqBxxM0pMAZn6d4XZ/OM6S3TiMYKBuevMEL6FYVjWtA0TQBpBdykKL+GNDK8+savqUvnLC8IPEircQ+n/wP6YxTnwhirF7luKo17+Jk41rNwIhYxvCBp9Lu3JYTc0/8oCP/4dLKYBaCY3LxvCgn/6JyfLBaXFApXJQuFJcXi9+ZdoTh+HL+En07kE8kCgEf3/fEPnAOA/Lik8Kx7Bu75G+55To9OeI8AF+OyXJvXcjbl5zf6bG3FUg86fWJMTatjJ04joepcfDYPJTSKpaF732jco+t7Gt+4F8tFE97enQvONVpA2kT28W6n8BziVnJr2T6889JBi65MxwIp5jeX+BQJ9RdS/QXkAm6TX/T6EMBSG3rqXl3u6pL1e59CWDi9zXUxAu6unwnP5yjtdoT3OobS6NljNz1lQ9/YmA/aT9107FnnDs+rK50+S8mLA/w57muJm+DO4/a9Z/Ymmj+tLnkTcwcs1Rae6+rrJm0q5NwsTsy4UKEmKjS93m+Legqi9afafELATd0kSDm9vS0ong/RyhY3c5Mu2v6tlD71FeGdzWXCt1XjpSN5IdR9GKFge7uWkwQ45aXp0YnYqaWDXc0IDgw0ybGIIMFIX0Y3rKRA8jYhNFbwLSN5m5q7gmmN5mkK0rxNcLANDAZJHqeDGZquyc3eZDgn2Tbnibr8IKMsfzlVbc3fFYmubpeW1+QMuES8+VOQSd9kPyQqj8MPXSjuupqy7Q+gNHzwBmcbk+YxSaEyPvjizoMQXL3LESkE/uODD9RyitTvfTZE99Oek2EW7u2BL+uduSo1Y+Fc+5DrwtIJiyTWmsV4VEja0bpcJNQ0SnfgYP6Baj0SxGd+4c5l66rP0lFZh8tEThn/2d4BJPj0WDTc1HjhCvxVnUe+IGwtQzOkmJ3FrkbENw7gMfQm+89w7Y6LoQHG0NXfsurB/1fbe8BJVpV5w/ecc3PdWLdy6gpdVZ1TdVVN6OnumelJPREGZ5hIzwzDBMlRkNCAKCC4AyiLCNKElWUBBVSMSCMKKIuifvIu/kTHsLvvuosJdX+Gunwn3FtdPUF593s/6Ln33FD33pOe88T/46Vc+z15bCbiXkIb6IODy91ZtL49bkFeNHF9bjCMMAJGQNohymJAE9WFiba815GA+rxei/sxSfMRnQBWNUIxMODNc+ipNJCSV5Emw1lTDfDh64BYet+m1nhIU5VEYKjmWR/x426u8WI9F7zzSM/jXWLfKToqeJLAy2sLVuswSP1bza3vBA30BYpSWTo4SjArjbVX+3qsGZTigtxi7gDx12ZmDoZSQ4O36oTlL/f5LtCYc/FD48eYXwIxiVCAa8LdioWyWPafUPNx+8JNAYo6E+L23pMIxnULhfSlN4ekWEwR09f/3Ah2KxrT5eok6Y/uqF+/7e++pvUoWtD9bTinRqJbHT2ZFTuS9f1xAC7cH9p/Pmpbsfdq6BjwYiMOLjsKIXSSFpCCWV3WYlollwsa51rICjA1sa0YF5NhdIOl6ke+zPNfuNXkLfUGI3hEtQoRHgDId9WzSFDUSKTjwEUIXXxg+aMjqjlZNUIhozrZ9KN+Ca3jItw53H3c637edoLfXi/7WWbIojEwWKsOLARMXU7+RBP5RCTKFJiUAxyDBAZUpAnO6MRksB34KsW/rNG8T7QAmJ6aZbolXRT18QtobF+0CRxUyJclWijTnqT5Pfxuxb8uDHq8ZJ7hhNCQIg8R208zjwZ19TXCic3mniW07DVF2aj+EpIkTTxCCG59cjmED6jqXszjLZggzMwONaEsqH4QwrbJDtHQQDosYX5RgTxcSS5PYHbGiul9I1AQIMn2BN3/p6dsCoHTc6drWSke7i4dHP6lFS+lVpQ7S6YY2JbbpuWkRLg7uaLclnnTjpVTK3qTQ6EUFqB5CQQkRy1uTIccuFrVdXWDoqxKDAbTho0vur/DF9s3pB2HpKPHlzqV1wi9fTb3LOHVv4+/dKOCOvECRz4FjxqQLyzD1cH88V6FVAfT6B24UL0ZL1AFXlA1mG7HK0mnw/NoJWmV5aqipKNaSQDE1QPw/F++GpSz2um5rZpoLri4uxS3fjV8oJxM21JO25bbHhCNhZf0YPb4l8MHO5LpceA4mQ0lxZFxPRBvG6nQUHINbmL8BaucYGYduYRrgXgLXxpIrFSUDbgmPk/8HOYz09wwRYfAc6ybGinp4k1ccfFU8xOalD27OmKOvHQ0YXpfbHE+R89hAe6LpFN4XjclXrXdUzppimqGlDfOEPKymPp+qtAvqYj/Ryzf/eVtlpmHKsMYoh6ZPlpfxhACJF+ju5fKhGVoBB0TfNwI5ttKRoAJ48E5fAIyl9Zi/r7OHSLWmvkSICgNUgtGc9IsBp5IxKYGriAFXhdodHzdN43gIS2VPAXqWDNlEx37da+A7vw+XqQ3qnhYkPHh3gdOf3L5w4qyFx8umFB0oCt41EwgXpD1UHQkp1oCr4AzpVxgOx6VolnqKq9IlmO0j7vCMdzHW3On4z7u6Kbn7Tcz2dLKZHdox2us48jsUZLw+6BQWPYJ1RtlZEYl1OVyQNbtWDSJQEDRYxcYYmB7/nQ88u10snxg+JdmvNR98QK8Gmyl88RJJzsOVt9U08meS7i5uPqfejqNFRzn2F6cOcuXIAotx4QcH3vstCQEyVX9nOLjTMumq9/EvT3vYCkNGcct9LJu725gXpXyN6RfQTt80T0q11cBsKoOulXd0N2fKLVVEK6qgR7cqkA/7kRjPWhPMk0l2ybbfV//Z9Bn4BOYzhJff+ITuR6P9qFoM85EYimAiRKrzPii4Voza9fcMkzSdGFmvkiNu9Ru2yzBu00z+tjF130KLV3UdnZqOGWYKrqjFgyH25PJrwdTqUI4DG9Af3/2+XdAeMf5sb7oadGBxe7DmuNodjh8lxYMasFQCLwM918D0T2XTZzXvXehqIJc+7m374yUIvjvVLZz/3TmByD8wJn7PwBVcfDU4tSeUDzU/GP6R9yPR/G8LnKDLCsQHuXtZZGnK0NFCoWjg8TwxVP0fBLCPVibZ3c6SqJkV7zNfeQjb3MryGQkqbsBXAHImRWQnnCzLXo3MK1AURA//EkIP3kHJoJyACETIZ6euB3xQAb837do1byxxr5xAc3++g6/sxwaDFNTcD/wswAUT6R8fkd1WDr64+uu+zGJwGJ7d6qlThNegqN3UDUJgGs/CuFd1/E82X/0WuH+lsq6Xp7zOTpF7Moyll6XUd8BLwn9yY3LZED2AykSDhmQeDwNs3XaS+ICfpQolbAMJZ3AzJz/MjEzx4kOoFy1nWLfcF+wVAr2JYqZG8lC2gG+UKqUitUi+IBnbbaqx1ibP0swLDqG0/lEX9FxnPJZHUHHuZHAGXbMq88ibge1BLwjq3OZwAQca3VGFHSbUF0xRPzIR2F1uFz32Jt6bRiJ3oxEs3NGaGL5bTFCi4EWI7TDQ2eeyf3nmEbemCkmWCMM4wrZ1TJthw7l+85wqYQbYvZ/mjAJbFTVGx0n2HFWGbdTsS+RTw93EHano0ONu/87SBt6zt/uOdx0MZqzxsOd8QWxCklOXomMAZrgjdkouwFLqZQmuHqeQYSY52sUY5Q9AFLtbrWr8QbbF3RFNQPXg5+RHG9xx9Gzpo0mhcCDJCTt7osUVeSRpBGY0fqDREF+L/uZu6+8AMyotgCMT4Ojdjpom+6DZLUlHhRLFvEk49p2AU8fwVDPAYNlsKuj7vvMszotouvvyWqFO98L2mwGTkk5qQuIBRPkw1IVC43/V+p9B+LFcd0hcGtk6z6IAA8R7sNNOjznf94kSyDA3Mu99JH7NAfQ6MGLdmkm+Mf/s7YisdS2j51b8OGUhIyfg5zGTwksCWfBofHeRWZKx1w3PWK3SmAWQvenBCMVf3Ge7t2nDRt/ZY5s7yfIegbAvJNtNPQQsnSACDtV7chmYa0DEisLKdBop7fxsG5gZiyL9yQIqtFuJUIgTSKi8GqdAlYSH5HIqZmOGvSxCVkOJhaXuMbzpZsXkxhtKTstNtOi7zOFZbpc9WS4AMj358yVWwO6c60HuImpHfO4wMVXmp7k4F6WmwuzlI3xoM4Sd3W0oD732Yw7hbOeq737SbYHHiCTn7536ZwvuW1SToNaVVsxpBs5qmI4OnNsyjGymVsHnkfLqS+Z53ledmg0TYBC2UUdqYXvoMlCjkdxFCgyS5PEomDttPDq34hSLC7+8GUsDcvCT04Jv2sBw0isvSty8X5n22J61PgwwzykuIjgN6l+yxSbh1mwoPcIeFGLa5Lm7gX3akQCdhf+/cBiwDAeF/a/8Up1GaAgi+5PfUhH8ut4pM0K+kecZ49/zsv7yWI1Jrkt3HmE//I6kFi/HLZjp5ymaowMGF9dVhsuA1/UxQuE0OKxLswfVASCNwPqoBJmWLyAPpWOCqqa69WZgi74OV3dTNZGvMmSZeAMsml8j+VUjTsKfI2oCHWiLfzLU9QBhQCswt6ndNW9k6Cwgr03uP9EINTBGQoWXTx/PLxpzOJ76Q+MIPizupk8DW9C7uVk5TyDLAvgu0T4o7lV/52NKE+emVHce5mBZNv73XvwL1VwjqJ/2gjO6RPhPzHbgEmUKZJnDqrX6tUo3dkl1G9b3wI5y502DDAtByULfItuAXxAVm+5wAmq7p/VvOL+SUCqc+GtZAtVp/n8/yCIDwpZsW3ipELNDYMuZ2UBsCRbhpwJPgYmlGCw8Z6gygtgQs0zvhPOwmna1/Ozu+bmZXedMuZBLEz7EZ0tjoy0zNbKH6IHUBu1VTQzQEbDYoQGswCqZWwyfTe4f8xszrhf6MwAfvLi941s7Qd5wzQbTzJeDkvXXDLpzpZGqkf27QJLhkCnUewsupd6WSh9+8IDmDaTnJ9lQp2LTS18k1UriKV6dS7RaYgqPRzR/7I6hbwBZMCWwHL2ahaqEtz4vosnEWjrBKsym9NAwt9muD/qP32HpbpfaLcB6t78vtJ4fxJIquL+Ea8Z7LuuIYM1GXR/B3bvu7W6uAzGE4m3OaO9q6i7rw8uwWRbcWfz7YVbNw3B3oEE0NQ2FdCYccZn/wzOUl/a02je8GO1l03Fom/vwlzbvEQ8fT5ALFUFZ3xM2JCndCSW52LN5/UoqT9B9P5QDZ5TGQNM+wiWVCd2BT2MOeeKzZuvcFDY0E1o73Y/BbetWEFSeZDt1erIQCKFy2SFxgtzR14zeEOrTqhEYWlajSRv6G1lNNxp2o6+YgtMxvpGVe/B6kRVM0A6fWCM6S7HDqST562hofanEFDaU/ALUdhcc96Pmu+D224bmIzElpZX7YIkwH9hT7kqo4iuWUBd3KdhKTN0uxER5Gq5ZyFZ3cHONeWlscjkAH1q32LVZmPobeqf5mOlcPOGf6X1oH7yWTLNhsxbbPcdtmt4c6bVy4yUiWmelGe8ELOWlHyszNacN9BPUIEzMPUgeRREjrDaEc5zisKyV63d89toAbL2/AznGHE4+ln3qZAkhcCGzz75Js+/+eTl7q/WrgX25XeSxO8FNa4ePkg9JA8S7dch6u94+LCC8lH3sXY5ohTcx6L4V0++2eACf9iz5w8B/qU773wJ/ErBvyBEEf8uHlIOUr/Kw4eUBOflgZ3GcsYklTGYqrEP+LD6tAiJHhwzEyEKlb6YJd8mvjUl4i3HNJZ09DKYCaI9/r2EKSFJcrHyc6bsWApAYk5NWaUzwraMJH4AAXHHOlkGxKEVIahYOTOQlGO8vOoDCKrBkFRdyF8OPy8ixVYzi2IH7lUEoNiK9osLQkUtYgICobP/Eh6dfl8fHzRkUS/ofG82kNJlXuu4ttb7vjVKkHjQVa5Y/cpLnp3h8+ghNMV9gNB3plONYhpfMmA0Inm2tJYQYprwtuRhGmLSH4oQRjtSpz5EGejNa/yb2rzfhjz4eO9yOBQm/6JhPKnDWCJrA0PhSoSJn/A1NSRLEq/wqz4WkCwdC1XvV6JyUIkDlHbsjBx7962CxMu6IAkaunkyJMdNR0W6GjIfUTsPtSPVtkQnBLsnoHpLfPd5ePkwAaplU90izYSFCtFk1do6MIyILhiz6BA4gvDe6wX0D/BpvLZJYbxkfvgAgLxqSdc+XeqSJSjE2le0ty1vv/CpdRDIghaX+A23bmhb2JZK48erFuKNbz4Ynb5c1gResHtjlbvedfOha/+8gQd4kVu2q5xb06uFEAzqbQtSuS0Lt/zuEGHjdQjYNwCI5QTAL//UgX/4d9+f63kazz3QihFBoX5z86AOfGwDAj3pwTOJKNvwnZBaVrkmqLv7Od1RwAPU8WO3Ou7zo9Tx3jNUevwsSWFOeI2PU5s+gfc9Bg+68FdwclujB04KyNyi/pgHDv2Xb7SgMcNEqybnWB/m3r/iw+zl3aL8HPVIIXzeSb2Xw0Rav5FZQXWRZKuZOXkiT/fLKlA+eBP1Zp1R8RjiH1ATrXlq4qTvCEp0gaqBCUXzDJqUsDlEkMhVm9hRnniB6u5PPJQRZw56ZAwzeDSUlMJzBMHvQc7DGAmpLzeorzWsEPAR9/uYG5z2RRAPHIjhit+PaVkIy3+clzRCQiLNVFakvh3MqWeYhBFEQujOPxAHmqoElyBN0REP2lUR/FBxNUxpnyaoyU+rcMVvFcXtlBT3s5YuA7AUieCXasLNqcqjCpbhlMcIGfXe/QB9d3b+uyveu0tNuu+AKLrrv5WkQl49ijRV4xEoKhJ+NXDt9xKe9oLvVMAnv9HycltTwFIo4XfH3XHK7J7XD2zwha/78Qn+WD3pSJ0/Ok82IhsPzxuEIq3XjOf324fljM3cTualfqKgZeCHu3vpqr34Vydn50jKVpbOPRJ2cg4hkoyhQczRsU7M49V6LhpqAZ+Y27hPjbNZnmXLLvEaPJdAvMAsKEeBYVs6TDYmkwBpVtBIFbCs1ZGBX4wXwfLGWigC+BUAp+dF19BgVJ9ykOJRdwqYPSUswdiQN90K+DamyTaWbHryjZ+194PO3ghQJUMzm74pX/V8z7M0j+027hCT0E8iZ3uKGTSHDkRgOhnAUzjkK+zKVBL1PctbFHmYeZxPE0uoYFfgJ92HCBpiXwHspHtbld2HZFWVwU5ZnW36N38qk6IxILn2QkG1FTkgSpkMbMgJzHQliRU/jVcZGa+2+QIABfenLZAvfbOzKItf0DiTvQjeU+hrOOQV8B6ybTzAHEZBoWd7J1UcDpxbHb+iZgpyPNB3CKjUuaRze0/9UF8gLgtm7Yrx6rkfbxVL3HEw7clI04BgMc3LCY+mGsuJvAif0SkAnGedQtT+QHAlI15Em+T7gMwlrxouiShfEHkpyEVrnFNqRyUOsSkBOfjSf9CsVVc383YBgOnRK4Kwzf2OZYHBnTtBzTbcH14w4v7K4l/+0JFvCbb7nzD5X4eJlHodW1bxusaTfAogpU1tc/+Xe5GsgNtA+2l7/vJKAOzF3Oz6RHJ92v2V+3F/zduLx007y7gleUp3JjkQ9VSGGu0R1c3jXgY5u4/C/hjNmFp0imXBBZ2diwAvbKsv2C0qAZDKThY71zmTQ/XVyHCPujNEENftoA7uI9a/v8gKjEIYwytwBsI04rFgNGU7RhjASCAJYRZzE2Am2GCE12hwVI5v5uLB3/xj/M2Lj/GdyJeOyYRbbs2Ni4e044cQ1+rOKEA/ohoNAPpLhcl4bHN/vgOA1dXaKgg685UNTn5jG+a42D3ZRATq8HMvvfg5zH2GEm1wKcs00bFYWbEPXj9tLinXiA2rVl5i3ngxQPtGlMUd7JZsxXCXWYq0hOdHRcUGz5gVL//lUZTBdZjgTuV20Jl6XF2qfXMIaeU+MO/M/LqUmeyaZ7BDRHLrIg7Kgm/l8gDOCXEbcoLkZ+jHgOXu6C/l18Zjpw7kO2nlcd2HNgbzm9pKA+yGbDICdPj5F/2q35fsTOI/94ZCtQDa4khE8Tb3W3jOdSYS8PuJh26//aGEmdnQu2f/wf0dkxk4Tpp4rL9zkTqxD10/bS0pV4k1r9oxYt14MUR7R9TFHeyWbMV0l9uKOIpbSlIs8BVzyEthcVGyUEjG8gjlY4yANF40ypD4JfX1TgCguf8F4KpBP2bhLtSN+YACV6OYKBTpwM9URcKV/DyqwHeuzuGmIZmUPUsmhRkWjj+FrtPlaX56KnjGNJqWdZsf6Yabu0b4xiPw4Prg+oPQnQ4H45qiOZoaiIG7grGAisuKFofdsq5MXYPQNVOKpjT+u4v4Z3fB8oYDJEuq8p8gFgyEhJ1qIKDuFEKBYAwcd4bz8ivPoiU0x+4gW1kJxt7xpqTWSO96K84W4cG2n3YacgKIl1RtLkTxiufJPCOb/hZSi5ZQE8mi4eDSnBKU5DlzUXk+wgb7NpYnMEmRJ3PzGSyp5Ysk6tVeP3ayev5V+Oun3+ZoJhS8dW7NkiLeOK+A9mQF5cvz0lZfE+YDUJfACzx8hiWoNTH9vpelmV1OcM9QzGjmq55zxpJMbw76uep78Ir5rpPztIiBzBM0ajwiGCatWGZw9OxkpHmSpoX3QKvZuZPyvmfqjtrV09NFyPdwrTasnE0Q6hOpVJJoGwulYkE5h4J5hYBDwKsC4Wg0rCzFD3m2wfONZ33u+F8E4V9ImvsbCJz1gQsPdJJlZOiaW68eUpZivjG5auOqJI0GK+4+uKtdPZXgeVl9FsGxku2+4T5b8vn752g89nISvVb04XUIofHzc5bz3okci0OggzBaYRqiSLRcGoXUtyhKaZVE+9sDVZmLB+kDLAkJ23suUJ6dEz3W/b86nVxAEUQUMQpnLorWEoVV7amoaZptT5xFgJxUd+s9r/IK7NtUjlScsSqviKmumCSH9ixs7+Bf7aEKWaaWdZJeYiu6rUzSjFfriLJ13ceDp6nQtIy0IWccI6IOpToWgZBWG9jyGYN4gKoW/AT/6j1dHWC8JzagREU11NsZxXMr0nfh2D2vukTJnCUblo2LrFBZspkkapDJSdKBk9w8uanCXcbdTen8/Oxh0UrY3zPdOHWqJPgsbE9QtvBKNLeSRcmiXC612Fxbu0r0u0qc31VSTiJ0kIxOr78yoE69qSkEGKGE8C4loa4j0QnKGhpnND5XuaWktJRuK2sV4gdb3tI/BHAT3fsqZjtCSQuzH49de+2jPBjsB7mhQEsnLozhTlxZTEVMw27/xkHwI9yJVXcZ2PBYVgJAhHYtnhnLj19QzgadoBYIl6XIA6fAOxWgsiRla5qNzQw6zcZejWWfoGTlK9Mr7v02z3/73lhMN1HIcELXPobw14xf0IN0CyLL0jO63BYEZlitJDsWkUzgw707vyiznr47m5UeWBsi4cyVRG6REbMAhHzeiA9qQBjNvdv3p38W89icZ+GgyOGewYJB488TN4u+KYyQwFZS0kQOrzHkcKQSedL9V8UJWOjPvvw5Pxh243zEcNPK980AnkKGAwqIB9IW0NQ/Ee3Cy43v0p8NvOrZt4wTQYZr+wlkuEzp9o/gn7gRbhN3kJvm7uUe4Z7ivki0hhkquDN9Esv4RgaUn0iB+k6x9Bv9JL6G5nukHgu4alFRIt6g0Vp1TndXpDBVVJtMlFnDXl6A4aIH7uLj+zPaUSt5CQIIsIuXHoC8uhKhLz7GGaSM2zIv1stUHSbCLRIIxaSumNhmzk8P4KdhkICqRmXVkWxhSkEhU9LhqpVCQDKxSPUwyCtWKCilAabLJGNAvujqWALv6+/rEbBwLKhqrlhqV+CiVE5NmkBJxQYqpm1E5ViMX9goVuoLqiUVhWJqLLZofHzRAI+fG1CQGoNB1o2jpwBwyijuOiAckMzlh40gKYNNBPBfGc5uSunz0wZcZgdhyMafIAHFwPLZpXoqxNIHhFK6uHoMES+XsdVjF/XRjJ+du55QlL7zLj+vT8D/qTG1ePqe09vV+L58jCJzRFOLPrS2e2NJS9iVsxdsfajxnyO3zdy+uETROkLxiU98/uGJAR4CQ03KzpHm9y455Uegp2CqZ6HKYYHk1PSwambRz/GcGMGr5zncB7h/5L7MNJonHBh0jvzVUTXqB6c0E6lS5iZaH64V6XA5fhQJzYCW1pEUweODMXEsk4SvFg2TcURVp2QYtei//egpuFKNSaojW8cPjU4pFJM7Y0LWKDrleCIeL4fwsJJiU/iYDCsL/DiW7O0kaZalfPtCGWqqkpUbn8WjBfdLz2DLAIIvCBIfiY7UySCykZqKDlRATnMafdUFC6oO5vuQgns8FhtZioeQrtARFIUfw+duJqu7Oi5ogqHMKECfNyq2b6ejooK/AaqV3KaUpkMxk81mRKhrqU25S+lY0uLVzq0DZMCQBBilXZWdG9SELIKsIH5+kIyVkNpz3nsv6KEDKK62b/+IoAgDB6vbHpzIxfBvkjIdRFvWC4HDi2/bsOn2xaGAhG80kByKrXxk9048gvAYISMIr4fqTZ0kyew4ftaMGpvDDn226U9QP0ZPRPP2hA2SZLbYUhbo1ssvMsQ8zsHbLbzVLqJfAHTjHp0rg4e6Lr3xki4ZReJKdsfhnTk5EUbzs5U9hQWN0Hg4mQyPN0tfrS1aWA0kLIR5tN6uALISx377AJbeDs7/dkA8BUmYxFCEOE1SxgdfjjJUGOrgni+dqCL1ubsosh/zOWRPinpPmldZd7kipfK48xXQEZdkWYoVBQK2Kcl8ISYp4OcnqLRI7lFEhC/Tm9gTdLyclxOiosxvkwdEtZAWVVVM5SC5B+ZjWGpQJT6RBcp/Htc4/zLvuqEU0vT59LdNneQVWEaYpAi6wx7oKEkHU6ZKBSww0H7GU5ldy7DQAf/YBCGKeuDRiyhz1RwlVIXA6I6RQGM8gyMU9g1dCrLdOVzXAGAFTYG0AIAcwMVcdxaTzUSxaDqFcnJiIJMLX7hm88e6M9YX3y8oiA+A6DLMv1ynYLK9TFXA2D33JpLJxHdUFYSJYTaRuGpwbQDP07WHJsmFjZ/YoCqqump6VTQaifzkssPl0TYNgEUd+1eW+traweKJ2nuUZyUgGucE5a8EVP0cj34yfOwgF+bKHtKyhxnXqrcbLkcpujJT24WJgpPYDlscIk6GCI4umxU00cdXppjIsxddNNXwAnyDxkyw8VsWBEx03BtOAqgMt87yQqv7C6efdRGBxSBZ0KnKzAhCbp5U2JJXTvCwMcbxbK9j6WIHzRpC8pP4Iea4t325nAYmOZUW+IA5MIGKY4C5WhO5hNBv8gRK1Ydqx6Q+o4sPCxmsUL0IuhVzfrdKl51ubbtMOoKlLUdc1ge39i0TL288Fkkj5xxi7t2y3BrfCoNp+xwLpd0pJlcSb7IvdxMlBE0kmj8/FNfC2kW6A8bN88/HMyoZUm0hgRfchBSUQkkgwXHdYTZp22y82b8EgCX9vfg28Osp8sQjk3sg3DN5BylPuU4kAbNMcJ1NI5TG93bnz44DVTvfKKT6l9xyzjmyLYXiohRR1YgkYgnP8PVhb6D3IYHEdxYx51kmPJFA5ogYtkuFPFXkURsitR0uAbWyXTzuArqGeNKGdTdrGJj5zZRzSwbtYEDWVwxksz0jAZJWZ6atnB2dOzuy9CoI4BQSdBNugmGD5wX3VDOUj8SrifZu1aznJUXQdfDHFW547nToVEZD38CypsBpXIJmGeGKzSQv9VodVIt21KsIHhjhE9eiCmhUM4tpFuEhWfK/zNTdq8DMuFchXRYz8z6cVQdymtrIErsKPKo6/yDL7PsEEV6prHDbR+ESr2aq+5dXj6/Wv7nvVeAsEbQb43jr5YJ4Cv6cUziHI+hXi6j2ifpGhnPhnAfAWm1FCivUW0IgCwwfjIx3fICebIs2VFxjtPcvHwepMHTD6cb3/0UzTY1u6u5vyA6YAdMMvFIj5VrAsgLw8WgbAG3Rs2vu2nA6HT7fwqJz1DrHjJoAmKTM9s24Rfg18D3cD5hrIwKLp6uGs7zs3iXL4qcFjf+MCF6WLem7PP9dqfmbt6lenMVfRMjEhV9h98oyOIj/dXxXEL4rkXfNx19tO2atZ27PhFdkOQpD5nykI+qEfB9PjLbSDBFwbpoPnvoM8Vye4XmoONLHyb03MnvI79AtSKNx4DmuyC3FK/UO7vDx9hDJV5EW/AI1DxXywzSdVagbSJU65WULJFwGVurRgkDsQxWS/KKK7yrQGBJMoEjONEJlCDwYXrTQhsaZCWK+SMB76H4C91TENE8LkD4wb2lcCm9u/LcQM+PvkVBKhO9GgqkKfeadjuwgdMrB+DnAiI/EgpOID8l8WymkCMPbwhnVDKa1WEBfUsTrtYaf3vqWlayD2R9+geNeaEbL5WBI04CR+PVbaSxua7/5wHnDXdvw4oREzZrhwdnjsfh7CuGEIE7sNoyUH1sAX4NbOY6OjDLxHxki7HYpD+Gdo6NLH1k2OrrsEXDdnV5p6SjXjEmYhbNcCre577lWbm3ypu9aMwYafcqyziNLy1FvaSHov+dT/wHQWOqF3l8pKyu62HV/LSsvE3g1CGadTzeDtFHz/UNcjWJ6l0xIs5SFJXue4Yt6qp7os1C5StxzyQ15ET1hWTMIQeIs0IpbRcrHf+zY1FSjGQiLP3gK0xiBpDTzMK5mm8g8x9Qg6J618I2F5WbajGbM1oyHQjg3aitsiRvyEhqyMTzPV7RVg3l2gwBEg/7Ci4lOdRFvhyx+kdoZf7F9AICBxoOtvqHntWTzhveB/nZ3dXs/SMVuIzro22IpfAZ8vr3fvc7PBd7fkhecOIGKLd+8ENO+5V68x1/9ckQYXurXQhUoUqHFMjmXZ7rYLP31Gpma8mJAWKQNjAxoiwT9RTmgyvB1RfvUJtA70dc30es+Tkq9+O+vVLHxeyUAArelcrnUbQGgyeDzshZQvpQnP+vNsx3XyruZdLT30TqfzN7K6lT24SeaBQKy0zQs+qFIc64kXg6Lf8S82H10DO0xgg+Eif0l+aUQ3YGvuVQnBp7VHSfNzqHsMY7K7hS+mAwG38LiUCrFxCKyd3OA+RyCa1LErpI6zs/jqr/i50HMVLj3ylIGYpkbc+KoH2LBHRJvg0IVz6ayAUmPlqO1yiisV8IF0Q9arRbClWqhRijmGJ6bleoY5uUr9RqT3Yew9H5ypXmA1yUeyWYIybFsWMHcvBlUSCguQHxmwYA9aPMXVYYyC865cJGVqMZ10w4PLUiLQjEjK44sKHBqijcjlpbKicIK09Q1LRA3HRERfyB4cs+TNB5LUG3D0jsinJIQactbbbqsmJkED2G7Isir7aiJeFChYUgVWUEQX+BB19FbJEHA4jx4C7g0IkkiNmhBCRYMz7f+bdzegMbuq5h3yHlSwAnGP8hFaTRFlEEwSX5mLKJGZ9ZaNs9w24uI4YhQDSV81R/47qeaU+AWFy4HX1LUugL63MgiQXtJ1jRJqQbDYKDwEplfgtYf+jPRlmMOiTgo3zFvEoD+cU1xt1WtEJ42A+5VR7QAmSz6UKAYdVcX6NTShF4TPE+U4Y1xsm3lBcokLoZw6Z5Vs8BQQUNU3A8z6a7CsuMOlwSqS8xL1Qg9LldoZoOhepi5oUbRdCYPLz29e236c+n1PadfCvMZeqJnffoz3gl3yCJ3FIvd+MjaY7ccgNKT6XW9uASyqWN/5j/nG+zWKfaQcs+2S6C1ix348Yd+vZgc927usndeP+T74ZLIw5ZyKzZs/a+3QVvrOvAO2uOTnlaZbN1dvoq4eYopja8/aZvNttz7TtoP/K5FES20lBuw5WD05K083nLbXI5h4OmQllKckqjXRMRZlOYpZU0EWuZCkUYVEuoEmhGINPxwiMyaufhEKUrU9MQxVvIjE8uDNbhrVIDbJ6LhJenObvxPZIfuPQTvEB5ViH/fOTTasG9dX9dEnMUkAoFEJFbPGhiaBLf5IYuH9wxNbpy7NcaiFcFHFjvOxHYoLRbKL+N/aXYIo3OTqJPGIO6Z6C3tqvmxisYdj8N4dLANZP1ARtA30EaCFBG9scpiGBl9Z+2W4BbQ6F9cdVJzgsoyPK9VosVjGiMaam0K1Cp+lUgFD++dCUfxxwqfn6s5enauvh+P+Fe9yk5TEcyJUxEMTOE6gP6PSrhBneATpZ3NygXn6nQXuRoKPolrxCOIa+TeNE8M83inn8CjXIjGoGCZGFPMkMgQtOgMGcKdSq1nQ7hW+J9foROFptaHw/VaZDjKGql1gq0JjXRqylmarZ0l6wB0joQi97TD5ZXOtmxHKhYPet15XHwqzU4LSHNtPfWRFse3HzodbXY0cEDXD0iJYFuHE7mo3FeZALGY1t7J6ho8PkaV50lYFACk6bL3z3fZpHPkKI2/ZdzJDhKRUyxhrmewPFyt53G12+sRnirEqarN8/zBK3SE9zIzt9a5bAAWGwGaEUk0pQF1tyZsNl7x21geaAbHj2+CHKk6T91taVgu4FaQFZQG6fiRuauAcLse5k29vXiC2FzBCMtntYHFPV2Zts6exSAYOCiHt9gRoJNE9NFcIKIklWggCz/5YdVEKCBLd5A2+jBuLKhg5kgXWLwuEm6/OwzNZBiKsyeI3HWhrhzIkReAVArg1yVz2iFF/xWI5Iwzz1Q0Bb8RvwqoEdXTu9wNL0FnkRgaP5jNi1XkBpdBuGyQbtF+sGywkRlcBvAe/nRwWTO+h8QOJPH8Y61LNZ1zsWBEOdAHphkHUlhUQLedzTJBpguF9IOvg2nGmJAjdh5v8W38676O+scUtzCF5/i7KHo5lurJgwdx59SJZqXsOUoSv39hkGhfPZ9d2smVKM0PROI0yU+GSbpn8mlYzK0MEk0cdactm9QmPUjkq6jEmA/PYo0FxWt09ZskgtYgUwHvf0K64q5v4YluGMFvkCn79SN60DZ+BKEeBMHGBD36MaBH9BYs2fee6BHE/xccpT8nZ70HpOhDjwaNv6c30Jcn534Ijs4/Zt+SUN8+4WNaZFmTeDsfx9c3ZUkgkrlgACrYEMw2LGmiHY3J7oUALOyGT7N9Y9IKhy34uPvPgYz+ezVhQ/W3ZqncjiXkMJzFN7hd7EbwWvfCxv1hC7xmhd3/jQWQb8skxcgrpmkaII55mLBvi57xMIR8rfE7xBGaSwCTF1vz5c5L94PmQQsZhqjbMP7opeJlDx4DLfQl25whCswZzXl2zm/HNhtUSjZt5yRIQw9d3kQakq7+uknUnvbZdjoYTNvTbNfUG8+gCbzCt3E9mF/cfHK9MaiwAmrNtiAQFllsSdhQr1ECRXwfWjLxoZuBox2Wbt4fOvOD0mGiFuaX9sHT+paJ7pbQmrMkd1o661b6kQ44sl0I8aZ6/rgYjSvCVmhJjnr+ciGmG8oI09/C5VTvy19D9L6/HiTIA4PwVRp65D5gm+OkfcY159xZPBPuuFVT1Jj+jKQgYNx5RJN5FJ2mN5BN095EYm+J19cGYm+isQmYbPjZBvwWmPP7imLhbF5iWc/0xBJl0Xo3FesiOkH7UFuthHobj/cvE3FzaPSbphyUicDNkTSK7CPH07ilIvz4H5n9AHc2yaZ6cF1o3UESVoVuORA6dDOy/8HCjUWgpPityJRCyvnLxVhMEbar5jhY0g8juoM73LUimOYS3ThpQ9pscC8eBfjSdNDwVOVHyHuO7H8/hO/ff0Rz3C+z9gtEW9pPjeqzeAzSsTODptAezB92cTVuGW47DvjCK54pRRJJOVyulWi2tDTwfOkyXlIC1JLAsTWZYytDDqZbkIXBoc0CULSvu8skHaoA7uobBvwLd975Aj/2HBsX7lFPv98Cbwta4Y5fPSKqdxskYZ4gG3fzkvCJvitX4gfgx2x6P/5mXPtnSLs/47W3beLZOIdtS2XJe9BeXOcM5oi7m3G4HKj7PkAnqGsNi/DlakUQpWolTDK0E+iNMjiJ2D/Pif/NzRDkYo0vCJowr8ZwLLs+su9tbtno0diA+9IUlNFmkGWEgGwfupx9M8tEzJK70BaA4hFB4u+OqqDZBAPvXe01wU0/uF7/t1kQ/8Ergjz7ByTAI40B74FkC944GS62xwthev41zAsRH/luikdyPD4omzCkq6lkLbR4T4KTJo7b11hC0ASqXfB5um/U5voJ7mrQjoJkPrvfwXOGThzTBtkWcgmPgnqHy3lP4TrqDzT72hszIMto5Hns0McVm4KNZu7pudoM1Sr1KJMsvaXK/9byScqIcxHTFwkKfPPXgijQb7nZpR8PKDE6SRk2CCzD9fh+dMcdkFbgqq6qy7MPnZ63a/pRse/uob2w6eRfHhKJFFegeUTLTcXgSUyd88yeJ66Pamh/wGVVfEs1CcIDXqCm/8dVbLRrNroTAf5OZGvwKtJju05caWne2Oufy6j7t6IzgJfd3kPIiBAlWrG1ynMG4EqrBfi4IalikrqEjsPnTbsx1aQifVddBdMtA/HvvNFJDlsG7nHjs3E/vUZ/iMkao0j4qc9cNevRuHk77q/bgATiLVQule0aQTIWiKF2nvqPpmbH/UasSVJQwl8KxPm+CsV7iQYQs5bjjioIDyuOPLd2knc63iwh8erzXyQJohOunyyIDszMf60ivc2JkQf3nUQ3OXvMNyD8WeV/3ucuP5la0Y9du5/myF7FLGrHZf+Aw5VaSWIgKa3jw0+6fqyNBQ+AO2fUWEg95L5C+7JySA2m5BmAJEBNz42jtPsYTSFj+6jXtVm8twH+cSimHsbXDpOnPAigHP2Vx5LAOe5knP2oMc32+Jynz3wOXYuGOYsb4VbgVXcrd4C7guPqJKhILLDYc6KxKkpiqRoRJVyF+uBQlXpkUY41UqsTrOoxWKvWSHogUSr6CtB6s+BHPBBnMMzPkTh9ql8rknBnYvUnQn0QP7RQOoqlzz4e7ajVh5bnY6VesD5b7rGDWmnzZAEBE4l4JVu/OBJIy0SShgLmfRZVVqxzd4NUTzrdkzoDRAuxWCF6kxky8Z/7dKk9vkVXohAsaV9XevA1eHnZ/VzU0pJKaoGlVF8LC5qmTilFudjBx1L5CwYcMHxGpR2gylJNxRwS0GNyMNa1AEvEMQJrCKGJQHVs443V9394TwS/MZ2+Jxgl79ytkhfiGbb0koEeB3YsAuATeOn4wdu97oq26KKgaOtp5yxwV49p817bE7lgOeYUN3HbuL3c33F3co80Y6nDIampgxQl6kDBYgb8pvfihYn75SjwYZ0gg3jyAk9oMLLjW8jqTB+QxzwijR3DtzDQAC9XcChSxcdV0csbzDD1amUFX6yWiUaBvZzFNePhgbbLyRAvLUortrJsG+TRwlEsuTla35ZOieR3gpjpGu5wHC0ix2Iw1xjRJMlx+OduCxbjUcHU7e7QY//Gh2OCJfNStxdudgbzRHkFdMqBcpfpXoHHMw9RbqUmqiJCuoPJjSTH13e1LUmUZZi5Gky5f+DhJpRZlcHT35JEAUGx09gGNHiRyptJ9dT3rB6FAG5arEaUOAEZAjAcQQFBMgTHyfYAIPKy1rNnYOUV7rQcU0uTpduf4zGdM+NRAiUk/Ovj/Vt7JQXTFRbgcqXnq3sq7A11xgTHtfBA1JIaFCDs7M+VA/hXvKVi+Vy1hWAWJFLDhxX1bPC8q/IADryZBYagCLGiIkUsLGUOhEcoXXkCPYT2cinuFIYHQZBrpULJQ2kmTjN8PdJe94zg3cBPfnpM3gZ/P99RPwyfyAwCkMseGFsysjubA7A/9e5p3D/ZCy8EOR2870uURDBCgbn4Fj/88W2EvGzaRPwMp+DyzCl91VxGJxXOLRzYlF744kUvbVWUrS9d8vVXsASQxf+Wk6csx0/J4n/OFvLD9euJsX+n3vRjQDPwDUznuSIoFQYG81IAEKRqTCZHwTC6050J5fOhzzyiAhMLaGRZmoHZdNp9033LzJM1Kt+0X99PdYdRGsVCIJiSxHtoYJCCgEiiAnJoqjFO5Bv18U/LKTMfAlMqHvfuFe4MnMUXMLeiA8e005jK5s08PKNx1Fv/Pofp4kHMkV9zov7wkNTKdEZGKzStoIfBQedORCyLhOzVqUu0AcKs9/DCwFB0vIUj7KemOWEWvaq/h0dS/ZD03vjIol249/gNmQBRSnQOAKCg4Jr+5ZXTggIPBnskAfHmrtt5+NBXvvIQXDpCnYxXrtdBjnX09R8jHYF7E68U21p7GffbeMsYgJNp3NH5jA6hmsktXHYgqqBQUiqua4s50BABkKyAEkmvbRctyQzkH7/64n0A7Lt4zY016hg9NnM6GxWXfm0fiUlev5441W51vEHBRog3XPSmHXMar/1Brr3Ja5HIViFSLxJxiISqS0KRJBNt+tkJ72QmEM/NlogVZq01A+BMUQQ7Ayao9Wim+wn3E2bUN+G6R1uiKQiq1LygFODE1DXraVQKIsgAU5oNxyH+s7Wpzpr7AwWNjpKUolkPX+Co+SsPR8hraHYwqcYcmQRMJNQ1jPdx8VrAUbtinsgH9YJPtp08hXGv1yo854QkCpWBpWHIgeYFqu1nF6p94C3fargzX9BN5OhtbXit3CpBYCcdTKsk933uz9oLuiGEjHTmxs9i4cxIhpHIv76JGQvhhxByEjbmQNxHXLcjbDjI1i0nC9LgSvffJRROGFBAn70xndbDgmHkC4Q3YvP6ecq/cSzIJRTxZgP1nEWzgR/cZUUdoz68ZCoR4UE4HQHPffR1DYQzYcBHEmeMVuqGE23Gjd6DnzWOD2oEnFCiXqZ0ZYvmyRysG17YKIldyhOFHqyHIwaM5mp9kHrl0sAHdHo0zq/cgieAdmEObFnJx2PiqJ346EqYAWAJZi/xBvHlaCi5fwyIGSSDc2WUEQFqgys/mrCXwIerUzxf5Q1JMvCOn6pecsUFmxHoKsOwHqxAYciIOIXsojbjEkCSYdDNC+UugDZfcMUlTb0Y4WtjmL/awX2Ee4K1T95D/mDWReplgdfbEMsWJtLQXkxAqEPxKOoHc4s/8cWnfBk5ifueNBAu4CbA1Akxu4AnhhFrCfOqr9WjQ5FKlKSa9xguEn5h0ojEKKVRxeE6w2TxA45IUlUCN42ZfgLvOHLBQPuC0ILFuGikTXFoY9tZl4/19cS3W1p7BC/3hyAvt2miZQdUJYaEkXjnYkFsw6RGnhwYVxUkhC7TM+aDr7v/LUFBtgQ9VXfKuX8VkJyrJlRJ0M2iaSga4mHWCsUyNTwsewuWJFysRNRJOykFwqXeCczg20U7abjfSxv9WS2qGB1GshwNLCtAxdbCGtG2Y+a9LekMxkY/upnkZUC5yOJvXr3y6iG9SxFEskwfkCwYsyVBUMx1WaSX9GhvSh1aJCFpU7Yg2GpIjAsC/3rj19mFIUEW9UQs5gDMqWq1MQHy1r7xEJ5WmBNM6LquZJHqqJZkCZMSr6zX4rKqRWLVAiazfCC0cP2GseouQ0CCtjDWPQhgSLfQ5i4ImO6frDPfRg+gQeo7REYFiQgr4NVDEgkIDGGWK6VatF5rgj55Ys/9gyFo/LDvRuHsJ0Y1GDx85ZrAP4/eLJz36OIAtPe535vYDsD2iQkCnwTTpxZRQLvPfjJ/IMSjR296jw4ftZ/InxlE/BeeIXexe7fPYZnNUiwzlnqRYplVaMgFzcpIRdZs483/IHyB+zPiYpEm8Q1B5RfQMm0HzPyCrC7uURVfPioI+K5fEKmS6RJIzr0sN8xNcKtpRkxviftb6nBPwvK04scFrFYrUoujMeKuJwvMTbGPHmqGnkJTp4j7j14svvcBqhZfd1HUfZx64+yCV+zWdl8Br26RrftnZ6f9cFbgQA7XYO+VsKkaN8KtIPzg9FX4OsXh/xl1PsYb3ZmdnvIFara+3YjG6Pq2EVN3ys/XmiEFfsJBiuw2Opf0hUFe4ymdJ1SO+ORIRMRiDLrvdo2baYZ8pSbfNiFoqi5gjv20T8LPBh7booCAklRW/p2sO3Z/1ckrTmVH58IJACVDRgK/esHmPY6SD1f6rj81jb80feoN1xMGGaWXk/Q0alzdXEB8+2ZcUJTlWQRsQ7cf2/HyaY7lHBwGxNkOiMP784APnvbyjrU7VGZeUHc0/eJ+Rv0LxykO7QljiCMM9qn4/xeiGa8KhgQ5M8BDezfo/78PXmapgow5el1ec578/xWojM2/a+E/cWEP64/kTye6gjGyTFDMvwvdaSsHvoX/gRwFFATTBrgbiGrQueAWvGn8wQkyOEEgKnnf9+1reN71YBl/CbfG0zJTDosNKZoUdNiPUcUNX/GKmLVizkueipUsQHiISk6hRTcvtB6gKXcg2w9eIIo3EDT2IS8mDe5jBcz6oVrjaaq3Eg63qybuZOf8Vg/F/zof79nRwBjKgt789n0Alte4zxhBXhKYI4sg8RYrWbYJ93XU3WtJjw6M6zwUAqa7yX/AMVtPz3QfXY8zeC4u4pZi2QGvtF6eGy/QRZTKc14ozOwE6GKdQf6UreMTIFIX8+UIenobllIPyHD3clA9rQq687sICYRH5VTQJaTDfQNf5SGedddP2at2rrKLK9KNBh43KJ2OTcTSta0AKk/vufqDUaurWu2yjPwWQl0b43gLP0P1dt/b87SCl0hVXRCpjIxUpLAKfhGruX2Az+d53458K1qI1nk+NutxvYZxbeh8G6o5LWWBlWkEc52hjxl0tTcAFaJsEg8/RDwKbC8jEo3eOtdKZVMmAPlKDrQUj5CyRYpLQDYpP75lcjFoz4THNo9F2gqFtgguhDPt/YNbzwCldNua02uClbLwXzyfh//eLNbtpGUlbVyK52rWQ1eGw13ddnjNpoGBTWvCkPNL7jfDRmz97ujG07rMpR425DSmq8PcKm4vReYoz5nLif9qgTirFjCfV6hTI5wHZ4tlYkp+RgGJIyRa937iQs5wIisSiVwJ+8nDfUA3loYYT8MoyZlEsouW0VUVuZLXSQ/pmEL03i0ZQm2mFjDv7kW2xs7nK3JtAN8F3sKlLLzG1fFC1HUzvul5cvfNCWS7g8vpurFEtQUoKl+UQvLzmio6r2xR9GldAV3/kS8DLCsZ2guysGmTCV7QDEJBuvJvam8WO/D+11B2/4gvbzKALGx+RdGhFwmjK5idmeb5aTHk6JcuRJY6O4u/lNGF19HDqIz50kFuBc3JeoggH9N0TzT3JUVPiEZCFNoO5emOIfmxwI5heuuxuSOpDdPDC2BYAnOREtI8hIstG9deks3lspes3fjYhnWsuG7DlrUTS89KptPJs5ZOfGRi2f5UOp3av2zigsVmzFxs4P8exf9++YhmWRrZqM1S0r2EFMEH8bZEH/XYsS9AoVRq/mM/gl+WSn33q7ZlW1/VQhr+OwVYMQv/XY7/AVL+EDtmcsnt6NfoYppvWWTYfcTvhnrelPz/66U6dZclK3lTBIqgXwGeT4ROWdw/tGPn0mV9O3pXD5YsTZTwIgpkKdxxQaU2Nj1eGTpt44JVwaAYANeNjW3dPHJKxJIMiBdbw4gs6F/U2b14cX//+nXLxy/sdmSFx7yklIlsWlCpn8GZTWw1k9rgF3IrPfTnq7hbuXu5x7lnuFe4N3Avnzhj5WIP7rcAWu3yldaDcuuBdNKD+Yb9AjvyzXXO33i7dMz9f+trj70fTM9PkulHzBk+zO2FbGew3Yfm7byT7nd9sODg0EmeNt68A/z2b96SbV6luzHvBhKOd3QOmHgOkrrl5PgcmNnMXBFwQYMlQKWnm9DG4yd9UQsA8vQ7ucnHin6KyvQhPJ56MR+3n7uSeJpT/RrBj68z4pgn0dz1DKL6fBKegaVw76xDrIIS9S8v96FyyUMKKPfBQr6JmukZEmssnryMaBgZvtDyQFgGvyt2SbxjSVrA4PX1qyQzKgbtzq6JPktBQVvU8elAeOnuhZIZkYIW5jGUbFENajImiqWVSwZsKEpLYzkzqqkxJxBJ2WdLfNf2+uWTpcnC0rVCe0rLjfAreEQea40fXh3Tvaeitk8/DH4uj5esFA8k1Vp9sQ2CbSl0tdy/8pROO4lPKtai8/aOa8DOJnn3XFVsV8KENzpt974hSUdJtf2UNSnHETT+jMOJ79+++T3dsQjqlfJt0ZKW64bwDPo8Y9W5Vy21Ugizc9Y/AbPsyYhv0fgomyKVDWVguDU+xlvSMJ/WEmG6GNgsS3MFjVjpiNaTa9zQ3tPdDh6xTNOqgwWWrls/tDTNwr+3DMNCmhZO243353v7C/A9bf2NXWbcggg8a0Ut/OcuFay4SfGLOXQIATweipibXM/t4c7mLuFu4m7GXxaiK8MoHCa0ME8pYygD6QlIDx1yWGNLBz7FqGe05R5YD3nZfGoMI8BAntGCprvyNWLl+XfR/BRhUHKy0fBAT97y9rL0sJkulosp00yVyu1pSdluxHLFrCGqSNRjeVqC4m8C4XRbOhygu5D2z6ocSupxxVEVvI8F1d35/ny+31ZkCcSIZSn2LpIxStR4xd/DD8a687ISzHX3s3049qdQ87WGkXYs981gLq7pWMSQrPZ8TDdIyT7bSkUCeBji15PmXzf3WjUIgBqM3RPL5wfywFLCdwSj0fZY7IzW9/KCZDK+74/87Sjo8X1kZSplJdGibqGQ8HS+55RD1mkClOqXvfP8rt2NvqlKZQq+OjUMGu8HTjoUSoWfSnenAcCb20P4OB2CP6pUTm387tRhUN0MNfcWkjbtdbJxfx9JpyNgCdm6vzcdx3ydbLj/F1knyIsAAHicY2BkYGAAYrv7dnrx/DZfGbhZGEDghsO8jQj6fy/LJOYSIJeDgQkkCgAjQAqrAHicY2BkYGBu+N/AEMOqxAAELJMYGBlQAKM6AFVxA0YAeJxjYWBgYBnFo3gUj+JBhFmVGBgArlwEwAAAAAAAAAAAfACqAOABTAHAAfoCWgKuAuQDSAP0BDQEhgTIBR4FVgWgBegGygb6Bz4HZAemCAIIUAjcCSwJpAnWCjQKpgsyC3QLzAxEDOINkA4ADm4PBg+iD8YQfBFCEeQSEhKUE8YUIBSQFRAVlhYiFmIW+Bc4F4gX3BgKGG4YnBj6GaYaEhqwG1gb1hxEHLIdAB10HbIeMh76H4If7iBYILIhcCH2IlYivCNUI/YkbCWQJlwm+idAJ3Yn0igAKEAolijEKTgpxCnqKqArPCv2LLIs/C00LYItvC4ULnAu4C84L6Iv9DB+MOQxXDIsMy4zqjQYNEo09jU4NhY2cDbQNz43+DhgOKA5BDk8OcA6TjrOOyg7rjwOPIA9Aj2kPgg+gD7YPyY/eD/6QKBBbkG4QlpCsEMKQ45D5EQ4RH5E1kWMRj5Gzkc0R8BIekjySZhJ7koeSnxKxks8S9RMFEy4TOpNSE3iTyJPiFAqUJZRDlFgUdxSRFLeU0hT3lREVOBVVFX8VixWSlZ0VqxXFFfOWBpYeFjsWbZaBFpGWpRa3lscW1pbiFwUXL5c1l0wXYpd7F6YXwZfVF+uYDZg4mHGYjBjUGRsZMplZmXwZmRnEmdsZ9ZoMGhKaGRonGk8aVhpmGn8alZqzms6a/JsamzWbY5uKm6abyBvzm/scBxwvnEMcYByAnKecxhzpnQOdGp05HVmdaB18nZadxh4HniUeLh45nmeeh56gHqmewx8GnxifJB9Dn2IfiJ+TH7Uf0B/uoBYgPKBQoJqgyyDcoQ8hIp4nGNgZGBgVGe4x8DPAAJMQMwFhAwM/8F8BgAjigIsAHicZY9NTsMwEIVf+gekEqqoYIfkBWIBKP0Rq25YVGr3XXTfpk6bKokjx63UA3AejsAJOALcgDvwSCebNpbH37x5Y08A3OAHHo7fLfeRPVwyO3INF7gXrlN/EG6QX4SbaONVuEX9TdjHM6bCbXRheYPXuGL2hHdhDx18CNdwjU/hOvUv4Qb5W7iJO/wKt9Dx6sI+5l5XuI1HL/bHVi+cXqnlQcWhySKTOb+CmV7vkoWt0uqca1vEJlODoF9JU51pW91T7NdD5yIVWZOqCas6SYzKrdnq0AUb5/JRrxeJHoQm5Vhj/rbGAo5xBYUlDowxQhhkiMro6DtVZvSvsUPCXntWPc3ndFsU1P9zhQEC9M9cU7qy0nk6T4E9XxtSdXQrbsuelDSRXs1JErJCXta2VELqATZlV44RelzRiT8oZ0j/AAlabsgAAAB4nG1WBZTruBWdqxiTzMyH3b/MWNi2u2VmZuZOZVtJtLEtjyQnM1tmZmZmZmZmZmZm5grsyd+ezjkT3SfJ0tN99z1pjaz5v+Ha//3DWSAYIECICDESpBhihDHWsYFN7MN+HMBBHIEjcQhH4Wgcg2NxHI7HCTgRJ+FknIJTcRpOxxk406x1Ni6Ci+JiuDjOwSVwSVwK5+I8XBqXwWVxOVweV8AVcSVcGVfBVXE1XB3XwDVxLVwb18F1cT1cHzfADXEj3Bg3wU1xM9wct8AtcSvcGrfBbXE73B53wB1xJ9wZd8FdcTds4e6gyJCjAMMEU8zAcT7mKFGhhkCDbUgoaLRYYIkd7OIC3AP3xL1wb9wH98X9cH88AA/Eg/BgPAQPxcPwcDwCj8Sj8Gg8Bo/F4/B4PAFPxJPwZDwFT8XT8HQ8A8/Es/BsPAfPxfPwfLwAL8SL8GK8BC/Fy/ByvAKvxKvwarwGr8Xr8Hq8AW/Em/BmvAVvxdvwdrwD78S78G68B+/F+/B+fAAfxIfwYXwEH8XH8HF8Ap/Ep/BpfAafxefweXwBX8SX8GV8BV/F1/B1fAPfxLfwbXwH38X38H38AD/Ej/Bj/AQ/xc/wc/wCv8Sv8Gv8Br/F7/B7/AF/xJ/wZ/wFf8Xf8Hf8A//Ev/Bv/IesERBCBiQgIYlITBKSkiEZkTFZJxtkk+wj+8kBcpAcQY4kh8hR5GhyDDmWHEeOJyeQE8lJ5GRyCjmVnEZOJ2eQM8lZ5Oy1IW0ayXJONQvzGcvnYV4KxQJWcB2ySpzP0wldCDnhZRk6FJeCFryejkuRU81FbYeS3gibmajZhhRtXbj17OhwZXYjdo/DRqzpRySfzvRqxJmRYlTms0DTHZ5oXrkvAwuitp6IskiWVDo3AguGOa2YpNaOPBzloqpY7daNO5yUfO4XsmBfLTSf8NWBxod3hEIWTCaKdltbEBes5AvTyxa0bA19g4buBorVRaBmook0z+dMBxnN50lOVU4LppKCq1yYj8yeSgeVkCwwI3WimNaGUjXebpna47Q3Erug23giZDVoeB4ZSzOZToTQjeS1HmjRJE1bloVY1pEFbRM68mLJJpKp2cjuRg2jghdD4zvT7iyRGTY8BzmVOtqWuSiY6ap4XUR+UtxIYSayYCYqlthpjp7+JM5RO+S4rZhSdMpGtCjMnioTYm6OWpsfkc9NsGwzWPAmXDKeiYTmmi+43l2fSG6IM1/ZVdI9a+zRhFaiVZE3wqkQhUqVcS635MRspynN0YyfzLCvN9V2S42ie+1F3h4d1h06aY3db7dn0hsD83/oQmIQMuNuzqjbqYtEWQRTo4NUsqKhNtbrez45LhSveEnlxirB3EbcrOhWsGBkVjeSdcvHHR5bL6mc+um9ERvWDPlFuBA8Z6n7dU71FJnMDJbG61CZ+SxaulGyZGlpVUBbLUYO+fP4XhdJnyJSaFsCXHecUSeEzUlJ1cx1+Qxd2aJh9dCnpZVyrJhcGI8CJaQOnAYrkRnVDH3jDpyLZnc9NzxrO8FFes8aWsr9iSIPR22jNPUsxB1OMprturUsSDNp9OwKk0Mb+cyyUhvhuQKyMkfGfT1jyue/x+PcpIORn6e5N6IJq2jJkjnbzYShO7BWXLOlnTUwrUsycyCdWuAyLDGbO6kFFgwyWqSeUyOlcCLyVg27IJk563tD7gsjDpU2lPvaFDoUmwR3kekyl0oploYqo72S1SqpqPTbWTDqZN/lcsNoGdIya6thw0TjmY88HHVB6qdSLgOb2UOPXUA0FTuciqY1AuI7vF6nWpvVO02ne5arqB37cYfXbdvWJp+72HZWYLgtTOUobVLLQd7qsKJTno9tbezVnzQl9aFVRlyxibZj3LTh1ORmM6AmovaDrirNhDvywLRBI5QNQsFFJnZSl8lOgm1jr6p0KbnPvdChcT/TM97W+czmzJyZerwwCqYTNu4Lkz+I7OQaOpS6AuRyryt3Dndl0s1T1oWRakSt/M0Zd9gIObM1MF4y16ZL1tYeubvWzt3wyKaaU4FDWevJ0WxHD70DNuPTqlVeLJse7RUrW9CLfVpyWk9L1ifcRt/RuvvkgOPKqtla59gENYWt1qHm2ukiFz46kYfrdlGXF56Y3krsvdTlOK83V7OcO8Ocy7xTooebK1W5GQf/x3a+rfr698fGhbsi56VKed69SIJJ67KCl534bWkaO7a6DE56I61YQUsXLIcS0+djakEnrrjDgW3TBS+Yq9yhQwHb4TpRc+4fHhaMK/P02c28dEeteeEYf3z98jjpJ2zsXRpbLsaqzVQueeNu++4050ZTrmdtFk1LkVEzp3sjuA9sJmz1t7m5l+xta3JwvX+MuGWHLnMc3G/Ta6u7Yfye3fvFGQd8zd3y9G/1b415YErR3FzW9QU8ZmXJG8XibbllL4e4MEqatTTg+crn8waZrtfW/gthnmJTAAAA') format('woff'),
38 | url('//at.alicdn.com/t/font_533566_yfq2d9wdij.ttf?t=1545239985831') format('truetype'),
39 | /* chrome, firefox, opera, Safari, Android, iOS 4.2+*/
40 | url('//at.alicdn.com/t/font_533566_yfq2d9wdij.svg?t=1545239985831#cuIconfont') format('svg');
41 | /* iOS 4.1- */
42 | }
43 |
44 | .cuIcon-appreciate:before {
45 | content: "\e644";
46 | }
47 |
48 | .cuIcon-check:before {
49 | content: "\e645";
50 | }
51 |
52 | .cuIcon-close:before {
53 | content: "\e646";
54 | }
55 |
56 | .cuIcon-edit:before {
57 | content: "\e649";
58 | }
59 |
60 | .cuIcon-emoji:before {
61 | content: "\e64a";
62 | }
63 |
64 | .cuIcon-favorfill:before {
65 | content: "\e64b";
66 | color: #FFD700;
67 | }
68 |
69 | .cuIcon-favor:before {
70 | content: "\e64c";
71 | }
72 |
73 | .cuIcon-loading:before {
74 | content: "\e64f";
75 | }
76 |
77 | .cuIcon-locationfill:before {
78 | content: "\e650";
79 | }
80 |
81 | .cuIcon-location:before {
82 | content: "\e651";
83 | }
84 |
85 | .cuIcon-phone:before {
86 | content: "\e652";
87 | }
88 |
89 | .cuIcon-roundcheckfill:before {
90 | content: "\e656";
91 | }
92 |
93 | .cuIcon-roundcheck:before {
94 | content: "\e657";
95 | }
96 |
97 | .cuIcon-roundclosefill:before {
98 | content: "\e658";
99 | }
100 |
101 | .cuIcon-roundclose:before {
102 | content: "\e659";
103 | }
104 |
105 | .cuIcon-roundrightfill:before {
106 | content: "\e65a";
107 | }
108 |
109 | .cuIcon-roundright:before {
110 | content: "\e65b";
111 | }
112 |
113 | .cuIcon-search:before {
114 | content: "\e65c";
115 | }
116 |
117 | .cuIcon-taxi:before {
118 | content: "\e65d";
119 | }
120 |
121 | .cuIcon-timefill:before {
122 | content: "\e65e";
123 | }
124 |
125 | .cuIcon-time:before {
126 | content: "\e65f";
127 | }
128 |
129 | .cuIcon-unfold:before {
130 | content: "\e661";
131 | }
132 |
133 | .cuIcon-warnfill:before {
134 | content: "\e662";
135 | }
136 |
137 | .cuIcon-warn:before {
138 | content: "\e663";
139 | }
140 |
141 | .cuIcon-camerafill:before {
142 | content: "\e664";
143 | }
144 |
145 | .cuIcon-camera:before {
146 | content: "\e665";
147 | }
148 |
149 | .cuIcon-commentfill:before {
150 | content: "\e666";
151 | }
152 |
153 | .cuIcon-comment:before {
154 | content: "\e667";
155 | }
156 |
157 | .cuIcon-likefill:before {
158 | content: "\e668";
159 | }
160 |
161 | .cuIcon-like:before {
162 | content: "\e669";
163 | }
164 |
165 | .cuIcon-notificationfill:before {
166 | content: "\e66a";
167 | }
168 |
169 | .cuIcon-notification:before {
170 | content: "\e66b";
171 | }
172 |
173 | .cuIcon-order:before {
174 | content: "\e66c";
175 | }
176 |
177 | .cuIcon-samefill:before {
178 | content: "\e66d";
179 | }
180 |
181 | .cuIcon-same:before {
182 | content: "\e66e";
183 | }
184 |
185 | .cuIcon-deliver:before {
186 | content: "\e671";
187 | }
188 |
189 | .cuIcon-evaluate:before {
190 | content: "\e672";
191 | }
192 |
193 | .cuIcon-pay:before {
194 | content: "\e673";
195 | }
196 |
197 | .cuIcon-send:before {
198 | content: "\e675";
199 | }
200 |
201 | .cuIcon-shop:before {
202 | content: "\e676";
203 | }
204 |
205 | .cuIcon-ticket:before {
206 | content: "\e677";
207 | }
208 |
209 | .cuIcon-back:before {
210 | content: "\e679";
211 | }
212 |
213 | .cuIcon-cascades:before {
214 | content: "\e67c";
215 | }
216 |
217 | .cuIcon-discover:before {
218 | content: "\e67e";
219 | }
220 |
221 | .cuIcon-list:before {
222 | content: "\e682";
223 | }
224 |
225 | .cuIcon-more:before {
226 | content: "\e684";
227 | }
228 |
229 | .cuIcon-scan:before {
230 | content: "\e689";
231 | }
232 |
233 | .cuIcon-settings:before {
234 | content: "\e68a";
235 | }
236 |
237 | .cuIcon-questionfill:before {
238 | content: "\e690";
239 | }
240 |
241 | .cuIcon-question:before {
242 | content: "\e691";
243 | }
244 |
245 | .cuIcon-shopfill:before {
246 | content: "\e697";
247 | }
248 |
249 | .cuIcon-form:before {
250 | content: "\e699";
251 | }
252 |
253 | .cuIcon-pic:before {
254 | content: "\e69b";
255 | }
256 |
257 | .cuIcon-filter:before {
258 | content: "\e69c";
259 | }
260 |
261 | .cuIcon-footprint:before {
262 | content: "\e69d";
263 | }
264 |
265 | .cuIcon-top:before {
266 | content: "\e69e";
267 | }
268 |
269 | .cuIcon-pulldown:before {
270 | content: "\e69f";
271 | }
272 |
273 | .cuIcon-pullup:before {
274 | content: "\e6a0";
275 | }
276 |
277 | .cuIcon-right:before {
278 | content: "\e6a3";
279 | }
280 |
281 | .cuIcon-refresh:before {
282 | content: "\e6a4";
283 | }
284 |
285 | .cuIcon-moreandroid:before {
286 | content: "\e6a5";
287 | }
288 |
289 | .cuIcon-deletefill:before {
290 | content: "\e6a6";
291 | }
292 |
293 | .cuIcon-refund:before {
294 | content: "\e6ac";
295 | }
296 |
297 | .cuIcon-cart:before {
298 | content: "\e6af";
299 | }
300 |
301 | .cuIcon-qrcode:before {
302 | content: "\e6b0";
303 | }
304 |
305 | .cuIcon-remind:before {
306 | content: "\e6b2";
307 | }
308 |
309 | .cuIcon-delete:before {
310 | content: "\e6b4";
311 | }
312 |
313 | .cuIcon-profile:before {
314 | content: "\e6b7";
315 | }
316 |
317 | .cuIcon-home:before {
318 | content: "\e6b8";
319 | }
320 |
321 | .cuIcon-cartfill:before {
322 | content: "\e6b9";
323 | }
324 |
325 | .cuIcon-discoverfill:before {
326 | content: "\e6ba";
327 | }
328 |
329 | .cuIcon-homefill:before {
330 | content: "\e6bb";
331 | }
332 |
333 | .cuIcon-message:before {
334 | content: "\e6bc";
335 | }
336 |
337 | .cuIcon-addressbook:before {
338 | content: "\e6bd";
339 | }
340 |
341 | .cuIcon-link:before {
342 | content: "\e6bf";
343 | }
344 |
345 | .cuIcon-lock:before {
346 | content: "\e6c0";
347 | }
348 |
349 | .cuIcon-unlock:before {
350 | content: "\e6c2";
351 | }
352 |
353 | .cuIcon-vip:before {
354 | content: "\e6c3";
355 | }
356 |
357 | .cuIcon-weibo:before {
358 | content: "\e6c4";
359 | }
360 |
361 | .cuIcon-activity:before {
362 | content: "\e6c5";
363 | }
364 |
365 | .cuIcon-friendaddfill:before {
366 | content: "\e6c9";
367 | }
368 |
369 | .cuIcon-friendadd:before {
370 | content: "\e6ca";
371 | }
372 |
373 | .cuIcon-friendfamous:before {
374 | content: "\e6cb";
375 | }
376 |
377 | .cuIcon-friend:before {
378 | content: "\e6cc";
379 | }
380 |
381 | .cuIcon-goods:before {
382 | content: "\e6cd";
383 | }
384 |
385 | .cuIcon-selection:before {
386 | content: "\e6ce";
387 | }
388 |
389 | .cuIcon-explore:before {
390 | content: "\e6d2";
391 | }
392 |
393 | .cuIcon-present:before {
394 | content: "\e6d3";
395 | }
396 |
397 | .cuIcon-squarecheckfill:before {
398 | content: "\e6d4";
399 | }
400 |
401 | .cuIcon-square:before {
402 | content: "\e6d5";
403 | }
404 |
405 | .cuIcon-squarecheck:before {
406 | content: "\e6d6";
407 | }
408 |
409 | .cuIcon-round:before {
410 | content: "\e6d7";
411 | }
412 |
413 | .cuIcon-roundaddfill:before {
414 | content: "\e6d8";
415 | }
416 |
417 | .cuIcon-roundadd:before {
418 | content: "\e6d9";
419 | }
420 |
421 | .cuIcon-add:before {
422 | content: "\e6da";
423 | }
424 |
425 | .cuIcon-notificationforbidfill:before {
426 | content: "\e6db";
427 | }
428 |
429 | .cuIcon-explorefill:before {
430 | content: "\e6dd";
431 | }
432 |
433 | .cuIcon-fold:before {
434 | content: "\e6de";
435 | }
436 |
437 | .cuIcon-game:before {
438 | content: "\e6df";
439 | }
440 |
441 | .cuIcon-redpacket:before {
442 | content: "\e6e0";
443 | }
444 |
445 | .cuIcon-selectionfill:before {
446 | content: "\e6e1";
447 | }
448 |
449 | .cuIcon-similar:before {
450 | content: "\e6e2";
451 | }
452 |
453 | .cuIcon-appreciatefill:before {
454 | content: "\e6e3";
455 | }
456 |
457 | .cuIcon-infofill:before {
458 | content: "\e6e4";
459 | }
460 |
461 | .cuIcon-info:before {
462 | content: "\e6e5";
463 | }
464 |
465 | .cuIcon-forwardfill:before {
466 | content: "\e6ea";
467 | }
468 |
469 | .cuIcon-forward:before {
470 | content: "\e6eb";
471 | }
472 |
473 | .cuIcon-rechargefill:before {
474 | content: "\e6ec";
475 | }
476 |
477 | .cuIcon-recharge:before {
478 | content: "\e6ed";
479 | }
480 |
481 | .cuIcon-vipcard:before {
482 | content: "\e6ee";
483 | }
484 |
485 | .cuIcon-voice:before {
486 | content: "\e6ef";
487 | }
488 |
489 | .cuIcon-voicefill:before {
490 | content: "\e6f0";
491 | }
492 |
493 | .cuIcon-friendfavor:before {
494 | content: "\e6f1";
495 | }
496 |
497 | .cuIcon-wifi:before {
498 | content: "\e6f2";
499 | }
500 |
501 | .cuIcon-share:before {
502 | content: "\e6f3";
503 | }
504 |
505 | .cuIcon-wefill:before {
506 | content: "\e6f4";
507 | }
508 |
509 | .cuIcon-we:before {
510 | content: "\e6f5";
511 | }
512 |
513 | .cuIcon-lightauto:before {
514 | content: "\e6f6";
515 | }
516 |
517 | .cuIcon-lightforbid:before {
518 | content: "\e6f7";
519 | }
520 |
521 | .cuIcon-lightfill:before {
522 | content: "\e6f8";
523 | }
524 |
525 | .cuIcon-camerarotate:before {
526 | content: "\e6f9";
527 | }
528 |
529 | .cuIcon-light:before {
530 | content: "\e6fa";
531 | }
532 |
533 | .cuIcon-barcode:before {
534 | content: "\e6fb";
535 | }
536 |
537 | .cuIcon-flashlightclose:before {
538 | content: "\e6fc";
539 | }
540 |
541 | .cuIcon-flashlightopen:before {
542 | content: "\e6fd";
543 | }
544 |
545 | .cuIcon-searchlist:before {
546 | content: "\e6fe";
547 | }
548 |
549 | .cuIcon-service:before {
550 | content: "\e6ff";
551 | }
552 |
553 | .cuIcon-sort:before {
554 | content: "\e700";
555 | }
556 |
557 | .cuIcon-down:before {
558 | content: "\e703";
559 | }
560 |
561 | .cuIcon-mobile:before {
562 | content: "\e704";
563 | }
564 |
565 | .cuIcon-mobilefill:before {
566 | content: "\e705";
567 | }
568 |
569 | .cuIcon-copy:before {
570 | content: "\e706";
571 | }
572 |
573 | .cuIcon-countdownfill:before {
574 | content: "\e707";
575 | }
576 |
577 | .cuIcon-countdown:before {
578 | content: "\e708";
579 | }
580 |
581 | .cuIcon-noticefill:before {
582 | content: "\e709";
583 | }
584 |
585 | .cuIcon-notice:before {
586 | content: "\e70a";
587 | }
588 |
589 | .cuIcon-upstagefill:before {
590 | content: "\e70e";
591 | }
592 |
593 | .cuIcon-upstage:before {
594 | content: "\e70f";
595 | }
596 |
597 | .cuIcon-babyfill:before {
598 | content: "\e710";
599 | }
600 |
601 | .cuIcon-baby:before {
602 | content: "\e711";
603 | }
604 |
605 | .cuIcon-brandfill:before {
606 | content: "\e712";
607 | }
608 |
609 | .cuIcon-brand:before {
610 | content: "\e713";
611 | }
612 |
613 | .cuIcon-choicenessfill:before {
614 | content: "\e714";
615 | }
616 |
617 | .cuIcon-choiceness:before {
618 | content: "\e715";
619 | }
620 |
621 | .cuIcon-clothesfill:before {
622 | content: "\e716";
623 | }
624 |
625 | .cuIcon-clothes:before {
626 | content: "\e717";
627 | }
628 |
629 | .cuIcon-creativefill:before {
630 | content: "\e718";
631 | }
632 |
633 | .cuIcon-creative:before {
634 | content: "\e719";
635 | }
636 |
637 | .cuIcon-female:before {
638 | content: "\e71a";
639 | }
640 |
641 | .cuIcon-keyboard:before {
642 | content: "\e71b";
643 | }
644 |
645 | .cuIcon-male:before {
646 | content: "\e71c";
647 | }
648 |
649 | .cuIcon-newfill:before {
650 | content: "\e71d";
651 | }
652 |
653 | .cuIcon-new:before {
654 | content: "\e71e";
655 | }
656 |
657 | .cuIcon-pullleft:before {
658 | content: "\e71f";
659 | }
660 |
661 | .cuIcon-pullright:before {
662 | content: "\e720";
663 | }
664 |
665 | .cuIcon-rankfill:before {
666 | content: "\e721";
667 | }
668 |
669 | .cuIcon-rank:before {
670 | content: "\e722";
671 | }
672 |
673 | .cuIcon-bad:before {
674 | content: "\e723";
675 | }
676 |
677 | .cuIcon-cameraadd:before {
678 | content: "\e724";
679 | }
680 |
681 | .cuIcon-focus:before {
682 | content: "\e725";
683 | }
684 |
685 | .cuIcon-friendfill:before {
686 | content: "\e726";
687 | }
688 |
689 | .cuIcon-cameraaddfill:before {
690 | content: "\e727";
691 | }
692 |
693 | .cuIcon-apps:before {
694 | content: "\e729";
695 | }
696 |
697 | .cuIcon-paintfill:before {
698 | content: "\e72a";
699 | }
700 |
701 | .cuIcon-paint:before {
702 | content: "\e72b";
703 | }
704 |
705 | .cuIcon-picfill:before {
706 | content: "\e72c";
707 | }
708 |
709 | .cuIcon-refresharrow:before {
710 | content: "\e72d";
711 | }
712 |
713 | .cuIcon-colorlens:before {
714 | content: "\e6e6";
715 | }
716 |
717 | .cuIcon-markfill:before {
718 | content: "\e730";
719 | }
720 |
721 | .cuIcon-mark:before {
722 | content: "\e731";
723 | }
724 |
725 | .cuIcon-presentfill:before {
726 | content: "\e732";
727 | }
728 |
729 | .cuIcon-repeal:before {
730 | content: "\e733";
731 | }
732 |
733 | .cuIcon-album:before {
734 | content: "\e734";
735 | }
736 |
737 | .cuIcon-peoplefill:before {
738 | content: "\e735";
739 | }
740 |
741 | .cuIcon-people:before {
742 | content: "\e736";
743 | }
744 |
745 | .cuIcon-servicefill:before {
746 | content: "\e737";
747 | }
748 |
749 | .cuIcon-repair:before {
750 | content: "\e738";
751 | }
752 |
753 | .cuIcon-file:before {
754 | content: "\e739";
755 | }
756 |
757 | .cuIcon-repairfill:before {
758 | content: "\e73a";
759 | }
760 |
761 | .cuIcon-taoxiaopu:before {
762 | content: "\e73b";
763 | }
764 |
765 | .cuIcon-weixin:before {
766 | content: "\e612";
767 | }
768 |
769 | .cuIcon-attentionfill:before {
770 | content: "\e73c";
771 | }
772 |
773 | .cuIcon-attention:before {
774 | content: "\e73d";
775 | }
776 |
777 | .cuIcon-commandfill:before {
778 | content: "\e73e";
779 | }
780 |
781 | .cuIcon-command:before {
782 | content: "\e73f";
783 | }
784 |
785 | .cuIcon-communityfill:before {
786 | content: "\e740";
787 | }
788 |
789 | .cuIcon-community:before {
790 | content: "\e741";
791 | }
792 |
793 | .cuIcon-read:before {
794 | content: "\e742";
795 | }
796 |
797 | .cuIcon-calendar:before {
798 | content: "\e74a";
799 | }
800 |
801 | .cuIcon-cut:before {
802 | content: "\e74b";
803 | }
804 |
805 | .cuIcon-magic:before {
806 | content: "\e74c";
807 | }
808 |
809 | .cuIcon-backwardfill:before {
810 | content: "\e74d";
811 | }
812 |
813 | .cuIcon-playfill:before {
814 | content: "\e74f";
815 | }
816 |
817 | .cuIcon-stop:before {
818 | content: "\e750";
819 | }
820 |
821 | .cuIcon-tagfill:before {
822 | content: "\e751";
823 | }
824 |
825 | .cuIcon-tag:before {
826 | content: "\e752";
827 | }
828 |
829 | .cuIcon-group:before {
830 | content: "\e753";
831 | }
832 |
833 | .cuIcon-all:before {
834 | content: "\e755";
835 | }
836 |
837 | .cuIcon-backdelete:before {
838 | content: "\e756";
839 | }
840 |
841 | .cuIcon-hotfill:before {
842 | content: "\e757";
843 | color: #DC143C;
844 | }
845 |
846 | .cuIcon-hot:before {
847 | content: "\e758";
848 | }
849 |
850 | .cuIcon-post:before {
851 | content: "\e759";
852 | }
853 |
854 | .cuIcon-radiobox:before {
855 | content: "\e75b";
856 | }
857 |
858 | .cuIcon-rounddown:before {
859 | content: "\e75c";
860 | }
861 |
862 | .cuIcon-upload:before {
863 | content: "\e75d";
864 | }
865 |
866 | .cuIcon-writefill:before {
867 | content: "\e760";
868 | }
869 |
870 | .cuIcon-write:before {
871 | content: "\e761";
872 | }
873 |
874 | .cuIcon-radioboxfill:before {
875 | content: "\e763";
876 | }
877 |
878 | .cuIcon-punch:before {
879 | content: "\e764";
880 | }
881 |
882 | .cuIcon-shake:before {
883 | content: "\e765";
884 | }
885 |
886 | .cuIcon-move:before {
887 | content: "\e768";
888 | }
889 |
890 | .cuIcon-safe:before {
891 | content: "\e769";
892 | }
893 |
894 | .cuIcon-activityfill:before {
895 | content: "\e775";
896 | }
897 |
898 | .cuIcon-crownfill:before {
899 | content: "\e776";
900 | }
901 |
902 | .cuIcon-crown:before {
903 | content: "\e777";
904 | }
905 |
906 | .cuIcon-goodsfill:before {
907 | content: "\e778";
908 | }
909 |
910 | .cuIcon-messagefill:before {
911 | content: "\e779";
912 | }
913 |
914 | .cuIcon-profilefill:before {
915 | content: "\e77a";
916 | }
917 |
918 | .cuIcon-sound:before {
919 | content: "\e77b";
920 | }
921 |
922 | .cuIcon-sponsorfill:before {
923 | content: "\e77c";
924 | }
925 |
926 | .cuIcon-sponsor:before {
927 | content: "\e77d";
928 | }
929 |
930 | .cuIcon-upblock:before {
931 | content: "\e77e";
932 | }
933 |
934 | .cuIcon-weblock:before {
935 | content: "\e77f";
936 | }
937 |
938 | .cuIcon-weunblock:before {
939 | content: "\e780";
940 | }
941 |
942 | .cuIcon-my:before {
943 | content: "\e78b";
944 | }
945 |
946 | .cuIcon-myfill:before {
947 | content: "\e78c";
948 | }
949 |
950 | .cuIcon-emojifill:before {
951 | content: "\e78d";
952 | }
953 |
954 | .cuIcon-emojiflashfill:before {
955 | content: "\e78e";
956 | }
957 |
958 | .cuIcon-flashbuyfill:before {
959 | content: "\e78f";
960 | }
961 |
962 | .cuIcon-text:before {
963 | content: "\e791";
964 | }
965 |
966 | .cuIcon-goodsfavor:before {
967 | content: "\e794";
968 | }
969 |
970 | .cuIcon-musicfill:before {
971 | content: "\e795";
972 | }
973 |
974 | .cuIcon-musicforbidfill:before {
975 | content: "\e796";
976 | }
977 |
978 | .cuIcon-card:before {
979 | content: "\e624";
980 | }
981 |
982 | .cuIcon-triangledownfill:before {
983 | content: "\e79b";
984 | }
985 |
986 | .cuIcon-triangleupfill:before {
987 | content: "\e79c";
988 | }
989 |
990 | .cuIcon-roundleftfill-copy:before {
991 | content: "\e79e";
992 | }
993 |
994 | .cuIcon-font:before {
995 | content: "\e76a";
996 | }
997 |
998 | .cuIcon-title:before {
999 | content: "\e82f";
1000 | }
1001 |
1002 | .cuIcon-recordfill:before {
1003 | content: "\e7a4";
1004 | }
1005 |
1006 | .cuIcon-record:before {
1007 | content: "\e7a6";
1008 | }
1009 |
1010 | .cuIcon-cardboardfill:before {
1011 | content: "\e7a9";
1012 | }
1013 |
1014 | .cuIcon-cardboard:before {
1015 | content: "\e7aa";
1016 | }
1017 |
1018 | .cuIcon-formfill:before {
1019 | content: "\e7ab";
1020 | }
1021 |
1022 | .cuIcon-coin:before {
1023 | content: "\e7ac";
1024 | }
1025 |
1026 | .cuIcon-cardboardforbid:before {
1027 | content: "\e7af";
1028 | }
1029 |
1030 | .cuIcon-circlefill:before {
1031 | content: "\e7b0";
1032 | }
1033 |
1034 | .cuIcon-circle:before {
1035 | content: "\e7b1";
1036 | }
1037 |
1038 | .cuIcon-attentionforbid:before {
1039 | content: "\e7b2";
1040 | }
1041 |
1042 | .cuIcon-attentionforbidfill:before {
1043 | content: "\e7b3";
1044 | }
1045 |
1046 | .cuIcon-attentionfavorfill:before {
1047 | content: "\e7b4";
1048 | }
1049 |
1050 | .cuIcon-attentionfavor:before {
1051 | content: "\e7b5";
1052 | }
1053 |
1054 | .cuIcon-titles:before {
1055 | content: "\e701";
1056 | }
1057 |
1058 | .cuIcon-icloading:before {
1059 | content: "\e67a";
1060 | }
1061 |
1062 | .cuIcon-full:before {
1063 | content: "\e7bc";
1064 | }
1065 |
1066 | .cuIcon-mail:before {
1067 | content: "\e7bd";
1068 | }
1069 |
1070 | .cuIcon-peoplelist:before {
1071 | content: "\e7be";
1072 | }
1073 |
1074 | .cuIcon-goodsnewfill:before {
1075 | content: "\e7bf";
1076 | }
1077 |
1078 | .cuIcon-goodsnew:before {
1079 | content: "\e7c0";
1080 | }
1081 |
1082 | .cuIcon-medalfill:before {
1083 | content: "\e7c1";
1084 | }
1085 |
1086 | .cuIcon-medal:before {
1087 | content: "\e7c2";
1088 | }
1089 |
1090 | .cuIcon-newsfill:before {
1091 | content: "\e7c3";
1092 | }
1093 |
1094 | .cuIcon-newshotfill:before {
1095 | content: "\e7c4";
1096 | }
1097 |
1098 | .cuIcon-newshot:before {
1099 | content: "\e7c5";
1100 | }
1101 |
1102 | .cuIcon-news:before {
1103 | content: "\e7c6";
1104 | }
1105 |
1106 | .cuIcon-videofill:before {
1107 | content: "\e7c7";
1108 | }
1109 |
1110 | .cuIcon-video:before {
1111 | content: "\e7c8";
1112 | }
1113 |
1114 | .cuIcon-exit:before {
1115 | content: "\e7cb";
1116 | }
1117 |
1118 | .cuIcon-skinfill:before {
1119 | content: "\e7cc";
1120 | }
1121 |
1122 | .cuIcon-skin:before {
1123 | content: "\e7cd";
1124 | }
1125 |
1126 | .cuIcon-moneybagfill:before {
1127 | content: "\e7ce";
1128 | }
1129 |
1130 | .cuIcon-usefullfill:before {
1131 | content: "\e7cf";
1132 | }
1133 |
1134 | .cuIcon-usefull:before {
1135 | content: "\e7d0";
1136 | }
1137 |
1138 | .cuIcon-moneybag:before {
1139 | content: "\e7d1";
1140 | }
1141 |
1142 | .cuIcon-redpacket_fill:before {
1143 | content: "\e7d3";
1144 | }
1145 |
1146 | .cuIcon-subscription:before {
1147 | content: "\e7d4";
1148 | }
1149 |
1150 | .cuIcon-loading1:before {
1151 | content: "\e633";
1152 | }
1153 |
1154 | .cuIcon-github:before {
1155 | content: "\e692";
1156 | }
1157 |
1158 | .cuIcon-global:before {
1159 | content: "\e7eb";
1160 | }
1161 |
1162 | .cuIcon-settingsfill:before {
1163 | content: "\e6ab";
1164 | }
1165 |
1166 | .cuIcon-back_android:before {
1167 | content: "\e7ed";
1168 | }
1169 |
1170 | .cuIcon-expressman:before {
1171 | content: "\e7ef";
1172 | }
1173 |
1174 | .cuIcon-evaluate_fill:before {
1175 | content: "\e7f0";
1176 | }
1177 |
1178 | .cuIcon-group_fill:before {
1179 | content: "\e7f5";
1180 | }
1181 |
1182 | .cuIcon-play_forward_fill:before {
1183 | content: "\e7f6";
1184 | }
1185 |
1186 | .cuIcon-deliver_fill:before {
1187 | content: "\e7f7";
1188 | }
1189 |
1190 | .cuIcon-notice_forbid_fill:before {
1191 | content: "\e7f8";
1192 | }
1193 |
1194 | .cuIcon-fork:before {
1195 | content: "\e60c";
1196 | color: #1E90FF;
1197 | }
1198 |
1199 | .cuIcon-pick:before {
1200 | content: "\e7fa";
1201 | }
1202 |
1203 | .cuIcon-wenzi:before {
1204 | content: "\e6a7";
1205 | }
1206 |
1207 | .cuIcon-ellipse:before {
1208 | content: "\e600";
1209 | }
1210 |
1211 | .cuIcon-qr_code:before {
1212 | content: "\e61b";
1213 | }
1214 |
1215 | .cuIcon-dianhua:before {
1216 | content: "\e64d";
1217 | }
1218 |
1219 | .cuIcon-cuIcon:before {
1220 | content: "\e602";
1221 | }
1222 |
1223 | .cuIcon-loading2:before {
1224 | content: "\e7f1";
1225 | }
1226 |
1227 | .cuIcon-btn:before {
1228 | content: "\e601";
1229 | }
1230 |
--------------------------------------------------------------------------------
/common/main.css:
--------------------------------------------------------------------------------
1 | /* ==================
2 | 初始化
3 | ==================== */
4 | body {
5 | background-color: #f1f1f1;
6 | font-size: 28upx;
7 | color: #333333;
8 | font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
9 | }
10 |
11 | view,
12 | scroll-view,
13 | swiper,
14 | button,
15 | input,
16 | textarea,
17 | label,
18 | navigator,
19 | image {
20 | box-sizing: border-box;
21 | }
22 |
23 | .round {
24 | border-radius: 5000upx;
25 | }
26 |
27 | .radius {
28 | border-radius: 6upx;
29 | }
30 |
31 | /* ==================
32 | 图片
33 | ==================== */
34 |
35 | image {
36 | max-width: 100%;
37 | display: inline-block;
38 | position: relative;
39 | z-index: 0;
40 | }
41 |
42 | image.loading::before {
43 | content: "";
44 | background-color: #f5f5f5;
45 | display: block;
46 | position: absolute;
47 | width: 100%;
48 | height: 100%;
49 | z-index: -2;
50 | }
51 |
52 | image.loading::after {
53 | content: "\e7f1";
54 | font-family: "cuIcon";
55 | position: absolute;
56 | top: 0;
57 | left: 0;
58 | width: 32upx;
59 | height: 32upx;
60 | line-height: 32upx;
61 | right: 0;
62 | bottom: 0;
63 | z-index: -1;
64 | font-size: 32upx;
65 | margin: auto;
66 | color: #ccc;
67 | -webkit-animation: cuIcon-spin 2s infinite linear;
68 | animation: cuIcon-spin 2s infinite linear;
69 | display: block;
70 | }
71 |
72 | .response {
73 | width: 100%;
74 | }
75 |
76 | /* ==================
77 | 开关
78 | ==================== */
79 |
80 | switch,
81 | checkbox,
82 | radio {
83 | position: relative;
84 | }
85 |
86 | switch::after,
87 | switch::before {
88 | font-family: "cuIcon";
89 | content: "\e645";
90 | position: absolute;
91 | color: #ffffff !important;
92 | top: 0%;
93 | left: 0upx;
94 | font-size: 26upx;
95 | line-height: 26px;
96 | width: 50%;
97 | text-align: center;
98 | pointer-events: none;
99 | transform: scale(0, 0);
100 | transition: all 0.3s ease-in-out 0s;
101 | z-index: 9;
102 | bottom: 0;
103 | height: 26px;
104 | margin: auto;
105 | }
106 |
107 | switch::before {
108 | content: "\e646";
109 | right: 0;
110 | transform: scale(1, 1);
111 | left: auto;
112 | }
113 |
114 | switch[checked]::after,
115 | switch.checked::after {
116 | transform: scale(1, 1);
117 | }
118 |
119 | switch[checked]::before,
120 | switch.checked::before {
121 | transform: scale(0, 0);
122 | }
123 |
124 | /* #ifndef MP-ALIPAY */
125 | radio::before,
126 | checkbox::before {
127 | font-family: "cuIcon";
128 | content: "\e645";
129 | position: absolute;
130 | color: #ffffff !important;
131 | top: 50%;
132 | margin-top: -8px;
133 | right: 5px;
134 | font-size: 32upx;
135 | line-height: 16px;
136 | pointer-events: none;
137 | transform: scale(1, 1);
138 | transition: all 0.3s ease-in-out 0s;
139 | z-index: 9;
140 | }
141 |
142 | radio .wx-radio-input,
143 | checkbox .wx-checkbox-input,
144 | radio .uni-radio-input,
145 | checkbox .uni-checkbox-input {
146 | margin: 0;
147 | width: 24px;
148 | height: 24px;
149 | }
150 |
151 | checkbox.round .wx-checkbox-input,
152 | checkbox.round .uni-checkbox-input {
153 | border-radius: 100upx;
154 | }
155 |
156 | /* #endif */
157 |
158 | switch[checked]::before {
159 | transform: scale(0, 0);
160 | }
161 |
162 | switch .wx-switch-input,
163 | switch .uni-switch-input {
164 | border: none;
165 | padding: 0 24px;
166 | width: 48px;
167 | height: 26px;
168 | margin: 0;
169 | border-radius: 100upx;
170 | }
171 |
172 | switch .wx-switch-input:not([class*="bg-"]),
173 | switch .uni-switch-input:not([class*="bg-"]) {
174 | background: #8799a3 !important;
175 | }
176 |
177 | switch .wx-switch-input::after,
178 | switch .uni-switch-input::after {
179 | margin: auto;
180 | width: 26px;
181 | height: 26px;
182 | border-radius: 100upx;
183 | left: 0upx;
184 | top: 0upx;
185 | bottom: 0upx;
186 | position: absolute;
187 | transform: scale(0.9, 0.9);
188 | transition: all 0.1s ease-in-out 0s;
189 | }
190 |
191 | switch .wx-switch-input.wx-switch-input-checked::after,
192 | switch .uni-switch-input.uni-switch-input-checked::after {
193 | margin: auto;
194 | left: 22px;
195 | box-shadow: none;
196 | transform: scale(0.9, 0.9);
197 | }
198 |
199 | radio-group {
200 | display: inline-block;
201 | }
202 |
203 |
204 |
205 | switch.radius .wx-switch-input::after,
206 | switch.radius .wx-switch-input,
207 | switch.radius .wx-switch-input::before,
208 | switch.radius .uni-switch-input::after,
209 | switch.radius .uni-switch-input,
210 | switch.radius .uni-switch-input::before {
211 | border-radius: 10upx;
212 | }
213 |
214 | switch .wx-switch-input::before,
215 | radio.radio::before,
216 | checkbox .wx-checkbox-input::before,
217 | radio .wx-radio-input::before,
218 | switch .uni-switch-input::before,
219 | radio.radio::before,
220 | checkbox .uni-checkbox-input::before,
221 | radio .uni-radio-input::before {
222 | display: none;
223 | }
224 |
225 | radio.radio[checked]::after,
226 | radio.radio .uni-radio-input-checked::after {
227 | content: "";
228 | background-color: transparent;
229 | display: block;
230 | position: absolute;
231 | width: 8px;
232 | height: 8px;
233 | z-index: 999;
234 | top: 0upx;
235 | left: 0upx;
236 | right: 0;
237 | bottom: 0;
238 | margin: auto;
239 | border-radius: 200upx;
240 | /* #ifndef MP */
241 | border: 7px solid #ffffff !important;
242 | /* #endif */
243 |
244 | /* #ifdef MP */
245 | border: 8px solid #ffffff !important;
246 | /* #endif */
247 | }
248 |
249 | .switch-sex::after {
250 | content: "\e71c";
251 | }
252 |
253 | .switch-sex::before {
254 | content: "\e71a";
255 | }
256 |
257 | .switch-sex .wx-switch-input,
258 | .switch-sex .uni-switch-input {
259 | background: #e54d42 !important;
260 | border-color: #e54d42 !important;
261 | }
262 |
263 | .switch-sex[checked] .wx-switch-input,
264 | .switch-sex.checked .uni-switch-input {
265 | background: #0081ff !important;
266 | border-color: #0081ff !important;
267 | }
268 |
269 | switch.red[checked] .wx-switch-input.wx-switch-input-checked,
270 | checkbox.red[checked] .wx-checkbox-input,
271 | radio.red[checked] .wx-radio-input,
272 | switch.red.checked .uni-switch-input.uni-switch-input-checked,
273 | checkbox.red.checked .uni-checkbox-input,
274 | radio.red.checked .uni-radio-input {
275 | background-color: #e54d42 !important;
276 | border-color: #e54d42 !important;
277 | color: #ffffff !important;
278 | }
279 |
280 | switch.orange[checked] .wx-switch-input,
281 | checkbox.orange[checked] .wx-checkbox-input,
282 | radio.orange[checked] .wx-radio-input,
283 | switch.orange.checked .uni-switch-input,
284 | checkbox.orange.checked .uni-checkbox-input,
285 | radio.orange.checked .uni-radio-input {
286 | background-color: #f37b1d !important;
287 | border-color: #f37b1d !important;
288 | color: #ffffff !important;
289 | }
290 |
291 | switch.yellow[checked] .wx-switch-input,
292 | checkbox.yellow[checked] .wx-checkbox-input,
293 | radio.yellow[checked] .wx-radio-input,
294 | switch.yellow.checked .uni-switch-input,
295 | checkbox.yellow.checked .uni-checkbox-input,
296 | radio.yellow.checked .uni-radio-input {
297 | background-color: #fbbd08 !important;
298 | border-color: #fbbd08 !important;
299 | color: #333333 !important;
300 | }
301 |
302 | switch.olive[checked] .wx-switch-input,
303 | checkbox.olive[checked] .wx-checkbox-input,
304 | radio.olive[checked] .wx-radio-input,
305 | switch.olive.checked .uni-switch-input,
306 | checkbox.olive.checked .uni-checkbox-input,
307 | radio.olive.checked .uni-radio-input {
308 | background-color: #8dc63f !important;
309 | border-color: #8dc63f !important;
310 | color: #ffffff !important;
311 | }
312 |
313 | switch.green[checked] .wx-switch-input,
314 | switch[checked] .wx-switch-input,
315 | checkbox.green[checked] .wx-checkbox-input,
316 | checkbox[checked] .wx-checkbox-input,
317 | radio.green[checked] .wx-radio-input,
318 | radio[checked] .wx-radio-input,
319 | switch.green.checked .uni-switch-input,
320 | switch.checked .uni-switch-input,
321 | checkbox.green.checked .uni-checkbox-input,
322 | checkbox.checked .uni-checkbox-input,
323 | radio.green.checked .uni-radio-input,
324 | radio.checked .uni-radio-input {
325 | background-color: #39b54a !important;
326 | border-color: #39b54a !important;
327 | color: #ffffff !important;
328 | border-color: #39B54A !important;
329 | }
330 |
331 | switch.cyan[checked] .wx-switch-input,
332 | checkbox.cyan[checked] .wx-checkbox-input,
333 | radio.cyan[checked] .wx-radio-input,
334 | switch.cyan.checked .uni-switch-input,
335 | checkbox.cyan.checked .uni-checkbox-input,
336 | radio.cyan.checked .uni-radio-input {
337 | background-color: #1cbbb4 !important;
338 | border-color: #1cbbb4 !important;
339 | color: #ffffff !important;
340 | }
341 |
342 | switch.blue[checked] .wx-switch-input,
343 | checkbox.blue[checked] .wx-checkbox-input,
344 | radio.blue[checked] .wx-radio-input,
345 | switch.blue.checked .uni-switch-input,
346 | checkbox.blue.checked .uni-checkbox-input,
347 | radio.blue.checked .uni-radio-input {
348 | background-color: #0081ff !important;
349 | border-color: #0081ff !important;
350 | color: #ffffff !important;
351 | }
352 |
353 | switch.purple[checked] .wx-switch-input,
354 | checkbox.purple[checked] .wx-checkbox-input,
355 | radio.purple[checked] .wx-radio-input,
356 | switch.purple.checked .uni-switch-input,
357 | checkbox.purple.checked .uni-checkbox-input,
358 | radio.purple.checked .uni-radio-input {
359 | background-color: #6739b6 !important;
360 | border-color: #6739b6 !important;
361 | color: #ffffff !important;
362 | }
363 |
364 | switch.mauve[checked] .wx-switch-input,
365 | checkbox.mauve[checked] .wx-checkbox-input,
366 | radio.mauve[checked] .wx-radio-input,
367 | switch.mauve.checked .uni-switch-input,
368 | checkbox.mauve.checked .uni-checkbox-input,
369 | radio.mauve.checked .uni-radio-input {
370 | background-color: #9c26b0 !important;
371 | border-color: #9c26b0 !important;
372 | color: #ffffff !important;
373 | }
374 |
375 | switch.pink[checked] .wx-switch-input,
376 | checkbox.pink[checked] .wx-checkbox-input,
377 | radio.pink[checked] .wx-radio-input,
378 | switch.pink.checked .uni-switch-input,
379 | checkbox.pink.checked .uni-checkbox-input,
380 | radio.pink.checked .uni-radio-input {
381 | background-color: #e03997 !important;
382 | border-color: #e03997 !important;
383 | color: #ffffff !important;
384 | }
385 |
386 | switch.brown[checked] .wx-switch-input,
387 | checkbox.brown[checked] .wx-checkbox-input,
388 | radio.brown[checked] .wx-radio-input,
389 | switch.brown.checked .uni-switch-input,
390 | checkbox.brown.checked .uni-checkbox-input,
391 | radio.brown.checked .uni-radio-input {
392 | background-color: #a5673f !important;
393 | border-color: #a5673f !important;
394 | color: #ffffff !important;
395 | }
396 |
397 | switch.grey[checked] .wx-switch-input,
398 | checkbox.grey[checked] .wx-checkbox-input,
399 | radio.grey[checked] .wx-radio-input,
400 | switch.grey.checked .uni-switch-input,
401 | checkbox.grey.checked .uni-checkbox-input,
402 | radio.grey.checked .uni-radio-input {
403 | background-color: #8799a3 !important;
404 | border-color: #8799a3 !important;
405 | color: #ffffff !important;
406 | }
407 |
408 | switch.gray[checked] .wx-switch-input,
409 | checkbox.gray[checked] .wx-checkbox-input,
410 | radio.gray[checked] .wx-radio-input,
411 | switch.gray.checked .uni-switch-input,
412 | checkbox.gray.checked .uni-checkbox-input,
413 | radio.gray.checked .uni-radio-input {
414 | background-color: #f0f0f0 !important;
415 | border-color: #f0f0f0 !important;
416 | color: #333333 !important;
417 | }
418 |
419 | switch.black[checked] .wx-switch-input,
420 | checkbox.black[checked] .wx-checkbox-input,
421 | radio.black[checked] .wx-radio-input,
422 | switch.black.checked .uni-switch-input,
423 | checkbox.black.checked .uni-checkbox-input,
424 | radio.black.checked .uni-radio-input {
425 | background-color: #333333 !important;
426 | border-color: #333333 !important;
427 | color: #ffffff !important;
428 | }
429 |
430 | switch.white[checked] .wx-switch-input,
431 | checkbox.white[checked] .wx-checkbox-input,
432 | radio.white[checked] .wx-radio-input,
433 | switch.white.checked .uni-switch-input,
434 | checkbox.white.checked .uni-checkbox-input,
435 | radio.white.checked .uni-radio-input {
436 | background-color: #ffffff !important;
437 | border-color: #ffffff !important;
438 | color: #333333 !important;
439 | }
440 |
441 | /* ==================
442 | 边框
443 | ==================== */
444 |
445 | /* -- 实线 -- */
446 |
447 | .solid,
448 | .solid-top,
449 | .solid-right,
450 | .solid-bottom,
451 | .solid-left,
452 | .solids,
453 | .solids-top,
454 | .solids-right,
455 | .solids-bottom,
456 | .solids-left,
457 | .dashed,
458 | .dashed-top,
459 | .dashed-right,
460 | .dashed-bottom,
461 | .dashed-left {
462 | position: relative;
463 | }
464 |
465 | .solid::after,
466 | .solid-top::after,
467 | .solid-right::after,
468 | .solid-bottom::after,
469 | .solid-left::after,
470 | .solids::after,
471 | .solids-top::after,
472 | .solids-right::after,
473 | .solids-bottom::after,
474 | .solids-left::after,
475 | .dashed::after,
476 | .dashed-top::after,
477 | .dashed-right::after,
478 | .dashed-bottom::after,
479 | .dashed-left::after {
480 | content: " ";
481 | width: 200%;
482 | height: 200%;
483 | position: absolute;
484 | top: 0;
485 | left: 0;
486 | border-radius: inherit;
487 | transform: scale(0.5);
488 | transform-origin: 0 0;
489 | pointer-events: none;
490 | box-sizing: border-box;
491 | }
492 |
493 | .solid::after {
494 | border: 1upx solid rgba(0, 0, 0, 0.1);
495 | }
496 |
497 | .solid-top::after {
498 | border-top: 1upx solid rgba(0, 0, 0, 0.1);
499 | }
500 |
501 | .solid-right::after {
502 | border-right: 1upx solid rgba(0, 0, 0, 0.1);
503 | }
504 |
505 | .solid-bottom::after {
506 | border-bottom: 1upx solid rgba(0, 0, 0, 0.1);
507 | }
508 |
509 | .solid-left::after {
510 | border-left: 1upx solid rgba(0, 0, 0, 0.1);
511 | }
512 |
513 | .solids::after {
514 | border: 8upx solid #eee;
515 | }
516 |
517 | .solids-top::after {
518 | border-top: 8upx solid #eee;
519 | }
520 |
521 | .solids-right::after {
522 | border-right: 8upx solid #eee;
523 | }
524 |
525 | .solids-bottom::after {
526 | border-bottom: 8upx solid #eee;
527 | }
528 |
529 | .solids-left::after {
530 | border-left: 8upx solid #eee;
531 | }
532 |
533 | /* -- 虚线 -- */
534 |
535 | .dashed::after {
536 | border: 1upx dashed #ddd;
537 | }
538 |
539 | .dashed-top::after {
540 | border-top: 1upx dashed #ddd;
541 | }
542 |
543 | .dashed-right::after {
544 | border-right: 1upx dashed #ddd;
545 | }
546 |
547 | .dashed-bottom::after {
548 | border-bottom: 1upx dashed #ddd;
549 | }
550 |
551 | .dashed-left::after {
552 | border-left: 1upx dashed #ddd;
553 | }
554 |
555 | /* -- 阴影 -- */
556 |
557 | .shadow[class*='white'] {
558 | --ShadowSize: 0 1upx 6upx;
559 | }
560 |
561 | .shadow-lg {
562 | --ShadowSize: 0upx 40upx 100upx 0upx;
563 | }
564 |
565 | .shadow-warp {
566 | position: relative;
567 | box-shadow: 0 0 10upx rgba(0, 0, 0, 0.1);
568 | }
569 |
570 | .shadow-warp:before,
571 | .shadow-warp:after {
572 | position: absolute;
573 | content: "";
574 | top: 20upx;
575 | bottom: 30upx;
576 | left: 20upx;
577 | width: 50%;
578 | box-shadow: 0 30upx 20upx rgba(0, 0, 0, 0.2);
579 | transform: rotate(-3deg);
580 | z-index: -1;
581 | }
582 |
583 | .shadow-warp:after {
584 | right: 20upx;
585 | left: auto;
586 | transform: rotate(3deg);
587 | }
588 |
589 | .shadow-blur {
590 | position: relative;
591 | }
592 |
593 | .shadow-blur::before {
594 | content: "";
595 | display: block;
596 | background: inherit;
597 | filter: blur(10upx);
598 | position: absolute;
599 | width: 100%;
600 | height: 100%;
601 | top: 10upx;
602 | left: 10upx;
603 | z-index: -1;
604 | opacity: 0.4;
605 | transform-origin: 0 0;
606 | border-radius: inherit;
607 | transform: scale(1, 1);
608 | }
609 |
610 | /* ==================
611 | 按钮
612 | ==================== */
613 |
614 | .cu-btn {
615 | position: relative;
616 | border: 0upx;
617 | display: inline-flex;
618 | align-items: center;
619 | justify-content: center;
620 | box-sizing: border-box;
621 | padding: 0 30upx;
622 | font-size: 28upx;
623 | height: 64upx;
624 | line-height: 1;
625 | text-align: center;
626 | text-decoration: none;
627 | overflow: visible;
628 | margin-left: initial;
629 | transform: translate(0upx, 0upx);
630 | margin-right: initial;
631 | }
632 |
633 | .cu-btn::after {
634 | display: none;
635 | }
636 |
637 | .cu-btn:not([class*="bg-"]) {
638 | background-color: #f0f0f0;
639 | }
640 |
641 | .cu-btn[class*="line"] {
642 | background-color: transparent;
643 | }
644 |
645 | .cu-btn[class*="line"]::after {
646 | content: " ";
647 | display: block;
648 | width: 200%;
649 | height: 200%;
650 | position: absolute;
651 | top: 0;
652 | left: 0;
653 | border: 1upx solid currentColor;
654 | transform: scale(0.5);
655 | transform-origin: 0 0;
656 | box-sizing: border-box;
657 | border-radius: 12upx;
658 | z-index: 1;
659 | pointer-events: none;
660 | }
661 |
662 | .cu-btn.round[class*="line"]::after {
663 | border-radius: 1000upx;
664 | }
665 |
666 | .cu-btn[class*="lines"]::after {
667 | border: 6upx solid currentColor;
668 | }
669 |
670 | .cu-btn[class*="bg-"]::after {
671 | display: none;
672 | }
673 |
674 | .cu-btn.sm {
675 | padding: 0 20upx;
676 | font-size: 20upx;
677 | height: 48upx;
678 | }
679 |
680 | .cu-btn.lg {
681 | padding: 0 40upx;
682 | font-size: 32upx;
683 | height: 80upx;
684 | }
685 |
686 | .cu-btn.cuIcon.sm {
687 | width: 48upx;
688 | height: 48upx;
689 | }
690 |
691 | .cu-btn.cuIcon {
692 | width: 64upx;
693 | height: 64upx;
694 | border-radius: 500upx;
695 | padding: 0;
696 | }
697 |
698 | button.cuIcon.lg {
699 | width: 80upx;
700 | height: 80upx;
701 | }
702 |
703 | .cu-btn.shadow-blur::before {
704 | top: 4upx;
705 | left: 4upx;
706 | filter: blur(6upx);
707 | opacity: 0.6;
708 | }
709 |
710 | .cu-btn.button-hover {
711 | transform: translate(1upx, 1upx);
712 | }
713 |
714 | .block {
715 | display: block;
716 | }
717 |
718 | .cu-btn.block {
719 | display: flex;
720 | }
721 |
722 | .cu-btn[disabled] {
723 | opacity: 0.6;
724 | color: #ffffff;
725 | }
726 |
727 | /* ==================
728 | 徽章
729 | ==================== */
730 |
731 | .cu-tag {
732 | font-size: 24upx;
733 | vertical-align: middle;
734 | position: relative;
735 | display: inline-flex;
736 | align-items: center;
737 | justify-content: center;
738 | box-sizing: border-box;
739 | padding: 0upx 16upx;
740 | height: 48upx;
741 | font-family: Helvetica Neue, Helvetica, sans-serif;
742 | white-space: nowrap;
743 | }
744 |
745 | .cu-tag:not([class*="bg"]):not([class*="line"]) {
746 | background-color: #f1f1f1;
747 | }
748 |
749 | .cu-tag[class*="line-"]::after {
750 | content: " ";
751 | width: 200%;
752 | height: 200%;
753 | position: absolute;
754 | top: 0;
755 | left: 0;
756 | border: 1upx solid currentColor;
757 | transform: scale(0.5);
758 | transform-origin: 0 0;
759 | box-sizing: border-box;
760 | border-radius: inherit;
761 | z-index: 1;
762 | pointer-events: none;
763 | }
764 |
765 | .cu-tag.radius[class*="line"]::after {
766 | border-radius: 12upx;
767 | }
768 |
769 | .cu-tag.round[class*="line"]::after {
770 | border-radius: 1000upx;
771 | }
772 |
773 | .cu-tag[class*="line-"]::after {
774 | border-radius: 0;
775 | }
776 |
777 | .cu-tag+.cu-tag {
778 | margin-left: 10upx;
779 | }
780 |
781 | .cu-tag.sm {
782 | font-size: 20upx;
783 | padding: 0upx 12upx;
784 | height: 32upx;
785 | }
786 |
787 | .cu-capsule {
788 | display: inline-flex;
789 | vertical-align: middle;
790 | }
791 |
792 | .cu-capsule+.cu-capsule {
793 | margin-left: 10upx;
794 | }
795 |
796 | .cu-capsule .cu-tag {
797 | margin: 0;
798 | }
799 |
800 | .cu-capsule .cu-tag[class*="line-"]:last-child::after {
801 | border-left: 0upx solid transparent;
802 | }
803 |
804 | .cu-capsule .cu-tag[class*="line-"]:first-child::after {
805 | border-right: 0upx solid transparent;
806 | }
807 |
808 | .cu-capsule.radius .cu-tag:first-child {
809 | border-top-left-radius: 6upx;
810 | border-bottom-left-radius: 6upx;
811 | }
812 |
813 | .cu-capsule.radius .cu-tag:last-child::after,
814 | .cu-capsule.radius .cu-tag[class*="line-"] {
815 | border-top-right-radius: 12upx;
816 | border-bottom-right-radius: 12upx;
817 | }
818 |
819 | .cu-capsule.round .cu-tag:first-child {
820 | border-top-left-radius: 200upx;
821 | border-bottom-left-radius: 200upx;
822 | text-indent: 4upx;
823 | }
824 |
825 | .cu-capsule.round .cu-tag:last-child::after,
826 | .cu-capsule.round .cu-tag:last-child {
827 | border-top-right-radius: 200upx;
828 | border-bottom-right-radius: 200upx;
829 | text-indent: -4upx;
830 | }
831 |
832 | .cu-tag.badge {
833 | border-radius: 200upx;
834 | position: absolute;
835 | top: -10upx;
836 | right: -10upx;
837 | font-size: 20upx;
838 | padding: 0upx 10upx;
839 | height: 28upx;
840 | color: #ffffff;
841 | }
842 |
843 | .cu-tag.badge:not([class*="bg-"]) {
844 | background-color: #dd514c;
845 | }
846 |
847 | .cu-tag:empty:not([class*="cuIcon-"]) {
848 | padding: 0upx;
849 | width: 16upx;
850 | height: 16upx;
851 | top: -4upx;
852 | right: -4upx;
853 | }
854 |
855 | .cu-tag[class*="cuIcon-"] {
856 | width: 32upx;
857 | height: 32upx;
858 | top: -4upx;
859 | right: -4upx;
860 | }
861 |
862 | /* ==================
863 | 头像
864 | ==================== */
865 |
866 | .cu-avatar {
867 | font-variant: small-caps;
868 | margin: 0;
869 | padding: 0;
870 | display: inline-flex;
871 | text-align: center;
872 | justify-content: center;
873 | align-items: center;
874 | background-color: #ccc;
875 | color: #ffffff;
876 | white-space: nowrap;
877 | position: relative;
878 | width: 64upx;
879 | height: 64upx;
880 | background-size: cover;
881 | background-position: center;
882 | vertical-align: middle;
883 | font-size: 1.5em;
884 | }
885 |
886 | .cu-avatar.sm {
887 | width: 48upx;
888 | height: 48upx;
889 | font-size: 1em;
890 | }
891 |
892 | .cu-avatar.lg {
893 | width: 96upx;
894 | height: 96upx;
895 | font-size: 2em;
896 | }
897 |
898 | .cu-avatar.xl {
899 | width: 128upx;
900 | height: 128upx;
901 | font-size: 2.5em;
902 | }
903 |
904 | .cu-avatar .avatar-text {
905 | font-size: 0.4em;
906 | }
907 |
908 | .cu-avatar-group {
909 | direction: ltr;
910 | unicode-bidi: bidi-override;
911 | padding: 0 10upx 0 10upx;
912 | display: inline-block;
913 | }
914 |
915 | .cu-avatar-group .cu-avatar {
916 | margin-left: -30upx;
917 | border: 4upx solid #f1f1f1;
918 | vertical-align: middle;
919 | }
920 |
921 | .cu-avatar-group .cu-avatar.sm {
922 | margin-left: 1upx;
923 | border: 1upx solid #f1f1f1;
924 | }
925 |
926 | /* ==================
927 | 进度条
928 | ==================== */
929 |
930 | .cu-progress {
931 | overflow: hidden;
932 | height: 28upx;
933 | background-color: #ebeef5;
934 | display: inline-flex;
935 | align-items: center;
936 | width: 100%;
937 | }
938 |
939 | .cu-progress+view,
940 | .cu-progress+text {
941 | line-height: 1;
942 | }
943 |
944 | .cu-progress.xs {
945 | height: 10upx;
946 | }
947 |
948 | .cu-progress.sm {
949 | height: 20upx;
950 | }
951 |
952 | .cu-progress view {
953 | width: 0;
954 | height: 100%;
955 | align-items: center;
956 | display: flex;
957 | justify-items: flex-end;
958 | justify-content: space-around;
959 | font-size: 20upx;
960 | color: #ffffff;
961 | transition: width 0.6s ease;
962 | }
963 |
964 | .cu-progress text {
965 | align-items: center;
966 | display: flex;
967 | font-size: 20upx;
968 | color: #333333;
969 | text-indent: 10upx;
970 | }
971 |
972 | .cu-progress.text-progress {
973 | padding-right: 60upx;
974 | }
975 |
976 | .cu-progress.striped view {
977 | background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
978 | background-size: 72upx 72upx;
979 | }
980 |
981 | .cu-progress.active view {
982 | animation: progress-stripes 2s linear infinite;
983 | }
984 |
985 | @keyframes progress-stripes {
986 | from {
987 | background-position: 72upx 0;
988 | }
989 |
990 | to {
991 | background-position: 0 0;
992 | }
993 | }
994 |
995 | /* ==================
996 | 加载
997 | ==================== */
998 |
999 | .cu-load {
1000 | display: block;
1001 | line-height: 3em;
1002 | text-align: center;
1003 | }
1004 |
1005 | .cu-load::before {
1006 | font-family: "cuIcon";
1007 | display: inline-block;
1008 | margin-right: 6upx;
1009 | }
1010 |
1011 | .cu-load.loading::before {
1012 | content: "\e67a";
1013 | animation: cuIcon-spin 2s infinite linear;
1014 | }
1015 |
1016 | .cu-load.loading::after {
1017 | content: "加载中...";
1018 | }
1019 |
1020 | .cu-load.over::before {
1021 | content: "\e64a";
1022 | }
1023 |
1024 | .cu-load.over::after {
1025 | content: "没有更多了";
1026 | }
1027 |
1028 | .cu-load.erro::before {
1029 | content: "\e658";
1030 | }
1031 |
1032 | .cu-load.erro::after {
1033 | content: "加载失败";
1034 | }
1035 |
1036 | .cu-load.load-cuIcon::before {
1037 | font-size: 32upx;
1038 | }
1039 |
1040 | .cu-load.load-cuIcon::after {
1041 | display: none;
1042 | }
1043 |
1044 | .cu-load.load-cuIcon.over {
1045 | display: none;
1046 | }
1047 |
1048 | .cu-load.load-modal {
1049 | position: fixed;
1050 | top: 0;
1051 | right: 0;
1052 | bottom: 140upx;
1053 | left: 0;
1054 | margin: auto;
1055 | width: 260upx;
1056 | height: 260upx;
1057 | background-color: #ffffff;
1058 | border-radius: 10upx;
1059 | box-shadow: 0 0 0upx 2000upx rgba(0, 0, 0, 0.5);
1060 | display: flex;
1061 | align-items: center;
1062 | flex-direction: column;
1063 | justify-content: center;
1064 | font-size: 28upx;
1065 | z-index: 9999;
1066 | line-height: 2.4em;
1067 | }
1068 |
1069 | .cu-load.load-modal [class*="cuIcon-"] {
1070 | font-size: 60upx;
1071 | }
1072 |
1073 | .cu-load.load-modal image {
1074 | width: 70upx;
1075 | height: 70upx;
1076 | }
1077 |
1078 | .cu-load.load-modal::after {
1079 | content: "";
1080 | position: absolute;
1081 | background-color: #ffffff;
1082 | border-radius: 50%;
1083 | width: 200upx;
1084 | height: 200upx;
1085 | font-size: 10px;
1086 | border-top: 6upx solid rgba(0, 0, 0, 0.05);
1087 | border-right: 6upx solid rgba(0, 0, 0, 0.05);
1088 | border-bottom: 6upx solid rgba(0, 0, 0, 0.05);
1089 | border-left: 6upx solid #f37b1d;
1090 | animation: cuIcon-spin 1s infinite linear;
1091 | z-index: -1;
1092 | }
1093 |
1094 | .load-progress {
1095 | pointer-events: none;
1096 | top: 0;
1097 | position: fixed;
1098 | width: 100%;
1099 | left: 0;
1100 | z-index: 2000;
1101 | }
1102 |
1103 | .load-progress.hide {
1104 | display: none;
1105 | }
1106 |
1107 | .load-progress .load-progress-bar {
1108 | position: relative;
1109 | width: 100%;
1110 | height: 4upx;
1111 | overflow: hidden;
1112 | transition: all 200ms ease 0s;
1113 | }
1114 |
1115 | .load-progress .load-progress-spinner {
1116 | position: absolute;
1117 | top: 10upx;
1118 | right: 10upx;
1119 | z-index: 2000;
1120 | display: block;
1121 | }
1122 |
1123 | .load-progress .load-progress-spinner::after {
1124 | content: "";
1125 | display: block;
1126 | width: 24upx;
1127 | height: 24upx;
1128 | -webkit-box-sizing: border-box;
1129 | box-sizing: border-box;
1130 | border: solid 4upx transparent;
1131 | border-top-color: inherit;
1132 | border-left-color: inherit;
1133 | border-radius: 50%;
1134 | -webkit-animation: load-progress-spinner 0.4s linear infinite;
1135 | animation: load-progress-spinner 0.4s linear infinite;
1136 | }
1137 |
1138 | @-webkit-keyframes load-progress-spinner {
1139 | 0% {
1140 | -webkit-transform: rotate(0);
1141 | transform: rotate(0);
1142 | }
1143 |
1144 | 100% {
1145 | -webkit-transform: rotate(360deg);
1146 | transform: rotate(360deg);
1147 | }
1148 | }
1149 |
1150 | @keyframes load-progress-spinner {
1151 | 0% {
1152 | -webkit-transform: rotate(0);
1153 | transform: rotate(0);
1154 | }
1155 |
1156 | 100% {
1157 | -webkit-transform: rotate(360deg);
1158 | transform: rotate(360deg);
1159 | }
1160 | }
1161 |
1162 | /* ==================
1163 | 列表
1164 | ==================== */
1165 | .grayscale {
1166 | filter: grayscale(1);
1167 | }
1168 |
1169 | .cu-list+.cu-list {
1170 | margin-top: 30upx
1171 | }
1172 |
1173 | .cu-list>.cu-item {
1174 | transition: all .6s ease-in-out 0s;
1175 | transform: translateX(0upx)
1176 | }
1177 |
1178 | .cu-list>.cu-item.move-cur {
1179 | transform: translateX(-260upx)
1180 | }
1181 |
1182 | .cu-list>.cu-item .move {
1183 | position: absolute;
1184 | right: 0;
1185 | display: flex;
1186 | width: 260upx;
1187 | height: 100%;
1188 | transform: translateX(100%)
1189 | }
1190 |
1191 | .cu-list>.cu-item .move view {
1192 | display: flex;
1193 | flex: 1;
1194 | justify-content: center;
1195 | align-items: center
1196 | }
1197 |
1198 | .cu-list.menu-avatar {
1199 | overflow: hidden;
1200 | }
1201 |
1202 | .cu-list.menu-avatar>.cu-item {
1203 | position: relative;
1204 | display: flex;
1205 | padding-right: 10upx;
1206 | height: 140upx;
1207 | background-color: #ffffff;
1208 | justify-content: flex-end;
1209 | align-items: center
1210 | }
1211 |
1212 | .cu-list.menu-avatar>.cu-item>.cu-avatar {
1213 | position: absolute;
1214 | left: 30upx
1215 | }
1216 |
1217 | .cu-list.menu-avatar>.cu-item .flex .text-cut {
1218 | max-width: 510upx
1219 | }
1220 |
1221 | .cu-list.menu-avatar>.cu-item .content {
1222 | position: absolute;
1223 | left: 146upx;
1224 | width: calc(100% - 96upx - 60upx - 120upx - 20upx);
1225 | line-height: 1.6em;
1226 | }
1227 |
1228 | .cu-list.menu-avatar>.cu-item .content.flex-sub {
1229 | width: calc(100% - 96upx - 60upx - 20upx);
1230 | }
1231 |
1232 | .cu-list.menu-avatar>.cu-item .content>view:first-child {
1233 | font-size: 30upx;
1234 | display: flex;
1235 | align-items: center
1236 | }
1237 |
1238 | .cu-list.menu-avatar>.cu-item .content .cu-tag.sm {
1239 | display: inline-block;
1240 | margin-left: 10upx;
1241 | height: 28upx;
1242 | font-size: 16upx;
1243 | line-height: 32upx
1244 | }
1245 |
1246 | .cu-list.menu-avatar>.cu-item .action {
1247 | width: 100upx;
1248 | text-align: center
1249 | }
1250 |
1251 | .cu-list.menu-avatar>.cu-item .action view+view {
1252 | margin-top: 10upx
1253 | }
1254 |
1255 | .cu-list.menu-avatar.comment>.cu-item .content {
1256 | position: relative;
1257 | left: 0;
1258 | width: auto;
1259 | flex: 1;
1260 | }
1261 |
1262 | .cu-list.menu-avatar.comment>.cu-item {
1263 | padding: 30upx 30upx 30upx 120upx;
1264 | height: auto
1265 | }
1266 |
1267 | .cu-list.menu-avatar.comment .cu-avatar {
1268 | align-self: flex-start
1269 | }
1270 |
1271 | .cu-list.menu>.cu-item {
1272 | position: relative;
1273 | display: flex;
1274 | padding: 0 30upx;
1275 | min-height: 100upx;
1276 | background-color: #ffffff;
1277 | justify-content: space-between;
1278 | align-items: center
1279 | }
1280 |
1281 | .cu-list.menu>.cu-item:last-child:after {
1282 | border: none
1283 | }
1284 |
1285 | .cu-list.menu-avatar>.cu-item:after,
1286 | .cu-list.menu>.cu-item:after {
1287 | position: absolute;
1288 | top: 0;
1289 | left: 0;
1290 | box-sizing: border-box;
1291 | width: 200%;
1292 | height: 200%;
1293 | border-bottom: 1upx solid #ddd;
1294 | border-radius: inherit;
1295 | content: " ";
1296 | transform: scale(.5);
1297 | transform-origin: 0 0;
1298 | pointer-events: none
1299 | }
1300 |
1301 | .cu-list.menu>.cu-item.grayscale {
1302 | background-color: #f5f5f5
1303 | }
1304 |
1305 | .cu-list.menu>.cu-item.cur {
1306 | background-color: #fcf7e9
1307 | }
1308 |
1309 | .cu-list.menu>.cu-item.arrow {
1310 | padding-right: 90upx
1311 | }
1312 |
1313 | .cu-list.menu>.cu-item.arrow:before {
1314 | position: absolute;
1315 | top: 0;
1316 | right: 30upx;
1317 | bottom: 0;
1318 | display: block;
1319 | margin: auto;
1320 | width: 30upx;
1321 | height: 30upx;
1322 | color: #8799a3;
1323 | content: "\e6a3";
1324 | text-align: center;
1325 | font-size: 34upx;
1326 | font-family: cuIcon;
1327 | line-height: 30upx
1328 | }
1329 |
1330 | .cu-list.menu>.cu-item button.content {
1331 | padding: 0;
1332 | background-color: transparent;
1333 | justify-content: flex-start
1334 | }
1335 |
1336 | .cu-list.menu>.cu-item button.content:after {
1337 | display: none
1338 | }
1339 |
1340 | .cu-list.menu>.cu-item .cu-avatar-group .cu-avatar {
1341 | border-color: #ffffff
1342 | }
1343 |
1344 | .cu-list.menu>.cu-item .content>view:first-child {
1345 | display: flex;
1346 | align-items: center
1347 | }
1348 |
1349 | .cu-list.menu>.cu-item .content>text[class*=cuIcon] {
1350 | display: inline-block;
1351 | margin-right: 10upx;
1352 | width: 1.6em;
1353 | text-align: center
1354 | }
1355 |
1356 | .cu-list.menu>.cu-item .content>image {
1357 | display: inline-block;
1358 | margin-right: 10upx;
1359 | width: 1.6em;
1360 | height: 1.6em;
1361 | vertical-align: middle
1362 | }
1363 |
1364 | .cu-list.menu>.cu-item .content {
1365 | font-size: 30upx;
1366 | line-height: 1.6em;
1367 | flex: 1
1368 | }
1369 |
1370 | .cu-list.menu>.cu-item .content .cu-tag.sm {
1371 | display: inline-block;
1372 | margin-left: 10upx;
1373 | height: 28upx;
1374 | font-size: 16upx;
1375 | line-height: 32upx
1376 | }
1377 |
1378 | .cu-list.menu>.cu-item .action .cu-tag:empty {
1379 | right: 10upx
1380 | }
1381 |
1382 | .cu-list.menu {
1383 | display: block;
1384 | overflow: hidden
1385 | }
1386 |
1387 | .cu-list.menu.sm-border>.cu-item:after {
1388 | left: 30upx;
1389 | width: calc(200% - 120upx)
1390 | }
1391 |
1392 | .cu-list.grid>.cu-item {
1393 | position: relative;
1394 | display: flex;
1395 | padding: 20upx 0 30upx;
1396 | transition-duration: 0s;
1397 | flex-direction: column
1398 | }
1399 |
1400 | .cu-list.grid>.cu-item:after {
1401 | position: absolute;
1402 | top: 0;
1403 | left: 0;
1404 | box-sizing: border-box;
1405 | width: 200%;
1406 | height: 200%;
1407 | border-right: 1px solid rgba(0, 0, 0, .1);
1408 | border-bottom: 1px solid rgba(0, 0, 0, .1);
1409 | border-radius: inherit;
1410 | content: " ";
1411 | transform: scale(.5);
1412 | transform-origin: 0 0;
1413 | pointer-events: none
1414 | }
1415 |
1416 | .cu-list.grid>.cu-item text {
1417 | display: block;
1418 | margin-top: 10upx;
1419 | color: #888;
1420 | font-size: 26upx;
1421 | line-height: 40upx
1422 | }
1423 |
1424 | .cu-list.grid>.cu-item [class*=cuIcon] {
1425 | position: relative;
1426 | display: block;
1427 | margin-top: 20upx;
1428 | width: 100%;
1429 | font-size: 48upx
1430 | }
1431 |
1432 | .cu-list.grid>.cu-item .cu-tag {
1433 | right: auto;
1434 | left: 50%;
1435 | margin-left: 20upx
1436 | }
1437 |
1438 | .cu-list.grid {
1439 | background-color: #ffffff;
1440 | text-align: center
1441 | }
1442 |
1443 | .cu-list.grid.no-border>.cu-item {
1444 | padding-top: 10upx;
1445 | padding-bottom: 20upx
1446 | }
1447 |
1448 | .cu-list.grid.no-border>.cu-item:after {
1449 | border: none
1450 | }
1451 |
1452 | .cu-list.grid.no-border {
1453 | padding: 20upx 10upx
1454 | }
1455 |
1456 | .cu-list.grid.col-3>.cu-item:nth-child(3n):after,
1457 | .cu-list.grid.col-4>.cu-item:nth-child(4n):after,
1458 | .cu-list.grid.col-5>.cu-item:nth-child(5n):after {
1459 | border-right-width: 0
1460 | }
1461 |
1462 | .cu-list.card-menu {
1463 | overflow: hidden;
1464 | margin-right: 30upx;
1465 | margin-left: 30upx;
1466 | border-radius: 20upx
1467 | }
1468 |
1469 |
1470 | /* ==================
1471 | 操作条
1472 | ==================== */
1473 |
1474 | .cu-bar {
1475 | display: flex;
1476 | position: relative;
1477 | align-items: center;
1478 | min-height: 100upx;
1479 | justify-content: space-between;
1480 | }
1481 |
1482 | .cu-bar .action {
1483 | display: flex;
1484 | align-items: center;
1485 | height: 100%;
1486 | justify-content: center;
1487 | max-width: 100%;
1488 | }
1489 |
1490 | .cu-bar .action.border-title {
1491 | position: relative;
1492 | top: -10upx;
1493 | }
1494 |
1495 | .cu-bar .action.border-title text[class*="bg-"]:last-child {
1496 | position: absolute;
1497 | bottom: -0.5rem;
1498 | min-width: 2rem;
1499 | height: 6upx;
1500 | left: 0;
1501 | }
1502 |
1503 | .cu-bar .action.sub-title {
1504 | position: relative;
1505 | top: -0.2rem;
1506 | }
1507 |
1508 | .cu-bar .action.sub-title text {
1509 | position: relative;
1510 | z-index: 1;
1511 | }
1512 |
1513 | .cu-bar .action.sub-title text[class*="bg-"]:last-child {
1514 | position: absolute;
1515 | display: inline-block;
1516 | bottom: -0.2rem;
1517 | border-radius: 6upx;
1518 | width: 100%;
1519 | height: 0.6rem;
1520 | left: 0.6rem;
1521 | opacity: 0.3;
1522 | z-index: 0;
1523 | }
1524 |
1525 | .cu-bar .action.sub-title text[class*="text-"]:last-child {
1526 | position: absolute;
1527 | display: inline-block;
1528 | bottom: -0.7rem;
1529 | left: 0.5rem;
1530 | opacity: 0.2;
1531 | z-index: 0;
1532 | text-align: right;
1533 | font-weight: 900;
1534 | font-size: 36upx;
1535 | }
1536 |
1537 | .cu-bar.justify-center .action.border-title text:last-child,
1538 | .cu-bar.justify-center .action.sub-title text:last-child {
1539 | left: 0;
1540 | right: 0;
1541 | margin: auto;
1542 | text-align: center;
1543 | }
1544 |
1545 | .cu-bar .action:first-child {
1546 | margin-left: 30upx;
1547 | font-size: 30upx;
1548 | }
1549 |
1550 | .cu-bar .action text.text-cut {
1551 | text-align: left;
1552 | width: 100%;
1553 | }
1554 |
1555 | .cu-bar .cu-avatar:first-child {
1556 | margin-left: 20upx;
1557 | }
1558 |
1559 | .cu-bar .action:first-child>text[class*="cuIcon-"] {
1560 | margin-left: -0.3em;
1561 | margin-right: 0.3em;
1562 | }
1563 |
1564 | .cu-bar .action:last-child {
1565 | margin-right: 30upx;
1566 | }
1567 |
1568 | .cu-bar .action>text[class*="cuIcon-"],
1569 | .cu-bar .action>view[class*="cuIcon-"] {
1570 | font-size: 36upx;
1571 | }
1572 |
1573 | .cu-bar .action>text[class*="cuIcon-"]+text[class*="cuIcon-"] {
1574 | margin-left: 0.5em;
1575 | }
1576 |
1577 | .cu-bar .content {
1578 | position: absolute;
1579 | text-align: center;
1580 | width: calc(100% - 340upx);
1581 | left: 0;
1582 | right: 0;
1583 | bottom: 0;
1584 | top: 0;
1585 | margin: auto;
1586 | height: 60upx;
1587 | font-size: 32upx;
1588 | line-height: 60upx;
1589 | cursor: none;
1590 | pointer-events: none;
1591 | text-overflow: ellipsis;
1592 | white-space: nowrap;
1593 | overflow: hidden;
1594 | }
1595 |
1596 | .cu-bar.ios .content {
1597 | bottom: 7px;
1598 | height: 30px;
1599 | font-size: 32upx;
1600 | line-height: 30px;
1601 | }
1602 |
1603 | .cu-bar.btn-group {
1604 | justify-content: space-around;
1605 | }
1606 |
1607 | .cu-bar.btn-group button {
1608 | padding: 20upx 32upx;
1609 | }
1610 |
1611 | .cu-bar.btn-group button {
1612 | flex: 1;
1613 | margin: 0 20upx;
1614 | max-width: 50%;
1615 | }
1616 |
1617 | .cu-bar .search-form {
1618 | background-color: #f5f5f5;
1619 | line-height: 64upx;
1620 | height: 64upx;
1621 | font-size: 24upx;
1622 | color: #333333;
1623 | flex: 1;
1624 | display: flex;
1625 | align-items: center;
1626 | margin: 0 30upx;
1627 | }
1628 |
1629 | .cu-bar .search-form+.action {
1630 | margin-right: 30upx;
1631 | }
1632 |
1633 | .cu-bar .search-form input {
1634 | flex: 1;
1635 | padding-right: 30upx;
1636 | height: 64upx;
1637 | line-height: 64upx;
1638 | font-size: 26upx;
1639 | background-color: transparent;
1640 | }
1641 |
1642 | .cu-bar .search-form [class*="cuIcon-"] {
1643 | margin: 0 0.5em 0 0.8em;
1644 | }
1645 |
1646 | .cu-bar .search-form [class*="cuIcon-"]::before {
1647 | top: 0upx;
1648 | }
1649 |
1650 | .cu-bar.fixed,
1651 | .nav.fixed {
1652 | position: fixed;
1653 | width: 100%;
1654 | top: 0;
1655 | z-index: 1024;
1656 | box-shadow: 0 1upx 6upx rgba(0, 0, 0, 0.1);
1657 | }
1658 |
1659 | .cu-bar.foot {
1660 | position: fixed;
1661 | width: 100%;
1662 | bottom: 0;
1663 | z-index: 1024;
1664 | box-shadow: 0 -1upx 6upx rgba(0, 0, 0, 0.1);
1665 | }
1666 |
1667 | .cu-bar.tabbar {
1668 | padding: 0;
1669 | height: calc(100upx + env(safe-area-inset-bottom) / 2);
1670 | padding-bottom: calc(env(safe-area-inset-bottom) / 2);
1671 | }
1672 |
1673 | .cu-tabbar-height {
1674 | min-height: 100upx;
1675 | height: calc(100upx + env(safe-area-inset-bottom) / 2);
1676 | }
1677 |
1678 | .cu-bar.tabbar.shadow {
1679 | box-shadow: 0 -1upx 6upx rgba(0, 0, 0, 0.1);
1680 | }
1681 |
1682 | .cu-bar.tabbar .action {
1683 | font-size: 22upx;
1684 | position: relative;
1685 | flex: 1;
1686 | text-align: center;
1687 | padding: 0;
1688 | display: block;
1689 | height: auto;
1690 | line-height: 1;
1691 | margin: 0;
1692 | background-color: inherit;
1693 | overflow: initial;
1694 | }
1695 |
1696 | .cu-bar.tabbar.shop .action {
1697 | width: 140upx;
1698 | flex: initial;
1699 | }
1700 |
1701 | .cu-bar.tabbar .action.add-action {
1702 | position: relative;
1703 | z-index: 2;
1704 | padding-top: 50upx;
1705 | }
1706 |
1707 | .cu-bar.tabbar .action.add-action [class*="cuIcon-"] {
1708 | position: absolute;
1709 | width: 70upx;
1710 | z-index: 2;
1711 | height: 70upx;
1712 | border-radius: 50%;
1713 | line-height: 70upx;
1714 | font-size: 50upx;
1715 | top: -35upx;
1716 | left: 0;
1717 | right: 0;
1718 | margin: auto;
1719 | padding: 0;
1720 | }
1721 |
1722 | .cu-bar.tabbar .action.add-action::after {
1723 | content: "";
1724 | position: absolute;
1725 | width: 100upx;
1726 | height: 100upx;
1727 | top: -50upx;
1728 | left: 0;
1729 | right: 0;
1730 | margin: auto;
1731 | box-shadow: 0 -3upx 8upx rgba(0, 0, 0, 0.08);
1732 | border-radius: 50upx;
1733 | background-color: inherit;
1734 | z-index: 0;
1735 | }
1736 |
1737 | .cu-bar.tabbar .action.add-action::before {
1738 | content: "";
1739 | position: absolute;
1740 | width: 100upx;
1741 | height: 30upx;
1742 | bottom: 30upx;
1743 | left: 0;
1744 | right: 0;
1745 | margin: auto;
1746 | background-color: inherit;
1747 | z-index: 1;
1748 | }
1749 |
1750 | .cu-bar.tabbar .btn-group {
1751 | flex: 1;
1752 | display: flex;
1753 | justify-content: space-around;
1754 | align-items: center;
1755 | padding: 0 10upx;
1756 | }
1757 |
1758 | .cu-bar.tabbar button.action::after {
1759 | border: 0;
1760 | }
1761 |
1762 | .cu-bar.tabbar .action [class*="cuIcon-"] {
1763 | width: 100upx;
1764 | position: relative;
1765 | display: block;
1766 | height: auto;
1767 | margin: 0 auto 10upx;
1768 | text-align: center;
1769 | font-size: 40upx;
1770 | }
1771 |
1772 | .cu-bar.tabbar .action .cuIcon-cu-image {
1773 | margin: 0 auto;
1774 | }
1775 |
1776 | .cu-bar.tabbar .action .cuIcon-cu-image image {
1777 | width: 50upx;
1778 | height: 50upx;
1779 | display: inline-block;
1780 | }
1781 |
1782 | .cu-bar.tabbar .submit {
1783 | align-items: center;
1784 | display: flex;
1785 | justify-content: center;
1786 | text-align: center;
1787 | position: relative;
1788 | flex: 2;
1789 | align-self: stretch;
1790 | }
1791 |
1792 | .cu-bar.tabbar .submit:last-child {
1793 | flex: 2.6;
1794 | }
1795 |
1796 | .cu-bar.tabbar .submit+.submit {
1797 | flex: 2;
1798 | }
1799 |
1800 | .cu-bar.tabbar.border .action::before {
1801 | content: " ";
1802 | width: 200%;
1803 | height: 200%;
1804 | position: absolute;
1805 | top: 0;
1806 | left: 0;
1807 | transform: scale(0.5);
1808 | transform-origin: 0 0;
1809 | border-right: 1upx solid rgba(0, 0, 0, 0.1);
1810 | z-index: 3;
1811 | }
1812 |
1813 | .cu-bar.tabbar.border .action:last-child:before {
1814 | display: none;
1815 | }
1816 |
1817 | .cu-bar.input {
1818 | padding-right: 20upx;
1819 | background-color: #ffffff;
1820 | }
1821 |
1822 | .cu-bar.input input {
1823 | overflow: initial;
1824 | line-height: 64upx;
1825 | height: 64upx;
1826 | min-height: 64upx;
1827 | flex: 1;
1828 | font-size: 30upx;
1829 | margin: 0 20upx;
1830 | }
1831 |
1832 | .cu-bar.input .action {
1833 | margin-left: 20upx;
1834 | }
1835 |
1836 | .cu-bar.input .action [class*="cuIcon-"] {
1837 | font-size: 48upx;
1838 | }
1839 |
1840 | .cu-bar.input input+.action {
1841 | margin-right: 20upx;
1842 | margin-left: 0upx;
1843 | }
1844 |
1845 | .cu-bar.input .action:first-child [class*="cuIcon-"] {
1846 | margin-left: 0upx;
1847 | }
1848 |
1849 | .cu-custom {
1850 | display: block;
1851 | position: relative;
1852 | }
1853 |
1854 | .cu-custom .cu-bar .content {
1855 | width: calc(100% - 440upx);
1856 | }
1857 |
1858 | /* #ifdef MP-ALIPAY */
1859 | .cu-custom .cu-bar .action .cuIcon-back {
1860 | opacity: 0;
1861 | }
1862 |
1863 | /* #endif */
1864 |
1865 | .cu-custom .cu-bar .content image {
1866 | height: 60upx;
1867 | width: 240upx;
1868 | }
1869 |
1870 | .cu-custom .cu-bar {
1871 | min-height: 0px;
1872 | /* #ifdef MP-WEIXIN */
1873 | padding-right: 220upx;
1874 | /* #endif */
1875 | /* #ifdef MP-ALIPAY */
1876 | padding-right: 150upx;
1877 | /* #endif */
1878 | box-shadow: 0upx 0upx 0upx;
1879 | z-index: 9999;
1880 | }
1881 |
1882 | .cu-custom .cu-bar .border-custom {
1883 | position: relative;
1884 | background: rgba(0, 0, 0, 0.15);
1885 | border-radius: 1000upx;
1886 | height: 30px;
1887 | }
1888 |
1889 | .cu-custom .cu-bar .border-custom::after {
1890 | content: " ";
1891 | width: 200%;
1892 | height: 200%;
1893 | position: absolute;
1894 | top: 0;
1895 | left: 0;
1896 | border-radius: inherit;
1897 | transform: scale(0.5);
1898 | transform-origin: 0 0;
1899 | pointer-events: none;
1900 | box-sizing: border-box;
1901 | border: 1upx solid #ffffff;
1902 | opacity: 0.5;
1903 | }
1904 |
1905 | .cu-custom .cu-bar .border-custom::before {
1906 | content: " ";
1907 | width: 1upx;
1908 | height: 110%;
1909 | position: absolute;
1910 | top: 22.5%;
1911 | left: 0;
1912 | right: 0;
1913 | margin: auto;
1914 | transform: scale(0.5);
1915 | transform-origin: 0 0;
1916 | pointer-events: none;
1917 | box-sizing: border-box;
1918 | opacity: 0.6;
1919 | background-color: #ffffff;
1920 | }
1921 |
1922 | .cu-custom .cu-bar .border-custom text {
1923 | display: block;
1924 | flex: 1;
1925 | margin: auto !important;
1926 | text-align: center;
1927 | font-size: 34upx;
1928 | }
1929 |
1930 | /* ==================
1931 | 导航栏
1932 | ==================== */
1933 |
1934 | .nav {
1935 | white-space: nowrap;
1936 | }
1937 |
1938 | ::-webkit-scrollbar {
1939 | display: none;
1940 | }
1941 |
1942 | .nav .cu-item {
1943 | height: 90upx;
1944 | display: inline-block;
1945 | line-height: 90upx;
1946 | margin: 0 10upx;
1947 | padding: 0 20upx;
1948 | }
1949 |
1950 | .nav .cu-item.cur {
1951 | border-bottom: 4upx solid;
1952 | }
1953 |
1954 | /* ==================
1955 | 时间轴
1956 | ==================== */
1957 |
1958 | .cu-timeline {
1959 | display: block;
1960 | background-color: #ffffff;
1961 | }
1962 |
1963 | .cu-timeline .cu-time {
1964 | width: 120upx;
1965 | text-align: center;
1966 | padding: 20upx 0;
1967 | font-size: 26upx;
1968 | color: #888;
1969 | display: block;
1970 | }
1971 |
1972 | .cu-timeline>.cu-item {
1973 | padding: 30upx 30upx 30upx 120upx;
1974 | position: relative;
1975 | display: block;
1976 | z-index: 0;
1977 | }
1978 |
1979 | .cu-timeline>.cu-item:not([class*="text-"]) {
1980 | color: #ccc;
1981 | }
1982 |
1983 | .cu-timeline>.cu-item::after {
1984 | content: "";
1985 | display: block;
1986 | position: absolute;
1987 | width: 1upx;
1988 | background-color: #ddd;
1989 | left: 60upx;
1990 | height: 100%;
1991 | top: 0;
1992 | z-index: 8;
1993 | }
1994 |
1995 | .cu-timeline>.cu-item::before {
1996 | font-family: "cuIcon";
1997 | display: block;
1998 | position: absolute;
1999 | top: 36upx;
2000 | z-index: 9;
2001 | background-color: #ffffff;
2002 | width: 50upx;
2003 | height: 50upx;
2004 | text-align: center;
2005 | border: none;
2006 | line-height: 50upx;
2007 | left: 36upx;
2008 | }
2009 |
2010 | .cu-timeline>.cu-item:not([class*="cuIcon-"])::before {
2011 | content: "\e763";
2012 | }
2013 |
2014 | .cu-timeline>.cu-item[class*="cuIcon-"]::before {
2015 | background-color: #ffffff;
2016 | width: 50upx;
2017 | height: 50upx;
2018 | text-align: center;
2019 | border: none;
2020 | line-height: 50upx;
2021 | left: 36upx;
2022 | }
2023 |
2024 | .cu-timeline>.cu-item>.content {
2025 | padding: 30upx;
2026 | border-radius: 6upx;
2027 | display: block;
2028 | line-height: 1.6;
2029 | }
2030 |
2031 | .cu-timeline>.cu-item>.content:not([class*="bg-"]) {
2032 | background-color: #f1f1f1;
2033 | color: #333333;
2034 | }
2035 |
2036 | .cu-timeline>.cu-item>.content+.content {
2037 | margin-top: 20upx;
2038 | }
2039 |
2040 | /* ==================
2041 | 聊天
2042 | ==================== */
2043 |
2044 | .cu-chat {
2045 | display: flex;
2046 | flex-direction: column;
2047 | }
2048 |
2049 | .cu-chat .cu-item {
2050 | display: flex;
2051 | padding: 30upx 30upx 70upx;
2052 | position: relative;
2053 | }
2054 |
2055 | .cu-chat .cu-item>.cu-avatar {
2056 | width: 80upx;
2057 | height: 80upx;
2058 | }
2059 |
2060 | .cu-chat .cu-item>.main {
2061 | max-width: calc(100% - 260upx);
2062 | margin: 0 40upx;
2063 | display: flex;
2064 | align-items: center;
2065 | }
2066 |
2067 | .cu-chat .cu-item>image {
2068 | height: 320upx;
2069 | }
2070 |
2071 | .cu-chat .cu-item>.main .content {
2072 | padding: 20upx;
2073 | border-radius: 6upx;
2074 | display: inline-flex;
2075 | max-width: 100%;
2076 | align-items: center;
2077 | font-size: 30upx;
2078 | position: relative;
2079 | min-height: 80upx;
2080 | line-height: 40upx;
2081 | text-align: left;
2082 | }
2083 |
2084 | .cu-chat .cu-item>.main .content:not([class*="bg-"]) {
2085 | background-color: #ffffff;
2086 | color: #333333;
2087 | }
2088 |
2089 | .cu-chat .cu-item .date {
2090 | position: absolute;
2091 | font-size: 24upx;
2092 | color: #8799a3;
2093 | width: calc(100% - 320upx);
2094 | bottom: 20upx;
2095 | left: 160upx;
2096 | }
2097 |
2098 | .cu-chat .cu-item .action {
2099 | padding: 0 30upx;
2100 | display: flex;
2101 | align-items: center;
2102 | }
2103 |
2104 | .cu-chat .cu-item>.main .content::after {
2105 | content: "";
2106 | top: 27upx;
2107 | transform: rotate(45deg);
2108 | position: absolute;
2109 | z-index: 100;
2110 | display: inline-block;
2111 | overflow: hidden;
2112 | width: 24upx;
2113 | height: 24upx;
2114 | left: -12upx;
2115 | right: initial;
2116 | background-color: inherit;
2117 | }
2118 |
2119 | .cu-chat .cu-item.self>.main .content::after {
2120 | left: auto;
2121 | right: -12upx;
2122 | }
2123 |
2124 | .cu-chat .cu-item>.main .content::before {
2125 | content: "";
2126 | top: 30upx;
2127 | transform: rotate(45deg);
2128 | position: absolute;
2129 | z-index: -1;
2130 | display: inline-block;
2131 | overflow: hidden;
2132 | width: 24upx;
2133 | height: 24upx;
2134 | left: -12upx;
2135 | right: initial;
2136 | background-color: inherit;
2137 | filter: blur(5upx);
2138 | opacity: 0.3;
2139 | }
2140 |
2141 | .cu-chat .cu-item>.main .content:not([class*="bg-"])::before {
2142 | background-color: #333333;
2143 | opacity: 0.1;
2144 | }
2145 |
2146 | .cu-chat .cu-item.self>.main .content::before {
2147 | left: auto;
2148 | right: -12upx;
2149 | }
2150 |
2151 | .cu-chat .cu-item.self {
2152 | justify-content: flex-end;
2153 | text-align: right;
2154 | }
2155 |
2156 | .cu-chat .cu-info {
2157 | display: inline-block;
2158 | margin: 20upx auto;
2159 | font-size: 24upx;
2160 | padding: 8upx 12upx;
2161 | background-color: rgba(0, 0, 0, 0.2);
2162 | border-radius: 6upx;
2163 | color: #ffffff;
2164 | max-width: 400upx;
2165 | line-height: 1.4;
2166 | }
2167 |
2168 | /* ==================
2169 | 卡片
2170 | ==================== */
2171 |
2172 | .cu-card {
2173 | display: block;
2174 | overflow: hidden;
2175 | }
2176 |
2177 | .cu-card>.cu-item {
2178 | display: block;
2179 | background-color: #ffffff;
2180 | overflow: hidden;
2181 | border-radius: 10upx;
2182 | margin: 30upx;
2183 | }
2184 |
2185 | .cu-card>.cu-item.shadow-blur {
2186 | overflow: initial;
2187 | }
2188 |
2189 | .cu-card.no-card>.cu-item {
2190 | margin: 0upx;
2191 | border-radius: 0upx;
2192 | }
2193 |
2194 | .cu-card .grid.grid-square {
2195 | margin-bottom: -20upx;
2196 | }
2197 |
2198 | .cu-card.case .image {
2199 | position: relative;
2200 | }
2201 |
2202 | .cu-card.case .image image {
2203 | width: 100%;
2204 | }
2205 |
2206 | .cu-card.case .image .cu-tag {
2207 | position: absolute;
2208 | right: 0;
2209 | top: 0;
2210 | }
2211 |
2212 | .cu-card.case .image .cu-bar {
2213 | position: absolute;
2214 | bottom: 0;
2215 | width: 100%;
2216 | background-color: transparent;
2217 | padding: 0upx 30upx;
2218 | }
2219 |
2220 | .cu-card.case.no-card .image {
2221 | margin: 30upx 30upx 0;
2222 | overflow: hidden;
2223 | border-radius: 10upx;
2224 | }
2225 |
2226 | .cu-card.dynamic {
2227 | display: block;
2228 | }
2229 |
2230 | .cu-card.dynamic>.cu-item {
2231 | display: block;
2232 | background-color: #ffffff;
2233 | overflow: hidden;
2234 | }
2235 |
2236 | .cu-card.dynamic>.cu-item>.text-content {
2237 | padding: 0 30upx 0;
2238 | max-height: 6.4em;
2239 | overflow: hidden;
2240 | font-size: 30upx;
2241 | margin-bottom: 20upx;
2242 | }
2243 |
2244 | .cu-card.dynamic>.cu-item .square-img {
2245 | width: 100%;
2246 | height: 200upx;
2247 | border-radius: 6upx;
2248 | }
2249 |
2250 | .cu-card.dynamic>.cu-item .only-img {
2251 | width: 100%;
2252 | height: 320upx;
2253 | border-radius: 6upx;
2254 | }
2255 |
2256 | /* card.dynamic>.cu-item .comment {
2257 | padding: 20upx;
2258 | background-color: #f1f1f1;
2259 | margin: 0 30upx 30upx;
2260 | border-radius: 6upx;
2261 | } */
2262 |
2263 | .cu-card.article {
2264 | display: block;
2265 | }
2266 |
2267 | .cu-card.article>.cu-item {
2268 | padding-bottom: 30upx;
2269 | }
2270 |
2271 | .cu-card.article>.cu-item .title {
2272 | font-size: 30upx;
2273 | font-weight: 900;
2274 | color: #333333;
2275 | line-height: 100upx;
2276 | padding: 0 30upx;
2277 | }
2278 |
2279 | .cu-card.article>.cu-item .content {
2280 | display: flex;
2281 | padding: 0 30upx;
2282 | }
2283 |
2284 | .cu-card.article>.cu-item .content>image {
2285 | width: 240upx;
2286 | height: 6.4em;
2287 | margin-right: 20upx;
2288 | border-radius: 6upx;
2289 | }
2290 |
2291 | .cu-card.article>.cu-item .content .desc {
2292 | flex: 1;
2293 | display: flex;
2294 | flex-direction: column;
2295 | justify-content: space-between;
2296 | }
2297 |
2298 | .cu-card.article>.cu-item .content .text-content {
2299 | font-size: 28upx;
2300 | color: #888;
2301 | height: 4.8em;
2302 | overflow: hidden;
2303 | }
2304 |
2305 | /* ==================
2306 | 表单
2307 | ==================== */
2308 |
2309 | .cu-form-group {
2310 | background-color: #ffffff;
2311 | padding: 1upx 30upx;
2312 | display: flex;
2313 | align-items: center;
2314 | min-height: 100upx;
2315 | justify-content: space-between;
2316 | }
2317 |
2318 | .cu-form-group+.cu-form-group {
2319 | border-top: 1upx solid #eee;
2320 | }
2321 |
2322 | .cu-form-group .title {
2323 | text-align: justify;
2324 | padding-right: 30upx;
2325 | font-size: 30upx;
2326 | position: relative;
2327 | height: 60upx;
2328 | line-height: 60upx;
2329 | }
2330 |
2331 | .cu-form-group input {
2332 | flex: 1;
2333 | font-size: 30upx;
2334 | color: #555;
2335 | padding-right: 20upx;
2336 | }
2337 |
2338 | .cu-form-group>text[class*="cuIcon-"] {
2339 | font-size: 36upx;
2340 | padding: 0;
2341 | box-sizing: border-box;
2342 | }
2343 |
2344 | .cu-form-group textarea {
2345 | margin: 32upx 0 30upx;
2346 | height: 4.6em;
2347 | width: 100%;
2348 | line-height: 1.2em;
2349 | flex: 1;
2350 | font-size: 28upx;
2351 | padding: 0;
2352 | }
2353 |
2354 | .cu-form-group.align-start .title {
2355 | height: 1em;
2356 | margin-top: 32upx;
2357 | line-height: 1em;
2358 | }
2359 |
2360 | .cu-form-group picker {
2361 | flex: 1;
2362 | padding-right: 40upx;
2363 | overflow: hidden;
2364 | position: relative;
2365 | }
2366 |
2367 | .cu-form-group picker .picker {
2368 | line-height: 100upx;
2369 | font-size: 28upx;
2370 | text-overflow: ellipsis;
2371 | white-space: nowrap;
2372 | overflow: hidden;
2373 | width: 100%;
2374 | text-align: right;
2375 | }
2376 |
2377 | .cu-form-group picker::after {
2378 | font-family: cuIcon;
2379 | display: block;
2380 | content: "\e6a3";
2381 | position: absolute;
2382 | font-size: 34upx;
2383 | color: #8799a3;
2384 | line-height: 100upx;
2385 | width: 60upx;
2386 | text-align: center;
2387 | top: 0;
2388 | bottom: 0;
2389 | right: -20upx;
2390 | margin: auto;
2391 | }
2392 |
2393 | .cu-form-group textarea[disabled],
2394 | .cu-form-group textarea[disabled] .placeholder {
2395 | color: transparent;
2396 | }
2397 |
2398 | /* ==================
2399 | 模态窗口
2400 | ==================== */
2401 |
2402 | .cu-modal {
2403 | position: fixed;
2404 | top: 0;
2405 | right: 0;
2406 | bottom: 0;
2407 | left: 0;
2408 | z-index: 1110;
2409 | opacity: 0;
2410 | outline: 0;
2411 | text-align: center;
2412 | -ms-transform: scale(1.185);
2413 | transform: scale(1.185);
2414 | backface-visibility: hidden;
2415 | perspective: 2000upx;
2416 | background: rgba(0, 0, 0, 0.6);
2417 | transition: all 0.3s ease-in-out 0s;
2418 | pointer-events: none;
2419 | }
2420 |
2421 | .cu-modal::before {
2422 | content: "\200B";
2423 | display: inline-block;
2424 | height: 100%;
2425 | vertical-align: middle;
2426 | }
2427 |
2428 | .cu-modal.show {
2429 | opacity: 1;
2430 | transition-duration: 0.3s;
2431 | -ms-transform: scale(1);
2432 | transform: scale(1);
2433 | overflow-x: hidden;
2434 | overflow-y: auto;
2435 | pointer-events: auto;
2436 | }
2437 |
2438 | .cu-dialog {
2439 | position: relative;
2440 | display: inline-block;
2441 | vertical-align: middle;
2442 | margin-left: auto;
2443 | margin-right: auto;
2444 | width: 680upx;
2445 | max-width: 100%;
2446 | background-color: #f8f8f8;
2447 | border-radius: 10upx;
2448 | overflow: hidden;
2449 | }
2450 |
2451 | .cu-modal.bottom-modal::before {
2452 | vertical-align: bottom;
2453 | }
2454 |
2455 | .cu-modal.bottom-modal .cu-dialog {
2456 | width: 100%;
2457 | border-radius: 0;
2458 | }
2459 |
2460 | .cu-modal.bottom-modal {
2461 | margin-bottom: -1000upx;
2462 | }
2463 |
2464 | .cu-modal.bottom-modal.show {
2465 | margin-bottom: 0;
2466 | }
2467 |
2468 | .cu-modal.drawer-modal {
2469 | transform: scale(1);
2470 | display: flex;
2471 | }
2472 |
2473 | .cu-modal.drawer-modal .cu-dialog {
2474 | height: 100%;
2475 | min-width: 200upx;
2476 | border-radius: 0;
2477 | margin: initial;
2478 | transition-duration: 0.3s;
2479 | }
2480 |
2481 | .cu-modal.drawer-modal.justify-start .cu-dialog {
2482 | transform: translateX(-100%);
2483 | }
2484 |
2485 | .cu-modal.drawer-modal.justify-end .cu-dialog {
2486 | transform: translateX(100%);
2487 | }
2488 |
2489 | .cu-modal.drawer-modal.show .cu-dialog {
2490 | transform: translateX(0%);
2491 | }
2492 | .cu-modal .cu-dialog>.cu-bar:first-child .action{
2493 | min-width: 100rpx;
2494 | margin-right: 0;
2495 | min-height: 100rpx;
2496 | }
2497 | /* ==================
2498 | 轮播
2499 | ==================== */
2500 | swiper .a-swiper-dot {
2501 | display: inline-block;
2502 | width: 16upx;
2503 | height: 16upx;
2504 | background: rgba(0, 0, 0, .3);
2505 | border-radius: 50%;
2506 | vertical-align: middle;
2507 | }
2508 |
2509 | swiper[class*="-dot"] .wx-swiper-dots,
2510 | swiper[class*="-dot"] .a-swiper-dots,
2511 | swiper[class*="-dot"] .uni-swiper-dots {
2512 | display: flex;
2513 | align-items: center;
2514 | width: 100%;
2515 | justify-content: center;
2516 | }
2517 |
2518 | swiper.square-dot .wx-swiper-dot,
2519 | swiper.square-dot .a-swiper-dot,
2520 | swiper.square-dot .uni-swiper-dot {
2521 | background-color: #ffffff;
2522 | opacity: 0.4;
2523 | width: 10upx;
2524 | height: 10upx;
2525 | border-radius: 20upx;
2526 | margin: 0 8upx !important;
2527 | }
2528 |
2529 | swiper.square-dot .wx-swiper-dot.wx-swiper-dot-active,
2530 | swiper.square-dot .a-swiper-dot.a-swiper-dot-active,
2531 | swiper.square-dot .uni-swiper-dot.uni-swiper-dot-active {
2532 | opacity: 1;
2533 | width: 30upx;
2534 | }
2535 |
2536 | swiper.round-dot .wx-swiper-dot,
2537 | swiper.round-dot .a-swiper-dot,
2538 | swiper.round-dot .uni-swiper-dot {
2539 | width: 10upx;
2540 | height: 10upx;
2541 | position: relative;
2542 | margin: 4upx 8upx !important;
2543 | }
2544 |
2545 | swiper.round-dot .wx-swiper-dot.wx-swiper-dot-active::after,
2546 | swiper.round-dot .a-swiper-dot.a-swiper-dot-active::after,
2547 | swiper.round-dot .uni-swiper-dot.uni-swiper-dot-active::after {
2548 | content: "";
2549 | position: absolute;
2550 | width: 10upx;
2551 | height: 10upx;
2552 | top: 0upx;
2553 | left: 0upx;
2554 | right: 0;
2555 | bottom: 0;
2556 | margin: auto;
2557 | background-color: #ffffff;
2558 | border-radius: 20upx;
2559 | }
2560 |
2561 | swiper.round-dot .wx-swiper-dot.wx-swiper-dot-active,
2562 | swiper.round-dot .a-swiper-dot.a-swiper-dot-active,
2563 | swiper.round-dot .uni-swiper-dot.uni-swiper-dot-active {
2564 | width: 18upx;
2565 | height: 18upx;
2566 | }
2567 |
2568 | .screen-swiper {
2569 | min-height: 375upx;
2570 | }
2571 |
2572 | .screen-swiper image,
2573 | .screen-swiper video,
2574 | .swiper-item image,
2575 | .swiper-item video {
2576 | width: 100%;
2577 | display: block;
2578 | height: 100%;
2579 | margin: 0;
2580 | pointer-events: none;
2581 | }
2582 |
2583 | .card-swiper {
2584 | height: 420upx !important;
2585 | }
2586 |
2587 | .card-swiper swiper-item {
2588 | width: 610upx !important;
2589 | left: 70upx;
2590 | box-sizing: border-box;
2591 | padding: 40upx 0upx 70upx;
2592 | overflow: initial;
2593 | }
2594 |
2595 | .card-swiper swiper-item .swiper-item {
2596 | width: 100%;
2597 | display: block;
2598 | height: 100%;
2599 | border-radius: 10upx;
2600 | transform: scale(0.9);
2601 | transition: all 0.2s ease-in 0s;
2602 | overflow: hidden;
2603 | }
2604 |
2605 | .card-swiper swiper-item.cur .swiper-item {
2606 | transform: none;
2607 | transition: all 0.2s ease-in 0s;
2608 | }
2609 |
2610 |
2611 | .tower-swiper {
2612 | height: 420upx;
2613 | position: relative;
2614 | max-width: 750upx;
2615 | overflow: hidden;
2616 | }
2617 |
2618 | .tower-swiper .tower-item {
2619 | position: absolute;
2620 | width: 300upx;
2621 | height: 380upx;
2622 | top: 0;
2623 | bottom: 0;
2624 | left: 50%;
2625 | margin: auto;
2626 | transition: all 0.2s ease-in 0s;
2627 | opacity: 1;
2628 | }
2629 |
2630 | .tower-swiper .tower-item.none {
2631 | opacity: 0;
2632 | }
2633 |
2634 | .tower-swiper .tower-item .swiper-item {
2635 | width: 100%;
2636 | height: 100%;
2637 | border-radius: 6upx;
2638 | overflow: hidden;
2639 | }
2640 |
2641 | /* ==================
2642 | 步骤条
2643 | ==================== */
2644 |
2645 | .cu-steps {
2646 | display: flex;
2647 | }
2648 |
2649 | scroll-view.cu-steps {
2650 | display: block;
2651 | white-space: nowrap;
2652 | }
2653 |
2654 | scroll-view.cu-steps .cu-item {
2655 | display: inline-block;
2656 | }
2657 |
2658 | .cu-steps .cu-item {
2659 | flex: 1;
2660 | text-align: center;
2661 | position: relative;
2662 | min-width: 100upx;
2663 | }
2664 |
2665 | .cu-steps .cu-item:not([class*="text-"]) {
2666 | color: #8799a3;
2667 | }
2668 |
2669 | .cu-steps .cu-item [class*="cuIcon-"],
2670 | .cu-steps .cu-item .num {
2671 | display: block;
2672 | font-size: 40upx;
2673 | line-height: 80upx;
2674 | }
2675 |
2676 | .cu-steps .cu-item::before,
2677 | .cu-steps .cu-item::after,
2678 | .cu-steps.steps-arrow .cu-item::before,
2679 | .cu-steps.steps-arrow .cu-item::after {
2680 | content: "";
2681 | display: block;
2682 | position: absolute;
2683 | height: 0px;
2684 | width: calc(100% - 80upx);
2685 | border-bottom: 1px solid #ccc;
2686 | left: calc(0px - (100% - 80upx) / 2);
2687 | top: 40upx;
2688 | z-index: 0;
2689 | }
2690 |
2691 | .cu-steps.steps-arrow .cu-item::before,
2692 | .cu-steps.steps-arrow .cu-item::after {
2693 | content: "\e6a3";
2694 | font-family: 'cuIcon';
2695 | height: 30upx;
2696 | border-bottom-width: 0px;
2697 | line-height: 30upx;
2698 | top: 0;
2699 | bottom: 0;
2700 | margin: auto;
2701 | color: #ccc;
2702 | }
2703 |
2704 | .cu-steps.steps-bottom .cu-item::before,
2705 | .cu-steps.steps-bottom .cu-item::after {
2706 | bottom: 40upx;
2707 | top: initial;
2708 | }
2709 |
2710 | .cu-steps .cu-item::after {
2711 | border-bottom: 1px solid currentColor;
2712 | width: 0px;
2713 | transition: all 0.3s ease-in-out 0s;
2714 | }
2715 |
2716 | .cu-steps .cu-item[class*="text-"]::after {
2717 | width: calc(100% - 80upx);
2718 | color: currentColor;
2719 | }
2720 |
2721 | .cu-steps .cu-item:first-child::before,
2722 | .cu-steps .cu-item:first-child::after {
2723 | display: none;
2724 | }
2725 |
2726 | .cu-steps .cu-item .num {
2727 | width: 40upx;
2728 | height: 40upx;
2729 | border-radius: 50%;
2730 | line-height: 40upx;
2731 | margin: 20upx auto;
2732 | font-size: 24upx;
2733 | border: 1px solid currentColor;
2734 | position: relative;
2735 | overflow: hidden;
2736 | }
2737 |
2738 | .cu-steps .cu-item[class*="text-"] .num {
2739 | background-color: currentColor;
2740 | }
2741 |
2742 | .cu-steps .cu-item .num::before,
2743 | .cu-steps .cu-item .num::after {
2744 | content: attr(data-index);
2745 | position: absolute;
2746 | left: 0;
2747 | right: 0;
2748 | top: 0;
2749 | bottom: 0;
2750 | margin: auto;
2751 | transition: all 0.3s ease-in-out 0s;
2752 | transform: translateY(0upx);
2753 | }
2754 |
2755 | .cu-steps .cu-item[class*="text-"] .num::before {
2756 | transform: translateY(-40upx);
2757 | color: #ffffff;
2758 | }
2759 |
2760 | .cu-steps .cu-item .num::after {
2761 | transform: translateY(40upx);
2762 | color: #ffffff;
2763 | transition: all 0.3s ease-in-out 0s;
2764 | }
2765 |
2766 | .cu-steps .cu-item[class*="text-"] .num::after {
2767 | content: "\e645";
2768 | font-family: 'cuIcon';
2769 | color: #ffffff;
2770 | transform: translateY(0upx);
2771 | }
2772 |
2773 | .cu-steps .cu-item[class*="text-"] .num.err::after {
2774 | content: "\e646";
2775 | }
2776 |
2777 | /* ==================
2778 | 布局
2779 | ==================== */
2780 |
2781 | /* -- flex弹性布局 -- */
2782 |
2783 | .flex {
2784 | display: flex;
2785 | }
2786 |
2787 | .basis-xs {
2788 | flex-basis: 20%;
2789 | }
2790 |
2791 | .basis-sm {
2792 | flex-basis: 40%;
2793 | }
2794 |
2795 | .basis-df {
2796 | flex-basis: 50%;
2797 | }
2798 |
2799 | .basis-lg {
2800 | flex-basis: 60%;
2801 | }
2802 |
2803 | .basis-xl {
2804 | flex-basis: 80%;
2805 | }
2806 |
2807 | .flex-sub {
2808 | flex: 1;
2809 | }
2810 |
2811 | .flex-twice {
2812 | flex: 2;
2813 | }
2814 |
2815 | .flex-treble {
2816 | flex: 3;
2817 | }
2818 |
2819 | .flex-direction {
2820 | flex-direction: column;
2821 | }
2822 |
2823 | .flex-wrap {
2824 | flex-wrap: wrap;
2825 | }
2826 |
2827 | .align-start {
2828 | align-items: flex-start;
2829 | }
2830 |
2831 | .align-end {
2832 | align-items: flex-end;
2833 | }
2834 |
2835 | .align-center {
2836 | align-items: center;
2837 | }
2838 |
2839 | .align-stretch {
2840 | align-items: stretch;
2841 | }
2842 |
2843 | .self-start {
2844 | align-self: flex-start;
2845 | }
2846 |
2847 | .self-center {
2848 | align-self: flex-center;
2849 | }
2850 |
2851 | .self-end {
2852 | align-self: flex-end;
2853 | }
2854 |
2855 | .self-stretch {
2856 | align-self: stretch;
2857 | }
2858 |
2859 | .align-stretch {
2860 | align-items: stretch;
2861 | }
2862 |
2863 | .justify-start {
2864 | justify-content: flex-start;
2865 | }
2866 |
2867 | .justify-end {
2868 | justify-content: flex-end;
2869 | }
2870 |
2871 | .justify-center {
2872 | justify-content: center;
2873 | }
2874 |
2875 | .justify-between {
2876 | justify-content: space-between;
2877 | }
2878 |
2879 | .justify-around {
2880 | justify-content: space-around;
2881 | }
2882 |
2883 | /* grid布局 */
2884 |
2885 | .grid {
2886 | display: flex;
2887 | flex-wrap: wrap;
2888 | }
2889 |
2890 | .grid.grid-square {
2891 | overflow: hidden;
2892 | }
2893 |
2894 | .grid.grid-square .cu-tag {
2895 | position: absolute;
2896 | right: 0;
2897 | top: 0;
2898 | border-bottom-left-radius: 6upx;
2899 | padding: 6upx 12upx;
2900 | height: auto;
2901 | background-color: rgba(0, 0, 0, 0.5);
2902 | }
2903 |
2904 | .grid.grid-square>view>text[class*="cuIcon-"] {
2905 | font-size: 52upx;
2906 | position: absolute;
2907 | color: #8799a3;
2908 | margin: auto;
2909 | top: 0;
2910 | bottom: 0;
2911 | left: 0;
2912 | right: 0;
2913 | display: flex;
2914 | justify-content: center;
2915 | align-items: center;
2916 | flex-direction: column;
2917 | }
2918 |
2919 | .grid.grid-square>view {
2920 | margin-right: 20upx;
2921 | margin-bottom: 20upx;
2922 | border-radius: 6upx;
2923 | position: relative;
2924 | overflow: hidden;
2925 | }
2926 | .grid.grid-square>view.bg-img image {
2927 | width: 100%;
2928 | height: 100%;
2929 | position: absolute;
2930 | }
2931 | .grid.col-1.grid-square>view {
2932 | padding-bottom: 100%;
2933 | height: 0;
2934 | margin-right: 0;
2935 | }
2936 |
2937 | .grid.col-2.grid-square>view {
2938 | padding-bottom: calc((100% - 20upx)/2);
2939 | height: 0;
2940 | width: calc((100% - 20upx)/2);
2941 | }
2942 |
2943 | .grid.col-3.grid-square>view {
2944 | padding-bottom: calc((100% - 40upx)/3);
2945 | height: 0;
2946 | width: calc((100% - 40upx)/3);
2947 | }
2948 |
2949 | .grid.col-4.grid-square>view {
2950 | padding-bottom: calc((100% - 60upx)/4);
2951 | height: 0;
2952 | width: calc((100% - 60upx)/4);
2953 | }
2954 |
2955 | .grid.col-5.grid-square>view {
2956 | padding-bottom: calc((100% - 80upx)/5);
2957 | height: 0;
2958 | width: calc((100% - 80upx)/5);
2959 | }
2960 |
2961 | .grid.col-2.grid-square>view:nth-child(2n),
2962 | .grid.col-3.grid-square>view:nth-child(3n),
2963 | .grid.col-4.grid-square>view:nth-child(4n),
2964 | .grid.col-5.grid-square>view:nth-child(5n) {
2965 | margin-right: 0;
2966 | }
2967 |
2968 | .grid.col-1>view {
2969 | width: 100%;
2970 | }
2971 |
2972 | .grid.col-2>view {
2973 | width: 50%;
2974 | }
2975 |
2976 | .grid.col-3>view {
2977 | width: 33.33%;
2978 | }
2979 |
2980 | .grid.col-4>view {
2981 | width: 25%;
2982 | }
2983 |
2984 | .grid.col-5>view {
2985 | width: 20%;
2986 | }
2987 |
2988 | /* -- 内外边距 -- */
2989 |
2990 | .margin-0 {
2991 | margin: 0;
2992 | }
2993 |
2994 | .margin-xs {
2995 | margin: 10upx;
2996 | }
2997 |
2998 | .margin-sm {
2999 | margin: 20upx;
3000 | }
3001 |
3002 | .margin {
3003 | margin: 30upx;
3004 | }
3005 |
3006 | .margin-lg {
3007 | margin: 40upx;
3008 | }
3009 |
3010 | .margin-xl {
3011 | margin: 50upx;
3012 | }
3013 |
3014 | .margin-top-xs {
3015 | margin-top: 10upx;
3016 | }
3017 |
3018 | .margin-top-sm {
3019 | margin-top: 20upx;
3020 | }
3021 |
3022 | .margin-top {
3023 | margin-top: 30upx;
3024 | }
3025 |
3026 | .margin-top-lg {
3027 | margin-top: 40upx;
3028 | }
3029 |
3030 | .margin-top-xl {
3031 | margin-top: 50upx;
3032 | }
3033 |
3034 | .margin-right-5 {
3035 | margin-right: 5upx;
3036 | }
3037 |
3038 | .margin-right-xs {
3039 | margin-right: 10upx;
3040 | }
3041 |
3042 | .margin-right-sm {
3043 | margin-right: 20upx;
3044 | }
3045 |
3046 | .margin-right {
3047 | margin-right: 30upx;
3048 | }
3049 |
3050 | .margin-right-lg {
3051 | margin-right: 40upx;
3052 | }
3053 |
3054 | .margin-right-xl {
3055 | margin-right: 50upx;
3056 | }
3057 |
3058 | .margin-bottom-xs {
3059 | margin-bottom: 10upx;
3060 | }
3061 |
3062 | .margin-bottom-sm {
3063 | margin-bottom: 20upx;
3064 | }
3065 |
3066 | .margin-bottom {
3067 | margin-bottom: 30upx;
3068 | }
3069 |
3070 | .margin-bottom-lg {
3071 | margin-bottom: 40upx;
3072 | }
3073 |
3074 | .margin-bottom-xl {
3075 | margin-bottom: 50upx;
3076 | }
3077 |
3078 | .margin-left-xs {
3079 | margin-left: 10upx;
3080 | }
3081 |
3082 | .margin-left-sm {
3083 | margin-left: 20upx;
3084 | }
3085 |
3086 | .margin-left {
3087 | margin-left: 30upx;
3088 | }
3089 |
3090 | .margin-left-lg {
3091 | margin-left: 40upx;
3092 | }
3093 |
3094 | .margin-left-xl {
3095 | margin-left: 50upx;
3096 | }
3097 |
3098 | .margin-lr-xs {
3099 | margin-left: 10upx;
3100 | margin-right: 10upx;
3101 | }
3102 |
3103 | .margin-lr-sm {
3104 | margin-left: 20upx;
3105 | margin-right: 20upx;
3106 | }
3107 |
3108 | .margin-lr {
3109 | margin-left: 30upx;
3110 | margin-right: 30upx;
3111 | }
3112 |
3113 | .margin-lr-lg {
3114 | margin-left: 40upx;
3115 | margin-right: 40upx;
3116 | }
3117 |
3118 | .margin-lr-xl {
3119 | margin-left: 50upx;
3120 | margin-right: 50upx;
3121 | }
3122 |
3123 | .margin-tb-xs {
3124 | margin-top: 10upx;
3125 | margin-bottom: 10upx;
3126 | }
3127 |
3128 | .margin-tb-sm {
3129 | margin-top: 20upx;
3130 | margin-bottom: 20upx;
3131 | }
3132 |
3133 | .margin-tb {
3134 | margin-top: 30upx;
3135 | margin-bottom: 30upx;
3136 | }
3137 |
3138 | .margin-tb-lg {
3139 | margin-top: 40upx;
3140 | margin-bottom: 40upx;
3141 | }
3142 |
3143 | .margin-tb-xl {
3144 | margin-top: 50upx;
3145 | margin-bottom: 50upx;
3146 | }
3147 |
3148 | .padding-0 {
3149 | padding: 0;
3150 | }
3151 |
3152 | .padding-xs {
3153 | padding: 10upx;
3154 | }
3155 |
3156 | .padding-sm {
3157 | padding: 20upx;
3158 | }
3159 |
3160 | .padding {
3161 | padding: 30upx;
3162 | }
3163 |
3164 | .padding-lg {
3165 | padding: 40upx;
3166 | }
3167 |
3168 | .padding-xl {
3169 | padding: 50upx;
3170 | }
3171 |
3172 | .padding-top-xs {
3173 | padding-top: 10upx;
3174 | }
3175 |
3176 | .padding-top-sm {
3177 | padding-top: 20upx;
3178 | }
3179 |
3180 | .padding-top {
3181 | padding-top: 30upx;
3182 | }
3183 |
3184 | .padding-top-lg {
3185 | padding-top: 40upx;
3186 | }
3187 |
3188 | .padding-top-xl {
3189 | padding-top: 50upx;
3190 | }
3191 |
3192 | .padding-right-xs {
3193 | padding-right: 10upx;
3194 | }
3195 |
3196 | .padding-right-sm {
3197 | padding-right: 20upx;
3198 | }
3199 |
3200 | .padding-right {
3201 | padding-right: 30upx;
3202 | }
3203 |
3204 | .padding-right-lg {
3205 | padding-right: 40upx;
3206 | }
3207 |
3208 | .padding-right-xl {
3209 | padding-right: 50upx;
3210 | }
3211 |
3212 | .padding-bottom-xs {
3213 | padding-bottom: 10upx;
3214 | }
3215 |
3216 | .padding-bottom-sm {
3217 | padding-bottom: 20upx;
3218 | }
3219 |
3220 | .padding-bottom {
3221 | padding-bottom: 30upx;
3222 | }
3223 |
3224 | .padding-bottom-lg {
3225 | padding-bottom: 40upx;
3226 | }
3227 |
3228 | .padding-bottom-xl {
3229 | padding-bottom: 50upx;
3230 | }
3231 |
3232 | .padding-left-xs {
3233 | padding-left: 10upx;
3234 | }
3235 |
3236 | .padding-left-sm {
3237 | padding-left: 20upx;
3238 | }
3239 |
3240 | .padding-left {
3241 | padding-left: 30upx;
3242 | }
3243 |
3244 | .padding-left-lg {
3245 | padding-left: 40upx;
3246 | }
3247 |
3248 | .padding-left-xl {
3249 | padding-left: 50upx;
3250 | }
3251 |
3252 | .padding-lr-xs {
3253 | padding-left: 10upx;
3254 | padding-right: 10upx;
3255 | }
3256 |
3257 | .padding-lr-sm {
3258 | padding-left: 20upx;
3259 | padding-right: 20upx;
3260 | }
3261 |
3262 | .padding-lr {
3263 | padding-left: 30upx;
3264 | padding-right: 30upx;
3265 | }
3266 |
3267 | .padding-lr-lg {
3268 | padding-left: 40upx;
3269 | padding-right: 40upx;
3270 | }
3271 |
3272 | .padding-lr-xl {
3273 | padding-left: 50upx;
3274 | padding-right: 50upx;
3275 | }
3276 |
3277 | .padding-tb-xs {
3278 | padding-top: 10upx;
3279 | padding-bottom: 10upx;
3280 | }
3281 |
3282 | .padding-tb-sm {
3283 | padding-top: 20upx;
3284 | padding-bottom: 20upx;
3285 | }
3286 |
3287 | .padding-tb {
3288 | padding-top: 30upx;
3289 | padding-bottom: 30upx;
3290 | }
3291 |
3292 | .padding-tb-lg {
3293 | padding-top: 40upx;
3294 | padding-bottom: 40upx;
3295 | }
3296 |
3297 | .padding-tb-xl {
3298 | padding-top: 50upx;
3299 | padding-bottom: 50upx;
3300 | }
3301 |
3302 | /* -- 浮动 -- */
3303 |
3304 | .cf::after,
3305 | .cf::before {
3306 | content: " ";
3307 | display: table;
3308 | }
3309 |
3310 | .cf::after {
3311 | clear: both;
3312 | }
3313 |
3314 | .fl {
3315 | float: left;
3316 | }
3317 |
3318 | .fr {
3319 | float: right;
3320 | }
3321 |
3322 | /* ==================
3323 | 背景
3324 | ==================== */
3325 |
3326 | .line-red::after,
3327 | .lines-red::after {
3328 | border-color: #e54d42;
3329 | }
3330 |
3331 | .line-orange::after,
3332 | .lines-orange::after {
3333 | border-color: #f37b1d;
3334 | }
3335 |
3336 | .line-yellow::after,
3337 | .lines-yellow::after {
3338 | border-color: #fbbd08;
3339 | }
3340 |
3341 | .line-olive::after,
3342 | .lines-olive::after {
3343 | border-color: #8dc63f;
3344 | }
3345 |
3346 | .line-green::after,
3347 | .lines-green::after {
3348 | border-color: #39b54a;
3349 | }
3350 |
3351 | .line-cyan::after,
3352 | .lines-cyan::after {
3353 | border-color: #1cbbb4;
3354 | }
3355 |
3356 | .line-blue::after,
3357 | .lines-blue::after {
3358 | border-color: #0081ff;
3359 | }
3360 |
3361 | .line-purple::after,
3362 | .lines-purple::after {
3363 | border-color: #6739b6;
3364 | }
3365 |
3366 | .line-mauve::after,
3367 | .lines-mauve::after {
3368 | border-color: #9c26b0;
3369 | }
3370 |
3371 | .line-pink::after,
3372 | .lines-pink::after {
3373 | border-color: #e03997;
3374 | }
3375 |
3376 | .line-brown::after,
3377 | .lines-brown::after {
3378 | border-color: #a5673f;
3379 | }
3380 |
3381 | .line-grey::after,
3382 | .lines-grey::after {
3383 | border-color: #8799a3;
3384 | }
3385 |
3386 | .line-gray::after,
3387 | .lines-gray::after {
3388 | border-color: #aaaaaa;
3389 | }
3390 |
3391 | .line-black::after,
3392 | .lines-black::after {
3393 | border-color: #333333;
3394 | }
3395 |
3396 | .line-white::after,
3397 | .lines-white::after {
3398 | border-color: #ffffff;
3399 | }
3400 |
3401 | .bg-red {
3402 | background-color: #e54d42;
3403 | color: #ffffff;
3404 | }
3405 |
3406 | .bg-orange {
3407 | background-color: #f37b1d;
3408 | color: #ffffff;
3409 | }
3410 |
3411 | .bg-yellow {
3412 | background-color: #fbbd08;
3413 | color: #333333;
3414 | }
3415 |
3416 | .bg-olive {
3417 | background-color: #8dc63f;
3418 | color: #ffffff;
3419 | }
3420 |
3421 | .bg-green {
3422 | background-color: #39b54a;
3423 | color: #ffffff;
3424 | }
3425 |
3426 | .bg-cyan {
3427 | background-color: #1cbbb4;
3428 | color: #ffffff;
3429 | }
3430 |
3431 | .bg-blue {
3432 | background-color: #007BFF;
3433 | color: #ffffff;
3434 | }
3435 |
3436 | .bg-purple {
3437 | background-color: #6739b6;
3438 | color: #ffffff;
3439 | }
3440 |
3441 | .bg-mauve {
3442 | background-color: #9c26b0;
3443 | color: #ffffff;
3444 | }
3445 |
3446 | .bg-pink {
3447 | background-color: #e03997;
3448 | color: #ffffff;
3449 | }
3450 |
3451 | .bg-brown {
3452 | background-color: #a5673f;
3453 | color: #ffffff;
3454 | }
3455 |
3456 | .bg-grey {
3457 | background-color: #8799a3;
3458 | color: #ffffff;
3459 | }
3460 |
3461 | .bg-gray {
3462 | background-color: #f0f0f0;
3463 | color: #333333;
3464 | }
3465 |
3466 | .bg-black {
3467 | background-color: #333333;
3468 | color: #ffffff;
3469 | }
3470 |
3471 | .bg-white {
3472 | background-color: #ffffff;
3473 | color: #666666;
3474 | }
3475 |
3476 | .bg-shadeTop {
3477 | background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.01));
3478 | color: #ffffff;
3479 | }
3480 |
3481 | .bg-shadeBottom {
3482 | background-image: linear-gradient(rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 1));
3483 | color: #ffffff;
3484 | }
3485 |
3486 | .bg-red.light {
3487 | color: #e54d42;
3488 | background-color: #fadbd9;
3489 | }
3490 |
3491 | .bg-orange.light {
3492 | color: #f37b1d;
3493 | background-color: #fde6d2;
3494 | }
3495 |
3496 | .bg-yellow.light {
3497 | color: #fbbd08;
3498 | background-color: #fef2ced2;
3499 | }
3500 |
3501 | .bg-olive.light {
3502 | color: #8dc63f;
3503 | background-color: #e8f4d9;
3504 | }
3505 |
3506 | .bg-green.light {
3507 | color: #39b54a;
3508 | background-color: #d7f0dbff;
3509 | }
3510 |
3511 | .bg-cyan.light {
3512 | color: #1cbbb4;
3513 | background-color: #d2f1f0;
3514 | }
3515 |
3516 | .bg-blue.light {
3517 | color: #0081ff;
3518 | background-color: #cce6ff;
3519 | }
3520 |
3521 | .bg-purple.light {
3522 | color: #6739b6;
3523 | background-color: #e1d7f0;
3524 | }
3525 |
3526 | .bg-mauve.light {
3527 | color: #9c26b0;
3528 | background-color: #ebd4ef;
3529 | }
3530 |
3531 | .bg-pink.light {
3532 | color: #e03997;
3533 | background-color: #f9d7ea;
3534 | }
3535 |
3536 | .bg-brown.light {
3537 | color: #a5673f;
3538 | background-color: #ede1d9;
3539 | }
3540 |
3541 | .bg-grey.light {
3542 | color: #8799a3;
3543 | background-color: #e7ebed;
3544 | }
3545 |
3546 | .bg-gradual-red {
3547 | background-image: linear-gradient(45deg, #f43f3b, #ec008c);
3548 | color: #ffffff;
3549 | }
3550 |
3551 | .bg-gradual-orange {
3552 | background-image: linear-gradient(45deg, #ff9700, #ed1c24);
3553 | color: #ffffff;
3554 | }
3555 |
3556 | .bg-gradual-green {
3557 | background-image: linear-gradient(45deg, #39b54a, #8dc63f);
3558 | color: #ffffff;
3559 | }
3560 |
3561 | .bg-gradual-purple {
3562 | background-image: linear-gradient(45deg, #9000ff, #5e00ff);
3563 | color: #ffffff;
3564 | }
3565 |
3566 | .bg-gradual-pink {
3567 | background-image: linear-gradient(45deg, #ec008c, #6739b6);
3568 | color: #ffffff;
3569 | }
3570 |
3571 | .bg-gradual-blue {
3572 | background-image: linear-gradient(45deg, #0081ff, #1cbbb4);
3573 | color: #ffffff;
3574 | }
3575 |
3576 | .shadow[class*="-red"] {
3577 | box-shadow: 6upx 6upx 8upx rgba(204, 69, 59, 0.2);
3578 | }
3579 |
3580 | .shadow[class*="-orange"] {
3581 | box-shadow: 6upx 6upx 8upx rgba(217, 109, 26, 0.2);
3582 | }
3583 |
3584 | .shadow[class*="-yellow"] {
3585 | box-shadow: 6upx 6upx 8upx rgba(224, 170, 7, 0.2);
3586 | }
3587 |
3588 | .shadow[class*="-olive"] {
3589 | box-shadow: 6upx 6upx 8upx rgba(124, 173, 55, 0.2);
3590 | }
3591 |
3592 | .shadow[class*="-green"] {
3593 | box-shadow: 6upx 6upx 8upx rgba(48, 156, 63, 0.2);
3594 | }
3595 |
3596 | .shadow[class*="-cyan"] {
3597 | box-shadow: 6upx 6upx 8upx rgba(28, 187, 180, 0.2);
3598 | }
3599 |
3600 | .shadow[class*="-blue"] {
3601 | box-shadow: 6upx 6upx 8upx rgba(0, 102, 204, 0.2);
3602 | }
3603 |
3604 | .shadow[class*="-purple"] {
3605 | box-shadow: 6upx 6upx 8upx rgba(88, 48, 156, 0.2);
3606 | }
3607 |
3608 | .shadow[class*="-mauve"] {
3609 | box-shadow: 6upx 6upx 8upx rgba(133, 33, 150, 0.2);
3610 | }
3611 |
3612 | .shadow[class*="-pink"] {
3613 | box-shadow: 6upx 6upx 8upx rgba(199, 50, 134, 0.2);
3614 | }
3615 |
3616 | .shadow[class*="-brown"] {
3617 | box-shadow: 6upx 6upx 8upx rgba(140, 88, 53, 0.2);
3618 | }
3619 |
3620 | .shadow[class*="-grey"] {
3621 | box-shadow: 6upx 6upx 8upx rgba(114, 130, 138, 0.2);
3622 | }
3623 |
3624 | .shadow[class*="-gray"] {
3625 | box-shadow: 6upx 6upx 8upx rgba(114, 130, 138, 0.2);
3626 | }
3627 |
3628 | .shadow[class*="-black"] {
3629 | box-shadow: 6upx 6upx 8upx rgba(26, 26, 26, 0.2);
3630 | }
3631 |
3632 | .shadow[class*="-white"] {
3633 | box-shadow: 6upx 6upx 8upx rgba(26, 26, 26, 0.2);
3634 | }
3635 |
3636 | .text-shadow[class*="-red"] {
3637 | text-shadow: 6upx 6upx 8upx rgba(204, 69, 59, 0.2);
3638 | }
3639 |
3640 | .text-shadow[class*="-orange"] {
3641 | text-shadow: 6upx 6upx 8upx rgba(217, 109, 26, 0.2);
3642 | }
3643 |
3644 | .text-shadow[class*="-yellow"] {
3645 | text-shadow: 6upx 6upx 8upx rgba(224, 170, 7, 0.2);
3646 | }
3647 |
3648 | .text-shadow[class*="-olive"] {
3649 | text-shadow: 6upx 6upx 8upx rgba(124, 173, 55, 0.2);
3650 | }
3651 |
3652 | .text-shadow[class*="-green"] {
3653 | text-shadow: 6upx 6upx 8upx rgba(48, 156, 63, 0.2);
3654 | }
3655 |
3656 | .text-shadow[class*="-cyan"] {
3657 | text-shadow: 6upx 6upx 8upx rgba(28, 187, 180, 0.2);
3658 | }
3659 |
3660 | .text-shadow[class*="-blue"] {
3661 | text-shadow: 6upx 6upx 8upx rgba(0, 102, 204, 0.2);
3662 | }
3663 |
3664 | .text-shadow[class*="-purple"] {
3665 | text-shadow: 6upx 6upx 8upx rgba(88, 48, 156, 0.2);
3666 | }
3667 |
3668 | .text-shadow[class*="-mauve"] {
3669 | text-shadow: 6upx 6upx 8upx rgba(133, 33, 150, 0.2);
3670 | }
3671 |
3672 | .text-shadow[class*="-pink"] {
3673 | text-shadow: 6upx 6upx 8upx rgba(199, 50, 134, 0.2);
3674 | }
3675 |
3676 | .text-shadow[class*="-brown"] {
3677 | text-shadow: 6upx 6upx 8upx rgba(140, 88, 53, 0.2);
3678 | }
3679 |
3680 | .text-shadow[class*="-grey"] {
3681 | text-shadow: 6upx 6upx 8upx rgba(114, 130, 138, 0.2);
3682 | }
3683 |
3684 | .text-shadow[class*="-gray"] {
3685 | text-shadow: 6upx 6upx 8upx rgba(114, 130, 138, 0.2);
3686 | }
3687 |
3688 | .text-shadow[class*="-black"] {
3689 | text-shadow: 6upx 6upx 8upx rgba(26, 26, 26, 0.2);
3690 | }
3691 |
3692 | .bg-img {
3693 | background-size: cover;
3694 | background-position: center;
3695 | background-repeat: no-repeat;
3696 | }
3697 |
3698 | .bg-mask {
3699 | background-color: #333333;
3700 | position: relative;
3701 | }
3702 |
3703 | .bg-mask::after {
3704 | content: "";
3705 | border-radius: inherit;
3706 | width: 100%;
3707 | height: 100%;
3708 | display: block;
3709 | background-color: rgba(0, 0, 0, 0.4);
3710 | position: absolute;
3711 | left: 0;
3712 | right: 0;
3713 | bottom: 0;
3714 | top: 0;
3715 | }
3716 |
3717 | .bg-mask view,
3718 | .bg-mask cover-view {
3719 | z-index: 5;
3720 | position: relative;
3721 | }
3722 |
3723 | .bg-video {
3724 | position: relative;
3725 | }
3726 |
3727 | .bg-video video {
3728 | display: block;
3729 | height: 100%;
3730 | width: 100%;
3731 | -o-object-fit: cover;
3732 | object-fit: cover;
3733 | position: absolute;
3734 | top: 0;
3735 | z-index: 0;
3736 | pointer-events: none;
3737 | }
3738 |
3739 | /* ==================
3740 | 文本
3741 | ==================== */
3742 |
3743 | .text-xs {
3744 | font-size: 20upx;
3745 | }
3746 |
3747 | .text-sm {
3748 | font-size: 24upx;
3749 | }
3750 |
3751 | .text-df {
3752 | font-size: 28upx;
3753 | }
3754 |
3755 | .text-lg {
3756 | font-size: 32upx;
3757 | }
3758 |
3759 | .text-xl {
3760 | font-size: 36upx;
3761 | }
3762 |
3763 | .text-xxl {
3764 | font-size: 44upx;
3765 | }
3766 |
3767 | .text-sl {
3768 | font-size: 80upx;
3769 | }
3770 |
3771 | .text-xsl {
3772 | font-size: 120upx;
3773 | }
3774 |
3775 | .text-Abc {
3776 | text-transform: Capitalize;
3777 | }
3778 |
3779 | .text-ABC {
3780 | text-transform: Uppercase;
3781 | }
3782 |
3783 | .text-abc {
3784 | text-transform: Lowercase;
3785 | }
3786 |
3787 | .text-price::before {
3788 | content: "¥";
3789 | font-size: 80%;
3790 | margin-right: 4upx;
3791 | }
3792 |
3793 | .text-cut {
3794 | text-overflow: ellipsis;
3795 | white-space: nowrap;
3796 | overflow: hidden;
3797 | }
3798 |
3799 | .text-bold {
3800 | font-weight: bold;
3801 | }
3802 |
3803 | .text-center {
3804 | text-align: center;
3805 | }
3806 |
3807 | .text-content {
3808 | line-height: 1.6;
3809 | }
3810 |
3811 | .text-left {
3812 | text-align: left;
3813 | }
3814 |
3815 | .text-right {
3816 | text-align: right;
3817 | }
3818 |
3819 | .text-red,
3820 | .line-red,
3821 | .lines-red {
3822 | color: #e54d42;
3823 | }
3824 |
3825 | .text-orange,
3826 | .line-orange,
3827 | .lines-orange {
3828 | color: #f37b1d;
3829 | }
3830 |
3831 | .text-yellow,
3832 | .line-yellow,
3833 | .lines-yellow {
3834 | color: #fbbd08;
3835 | }
3836 |
3837 | .text-olive,
3838 | .line-olive,
3839 | .lines-olive {
3840 | color: #8dc63f;
3841 | }
3842 |
3843 | .text-green,
3844 | .line-green,
3845 | .lines-green {
3846 | color: #39b54a;
3847 | }
3848 |
3849 | .text-cyan,
3850 | .line-cyan,
3851 | .lines-cyan {
3852 | color: #1cbbb4;
3853 | }
3854 |
3855 | .text-blue,
3856 | .line-blue,
3857 | .lines-blue {
3858 | color: #007BFF;
3859 | }
3860 |
3861 | .text-purple,
3862 | .line-purple,
3863 | .lines-purple {
3864 | color: #6739b6;
3865 | }
3866 |
3867 | .text-mauve,
3868 | .line-mauve,
3869 | .lines-mauve {
3870 | color: #9c26b0;
3871 | }
3872 |
3873 | .text-pink,
3874 | .line-pink,
3875 | .lines-pink {
3876 | color: #e03997;
3877 | }
3878 |
3879 | .text-brown,
3880 | .line-brown,
3881 | .lines-brown {
3882 | color: #a5673f;
3883 | }
3884 |
3885 | .text-grey,
3886 | .line-grey,
3887 | .lines-grey {
3888 | color: #8799a3;
3889 | }
3890 |
3891 | .text-gray,
3892 | .line-gray,
3893 | .lines-gray {
3894 | color: #aaaaaa;
3895 | }
3896 |
3897 | .text-black,
3898 | .line-black,
3899 | .lines-black {
3900 | color: #333333;
3901 | }
3902 |
3903 | .text-white,
3904 | .line-white,
3905 | .lines-white {
3906 | color: #ffffff;
3907 | }
3908 |
--------------------------------------------------------------------------------
/components/loading/loading.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
12 |
13 |
93 |
--------------------------------------------------------------------------------
/components/modal/modal.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
7 |
8 |
9 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
121 |
122 |
132 |
--------------------------------------------------------------------------------
/main.js:
--------------------------------------------------------------------------------
1 | import Vue from 'vue'
2 | import App from './App'
3 |
4 | Vue.config.productionTip = false
5 |
6 | App.mpType = 'app'
7 |
8 | const app = new Vue({
9 | ...App
10 | })
11 | app.$mount()
12 |
--------------------------------------------------------------------------------
/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "name" : "github4all",
3 | "appid" : "__UNI__0CCB0C0",
4 | "description" : "",
5 | "versionName" : "1.0.0",
6 | "versionCode" : "100",
7 | "transformPx" : false,
8 | /* 5+App特有相关 */
9 | "app-plus" : {
10 | "usingComponents" : true,
11 | "splashscreen" : {
12 | "alwaysShowBeforeRender" : true,
13 | "waiting" : true,
14 | "autoclose" : true,
15 | "delay" : 0
16 | },
17 | /* 模块配置 */
18 | "modules" : {},
19 | /* 应用发布信息 */
20 | "distribute" : {
21 | /* android打包配置 */
22 | "android" : {
23 | "permissions" : [
24 | "",
25 | "",
26 | "",
27 | "",
28 | "",
29 | "",
30 | "",
31 | "",
32 | "",
33 | "",
34 | "",
35 | "",
36 | "",
37 | "",
38 | "",
39 | "",
40 | "",
41 | "",
42 | "",
43 | "",
44 | "",
45 | ""
46 | ]
47 | },
48 | /* ios打包配置 */
49 | "ios" : {},
50 | /* SDK配置 */
51 | "sdkConfigs" : {}
52 | }
53 | },
54 | /* 快应用特有相关 */
55 | "quickapp" : {},
56 | /* 小程序特有相关 */
57 | "mp-weixin" : {
58 | "appid" : "xxxxxxxxxxxxx",
59 | "setting" : {
60 | "urlCheck" : false,
61 | "es6" : false
62 | },
63 | "usingComponents" : true
64 | },
65 | "mp-alipay" : {
66 | "usingComponents" : true
67 | },
68 | "mp-baidu" : {
69 | "usingComponents" : true
70 | },
71 | "mp-toutiao" : {
72 | "usingComponents" : true
73 | },
74 | "h5" : {
75 | "title" : "Trending",
76 | "domain" : "https://www.telami.cn",
77 | "router" : {
78 | "base" : "/trending/"
79 | }
80 | }
81 | }
82 |
--------------------------------------------------------------------------------
/pages.json:
--------------------------------------------------------------------------------
1 | {
2 | "pages": [
3 | {
4 | "path": "pages/index/index",
5 | "style": {
6 | "navigationBarTitleText": "trending",
7 | "navigationStyle":"custom"
8 | }
9 | },
10 | {
11 | "path": "pages/web-view/web-view"
12 | }
13 | ],
14 | "globalStyle": {
15 | "navigationBarTextStyle": "black",
16 | "navigationBarTitleText": "uni-app",
17 | "navigationBarBackgroundColor": "#F8F8F8",
18 | "backgroundColor": "#F8F8F8"
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/pages/index/index.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 | {{item.author}}
9 | /
10 | {{item.name}}
11 |
12 |
13 | Built by
14 |
16 |
17 | {{item.description}}
18 |
19 |
20 |
21 | {{item.language}}
22 |
23 |
24 |
25 | {{item.stars}}
26 |
27 |
28 |
29 | {{item.forks}}
30 |
31 |
32 |
33 | {{item.currentPeriodStars}}
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
114 |
115 |
170 |
--------------------------------------------------------------------------------
/pages/web-view/web-view.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
29 |
30 |
33 |
--------------------------------------------------------------------------------
/static/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/telami/github4all/880036d156e7c46ebeff8abfb21008599fd7d763/static/1.png
--------------------------------------------------------------------------------
/static/b3log.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/telami/github4all/880036d156e7c46ebeff8abfb21008599fd7d763/static/b3log.png
--------------------------------------------------------------------------------
/static/index.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/telami/github4all/880036d156e7c46ebeff8abfb21008599fd7d763/static/index.png
--------------------------------------------------------------------------------
/static/language.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/telami/github4all/880036d156e7c46ebeff8abfb21008599fd7d763/static/language.png
--------------------------------------------------------------------------------
/static/since.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/telami/github4all/880036d156e7c46ebeff8abfb21008599fd7d763/static/since.png
--------------------------------------------------------------------------------
/uni.scss:
--------------------------------------------------------------------------------
1 | /**
2 | * 这里是uni-app内置的常用样式变量
3 | *
4 | * uni-app 官方扩展插件及插件市场(https://ext.dcloud.net.cn)上很多三方插件均使用了这些样式变量
5 | * 如果你是插件开发者,建议你使用scss预处理,并在插件代码中直接使用这些变量(无需 import 这个文件),方便用户通过搭积木的方式开发整体风格一致的App
6 | *
7 | */
8 |
9 | /**
10 | * 如果你是App开发者(插件使用者),你可以通过修改这些变量来定制自己的插件主题,实现自定义主题功能
11 | *
12 | * 如果你的项目同样使用了scss预处理,你也可以直接在你的 scss 代码中使用如下变量,同时无需 import 这个文件
13 | */
14 |
15 | /* 颜色变量 */
16 |
17 | /* 行为相关颜色 */
18 | $uni-color-primary: #007aff;
19 | $uni-color-success: #4cd964;
20 | $uni-color-warning: #f0ad4e;
21 | $uni-color-error: #dd524d;
22 |
23 | /* 文字基本颜色 */
24 | $uni-text-color:#333;//基本色
25 | $uni-text-color-inverse:#fff;//反色
26 | $uni-text-color-grey:#999;//辅助灰色,如加载更多的提示信息
27 | $uni-text-color-placeholder: #808080;
28 | $uni-text-color-disable:#c0c0c0;
29 |
30 | /* 背景颜色 */
31 | $uni-bg-color:#ffffff;
32 | $uni-bg-color-grey:#f8f8f8;
33 | $uni-bg-color-hover:#f1f1f1;//点击状态颜色
34 | $uni-bg-color-mask:rgba(0, 0, 0, 0.4);//遮罩颜色
35 |
36 | /* 边框颜色 */
37 | $uni-border-color:#c8c7cc;
38 |
39 | /* 尺寸变量 */
40 |
41 | /* 文字尺寸 */
42 | $uni-font-size-sm:24upx;
43 | $uni-font-size-base:28upx;
44 | $uni-font-size-lg:32upx;
45 |
46 | /* 图片尺寸 */
47 | $uni-img-size-sm:40upx;
48 | $uni-img-size-base:52upx;
49 | $uni-img-size-lg:80upx;
50 |
51 | /* Border Radius */
52 | $uni-border-radius-sm: 4upx;
53 | $uni-border-radius-base: 6upx;
54 | $uni-border-radius-lg: 12upx;
55 | $uni-border-radius-circle: 50%;
56 |
57 | /* 水平间距 */
58 | $uni-spacing-row-sm: 10px;
59 | $uni-spacing-row-base: 20upx;
60 | $uni-spacing-row-lg: 30upx;
61 |
62 | /* 垂直间距 */
63 | $uni-spacing-col-sm: 8upx;
64 | $uni-spacing-col-base: 16upx;
65 | $uni-spacing-col-lg: 24upx;
66 |
67 | /* 透明度 */
68 | $uni-opacity-disabled: 0.3; // 组件禁用态的透明度
69 |
70 | /* 文章场景相关 */
71 | $uni-color-title: #2C405A; // 文章标题颜色
72 | $uni-font-size-title:40upx;
73 | $uni-color-subtitle: #555555; // 二级标题颜色
74 | $uni-font-size-subtitle:36upx;
75 | $uni-color-paragraph: #3F536E; // 文章段落颜色
76 | $uni-font-size-paragraph:30upx;
--------------------------------------------------------------------------------
/utils/index.js:
--------------------------------------------------------------------------------
1 | import Request from './request'
2 |
3 | const http = new Request();
4 | http.setConfig((config) => {
5 | config.baseUrl = 'https://github-trending-api.now.sh';
6 | config.header = {
7 | }
8 | return config
9 | })
10 | http.interceptor.request((config, cancel) => { /* 请求之前拦截器 */
11 | config.header = {
12 | ...config.header
13 | }
14 | /*
15 | if (!token) { // 如果token不存在,调用cancel 会取消本次请求,但是该函数的catch() 仍会执行
16 | cancel('token 不存在') // 接收一个参数,会传给catch((err) => {}) err.errMsg === 'token 不存在'
17 | }
18 | */
19 | return config;
20 | })
21 | http.interceptor.response((response) => { /* 请求之后拦截器 */
22 | //console.log(response);
23 | return response;
24 | })
25 | export {
26 | http
27 | };
28 |
29 |
30 |
--------------------------------------------------------------------------------
/utils/request.js:
--------------------------------------------------------------------------------
1 | /**
2 | * Request 0.0.5
3 | * @Class uni-app request网络请求库
4 | * @Author lu-ch
5 | * @Date 2019-06-05
6 | * @Email webwork.s@qq.com
7 | * **/
8 | export default class Request {
9 | config = {
10 | baseUrl: '',
11 | header: {
12 | 'Content-Type': 'application/json;charset=UTF-8'
13 | },
14 | method: 'GET',
15 | dataType: 'json',
16 | responseType: 'text',
17 | success () {
18 | },
19 | fail () {
20 | },
21 | complete () {
22 | }
23 | }
24 |
25 | static posUrl (url) { /* 判断url是否为绝对路径 */
26 | return /(http|https):\/\/([\w.]+\/?)\S*/.test(url)
27 | }
28 |
29 | interceptor = {
30 | request (f) {
31 | if (f) {
32 | Request.requestBeforeFun = f
33 | }
34 | },
35 | response (f) {
36 | if (f) {
37 | Request.requestComFun = f
38 | }
39 | }
40 | }
41 |
42 | static requestBeforeFun (config) {
43 | return config
44 | }
45 |
46 | static requestComFun (response) {
47 | return response
48 | }
49 |
50 | setConfig (f) {
51 | this.config = f(this.config)
52 | }
53 |
54 | request (options = {}) {
55 | options.baseUrl = options.baseUrl || this.config.baseUrl
56 | options.dataType = options.dataType || this.config.dataType
57 | options.url = Request.posUrl(options.url) ? options.url : (options.baseUrl + options.url)
58 | options.data = options.data || {}
59 | options.header = options.header || this.config.header
60 | options.method = options.method || this.config.method
61 | return new Promise((resolve, reject) => {
62 | let next = true
63 | let _config = null
64 | options.complete = (response) => {
65 | let statusCode = response.statusCode
66 | response.config = _config
67 | response = Request.requestComFun(response)
68 | if (statusCode === 200) { // 成功
69 | resolve(response)
70 | } else {
71 | reject(response)
72 | }
73 | }
74 | let cancel = (t = 'handle cancel') => {
75 | let err = {
76 | errMsg: t,
77 | config: afC
78 | }
79 | reject(err)
80 | next = false
81 | }
82 | let afC = { ...this.config, ...options }
83 | _config = { ...afC, ...Request.requestBeforeFun(afC, cancel) }
84 | if (!next) return
85 | uni.request(_config)
86 | })
87 | }
88 |
89 | get (url, data, options = {}) {
90 | options.url = url
91 | options.data = data
92 | options.method = 'GET'
93 | return this.request(options)
94 | }
95 |
96 | post (url, data, options = {}) {
97 | options.url = url
98 | options.data = data
99 | options.method = 'POST'
100 | return this.request(options)
101 | }
102 | }
103 |
--------------------------------------------------------------------------------