diff --git a/app.wxss b/app.wxss
index 8f90ac6..2876473 100644
--- a/app.wxss
+++ b/app.wxss
@@ -1,3 +1,5 @@
-@import '/style/weui.wxss';
-
+@import 'style/weui.wxss';
+page{
+ font-family: PingFangSC-Regular;
+}
\ No newline at end of file
diff --git a/images/home/置顶.png b/components/cell/images/top.png
similarity index 100%
rename from images/home/置顶.png
rename to components/cell/images/top.png
diff --git a/components/cell/index.js b/components/cell/index.js
new file mode 100644
index 0000000..13d2aff
--- /dev/null
+++ b/components/cell/index.js
@@ -0,0 +1,28 @@
+// components/cell/index.js
+Component({
+ /**
+ * 组件的属性列表
+ */
+ properties: {
+ title: String,
+ time: String,
+ showTop: {
+ type: Boolean,
+ value: false,
+ }
+ },
+
+ /**
+ * 组件的初始数据
+ */
+ data: {
+
+ },
+
+ /**
+ * 组件的方法列表
+ */
+ methods: {
+
+ }
+})
diff --git a/components/cell/index.json b/components/cell/index.json
new file mode 100644
index 0000000..e8cfaaf
--- /dev/null
+++ b/components/cell/index.json
@@ -0,0 +1,4 @@
+{
+ "component": true,
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/components/cell/index.wxml b/components/cell/index.wxml
new file mode 100644
index 0000000..1f31a74
--- /dev/null
+++ b/components/cell/index.wxml
@@ -0,0 +1,8 @@
+
+
+ {{title}}
+
+ {{time}}
+
+
+
diff --git a/components/cell/index.wxss b/components/cell/index.wxss
new file mode 100644
index 0000000..192a467
--- /dev/null
+++ b/components/cell/index.wxss
@@ -0,0 +1,29 @@
+/* components/cell/index.wxss */
+.cell {
+ border-bottom: 1px solid #E7E7E7;
+ display: flex;
+ flex-direction: column;
+ padding: 10px 20px;
+}
+.cell_title {
+ font-weight: 300;
+ font-size: 17px;
+ color: #000;
+}
+.cell_title_selected {
+ color: #9C9C9C;
+}
+.cell_info {
+ padding-top: 10rpx;
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+ font-size: 12px;
+ line-height: 12px;
+ color: #D4D4D4;
+}
+.cell_info_top {
+ padding: 0 10px;
+ width: 20px;
+ height: 12px;
+}
\ No newline at end of file
diff --git a/images/home/焦点.png b/components/focus/images/focus.png
similarity index 100%
rename from images/home/焦点.png
rename to components/focus/images/focus.png
diff --git a/components/focus/index.js b/components/focus/index.js
new file mode 100644
index 0000000..0c604ed
--- /dev/null
+++ b/components/focus/index.js
@@ -0,0 +1,31 @@
+// components/focus/index.js
+Component({
+ /**
+ * 组件的属性列表
+ */
+ properties: {
+
+ },
+
+ /**
+ * 组件的初始数据
+ */
+ data: {
+ items: [
+ {
+ id: '1',
+ title: '啦啦啦阿拉啦啦啦爱啦啦啦'
+ }
+ ]
+ },
+
+ /**
+ * 组件的方法列表
+ */
+ methods: {
+ onTap (e) {
+ const { item } = e.currentTarget.dataset
+ this.triggerEvent('tapFocusItem', item)
+ }
+ }
+})
diff --git a/components/focus/index.json b/components/focus/index.json
new file mode 100644
index 0000000..e8cfaaf
--- /dev/null
+++ b/components/focus/index.json
@@ -0,0 +1,4 @@
+{
+ "component": true,
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/components/focus/index.wxml b/components/focus/index.wxml
new file mode 100644
index 0000000..a34f2f3
--- /dev/null
+++ b/components/focus/index.wxml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
+
+ {{item.title}}
+
+
+
+
+
diff --git a/components/focus/index.wxss b/components/focus/index.wxss
new file mode 100644
index 0000000..583ee37
--- /dev/null
+++ b/components/focus/index.wxss
@@ -0,0 +1,44 @@
+/* components/focus/index.wxss */
+
+.focus {
+ display: flex;
+ flex-direction: row;
+ height: 120rpx;
+ border-bottom: 7px solid rgba(250,250,250,1);
+}
+.focus_icon {
+ display: flex;
+ flex-direction: row;
+ justify-content: center;
+ align-items: center;
+ width: 20%;
+ position: relative;
+}
+.focus_icon::after {
+ content: "";
+ position: absolute;
+ top: calc(50% - 3px);
+ right: 0;
+ width: 6px;
+ height: 6px;
+ background-color: #D50000;
+}
+
+.focus_swiper>swiper {
+ width: 100%;
+ height: 50px;
+}
+.focus_swiper {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ flex: 1;
+}
+.focus_swiper_item {
+ display: flex;
+ align-items: center;
+ height: 50px;
+ margin: 0 10px;
+ color: #5E5E5E;
+ font-size: 13px;
+}
\ No newline at end of file
diff --git a/images/common/star.png b/components/like/images/star.png
similarity index 100%
rename from images/common/star.png
rename to components/like/images/star.png
diff --git a/images/common/star_highlight.png b/components/like/images/star_highlight.png
similarity index 100%
rename from images/common/star_highlight.png
rename to components/like/images/star_highlight.png
diff --git a/components/like/index.js b/components/like/index.js
new file mode 100644
index 0000000..09520af
--- /dev/null
+++ b/components/like/index.js
@@ -0,0 +1,23 @@
+// components/like/index.js
+Component({
+ /**
+ * 组件的属性列表
+ */
+ properties: {
+
+ },
+
+ /**
+ * 组件的初始数据
+ */
+ data: {
+
+ },
+
+ /**
+ * 组件的方法列表
+ */
+ methods: {
+
+ }
+})
diff --git a/components/like/index.json b/components/like/index.json
new file mode 100644
index 0000000..e8cfaaf
--- /dev/null
+++ b/components/like/index.json
@@ -0,0 +1,4 @@
+{
+ "component": true,
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/components/like/index.wxml b/components/like/index.wxml
new file mode 100644
index 0000000..c91ce3c
--- /dev/null
+++ b/components/like/index.wxml
@@ -0,0 +1,2 @@
+
+
diff --git a/components/like/index.wxss b/components/like/index.wxss
new file mode 100644
index 0000000..977d2d7
--- /dev/null
+++ b/components/like/index.wxss
@@ -0,0 +1 @@
+/* components/like/index.wxss */
\ No newline at end of file
diff --git a/components/swiper/index.js b/components/swiper/index.js
new file mode 100644
index 0000000..d6fde2b
--- /dev/null
+++ b/components/swiper/index.js
@@ -0,0 +1,33 @@
+// components/swiper/index.js
+Component({
+ /**
+ * 组件的属性列表
+ */
+ properties: {
+
+ },
+
+ /**
+ * 组件的初始数据
+ */
+ data: {
+ images: [
+ {
+ image: "http://m.360buyimg.com/mobilecms/s700x280_jfs/t1/76190/38/9199/97616/5d6e380cEf6e9f6a7/71023fef24783257.jpg!cr_1125x445_0_171!q70.jpg.dpg"
+ },
+ {
+ image: 'http://m.360buyimg.com/mobilecms/s700x280_jfs/t1/45210/40/7669/143615/5d53b19dEc9559d0a/cd9eade239533517.jpg!cr_1125x445_0_171!q70.jpg.dpg'
+ }
+ ]
+ },
+
+ /**
+ * 组件的方法列表
+ */
+ methods: {
+ onTapImage (event) {
+ const { item } = event.currentTarget.dataset
+ this.triggerEvent('tapSwiperItem', item)
+ }
+ }
+})
diff --git a/components/swiper/index.json b/components/swiper/index.json
new file mode 100644
index 0000000..e8cfaaf
--- /dev/null
+++ b/components/swiper/index.json
@@ -0,0 +1,4 @@
+{
+ "component": true,
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/components/swiper/index.wxml b/components/swiper/index.wxml
new file mode 100644
index 0000000..1de5256
--- /dev/null
+++ b/components/swiper/index.wxml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/components/swiper/index.wxss b/components/swiper/index.wxss
new file mode 100644
index 0000000..fd522bd
--- /dev/null
+++ b/components/swiper/index.wxss
@@ -0,0 +1,8 @@
+/* components/swiper/index.wxss */
+.e-swiper>swiper {
+ height: 180px;
+}
+.swiper_icon {
+ width: 100%;
+ height: 100%;
+}
\ No newline at end of file
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..a3587e7
--- /dev/null
+++ b/package.json
@@ -0,0 +1,15 @@
+{
+ "name": "fqsb_wx",
+ "version": "1.0.0",
+ "description": "",
+ "main": "app.js",
+ "scripts": {
+ "test": "echo \"Error: no test specified\" && exit 1"
+ },
+ "repository": {
+ "type": "git",
+ "url": "http://liqianqian@121.42.41.42:7070/r/shibeirencai_wechat.git"
+ },
+ "author": "",
+ "license": "ISC"
+}
diff --git a/pages/home/index.js b/pages/home/index.js
index aab9297..ce7cac4 100644
--- a/pages/home/index.js
+++ b/pages/home/index.js
@@ -4,8 +4,31 @@ const app = getApp()
Page({
data: {
+ list: [
+ {
+ title: '啦啦啦量阿拉蕾阿拉啦',
+ showTop: true,
+ time: '刚刚'
+ },
+ {
+ title: '一条大河,向东流',
+ showTop: false,
+ time: '1分钟前'
+ },
+ {
+ title: '啦啦啦量阿拉蕾阿拉啦',
+ showTop: false,
+ time: '1小时前'
+ },
+ ]
},
onLoad: function () {
},
+ tapSwiperItem (e) {
+ console.log(e.detail)
+ },
+ tapFocusItem (e) {
+ console.log(e.detail)
+ }
})
diff --git a/pages/home/index.json b/pages/home/index.json
index 8835af0..579d390 100644
--- a/pages/home/index.json
+++ b/pages/home/index.json
@@ -1,3 +1,7 @@
{
- "usingComponents": {}
+ "usingComponents": {
+ "e-swiper": "/components/swiper/index",
+ "e-focus": "/components/focus/index",
+ "e-cell": "/components/cell/index"
+ }
}
\ No newline at end of file
diff --git a/pages/home/index.wxml b/pages/home/index.wxml
index 6fc628e..2b3ab87 100644
--- a/pages/home/index.wxml
+++ b/pages/home/index.wxml
@@ -1,4 +1,8 @@
- Home
+
+
+
+
+
diff --git a/project.config.json b/project.config.json
index 1f101bd..a370751 100644
--- a/project.config.json
+++ b/project.config.json
@@ -6,11 +6,21 @@
"setting": {
"urlCheck": true,
"es6": true,
+ "enhance": false,
"postcss": true,
"minified": true,
"newFeature": true,
+ "coverView": true,
+ "nodeModules": true,
"autoAudits": false,
- "coverView": true
+ "checkInvalidKey": true,
+ "checkSiteMap": true,
+ "uploadWithSourceMap": true,
+ "babelSetting": {
+ "ignore": [],
+ "disablePlugins": [],
+ "outputPath": ""
+ }
},
"compileType": "miniprogram",
"libVersion": "2.8.1",
diff --git a/style/base/fn.wxss b/style/base/fn.wxss
new file mode 100755
index 0000000..1988db5
--- /dev/null
+++ b/style/base/fn.wxss
@@ -0,0 +1,5 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
diff --git a/style/base/mixin/mobile.wxss b/style/base/mixin/mobile.wxss
new file mode 100755
index 0000000..1988db5
--- /dev/null
+++ b/style/base/mixin/mobile.wxss
@@ -0,0 +1,5 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
diff --git a/style/base/mixin/setArrow.wxss b/style/base/mixin/setArrow.wxss
new file mode 100755
index 0000000..1988db5
--- /dev/null
+++ b/style/base/mixin/setArrow.wxss
@@ -0,0 +1,5 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
diff --git a/style/base/mixin/setOnepx.wxss b/style/base/mixin/setOnepx.wxss
new file mode 100755
index 0000000..1988db5
--- /dev/null
+++ b/style/base/mixin/setOnepx.wxss
@@ -0,0 +1,5 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
diff --git a/style/base/mixin/text.wxss b/style/base/mixin/text.wxss
new file mode 100755
index 0000000..1988db5
--- /dev/null
+++ b/style/base/mixin/text.wxss
@@ -0,0 +1,5 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
diff --git a/style/base/reset.wxss b/style/base/reset.wxss
new file mode 100755
index 0000000..7b911d8
--- /dev/null
+++ b/style/base/reset.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+page{line-height:1.6;font-family:-apple-system-font,Helvetica Neue,sans-serif}icon{vertical-align:middle}
\ No newline at end of file
diff --git a/style/base/variable/color.wxss b/style/base/variable/color.wxss
new file mode 100755
index 0000000..1988db5
--- /dev/null
+++ b/style/base/variable/color.wxss
@@ -0,0 +1,5 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
diff --git a/style/base/variable/global.wxss b/style/base/variable/global.wxss
new file mode 100755
index 0000000..1988db5
--- /dev/null
+++ b/style/base/variable/global.wxss
@@ -0,0 +1,5 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
diff --git a/style/base/variable/weui-button.wxss b/style/base/variable/weui-button.wxss
new file mode 100755
index 0000000..1988db5
--- /dev/null
+++ b/style/base/variable/weui-button.wxss
@@ -0,0 +1,5 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
diff --git a/style/base/variable/weui-cell.wxss b/style/base/variable/weui-cell.wxss
new file mode 100755
index 0000000..1988db5
--- /dev/null
+++ b/style/base/variable/weui-cell.wxss
@@ -0,0 +1,5 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
diff --git a/style/base/variable/weui-dialog.wxss b/style/base/variable/weui-dialog.wxss
new file mode 100755
index 0000000..1988db5
--- /dev/null
+++ b/style/base/variable/weui-dialog.wxss
@@ -0,0 +1,5 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
diff --git a/style/base/variable/weui-grid.wxss b/style/base/variable/weui-grid.wxss
new file mode 100755
index 0000000..1988db5
--- /dev/null
+++ b/style/base/variable/weui-grid.wxss
@@ -0,0 +1,5 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
diff --git a/style/base/variable/weui-msg.wxss b/style/base/variable/weui-msg.wxss
new file mode 100755
index 0000000..1988db5
--- /dev/null
+++ b/style/base/variable/weui-msg.wxss
@@ -0,0 +1,5 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
diff --git a/style/base/variable/weui-progress.wxss b/style/base/variable/weui-progress.wxss
new file mode 100755
index 0000000..1988db5
--- /dev/null
+++ b/style/base/variable/weui-progress.wxss
@@ -0,0 +1,5 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
diff --git a/style/widget/weui-agree/weui-agree.wxss b/style/widget/weui-agree/weui-agree.wxss
new file mode 100755
index 0000000..257de88
--- /dev/null
+++ b/style/widget/weui-agree/weui-agree.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-agree{display:block;padding:.5em 15px;font-size:13px}.weui-agree__text{color:rgba(0,0,0,.5)}.weui-agree__link{display:inline;color:#576b95}.weui-agree__checkbox{position:absolute;left:-9999px}.weui-agree__checkbox-icon{position:relative;top:2px;display:inline-block;border:1px solid #d1d1d1;background-color:#fff;border-radius:3px;width:11px;height:11px}.weui-agree__checkbox-icon-check{position:absolute;top:1px;left:1px}
\ No newline at end of file
diff --git a/style/widget/weui-animate/weui-animate.wxss b/style/widget/weui-animate/weui-animate.wxss
new file mode 100755
index 0000000..721cbde
--- /dev/null
+++ b/style/widget/weui-animate/weui-animate.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+@-webkit-keyframes a{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}@keyframes a{0%{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{-webkit-transform:translateZ(0);transform:translateZ(0)}}.weui-animate-slide-up{-webkit-animation:a ease .3s forwards;animation:a ease .3s forwards}@-webkit-keyframes b{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes b{0%{-webkit-transform:translateZ(0);transform:translateZ(0)}to{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.weui-animate-slide-down{-webkit-animation:b ease .3s forwards;animation:b ease .3s forwards}@-webkit-keyframes c{0%{opacity:0}to{opacity:1}}@keyframes c{0%{opacity:0}to{opacity:1}}.weui-animate-fade-in{-webkit-animation:c ease .3s forwards;animation:c ease .3s forwards}@-webkit-keyframes d{0%{opacity:1}to{opacity:0}}@keyframes d{0%{opacity:1}to{opacity:0}}.weui-animate-fade-out{-webkit-animation:d ease .3s forwards;animation:d ease .3s forwards}
\ No newline at end of file
diff --git a/style/widget/weui-button/weui-btn_cell.wxss b/style/widget/weui-button/weui-btn_cell.wxss
new file mode 100755
index 0000000..b81d51c
--- /dev/null
+++ b/style/widget/weui-button/weui-btn_cell.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-btn_cell{position:relative;display:block;margin-left:auto;margin-right:auto;box-sizing:border-box;font-weight:700;font-size:17px;text-align:center;text-decoration:none;color:#fff;line-height:1.41176471;padding:16px;-webkit-tap-highlight-color:rgba(0,0,0,0);overflow:hidden;background-color:#fff}.weui-btn_cell+.weui-btn_cell{margin-top:16px}.weui-btn_cell:active{background-color:#ececec}.weui-btn_cell__icon{display:inline-block;vertical-align:middle;width:24px;height:24px;margin:-.2em .34em 0 0}.weui-btn_cell-default{color:rgba(0,0,0,.9)}.weui-btn_cell-primary{color:#576b95}.weui-btn_cell-warn{color:#fa5151}
\ No newline at end of file
diff --git a/style/widget/weui-button/weui-btn_default.wxss b/style/widget/weui-button/weui-btn_default.wxss
new file mode 100755
index 0000000..58af4cf
--- /dev/null
+++ b/style/widget/weui-button/weui-btn_default.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-btn_default{color:#06ae56;background-color:#f2f2f2}.weui-btn_default:not(.weui-btn_disabled):visited{color:#06ae56}.weui-btn_default:not(.weui-btn_disabled):active{color:#06ae56;background-color:#d9d9d9}
\ No newline at end of file
diff --git a/style/widget/weui-button/weui-btn_disabled.wxss b/style/widget/weui-button/weui-btn_disabled.wxss
new file mode 100755
index 0000000..920177e
--- /dev/null
+++ b/style/widget/weui-button/weui-btn_disabled.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-btn_disabled{color:rgba(0,0,0,.18);background-color:#fafafa}
\ No newline at end of file
diff --git a/style/widget/weui-button/weui-btn_global.wxss b/style/widget/weui-button/weui-btn_global.wxss
new file mode 100755
index 0000000..222835b
--- /dev/null
+++ b/style/widget/weui-button/weui-btn_global.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-btn{position:relative;display:block;width:184px;margin-left:auto;margin-right:auto;padding:8px 24px;box-sizing:border-box;font-weight:700;font-size:17px;text-align:center;text-decoration:none;color:#fff;line-height:1.41176471;border-radius:4px;-webkit-tap-highlight-color:rgba(0,0,0,0);overflow:hidden}.weui-btn_block{width:auto}.weui-btn_inline{display:inline-block}
\ No newline at end of file
diff --git a/style/widget/weui-button/weui-btn_loading.wxss b/style/widget/weui-button/weui-btn_loading.wxss
new file mode 100755
index 0000000..9cda039
--- /dev/null
+++ b/style/widget/weui-button/weui-btn_loading.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-btn_loading .weui-loading{margin:-.2em .34em 0 0}.weui-btn_loading.weui-btn_primary{color:#fff}.weui-btn_loading.weui-btn_default{background-color:#d9d9d9}.weui-btn_loading.weui-btn_primary{background-color:#06ad56}.weui-btn_loading.weui-btn_warn{background-color:#d9d9d9}
\ No newline at end of file
diff --git a/style/widget/weui-button/weui-btn_plain.wxss b/style/widget/weui-button/weui-btn_plain.wxss
new file mode 100755
index 0000000..2228ef7
--- /dev/null
+++ b/style/widget/weui-button/weui-btn_plain.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-btn_plain-primary{color:#07c160;border:1px solid #1aad19}.weui-btn_plain-primary:not(.weui-btn_plain-disabled):active{color:#06ae56;border-color:#179c16;background-color:rgba(0,0,0,.1)}.weui-btn_plain-primary:after{border-width:0}.weui-btn_plain-default{color:#353535;border:1px solid #353535}.weui-btn_plain-default:not(.weui-btn_plain-disabled):active{color:#323232;border-color:#323232;background-color:rgba(0,0,0,.1)}.weui-btn_plain-default:after{border-width:0}.weui-btn_plain-disabled{color:rgba(0,0,0,.2);border-color:rgba(0,0,0,.2)}
\ No newline at end of file
diff --git a/style/widget/weui-button/weui-btn_primary.wxss b/style/widget/weui-button/weui-btn_primary.wxss
new file mode 100755
index 0000000..3e58457
--- /dev/null
+++ b/style/widget/weui-button/weui-btn_primary.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-btn_primary{background-color:#07c160}.weui-btn_primary:not(.weui-btn_disabled):visited{color:#fff}.weui-btn_primary:not(.weui-btn_disabled):active{color:#fff;background-color:#06ad56}
\ No newline at end of file
diff --git a/style/widget/weui-button/weui-btn_warn.wxss b/style/widget/weui-button/weui-btn_warn.wxss
new file mode 100755
index 0000000..a762595
--- /dev/null
+++ b/style/widget/weui-button/weui-btn_warn.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-btn_warn{color:#fa5151;background-color:#f2f2f2}.weui-btn_warn:not(.weui-btn_disabled):visited{color:#fa5151}.weui-btn_warn:not(.weui-btn_disabled):active{color:#fa5151;background-color:#d9d9d9}
\ No newline at end of file
diff --git a/style/widget/weui-button/weui-button.wxss b/style/widget/weui-button/weui-button.wxss
new file mode 100755
index 0000000..2a46c4b
--- /dev/null
+++ b/style/widget/weui-button/weui-button.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-btn+.weui-btn{margin-top:16px}.weui-btn.weui-btn_inline+.weui-btn.weui-btn_inline{margin-top:auto;margin-left:16px}.weui-btn-area{margin:48px 16px 8px}.weui-btn-area_inline{display:-webkit-box;display:-webkit-flex;display:flex}.weui-btn-area_inline .weui-btn{margin-top:auto;margin-right:16px;width:100%;-webkit-box-flex:1;-webkit-flex:1;flex:1}.weui-btn-area_inline .weui-btn:last-child{margin-right:0}
\ No newline at end of file
diff --git a/style/widget/weui-cell/weui-access.wxss b/style/widget/weui-cell/weui-access.wxss
new file mode 100755
index 0000000..e1a60b1
--- /dev/null
+++ b/style/widget/weui-cell/weui-access.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-cell_access{color:inherit;-webkit-tap-highlight-color:rgba(0,0,0,0)}.weui-cell__ft_in-access{padding-right:16px;position:relative}.weui-cell__ft_in-access:after{content:" ";display:inline-block;height:8px;width:8px;border-width:2px 2px 0 0;border-color:#b2b2b2;border-style:solid;-webkit-transform:matrix(.71,.71,-.71,.71,0,0);transform:matrix(.71,.71,-.71,.71,0,0);position:relative;top:-2px;position:absolute;top:50%;margin-top:-5px;right:0}.weui-cell_link{color:#576b95;font-size:17px}.weui-cell_link:active{background-color:#ececec}.weui-cell_link:first-child:before{display:block}
\ No newline at end of file
diff --git a/style/widget/weui-cell/weui-cell.wxss b/style/widget/weui-cell/weui-cell.wxss
new file mode 100755
index 0000000..c5e8ea1
--- /dev/null
+++ b/style/widget/weui-cell/weui-cell.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-cells{position:relative;margin-top:8px;background-color:#fff;line-height:1.41176471;font-size:17px}.weui-cells:before{top:0;border-top:1rpx solid rgba(0,0,0,.1)}.weui-cells:after,.weui-cells:before{content:" ";position:absolute;left:0;right:0;height:1px;color:rgba(0,0,0,.1)}.weui-cells:after{bottom:0;border-bottom:1rpx solid rgba(0,0,0,.1)}.weui-cells__title{margin-top:16px;margin-bottom:3px;padding-left:16px;padding-right:16px;color:rgba(0,0,0,.5);font-size:14px}.weui-cells_after-title{margin-top:0}.weui-cells__tips{margin-top:3px;color:rgba(0,0,0,.5);padding-left:16px;padding-right:16px;font-size:14px}.weui-cell{padding:16px;position:relative;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.weui-cell:before{content:" ";position:absolute;left:0;top:0;right:0;height:1px;border-top:1rpx solid rgba(0,0,0,.1);color:rgba(0,0,0,.1);left:16px}.weui-cell:first-child:before{display:none}.weui-cell_active{background-color:#ececec}.weui-cell_primary{-webkit-box-align:start;-webkit-align-items:flex-start;align-items:flex-start}.weui-cell__bd{-webkit-box-flex:1;-webkit-flex:1;flex:1}.weui-cell__ft{text-align:right;color:rgba(0,0,0,.5)}.weui-cell_label-block,.weui-cell_wxss.weui-cell_wxss:before{display:block}.weui-cell_label-block .weui-label{width:auto;word-break:normal;-webkit-hyphens:auto;hyphens:auto}
\ No newline at end of file
diff --git a/style/widget/weui-cell/weui-check.wxss b/style/widget/weui-cell/weui-check.wxss
new file mode 100755
index 0000000..70ad8ae
--- /dev/null
+++ b/style/widget/weui-cell/weui-check.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-cells_checkbox .weui-check__label:before{left:55px}.weui-check__label:active{background-color:#ececec}.weui-check{position:absolute;left:-9999px}.weui-check__hd_in-checkbox{padding-right:16px}.weui-cell__ft_in-radio{padding-left:16px}
\ No newline at end of file
diff --git a/style/widget/weui-cell/weui-form.wxss b/style/widget/weui-cell/weui-form.wxss
new file mode 100755
index 0000000..116b12b
--- /dev/null
+++ b/style/widget/weui-cell/weui-form.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-toptips{position:fixed;-webkit-transform:translateZ(0) translateY(-108%);transform:translateZ(0) translateY(-108%);text-align:center;top:8px;left:16px;right:16px;border-radius:4px;padding:8px;-webkit-border-radius:4px;color:hsla(0,0%,100%,.9);font-size:17px;line-height:1.4;background:rgba(250,81,81,.9);z-index:5000;word-wrap:break-word;word-break:break-all;-webkit-transition:all .4s ease-in-out;transition:all .4s ease-in-out}.weui-toptips_show{-webkit-transform:translateZ(0) translateY(0);transform:translateZ(0) translateY(0);opacity:1}.weui-toptips_warn{background-color:#fa5151}.weui-toptips_success{background-color:#09bb07}.weui-toptips_error{background-color:#fa5151}.weui-toptips_info{background-color:#10aeff}.weui-cell_input{padding-top:0;padding-bottom:0}.weui-label{width:105px;word-wrap:break-word;word-break:break-all}.weui-input{height:1.41176471em;min-height:1.41176471em;line-height:1.41176471}.weui-textarea{display:block;width:100%}.weui-textarea-counter{color:rgba(0,0,0,.3);text-align:right}.weui-cell_warn,.weui-textarea-counter_warn{color:#fa5151}.weui-form-preview{position:relative;background-color:#fff}.weui-form-preview:before{top:0;border-top:1rpx solid rgba(0,0,0,.1)}.weui-form-preview:after,.weui-form-preview:before{content:" ";position:absolute;left:0;right:0;height:1px;color:rgba(0,0,0,.1)}.weui-form-preview:after{bottom:0;border-bottom:1rpx solid rgba(0,0,0,.1)}.weui-form-preview__value{font-size:14px}.weui-form-preview__value_in-hd{font-size:26px}.weui-form-preview__hd{position:relative;padding:16px;text-align:right;line-height:2.5em}.weui-form-preview__hd:after{content:" ";position:absolute;left:0;bottom:0;right:0;height:1px;border-bottom:1rpx solid rgba(0,0,0,.1);color:rgba(0,0,0,.1);left:16px}.weui-form-preview__bd{padding:16px;font-size:.9em;text-align:right;color:rgba(0,0,0,.5);line-height:2}.weui-form-preview__ft{position:relative;line-height:56px;display:-webkit-box;display:-webkit-flex;display:flex}.weui-form-preview__ft:after{content:" ";position:absolute;left:0;top:0;right:0;height:1px;border-top:1rpx solid rgba(0,0,0,.1);color:rgba(0,0,0,.1)}.weui-form-preview__item{overflow:hidden}.weui-form-preview__label{float:left;margin-right:1em;min-width:4em;color:rgba(0,0,0,.5);text-align:justify;text-align-last:justify}.weui-form-preview__value{display:block;overflow:hidden;word-break:normal;word-wrap:break-word}.weui-form-preview__btn{position:relative;display:block;-webkit-box-flex:1;-webkit-flex:1;flex:1;color:#576b95;text-align:center;font-weight:700;font-size:17px}.weui-form-preview__btn:after{content:" ";position:absolute;left:0;top:0;width:1px;bottom:0;border-left:1rpx solid rgba(0,0,0,.1);color:rgba(0,0,0,.1)}.weui-form-preview__btn:first-child:after{display:none}.weui-form-preview__btn_active{background-color:#ececec}.weui-form-preview__btn_default{color:rgba(0,0,0,.9)}.weui-form-preview__btn_primary{color:#576b95}.weui-cell_select{padding:0}.weui-select{position:relative;padding-left:16px;padding-right:30px;height:3.29411765em;min-height:3.29411765em;line-height:3.29411765em;border-right:1rpx solid rgba(0,0,0,.1)}.weui-select:before{content:" ";display:inline-block;height:6px;width:6px;border-width:2px 2px 0 0;border-color:#c8c8cd;border-style:solid;-webkit-transform:matrix(.71,.71,-.71,.71,0,0);transform:matrix(.71,.71,-.71,.71,0,0);position:relative;top:-2px;position:absolute;top:50%;right:16px;margin-top:-4px}.weui-select_in-select-after{padding-left:0}.weui-cell__bd_in-select-before,.weui-cell__hd_in-select-after{padding-left:16px}.weui-cell_vcode{padding-top:0;padding-right:0;padding-bottom:0}.weui-vcode-btn,.weui-vcode-img{margin-left:5px;height:3.29411765em;vertical-align:middle}.weui-vcode-btn{display:inline-block;padding:0 .6em 0 .7em;border-left:1rpx solid rgba(0,0,0,.1);line-height:3.29411765em;font-size:17px;color:#576b95;white-space:nowrap}.weui-vcode-btn:active{color:#767676}
\ No newline at end of file
diff --git a/style/widget/weui-cell/weui-form/weui-form-preview.wxss b/style/widget/weui-cell/weui-form/weui-form-preview.wxss
new file mode 100755
index 0000000..27d8241
--- /dev/null
+++ b/style/widget/weui-cell/weui-form/weui-form-preview.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-form-preview{position:relative;background-color:#fff}.weui-form-preview:before{top:0;border-top:1rpx solid rgba(0,0,0,.1)}.weui-form-preview:after,.weui-form-preview:before{content:" ";position:absolute;left:0;right:0;height:1px;color:rgba(0,0,0,.1)}.weui-form-preview:after{bottom:0;border-bottom:1rpx solid rgba(0,0,0,.1)}.weui-form-preview__value{font-size:14px}.weui-form-preview__value_in-hd{font-size:26px}.weui-form-preview__hd{position:relative;padding:16px;text-align:right;line-height:2.5em}.weui-form-preview__hd:after{content:" ";position:absolute;left:0;bottom:0;right:0;height:1px;border-bottom:1rpx solid rgba(0,0,0,.1);color:rgba(0,0,0,.1);left:16px}.weui-form-preview__bd{padding:16px;font-size:.9em;text-align:right;color:rgba(0,0,0,.5);line-height:2}.weui-form-preview__ft{position:relative;line-height:56px;display:-webkit-box;display:-webkit-flex;display:flex}.weui-form-preview__ft:after{content:" ";position:absolute;left:0;top:0;right:0;height:1px;border-top:1rpx solid rgba(0,0,0,.1);color:rgba(0,0,0,.1)}.weui-form-preview__item{overflow:hidden}.weui-form-preview__label{float:left;margin-right:1em;min-width:4em;color:rgba(0,0,0,.5);text-align:justify;text-align-last:justify}.weui-form-preview__value{display:block;overflow:hidden;word-break:normal;word-wrap:break-word}.weui-form-preview__btn{position:relative;display:block;-webkit-box-flex:1;-webkit-flex:1;flex:1;color:#576b95;text-align:center;font-weight:700;font-size:17px}.weui-form-preview__btn:after{content:" ";position:absolute;left:0;top:0;width:1px;bottom:0;border-left:1rpx solid rgba(0,0,0,.1);color:rgba(0,0,0,.1)}.weui-form-preview__btn:first-child:after{display:none}.weui-form-preview__btn_active{background-color:#ececec}.weui-form-preview__btn_default{color:rgba(0,0,0,.9)}.weui-form-preview__btn_primary{color:#576b95}
\ No newline at end of file
diff --git a/style/widget/weui-cell/weui-form/weui-form_common.wxss b/style/widget/weui-cell/weui-form/weui-form_common.wxss
new file mode 100755
index 0000000..277f3ba
--- /dev/null
+++ b/style/widget/weui-cell/weui-form/weui-form_common.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-toptips{position:fixed;-webkit-transform:translateZ(0) translateY(-108%);transform:translateZ(0) translateY(-108%);text-align:center;top:8px;left:16px;right:16px;border-radius:4px;padding:8px;-webkit-border-radius:4px;color:hsla(0,0%,100%,.9);font-size:17px;line-height:1.4;background:rgba(250,81,81,.9);z-index:5000;word-wrap:break-word;word-break:break-all;-webkit-transition:all .4s ease-in-out;transition:all .4s ease-in-out}.weui-toptips_show{-webkit-transform:translateZ(0) translateY(0);transform:translateZ(0) translateY(0);opacity:1}.weui-toptips_warn{background-color:#fa5151}.weui-toptips_success{background-color:#09bb07}.weui-toptips_error{background-color:#fa5151}.weui-toptips_info{background-color:#10aeff}.weui-cell_input{padding-top:0;padding-bottom:0}.weui-label{width:105px;word-wrap:break-word;word-break:break-all}.weui-input{height:1.41176471em;min-height:1.41176471em;line-height:1.41176471}.weui-textarea{display:block;width:100%}.weui-textarea-counter{color:rgba(0,0,0,.3);text-align:right}.weui-cell_warn,.weui-textarea-counter_warn{color:#fa5151}
\ No newline at end of file
diff --git a/style/widget/weui-cell/weui-form/weui-select.wxss b/style/widget/weui-cell/weui-form/weui-select.wxss
new file mode 100755
index 0000000..1fd49e6
--- /dev/null
+++ b/style/widget/weui-cell/weui-form/weui-select.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-cell_select{padding:0}.weui-select{position:relative;padding-left:16px;padding-right:30px;height:3.29411765em;min-height:3.29411765em;line-height:3.29411765em;border-right:1rpx solid rgba(0,0,0,.1)}.weui-select:before{content:" ";display:inline-block;height:6px;width:6px;border-width:2px 2px 0 0;border-color:#c8c8cd;border-style:solid;-webkit-transform:matrix(.71,.71,-.71,.71,0,0);transform:matrix(.71,.71,-.71,.71,0,0);position:relative;top:-2px;position:absolute;top:50%;right:16px;margin-top:-4px}.weui-select_in-select-after{padding-left:0}.weui-cell__bd_in-select-before,.weui-cell__hd_in-select-after{padding-left:16px}
\ No newline at end of file
diff --git a/style/widget/weui-cell/weui-form/weui-vcode.wxss b/style/widget/weui-cell/weui-form/weui-vcode.wxss
new file mode 100755
index 0000000..ee54a97
--- /dev/null
+++ b/style/widget/weui-cell/weui-form/weui-vcode.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-cell_vcode{padding-top:0;padding-right:0;padding-bottom:0}.weui-vcode-btn,.weui-vcode-img{margin-left:5px;height:3.29411765em;vertical-align:middle}.weui-vcode-btn{display:inline-block;padding:0 .6em 0 .7em;border-left:1rpx solid rgba(0,0,0,.1);line-height:3.29411765em;font-size:17px;color:#576b95;white-space:nowrap}.weui-vcode-btn:active{color:#767676}
\ No newline at end of file
diff --git a/style/widget/weui-cell/weui-switch.wxss b/style/widget/weui-cell/weui-switch.wxss
new file mode 100755
index 0000000..8b676e1
--- /dev/null
+++ b/style/widget/weui-cell/weui-switch.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-cell_switch{padding-top:12px;padding-bottom:12px}
\ No newline at end of file
diff --git a/style/widget/weui-cell/weui-uploader.wxss b/style/widget/weui-cell/weui-uploader.wxss
new file mode 100755
index 0000000..6d5e564
--- /dev/null
+++ b/style/widget/weui-cell/weui-uploader.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-uploader__hd{padding-bottom:16px}.weui-uploader__overview{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.weui-uploader__title{-webkit-box-flex:1;-webkit-flex:1;flex:1}.weui-uploader__tips{color:rgba(0,0,0,.3);font-size:14px;line-height:1.4;padding-top:4px}.weui-uploader__info{color:rgba(0,0,0,.3)}.weui-uploader__bd{margin-bottom:-8px;margin-right:-8px;overflow:hidden}.weui-uploader__file{float:left;margin-right:8px;margin-bottom:8px}.weui-uploader__img{display:block;width:96px;height:96px}.weui-uploader__file_status{position:relative}.weui-uploader__file_status:before{content:" ";position:absolute;top:0;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.5)}.weui-uploader__file-content{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);color:#fff}.weui-uploader__input-box{float:left;position:relative;margin-right:8px;margin-bottom:8px;width:96px;height:96px;box-sizing:border-box;background-color:#ededed}.weui-uploader__input-box:after,.weui-uploader__input-box:before{content:" ";position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%,-50%);transform:translate(-50%,-50%);background-color:#a3a3a3}.weui-uploader__input-box:before{width:2px;height:32px}.weui-uploader__input-box:after{width:32px;height:2px}.weui-uploader__input-box:active{border-color:#8b8b8b}.weui-uploader__input-box:active:after,.weui-uploader__input-box:active:before{background-color:#8b8b8b}.weui-uploader__input{position:absolute;z-index:1;top:0;left:0;width:100%;height:100%;opacity:0}
\ No newline at end of file
diff --git a/style/widget/weui-flex/weui-flex.wxss b/style/widget/weui-flex/weui-flex.wxss
new file mode 100755
index 0000000..272ce01
--- /dev/null
+++ b/style/widget/weui-flex/weui-flex.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-flex{display:-webkit-box;display:-webkit-flex;display:flex}.weui-flex__item{-webkit-box-flex:1;-webkit-flex:1;flex:1}
\ No newline at end of file
diff --git a/style/widget/weui-footer/weui-footer.wxss b/style/widget/weui-footer/weui-footer.wxss
new file mode 100755
index 0000000..89c7e32
--- /dev/null
+++ b/style/widget/weui-footer/weui-footer.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-footer{color:rgba(0,0,0,.3);font-size:14px;line-height:1.4;text-align:center}.weui-footer_fixed-bottom{position:fixed;bottom:16px;bottom:calc(16px + constant(safe-area-inset-bottom));bottom:calc(16px + env(safe-area-inset-bottom));left:0;right:0}.weui-footer__links{font-size:0}.weui-footer__link{display:inline-block;vertical-align:top;margin:0 8px;position:relative;font-size:14px;color:#576b95}.weui-footer__link:before{content:" ";position:absolute;left:0;top:0;width:1px;bottom:0;border-left:1rpx solid #c7c7c7;color:#c7c7c7;left:-8px;top:.36em;bottom:.36em}.weui-footer__link:first-child:before{display:none}.weui-footer__text{padding:0 .34em;font-size:12px}
\ No newline at end of file
diff --git a/style/widget/weui-grid/weui-grid.wxss b/style/widget/weui-grid/weui-grid.wxss
new file mode 100755
index 0000000..16444b6
--- /dev/null
+++ b/style/widget/weui-grid/weui-grid.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-grids{border-top:1rpx solid rgba(0,0,0,.1);border-left:1rpx solid rgba(0,0,0,.1);overflow:hidden}.weui-grid{position:relative;float:left;padding:20px 10px;width:33.33333333%;box-sizing:border-box;border-right:1rpx solid rgba(0,0,0,.1);border-bottom:1rpx solid rgba(0,0,0,.1)}.weui-grid_active{background-color:#ececec}.weui-grid__icon{display:block;width:28px;height:28px;margin:0 auto}.weui-grid__label{margin-top:5px;display:block;text-align:center;color:rgba(0,0,0,.9);font-size:14px;white-space:nowrap;text-overflow:ellipsis;overflow:hidden}
\ No newline at end of file
diff --git a/style/widget/weui-icon/weui-icon.wxss b/style/widget/weui-icon/weui-icon.wxss
new file mode 100755
index 0000000..e6acecf
--- /dev/null
+++ b/style/widget/weui-icon/weui-icon.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+icon[type=success]:after,icon[type=success]:before{color:#07c160!important}
\ No newline at end of file
diff --git a/style/widget/weui-loading/weui-loading.wxss b/style/widget/weui-loading/weui-loading.wxss
new file mode 100755
index 0000000..9ddcdee
--- /dev/null
+++ b/style/widget/weui-loading/weui-loading.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-loading{margin:0 5px;width:20px;height:20px;display:inline-block;vertical-align:middle;-webkit-animation:a 1s steps(12) infinite;animation:a 1s steps(12) infinite;background:transparent url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMjAiIGhlaWdodD0iMTIwIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHBhdGggZmlsbD0ibm9uZSIgZD0iTTAgMGgxMDB2MTAwSDB6Ii8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTlFOUU5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTMwKSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iIzk4OTY5NyIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgzMCAxMDUuOTggNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjOUI5OTlBIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDYwIDc1Ljk4IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0EzQTFBMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSg5MCA2NSA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNBQkE5QUEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoMTIwIDU4LjY2IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0IyQjJCMiIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgxNTAgNTQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjQkFCOEI5IiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKDE4MCA1MCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDMkMwQzEiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTE1MCA0NS45OCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNDQkNCQ0IiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTEyMCA0MS4zNCA2NSkiLz48cmVjdCB3aWR0aD0iNyIgaGVpZ2h0PSIyMCIgeD0iNDYuNSIgeT0iNDAiIGZpbGw9IiNEMkQyRDIiIHJ4PSI1IiByeT0iNSIgdHJhbnNmb3JtPSJyb3RhdGUoLTkwIDM1IDY1KSIvPjxyZWN0IHdpZHRoPSI3IiBoZWlnaHQ9IjIwIiB4PSI0Ni41IiB5PSI0MCIgZmlsbD0iI0RBREFEQSIgcng9IjUiIHJ5PSI1IiB0cmFuc2Zvcm09InJvdGF0ZSgtNjAgMjQuMDIgNjUpIi8+PHJlY3Qgd2lkdGg9IjciIGhlaWdodD0iMjAiIHg9IjQ2LjUiIHk9IjQwIiBmaWxsPSIjRTJFMkUyIiByeD0iNSIgcnk9IjUiIHRyYW5zZm9ybT0icm90YXRlKC0zMCAtNS45OCA2NSkiLz48L3N2Zz4=) no-repeat;background-size:100%}.weui-loading.weui-loading_transparent{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 100 100'%3E%3Cpath fill='none' d='M0 0h100v100H0z'/%3E%3Crect xmlns='http://www.w3.org/2000/svg' width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.56)' rx='5' ry='5' transform='translate(0 -30)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.5)' rx='5' ry='5' transform='rotate(30 105.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.43)' rx='5' ry='5' transform='rotate(60 75.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.38)' rx='5' ry='5' transform='rotate(90 65 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.32)' rx='5' ry='5' transform='rotate(120 58.66 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.28)' rx='5' ry='5' transform='rotate(150 54.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.25)' rx='5' ry='5' transform='rotate(180 50 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.2)' rx='5' ry='5' transform='rotate(-150 45.98 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.17)' rx='5' ry='5' transform='rotate(-120 41.34 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.14)' rx='5' ry='5' transform='rotate(-90 35 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.1)' rx='5' ry='5' transform='rotate(-60 24.02 65)'/%3E%3Crect width='7' height='20' x='46.5' y='40' fill='rgba(255,255,255,.03)' rx='5' ry='5' transform='rotate(-30 -5.98 65)'/%3E%3C/svg%3E")}@-webkit-keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes a{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}
\ No newline at end of file
diff --git a/style/widget/weui-media-box/weui-media-box.wxss b/style/widget/weui-media-box/weui-media-box.wxss
new file mode 100755
index 0000000..442446b
--- /dev/null
+++ b/style/widget/weui-media-box/weui-media-box.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-media-box{padding:16px;position:relative}.weui-media-box:before{content:" ";position:absolute;left:0;top:0;right:0;height:1px;border-top:1rpx solid rgba(0,0,0,.1);color:rgba(0,0,0,.1);left:1s6px}.weui-media-box:first-child:before{display:none}.weui-media-box__title{font-weight:400;font-size:17px;color:rgba(0,0,0,.9);width:auto;white-space:nowrap;word-wrap:normal;word-wrap:break-word;word-break:break-all}.weui-media-box__desc,.weui-media-box__title{line-height:1.4;overflow:hidden;text-overflow:ellipsis}.weui-media-box__desc{color:rgba(0,0,0,.5);font-size:14px;padding-top:4px;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2}.weui-media-box__info{margin-top:16px;padding-bottom:4px;font-size:13px;color:#cecece;line-height:1em;list-style:none;overflow:hidden}.weui-media-box__info__meta{float:left;padding-right:1em}.weui-media-box__info__meta_extra{padding-left:1em;border-left:1px solid #cecece}.weui-media-box__title_in-text{margin-bottom:8px}.weui-media-box_appmsg{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.weui-media-box__thumb{width:100%;height:100%;vertical-align:top}.weui-media-box__hd_in-appmsg{margin-right:16px;width:60px;height:60px;line-height:60px;text-align:center}.weui-media-box__bd_in-appmsg{-webkit-box-flex:1;-webkit-flex:1;flex:1;min-width:0}.weui-media-box_small-appmsg{padding:0}.weui-cells_in-small-appmsg{margin-top:0}.weui-cells_in-small-appmsg:before{display:none}
\ No newline at end of file
diff --git a/style/widget/weui-page/weui-article.wxss b/style/widget/weui-page/weui-article.wxss
new file mode 100755
index 0000000..0cbffaa
--- /dev/null
+++ b/style/widget/weui-page/weui-article.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-article{padding:24px 16px;padding:24px calc(16px + constant(safe-area-inset-right)) calc(24px + constant(safe-area-inset-bottom)) calc(16px + constant(safe-area-inset-left));padding:24px calc(16px + env(safe-area-inset-right)) calc(24px + env(safe-area-inset-bottom)) calc(16px + env(safe-area-inset-left));font-size:17px;color:rgba(0,0,0,.9)}.weui-article__section{margin-bottom:1.5em}.weui-article__h1{font-size:22px;font-weight:700;margin-bottom:.9em;line-height:1.4}.weui-article__h2{font-size:17px}.weui-article__h2,.weui-article__h3{font-weight:700;margin-bottom:.34em;line-height:1.4}.weui-article__h3{font-size:15px}.weui-article__p{margin:0 0 .8em}
\ No newline at end of file
diff --git a/style/widget/weui-page/weui-msg.wxss b/style/widget/weui-page/weui-msg.wxss
new file mode 100755
index 0000000..63e1c58
--- /dev/null
+++ b/style/widget/weui-page/weui-msg.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-msg{padding-top:36px;padding:calc(36px + constant(safe-area-inset-top)) constant(safe-area-inset-right) constant(safe-area-inset-bottom) constant(safe-area-inset-left);padding:calc(36px + env(safe-area-inset-top)) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);text-align:center;line-height:1.4;min-height:100%;box-sizing:border-box;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;background-color:#fff}.weui-msg__link{color:#576b95;display:inline-block;vertical-align:baseline}.weui-msg__icon-area{margin-bottom:32px}.weui-msg__text-area{margin-bottom:32px;padding:0 32px;-webkit-box-flex:1;-webkit-flex:1;flex:1;line-height:1.6}.weui-msg__text-area:first-child{padding-top:96px}.weui-msg__title{margin-bottom:5px;font-weight:700;font-size:22px;word-wrap:break-word;word-break:break-all}.weui-msg__desc{font-size:17px;color:rgba(0,0,0,.9)}.weui-msg__desc,.weui-msg__desc-primary{word-wrap:break-word;word-break:break-all;margin-bottom:16px}.weui-msg__desc-primary{font-size:14px;color:rgba(0,0,0,.5)}.weui-msg__opr-area{margin-bottom:16px}.weui-msg__opr-area .weui-btn-area{margin:0 16px}.weui-msg__opr-area .weui-btn+.weui-btn{margin-bottom:16px}.weui-msg__opr-area:last-child{margin-bottom:96px}.weui-msg__opr-area+.weui-msg__extra-area{margin-top:48px}.weui-msg__tips-area{margin-bottom:16px;padding:0 40px}.weui-msg__opr-area+.weui-msg__tips-area{margin-bottom:48px}.weui-msg__tips-area:last-child{margin-bottom:64px}.weui-msg__extra-area,.weui-msg__tips{font-size:12px;color:rgba(0,0,0,.5)}.weui-msg__extra-area{position:static;margin-bottom:24px}
\ No newline at end of file
diff --git a/style/widget/weui-panel/weui-panel.wxss b/style/widget/weui-panel/weui-panel.wxss
new file mode 100755
index 0000000..0ff7b30
--- /dev/null
+++ b/style/widget/weui-panel/weui-panel.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-panel{background-color:#fff;margin-top:10px;position:relative;overflow:hidden}.weui-panel:first-child{margin-top:0}.weui-panel:before{top:0;border-top:1rpx solid rgba(0,0,0,.1)}.weui-panel:after,.weui-panel:before{content:" ";position:absolute;left:0;right:0;height:1px;color:rgba(0,0,0,.1)}.weui-panel:after{bottom:0;border-bottom:1rpx solid rgba(0,0,0,.1)}.weui-panel__hd{padding:16px 16px 13px;color:rgba(0,0,0,.9);font-size:15px;font-weight:700;position:relative}.weui-panel__hd:after{content:" ";position:absolute;left:0;bottom:0;right:0;height:1px;border-bottom:1rpx solid rgba(0,0,0,.1);color:rgba(0,0,0,.1);left:16px}
\ No newline at end of file
diff --git a/style/widget/weui-progress/weui-progress.wxss b/style/widget/weui-progress/weui-progress.wxss
new file mode 100755
index 0000000..9abb2d0
--- /dev/null
+++ b/style/widget/weui-progress/weui-progress.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-progress{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.weui-progress__bar{-webkit-box-flex:1;-webkit-flex:1;flex:1}.weui-progress__opr{margin-left:15px;font-size:0}
\ No newline at end of file
diff --git a/style/widget/weui-searchbar/weui-searchbar.wxss b/style/widget/weui-searchbar/weui-searchbar.wxss
new file mode 100755
index 0000000..eb030cd
--- /dev/null
+++ b/style/widget/weui-searchbar/weui-searchbar.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-search-bar{position:relative;padding:8px;display:-webkit-box;display:-webkit-flex;display:flex;box-sizing:border-box;background-color:#ededed;-webkit-text-size-adjust:100%;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.weui-icon-search{margin-right:8px;font-size:14px;vertical-align:top;margin-top:.64em;height:1em;line-height:1em}.weui-icon-search_in-box{position:absolute;left:12px;top:50%;margin-top:-8px}.weui-search-bar__text{display:inline-block;font-size:14px;vertical-align:top}.weui-search-bar__form{position:relative;-webkit-box-flex:1;-webkit-flex:auto;flex:auto;border-radius:4px;background:#fff}.weui-search-bar__box{position:relative;padding-left:32px;padding-right:32px;width:100%;box-sizing:border-box;z-index:1}.weui-search-bar__input{height:32px;line-height:32px;font-size:14px;caret-color:#07c160}.weui-icon-clear{position:absolute;top:0;right:0;bottom:0;padding:0 12px;font-size:0}.weui-icon-clear:after{content:"";height:100%;vertical-align:middle;display:inline-block;width:0;overflow:hidden}.weui-search-bar__label{position:absolute;top:0;right:0;bottom:0;left:0;z-index:2;border-radius:4px;text-align:center;color:rgba(0,0,0,.5);background:#fff;line-height:32px}.weui-search-bar__cancel-btn{margin-left:8px;line-height:32px;color:#576b95;white-space:nowrap}
\ No newline at end of file
diff --git a/style/widget/weui-tab/weui-navbar.wxss b/style/widget/weui-tab/weui-navbar.wxss
new file mode 100755
index 0000000..bd41053
--- /dev/null
+++ b/style/widget/weui-tab/weui-navbar.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-navbar{display:-webkit-box;display:-webkit-flex;display:flex;position:relative;z-index:500;background-color:#fff;border-bottom:1rpx solid rgba(0,0,0,.1);padding-top:constant(safe-area-inset-top);padding-top:env(safe-area-inset-top)}.weui-navbar+.weui-tab__panel{padding-bottom:constant(safe-area-inset-bottom);padding-bottom:env(safe-area-inset-bottom)}.weui-navbar__item{position:relative;display:block;-webkit-box-flex:1;-webkit-flex:1;flex:1;padding:16px;padding:calc(16px + constant(safe-area-inset-top)) 16px 16px;padding:calc(16px + env(safe-area-inset-top)) 16px 16px;text-align:center;font-size:17px;line-height:1.41176471}.weui-navbar__item:after{content:" ";position:absolute;right:0;top:0;width:1px;bottom:0;border-right:1rpx solid rgba(0,0,0,.1);color:rgba(0,0,0,.1)}.weui-navbar__item.weui-bar__item_on{background-color:#ececec}.weui-navbar__item:first-child{padding-left:calc(16px + constant(safe-area-inset-left));padding-left:calc(16px + env(safe-area-inset-left))}.weui-navbar__item:last-child{padding-right:calc(16px + constant(safe-area-inset-right));padding-right:calc(16px + env(safe-area-inset-right))}.weui-navbar__item:last-child:after{display:none}.weui-navbar__slider{position:absolute;content:" ";left:0;bottom:0;width:6em;height:2px;background-color:#07c160;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;display:none}.weui-navbar__title{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1}
\ No newline at end of file
diff --git a/style/widget/weui-tab/weui-tab.wxss b/style/widget/weui-tab/weui-tab.wxss
new file mode 100755
index 0000000..9261be6
--- /dev/null
+++ b/style/widget/weui-tab/weui-tab.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-navbar{display:-webkit-box;display:-webkit-flex;display:flex;position:relative;z-index:500;background-color:#fff;border-bottom:1rpx solid rgba(0,0,0,.1);padding-top:constant(safe-area-inset-top);padding-top:env(safe-area-inset-top)}.weui-navbar+.weui-tab__panel{padding-bottom:constant(safe-area-inset-bottom);padding-bottom:env(safe-area-inset-bottom)}.weui-navbar__item{position:relative;display:block;-webkit-box-flex:1;-webkit-flex:1;flex:1;padding:16px;padding:calc(16px + constant(safe-area-inset-top)) 16px 16px;padding:calc(16px + env(safe-area-inset-top)) 16px 16px;text-align:center;font-size:17px;line-height:1.41176471}.weui-navbar__item:after{content:" ";position:absolute;right:0;top:0;width:1px;bottom:0;border-right:1rpx solid rgba(0,0,0,.1);color:rgba(0,0,0,.1)}.weui-navbar__item.weui-bar__item_on{background-color:#ececec}.weui-navbar__item:first-child{padding-left:calc(16px + constant(safe-area-inset-left));padding-left:calc(16px + env(safe-area-inset-left))}.weui-navbar__item:last-child{padding-right:calc(16px + constant(safe-area-inset-right));padding-right:calc(16px + env(safe-area-inset-right))}.weui-navbar__item:last-child:after{display:none}.weui-navbar__slider{position:absolute;content:" ";left:0;bottom:0;width:6em;height:2px;background-color:#07c160;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;display:none}.weui-navbar__title{overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1}.weui-tabbar{display:-webkit-box;display:-webkit-flex;display:flex;position:relative;z-index:500;background-color:#f7f7f7}.weui-tabbar:before{content:" ";position:absolute;left:0;top:0;right:0;height:1px;border-top:1rpx solid rgba(0,0,0,.1);color:rgba(0,0,0,.1)}.weui-tabbar__item{display:block;-webkit-box-flex:1;-webkit-flex:1;flex:1;padding:8px 0 4px;padding-bottom:calc(8px + constant(safe-area-inset-bottom));padding-bottom:calc(8px + env(safe-area-inset-bottom));font-size:0;color:rgba(0,0,0,.5);text-align:center;-webkit-tap-highlight-color:rgba(0,0,0,0)}.weui-tabbar__item:first-child{padding-left:constant(safe-area-inset-left);padding-left:env(safe-area-inset-left)}.weui-tabbar__item:last-child{padding-right:constant(safe-area-inset-right);padding-right:env(safe-area-inset-right)}.weui-tabbar__item.weui-bar__item_on .weui-tabbar__icon,.weui-tabbar__item.weui-bar__item_on .weui-tabbar__icon>i,.weui-tabbar__item.weui-bar__item_on .weui-tabbar__label{color:#07c160}.weui-tabbar__icon{display:inline-block;width:28px;height:28px;margin-bottom:2px}.weui-tabbar__icon>i,i.weui-tabbar__icon{font-size:24px;color:rgba(0,0,0,.5)}.weui-tabbar__icon image{width:100%;height:100%}.weui-tabbar__label{color:rgba(0,0,0,.9);font-size:10px;line-height:1.4}.weui-tab{display:-webkit-box;display:-webkit-flex;display:flex;height:100%;box-sizing:border-box;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.weui-tab__panel{box-sizing:border-box;-webkit-box-flex:1;-webkit-flex:1;flex:1;overflow:auto;-webkit-overflow-scrolling:touch}
\ No newline at end of file
diff --git a/style/widget/weui-tips/weui-badge.wxss b/style/widget/weui-tips/weui-badge.wxss
new file mode 100755
index 0000000..205adcb
--- /dev/null
+++ b/style/widget/weui-tips/weui-badge.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-badge{display:inline-block;padding:.15em .4em;min-width:8px;border-radius:18px;background-color:#fa5151;color:#fff;line-height:1.2;text-align:center;font-size:12px;vertical-align:middle}.weui-badge_dot{padding:.4em;min-width:0}
\ No newline at end of file
diff --git a/style/widget/weui-tips/weui-loadmore.wxss b/style/widget/weui-tips/weui-loadmore.wxss
new file mode 100755
index 0000000..d463539
--- /dev/null
+++ b/style/widget/weui-tips/weui-loadmore.wxss
@@ -0,0 +1,6 @@
+/*!
+ * WeUI v2.0.0 (https://github.com/weui/weui-wxss)
+ * Copyright 2019 Tencent, Inc.
+ * Licensed under the MIT license
+ */
+.weui-loadmore{width:65%;margin:1.5em auto;line-height:1.6em;font-size:14px;text-align:center}.weui-loadmore__tips{display:inline-block;vertical-align:middle}.weui-loadmore_line{border-top:1px solid rgba(0,0,0,.1);margin-top:2.4em}.weui-loadmore__tips_in-line{position:relative;top:-.9em;padding:0 .55em;background-color:#fff;color:rgba(0,0,0,.5)}.weui-loadmore__tips_in-dot{position:relative;padding:0 .16em;width:4px;height:1.6em}.weui-loadmore__tips_in-dot:before{content:" ";position:absolute;top:50%;left:50%;margin-top:-1px;margin-left:-2px;width:4px;height:4px;border-radius:50%;background-color:rgba(0,0,0,.1)}
\ No newline at end of file